:root {
  --ink: #585858;
  --charcoal: #343434;
  --accent: #5d6770;
  --accent-soft: #74818c;
  --paper: #fff;
  --mist: #f8f8f8;
  --line: #d8d8d5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--charcoal); }
h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "Berkshire Swash", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.15rem; }
.skip-link { position: fixed; left: -999px; top: 8px; z-index: 1000; padding: .7rem 1rem; background: #fff; }
.skip-link:focus { left: 8px; }

.site-header { position: relative; z-index: 20; background: #f5f5f3; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  min-height: 112px;
  margin: 0 auto;
  padding: 20px 22px 0;
}
.brand { display: flex; align-items: center; gap: 18px; color: var(--accent); }
.brand img { width: 73px; }
.brand span { display: grid; }
.brand strong {
  font-family: "Berkshire Swash", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .04em;
}
.brand small, .brand em {
  color: #444;
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.brand em { margin-top: 2px; font-size: .65rem; }
.header-actions { display: flex; align-items: center; gap: 14px; color: #555; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.header-actions a { display: grid; place-items: center; width: 36px; height: 36px; color: var(--accent); font-size: 1.15rem; }
.site-nav { background: #fff; border-bottom: 1px solid #eee; }
.site-nav > ul {
  display: flex;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}
.site-nav li { position: relative; margin: 0; list-style: none; }
.site-nav a, .site-nav button {
  display: block;
  padding: 20px 15px;
  border: 0;
  background: transparent;
  color: #555;
  font: 700 .69rem/1.25 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .065em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}
.site-nav button::after { content: "⌄"; margin-left: 8px; }
.site-nav a:hover, .site-nav button:hover { color: var(--accent-soft); }
.site-nav ul ul {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  min-width: 265px;
  max-height: 72vh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  background: var(--charcoal);
  box-shadow: 2px 4px 8px rgb(0 0 0 / 25%);
}
.site-nav ul ul a { padding: 14px 20px; color: #eee; font-size: .65rem; white-space: nowrap; }
.site-nav ul ul a:hover { color: #fff; background: var(--accent); }
.has-submenu:hover > ul, .has-submenu:focus-within > ul { display: block; }
.menu-toggle { display: none; }

.split-hero { display: grid; grid-template-columns: 45% 55%; height: 595px; overflow: hidden; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 50px;
  color: #fff;
  background: var(--accent);
}
.hero-copy > * { width: 100%; max-width: 555px; }
.hero-copy h1 { color: #fff; font-family: inherit; font-size: 2.25rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.hero-copy p { font-size: 1.02rem; line-height: 1.55; }
.hero-image { overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero { position: relative; height: 350px; overflow: hidden; background: var(--accent); }
.page-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72); }
.page-hero div { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; background: rgb(52 52 52 / 18%); }
.page-hero h1 { max-width: 1000px; color: #fff; font-size: clamp(2.3rem, 5vw, 4.5rem); text-align: center; text-shadow: 0 2px 15px rgb(0 0 0 / 30%); }

.home-content > .super { display: none; }
.home-content > .para, .article-content > .para { width: 100%; margin: 0 auto; padding: 4rem 30px; }
.home-content > .para > div, .article-content > .para > div { width: 100%; max-width: 1140px; margin: 0 auto; }
.home-content > .para:nth-child(2) { max-width: none; padding-top: 4.5rem; padding-bottom: 4.5rem; text-align: center; }
.home-content > .para:nth-child(2) > div { max-width: 960px; }
.home-content > .para:nth-child(2) .p, .home-content > .para:nth-child(2) p { text-align: center; }
.para em a.l {
  display: inline-block;
  margin-top: .6rem;
  padding: 13px 17px;
  border: 0;
  border-radius: 1px;
  background: var(--accent);
  box-shadow: 5px 7px 7px rgb(0 0 0 / 22%);
  color: #fff;
  font-size: .78rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.para em a.l:hover { background: var(--charcoal); color: #fff; box-shadow: 1px 1px 3px rgb(0 0 0 / 25%); }
.home-content { display: flex; flex-wrap: wrap; justify-content: center; }
.home-content > .para:not(.four-cards) { flex: 0 0 100%; }
.home-content > .four-cards {
  flex: 0 1 300px;
  margin: 15px;
  padding: 0;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 2px 2px 4px rgb(0 0 0 / 24%);
}
.four-cards > div { height: 100%; }
.four-cards .CNTR5 { height: 210px; overflow: hidden; }
.four-cards img { width: 100%; height: 100%; margin: 0; object-fit: cover; }
.four-cards h2 { min-height: 75px; margin: 0; padding: 24px 22px 0; font-size: 1.5rem; }
.four-cards .p { padding: 0 22px 24px; }
.four-cards .p p { margin: 0; }
.home-content > .four-cards + .para:not(.four-cards) { margin-top: 3.5rem; }
.home-content > .background-light {
  margin-top: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--mist);
}
.background-light + .background-light { padding-top: 2rem; }
.background-light .imgrh {
  float: right;
  width: min(42%, 360px);
  max-height: 430px;
  margin: .5rem 0 2rem 3rem;
  object-fit: contain;
}
.home-content .NOH2 .CNTR5 { text-align: center; }
.home-content .NOH2 .CNTR5 img { margin: 0 auto 2.5rem; }
.background-light-insta { min-height: 70px; padding: 0 !important; }
.background-accent-motif {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  color: #fff;
  background-color: var(--accent) !important;
  background-image: radial-gradient(circle at 15% 50%, rgb(255 255 255 / 5%) 0 2px, transparent 3px);
  background-size: 42px 42px;
}
.background-accent-motif .p, .background-accent-motif p { text-align: center; }
.article-content { overflow: hidden; }
.article-content > .para:first-child { padding-top: 5rem; }
.article-content > .para:nth-child(even) { background: var(--mist); }
.article-content > [class*="background-light"] { background: var(--mist); }
.article-content > .wide > div,
.article-content > [class*="background-light-wide"] > div {
  max-width: 1200px;
}
.article-content img.imgab { margin: 1rem auto 2rem; }
.article-content img.imglh { float: left; max-width: 43%; margin: .5rem 3rem 2rem 0; }
.article-content img.imgrh { float: right; max-width: 43%; margin: .5rem 0 2rem 3rem; }
.article-content > .two-cards,
.article-content > .three-cards {
  float: left;
  min-height: 250px;
  margin: 25px;
  padding: 2.5rem 30px;
  background: var(--mist);
  box-shadow: 2px 2px 4px rgb(0 0 0 / 22%);
}
.article-content > .two-cards { width: calc(50% - 50px); }
.article-content > .three-cards { width: calc(33.333% - 50px); }
.article-content > .two-cards > div,
.article-content > .three-cards > div { max-width: none; }
.article-content > .two-cards h2,
.article-content > .three-cards h2 { font-size: 1.55rem; text-align: center; }
.article-content > .two-cards .p,
.article-content > .three-cards .p { text-align: center; }
.article-content > .para:not(.two-cards):not(.three-cards) { clear: both; }
.article-content > .pempty { display: none; }
.clearit { clear: both; }
.pfoot { clear: both; }

.blog-index, .blog-article { padding: 5rem 30px; }
.blog-index-inner, .blog-article-inner { width: 100%; max-width: 1140px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.blog-card { overflow: hidden; background: var(--mist); box-shadow: 2px 2px 4px rgb(0 0 0 / 20%); }
.blog-card-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.blog-card-image:hover img { transform: scale(1.025); }
.blog-card-copy { padding: 25px; }
.blog-card time, .blog-date { color: #eee; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.blog-card time { color: var(--accent-soft); }
.blog-card h2 { margin-top: .45rem; font-size: 1.65rem; }
.blog-card h2 a { color: var(--accent); }
.blog-read-more { display: inline-block; margin-top: .5rem; border-bottom: 1px solid var(--accent); font-size: .78rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.blog-empty { margin: 0; padding: 4rem 30px; background: var(--mist); text-align: center; }
.blog-article-inner { max-width: 820px; }
.blog-article h2 { margin-top: 2.5rem; }
.blog-article h3 { margin-top: 2rem; }

.site-footer { padding-top: 4rem; color: #ddd; background: var(--charcoal); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px 4rem;
}
.site-footer h3 { color: #fff; font-size: 1.45rem; }
.site-footer p, .site-footer a { color: #bbb; font-size: .92rem; }
.site-footer section > a { display: block; padding: .24rem 0; border-bottom: 1px solid rgb(255 255 255 / 8%); }
.site-footer a:hover { color: #fff; }
.copyright {
  padding: 25px 30px;
  border-top: 1px solid #555;
  color: #858585;
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}
.copyright span { margin-left: 20px; }
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 1px;
  background: var(--accent-soft);
  color: #fff;
  font-size: 1.35rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, background .2s;
}
.to-top.is-visible { opacity: .92; pointer-events: auto; }
.to-top:hover { background: var(--accent); }

@media (max-width: 1100px) {
  .site-nav a, .site-nav button { padding-inline: 10px; font-size: .61rem; }
  .split-hero { grid-template-columns: 50% 50%; height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .header-actions { display: none; }
  .split-hero { display: flex; height: auto; flex-direction: column-reverse; }
  .hero-image { height: 430px; }
  .hero-copy { align-items: center; padding: 48px 30px; text-align: center; }
  .hero-copy > * { max-width: 760px; }
  .hero-copy h1 { font-size: 1.9rem; }
  .home-content > .four-cards { flex-basis: calc(50% - 50px); }
}

@media (max-width: 767px) {
  .header-inner { justify-content: center; padding: 28px 20px 20px; }
  .brand { flex-direction: column; text-align: center; }
  .brand span { width: 100%; max-width: calc(100vw - 40px); }
  .brand img { width: 90px; }
  .brand em { margin-top: 7px; font-size: .58rem; line-height: 1.5; }
  .menu-toggle {
    display: block;
    width: 66px;
    height: 66px;
    margin: 10px auto 20px;
    border: 1px solid #a4abae;
    border-radius: 50%;
    background: transparent;
    color: #555;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .site-nav { display: none; background: var(--charcoal); }
  .site-nav.is-open { display: block; }
  .site-nav > ul { display: block; padding: 0; }
  .site-nav a, .site-nav button { width: 100%; padding: 18px 20px; border-top: 1px solid rgb(255 255 255 / 15%); color: #eee; text-align: center; }
  .site-nav ul ul { position: static; display: none; max-height: none; box-shadow: none; background: #444; }
  .site-nav .has-submenu > button[aria-expanded="true"] + ul { display: block; }
  .site-nav ul ul a { white-space: normal; text-align: center; }
  .hero-image { height: 330px; }
  .page-hero { height: 280px; }
  .home-content > .four-cards { flex-basis: calc(100% - 40px); margin: 20px; }
  .four-cards .CNTR5 { height: 260px; }
  .background-light .imgrh, .article-content img.imglh, .article-content img.imgrh {
    float: none;
    width: auto;
    max-width: 100%;
    max-height: 420px;
    margin: 0 auto 2rem;
  }
  .article-content > .two-cards,
  .article-content > .three-cards {
    float: none;
    width: calc(100% - 40px);
    min-height: 0;
    margin: 20px;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  h2 { font-size: 1.7rem; }
  .brand strong { font-size: .96rem; }
  .brand small { font-size: .67rem; }
  .hero-image { height: 270px; }
  .hero-copy { padding: 40px 20px; }
  .hero-copy h1 { font-size: 1.35rem; overflow-wrap: anywhere; }
  .home-content > .para, .article-content > .para { padding: 3.5rem 20px; }
  .blog-index, .blog-article { padding: 3.5rem 20px; }
  .four-cards .CNTR5 { height: 220px; }
  .footer-grid { padding-inline: 20px; }
}

/* Footer social icons */
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); transition: background .2s, color .2s; }
.footer-social a:hover { background: #fff; color: #343434; }

/* Align "Read More" buttons to the bottom of equal-height four-cards */
.four-cards > div { display: flex; flex-direction: column; }
.four-cards .CNTR5, .four-cards h2 { flex: 0 0 auto; }
.four-cards .p { flex: 1 1 auto; position: relative; padding-bottom: 74px; }
.four-cards .p em { position: absolute; left: 22px; bottom: 24px; margin: 0; }
.four-cards .p em a.l { margin-top: 0; }

/* Homepage hero CTA button */
.hero-cta { display: inline-block; margin-top: 1.6rem; padding: 14px 30px; background: #fff; color: #343434;
  font-family: Arial, sans-serif; font-size: .78rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; box-shadow: 4px 6px 10px rgb(0 0 0 / 18%); transition: background .2s, color .2s; }
.hero-cta:hover { background: var(--charcoal); color: #fff; }
