:root {
  --navy: #102f31;
  --navy-deep: #081f21;
  --ink: #142e2e;
  --cream: #f8f5ed;
  --white: #fffdf8;
  --muted: #c2cabe;
  --gold: #9d7442;
  --gold-light: #d0ae72;
  --border-light: rgba(20, 46, 46, .14);
  --border-dark: rgba(208, 174, 114, .3);
  --serif: "Iowan Old Style", "Baskerville", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --max: 1168px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
[id] { scroll-margin-top: 100px; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
.svg-sprite { display: none; }
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: flex;
  height: 98px;
  justify-content: space-between;
  left: 0;
  margin: auto;
  max-width: calc(var(--max) + 104px);
  padding: 0 52px;
  position: absolute;
  right: 0;
  top: 0;
  transition: background .35s ease, height .35s ease;
  z-index: 10;
}
.site-header.is-fixed {
  backdrop-filter: blur(12px);
  background: rgba(8, 31, 33, .94);
  height: 82px;
  position: fixed;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 15px;
}
.brand-icon {
  color: var(--gold-light);
  fill: none;
  height: 55px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 50px;
}
.brand-text {
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-text small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  margin-top: 6px;
}
.primary-nav {
  align-items: center;
  display: flex;
  gap: 45px;
}
.primary-nav > a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  position: relative;
  text-transform: uppercase;
}
.primary-nav > a::after {
  background: var(--gold-light);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  width: 100%;
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after { transform: scaleX(1); }
.button {
  align-items: center;
  background: #16634c;
  border: 1px solid #16634c;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  letter-spacing: .14em;
  min-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { background: #104b3a; }
.button-outline {
  background: transparent;
  border-color: var(--gold-light);
}
.button-outline:hover, .button-outline:focus-visible {
  background: #16634c;
  color: var(--white);
}
.menu-toggle { display: none; }

.hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(8, 27, 29, .96) 0%, rgba(8, 27, 29, .84) 37%, rgba(8, 27, 29, .18) 73%),
    linear-gradient(0deg, rgba(8, 27, 29, .3), rgba(8, 27, 29, .06)),
    url("assets/images/concent-hero.jpg");
  background-position: center, center, center right;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 708px;
  padding: 110px 52px 45px;
}
.hero-content {
  margin: 42px auto 0;
  max-width: var(--max);
  width: 100%;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(50px, 5.2vw, 61px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.12;
  margin: 0 0 26px;
}
.rule {
  background: var(--gold-light);
  display: block;
  height: 2px;
  margin-bottom: 26px;
  width: 55px;
}
.hero p {
  color: rgba(255, 254, 250, .91);
  font-size: 17px;
  line-height: 1.86;
  margin: 0 0 43px;
  max-width: 472px;
}
.text-link {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.text-link span {
  display: inline-block;
  font-size: 19px;
  letter-spacing: 0;
  margin-left: 9px;
  transition: transform .2s ease;
}
.text-link:hover span { transform: translateX(5px); }

.pillars {
  background: var(--cream);
  padding: 45px 52px 62px;
}
.section-heading {
  text-align: center;
}
.section-heading h2,
.news-heading h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .16em;
  margin: 0;
  text-transform: uppercase;
}
.section-heading .rule {
  margin: 22px auto 32px;
  width: 46px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  max-width: var(--max);
}
.pillar {
  border-left: 1px solid var(--border-light);
  min-height: 242px;
  padding: 4px 26px 0;
  text-align: center;
}
.pillar:first-child { border-left: 0; }
.pillar svg {
  color: var(--gold);
  fill: none;
  height: 46px;
  margin-bottom: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  width: 46px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.42;
  margin: 0 0 18px;
}
.pillar p {
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}

.news {
  background: var(--navy);
  color: var(--white);
  padding: 38px 52px 54px;
}
.news-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 28px;
  max-width: var(--max);
}
.news-heading h2 {
  font-size: 18px;
  letter-spacing: .08em;
}
.news-heading .text-link {
  letter-spacing: 0;
  text-transform: none;
}
.news-label {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.news-grid {
  display: grid;
  gap: 37px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  max-width: var(--max);
}
.news-card img {
  aspect-ratio: 1.87 / 1;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
}
.news-card time {
  color: var(--gold-light);
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.news-card h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.48;
  margin: 0;
}
.news-card a:hover { color: var(--gold-light); }
.news-card a:focus-visible {
  color: var(--gold-light);
  outline-offset: 5px;
}

.focus-areas {
  background: #ede8db;
  display: grid;
  gap: 58px;
  grid-template-columns: 330px 1fr;
  padding: 58px max(52px, calc((100vw - var(--max)) / 2)) 60px;
}
.focus-copy h2,
.team-section h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.focus-copy p,
.team-section p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.sector-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.sector-grid article {
  border-left: 1px solid var(--gold-light);
  padding: 8px 0 8px 24px;
}
.sector-grid h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 15px;
}
.sector-grid p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.team-section {
  background: var(--navy);
  color: var(--white);
  padding: 64px 52px;
  text-align: center;
}
.team-section > div {
  margin: auto;
  max-width: 660px;
}
.team-section p:not(.eyebrow) { margin: 0 auto 30px; }
.eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .2em;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.site-footer {
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(90deg, rgba(8, 31, 33, .95) 0%, rgba(8, 31, 33, .86) 43%, rgba(8, 31, 33, .45)),
    url("assets/images/concent-footer.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.footer-content {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 252px minmax(315px, 1fr) 220px;
  margin: auto;
  max-width: var(--max);
  min-height: 282px;
  padding: 34px 0 29px;
}
.brand-footer {
  border-right: 1px solid var(--gold-light);
  flex-direction: column;
  gap: 12px;
  height: 169px;
  justify-content: center;
}
.brand-footer .brand-icon { height: 61px; width: 59px; }
.brand-footer .brand-text { font-size: 27px; text-align: center; }
.brand-footer .brand-text small { font-size: 13px; }
.footer-summary p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px;
  max-width: 420px;
}
address {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-style: normal;
  gap: 15px;
}
address strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
address a:not(.linkedin) { color: var(--gold-light); }
.linkedin {
  font-size: 24px;
  font-weight: 700;
  margin-top: 14px;
}
.footer-legal {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 254, 250, .59);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: auto;
  max-width: calc(var(--max) + 104px);
  min-height: 64px;
  padding: 0 52px;
}
.footer-legal div { display: flex; gap: 30px; }

.contact-dialog {
  background: var(--cream);
  border: 0;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .42);
  color: var(--ink);
  max-width: 620px;
  padding: 45px;
  width: calc(100% - 36px);
}
.contact-dialog::backdrop {
  backdrop-filter: blur(3px);
  background: rgba(4, 18, 28, .74);
}
.dialog-close {
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 35px;
  line-height: 1;
  position: absolute;
  right: 19px;
  top: 14px;
}
.dialog-intro .eyebrow {
  color: #76532b;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.dialog-intro h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin: 10px 0;
}
.dialog-intro p {
  line-height: 1.6;
  margin: 0 0 27px;
}
.contact-form {
  display: grid;
  gap: 17px;
}
.contact-form label {
  color: #26333a;
  display: grid;
  font-size: 12px;
  gap: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  background: white;
  border: 1px solid #d6d2c8;
  border-radius: 0;
  color: var(--ink);
  letter-spacing: 0;
  padding: 12px 13px;
  text-transform: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
}
.contact-form .button { margin-top: 7px; }
.contact-form .button[disabled] {
  cursor: wait;
  opacity: .72;
}
.form-trap {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}
.form-status { margin: 4px 0 0; }
.form-status.is-success { color: #57682e; }
.form-status.is-error { color: #9b2f27; }
.form-consent {
  align-items: start;
  display: flex !important;
  font-size: 13px !important;
  gap: 11px !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
}
.form-consent input {
  flex: 0 0 auto;
  height: 17px;
  margin: 3px 0 0;
  width: 17px;
}
.form-consent a {
  color: #805820;
  text-decoration: underline;
}
.turnstile-container {
  min-height: 65px;
}

.legal-page { background: var(--cream); }
.legal-header {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 22px max(24px, calc((100vw - 930px) / 2));
}
.legal-header .brand-icon { fill: none; }
.legal-content {
  background: var(--cream);
  margin: auto;
  max-width: 760px;
  padding: 62px 28px 76px;
}
.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 55px);
  font-weight: 400;
  margin: 0 0 12px;
}
.legal-date { color: #636d72; margin: 0 0 40px !important; }
.legal-content h2 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  margin: 37px 0 12px;
}
.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.legal-content a, .legal-footer a {
  color: #805820;
  text-decoration: underline;
}
.legal-footer {
  background: var(--navy-deep);
  color: rgba(255, 254, 250, .78);
  font-size: 13px;
  padding: 26px;
  text-align: center;
}
.legal-footer a { color: var(--gold-light); margin-left: 18px; }

.article-page { background: var(--cream); }
.article-hero {
  background: var(--navy);
  color: var(--white);
  padding: 62px max(28px, calc((100vw - 820px) / 2)) 66px;
}
.article-hero .eyebrow { margin-bottom: 22px; }
.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6.8vw, 56px);
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 25px;
}
.article-hero time {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.article-content {
  margin: auto;
  max-width: 760px;
  padding: 54px 28px 78px;
}
.article-content .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.55;
  margin-top: 0;
}
.article-content h2 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  margin: 42px 0 14px;
}
.article-content p {
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.article-cta {
  background: #ede8db;
  border-left: 2px solid var(--gold-light);
  margin-top: 46px;
  padding: 27px 30px;
}
.article-cta p { margin-bottom: 20px; }

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { animation: rise-in .62s ease both; }
  .pillar:nth-child(2), .news-card:nth-child(2) { animation-delay: .06s; }
  .pillar:nth-child(3), .news-card:nth-child(3) { animation-delay: .12s; }
  .pillar:nth-child(4) { animation-delay: .18s; }
  .pillar:nth-child(5) { animation-delay: .24s; }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .site-header { padding: 0 30px; }
  .primary-nav { gap: 28px; }
  .hero, .pillars, .news { padding-left: 30px; padding-right: 30px; }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }
  .pillar:nth-child(4) { border-left: 0; }
  .focus-areas { gap: 36px; grid-template-columns: 1fr; padding-left: 30px; padding-right: 30px; }
  .footer-content {
    gap: 32px;
    grid-template-columns: 212px 1fr 190px;
    padding: 34px 30px;
  }
}

@media (max-width: 760px) {
  [id] { scroll-margin-top: 92px; }
  .site-header, .site-header.is-fixed {
    height: 78px;
    padding: 0 22px;
  }
  .brand-icon { height: 44px; width: 40px; }
  .brand-text { font-size: 22px; }
  .brand-text small { font-size: 11px; }
  .menu-toggle {
    background: transparent;
    border: 0;
    display: grid;
    gap: 6px;
    padding: 8px 0 8px 15px;
  }
  .menu-toggle span:not(.sr-only) {
    background: var(--gold-light);
    display: block;
    height: 1px;
    transition: transform .22s ease, opacity .22s ease;
    width: 29px;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    align-items: stretch;
    background: rgba(8, 31, 33, .99);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 22px 27px;
    position: absolute;
    right: 0;
    top: 78px;
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a { border-bottom: 1px solid var(--border-dark); padding: 17px 0; }
  .primary-nav .button { margin-top: 22px; }
  .hero {
    background-position: center, center, 68% center;
    min-height: 645px;
    padding: 98px 22px 42px;
  }
  .hero-content { margin-top: 32px; }
  .hero h1 { font-size: clamp(40px, 12vw, 48px); }
  .hero p { font-size: 15px; }
  .pillars { padding: 40px 22px 45px; }
  .pillar-grid { grid-template-columns: 1fr; row-gap: 0; }
  .pillar, .pillar:nth-child(4) {
    border-bottom: 1px solid var(--border-light);
    border-left: 0;
    min-height: auto;
    padding: 24px 14px 28px;
  }
  .pillar:last-child { border-bottom: 0; }
  .news { padding: 35px 22px 43px; }
  .news-grid { gap: 35px; grid-template-columns: 1fr; }
  .news-heading { margin-bottom: 26px; }
  .news-card img { margin-bottom: 16px; }
  .focus-areas {
    padding: 43px 22px;
  }
  .focus-copy h2, .team-section h2 { font-size: 30px; }
  .sector-grid { gap: 25px; grid-template-columns: 1fr; }
  .team-section { padding: 47px 22px 52px; }
  .footer-content {
    display: block;
    padding: 34px 22px;
  }
  .brand-footer {
    border-bottom: 1px solid var(--gold-light);
    border-right: 0;
    height: auto;
    margin-bottom: 30px;
    padding-bottom: 29px;
  }
  .footer-summary { margin-bottom: 35px; }
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 21px 22px 24px;
  }
  .contact-dialog { padding: 42px 24px 27px; }
  .legal-header {
    gap: 22px;
    padding: 17px 20px;
  }
  .legal-header .brand-text { font-size: 19px; }
  .legal-header .brand-text small { font-size: 10px; }
  .legal-header .button {
    min-height: 44px;
    padding: 0 15px;
  }
  .legal-content { padding: 47px 22px 57px; }
  .article-hero { padding: 45px 22px 50px; }
  .article-content { padding: 42px 22px 54px; }
  .article-content .lead { font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
