/* ==========================================================================
   North Sound Capital — Home
   ========================================================================== */

:root {
  --ink:          #0E1A2B;  /* primary dark ground */
  --ink-deep:     #14110F;  /* closing invitation ground */
  --cream:        #F7F4EF;  /* page ground */
  --bronze:       #9A7B4F;  /* accent */
  --bronze-light: #c5a06a;  /* accent on dark */
  --bronze-hover: #b08f5e;
  --body:         #1b2733;
  --body-muted:   #3c4853;
  --body-faint:   #6b7682;  /* asides, notes, disclaimers */
  --statement:    #26313d;
  --error:        #a14b3a;

  --rule-dark:  rgba(20,26,43,.14);
  --rule-hair:  rgba(20,26,43,.10);
  --rule-light: rgba(247,244,239,.12);

  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans:  system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell:  1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --bar:    76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Reveal on scroll — only armed once JS confirms motion is welcome
   -------------------------------------------------------------------------- */

@keyframes nscReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.js-reveal [data-reveal] { opacity: 0; }

.js-reveal [data-reveal].is-revealed {
  animation: nscReveal .95s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms) both;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   Shared pieces
   -------------------------------------------------------------------------- */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.eyebrow__rule {
  width: 30px;
  height: 1px;
  background: var(--bronze);
  flex: none;
}

.eyebrow__text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
}

.eyebrow--on-dark .eyebrow__text { color: var(--bronze-light); }

.eyebrow--wide { gap: 18px; margin-bottom: 38px; }
.eyebrow--wide .eyebrow__rule { width: 42px; }
.eyebrow--wide .eyebrow__text { font-size: 11px; letter-spacing: .30em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.btn__arrow { font-size: 15px; }

.btn--outline {
  color: var(--cream);
  border: 1px solid var(--bronze);
  background: transparent;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--bronze);
  color: var(--cream);
}

.btn--solid {
  color: var(--ink-deep);
  background: var(--bronze);
  border: 1px solid var(--bronze);
}

.btn--solid:hover,
.btn--solid:focus-visible { background: var(--bronze-hover); border-color: var(--bronze-hover); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 6px;
  transition: color .25s ease;
}

.link-arrow:hover,
.link-arrow:focus-visible { color: var(--bronze); }

.link-arrow__icon { font-size: 14px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  --header-text:  var(--body);
  --header-muted: rgba(27,39,51,.58);

  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(247,244,239,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule-hair);
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease;
}

/* Transparent while it floats over the dark hero… */
.site-header--over-hero {
  --header-text:  var(--cream);
  --header-muted: rgba(247,244,239,.72);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

/* …and solid again once the page has moved past it. */
.site-header--over-hero.is-solid {
  --header-text:  var(--body);
  --header-muted: rgba(27,39,51,.58);
  background: rgba(247,244,239,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--rule-hair);
}

.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex: none;
  text-decoration: none;
}

.brand__name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .005em;
  white-space: nowrap;
  color: var(--header-text);
  transition: color .4s ease;
}

.brand__tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-top: 7px;
  color: var(--header-muted);
  transition: color .4s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--header-text);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}

.nav__link:hover,
.nav__link:focus-visible { color: var(--bronze); }

.nav__link[aria-current="page"] {
  color: var(--bronze);
  border-bottom-color: var(--bronze);
}

.btn--sm {
  gap: 0;
  font-size: 11.5px;
  letter-spacing: .13em;
  padding: 12px 22px;
  white-space: nowrap;
  color: var(--header-text);
  transition: background .3s ease, color .3s ease;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--header-text);
  transition: background .4s ease;
}

/* Mobile menu ------------------------------------------------------------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter);
  overflow-y: auto;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bar);
  margin: -28px 0 0;
}

.mobile-menu__brand {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--cream);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  font-family: var(--sans);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}

.mobile-menu__nav a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  text-decoration: none;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
}

.mobile-menu__nav a[aria-current="page"] { color: var(--bronze); }

.mobile-menu__cta {
  margin-top: 32px;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--bronze) !important;
  padding: 16px 22px !important;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(154,123,79,.13) 0%, rgba(154,123,79,0) 46%),
    radial-gradient(80% 80% at 12% 100%, rgba(247,244,239,.05) 0%, rgba(247,244,239,0) 50%);
}

.hero__seam {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,.07) 40%, rgba(247,244,239,0) 100%);
}

.hero__inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 140px var(--gutter) 120px;
  width: 100%;
}

.hero__content { max-width: 860px; }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--cream);
}

.hero__lede {
  margin: 40px 0 0;
  max-width: 620px;
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.72;
  color: rgba(247,244,239,.74);
}

.hero .btn { margin-top: 48px; }

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247,244,239,.4);
}

.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(247,244,239,.4), rgba(247,244,239,0));
}

/* --------------------------------------------------------------------------
   Positioning statement
   -------------------------------------------------------------------------- */

.intro {
  background: var(--cream);
  padding: clamp(80px, 12vw, 150px) var(--gutter);
}

.intro__inner {
  max-width: 920px;
  margin: 0 auto;
}

.intro__statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.42;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--statement);
  text-wrap: pretty;
}

.intro__statement em {
  font-style: italic;
  color: var(--bronze);
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats {
  background: var(--cream);
  padding: 0 var(--gutter) clamp(80px, 11vw, 140px);
}

/* 1px gaps over a tinted ground draw the hairline rules, so the grid keeps
   its dividers when it reflows to two columns or one. */
.stats__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-hair);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}

.stat {
  background: var(--cream);
  padding: clamp(36px, 4vw, 56px) 32px;
}

.stat__value {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.stat__suffix {
  font-size: .55em;
  color: var(--bronze);
}

.stat__label {
  margin-top: 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(27,39,51,.55);
}

/* --------------------------------------------------------------------------
   Two-column overview sections
   -------------------------------------------------------------------------- */

.split {
  background: var(--cream);
  padding: clamp(80px, 12vw, 150px) var(--gutter);
}

/* Follows the stats band, which already carries the bottom spacing. */
.split--flush-top { padding-top: 0; }

.split__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.split__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--body);
}

.split__text {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.78;
  color: var(--body-muted);
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   Guiding principles
   -------------------------------------------------------------------------- */

.principles {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 12vw, 150px) var(--gutter);
}

.principles__inner {
  max-width: var(--shell);
  margin: 0 auto;
}

.principles__head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.principles__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--cream);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
}

.principle {
  background: var(--ink);
  padding: clamp(34px, 3.6vw, 52px);
}

.principle__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}

.principle__number {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--bronze);
}

.principle__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0;
  color: var(--cream);
}

.principle__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(247,244,239,.66);
  max-width: 46ch;
}

/* --------------------------------------------------------------------------
   Closing invitation
   -------------------------------------------------------------------------- */

.closing {
  background: var(--ink-deep);
  color: var(--cream);
  padding: clamp(90px, 14vw, 170px) var(--gutter);
  text-align: center;
}

.closing__inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing__rule {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 40px;
}

.closing__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--cream);
}

.closing__text {
  margin: 32px auto 0;
  max-width: 540px;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.72;
  color: rgba(247,244,239,.66);
}

.closing .btn--solid {
  margin-top: 46px;
  padding: 18px 34px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
}

.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 104px) var(--gutter) 48px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(247,244,239,.13);
}

.site-footer__about {
  max-width: 340px;
  min-width: 240px;
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .005em;
}

.site-footer__blurb {
  margin: 18px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(247,244,239,.62);
}

.site-footer__heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__links a {
  font-size: 14.5px;
  color: rgba(247,244,239,.82);
  text-decoration: none;
  transition: color .25s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible { color: var(--cream); }

.site-footer__address {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(247,244,239,.72);
}

.site-footer__email {
  display: inline-block;
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid rgba(154,123,79,.4);
  padding-bottom: 2px;
  transition: border-color .25s ease;
}

.site-footer__email:hover,
.site-footer__email:focus-visible { border-bottom-color: var(--bronze); }

.site-footer__disclaimer {
  margin: 40px 0 0;
  font-size: 11.5px;
  line-height: 1.85;
  color: rgba(247,244,239,.42);
  max-width: 880px;
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.site-footer__copy {
  font-size: 11.5px;
  letter-spacing: .04em;
  color: rgba(247,244,239,.5);
}

.site-footer__motto {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(247,244,239,.42);
}

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Masthead — the cream page opener on every non-home page
   -------------------------------------------------------------------------- */

.masthead {
  background: var(--cream);
  padding: clamp(140px, 17vw, 210px) var(--gutter) clamp(56px, 7vw, 84px);
}

.masthead--roomy  { padding-bottom: clamp(72px, 9vw, 120px); }  /* What We Do */
.masthead--medium { padding-bottom: clamp(56px, 7vw, 88px); }   /* Who We Serve */
.masthead--tight  { padding-bottom: clamp(48px, 6vw, 72px); }   /* Contact */

.masthead__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.masthead .eyebrow { margin-bottom: 30px; }

.masthead__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.07;
  letter-spacing: -.012em;
  margin: 0;
  color: var(--body);
}

/* Who We Serve carries a longer headline, so it sets one notch smaller. */
.masthead__title--long {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
}

.masthead__lede {
  margin: 38px 0 0;
  max-width: 60ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.74;
  color: var(--body-muted);
}

.masthead__lede--wide { max-width: 62ch; }

/* --------------------------------------------------------------------------
   Shared accents
   -------------------------------------------------------------------------- */

.rule {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 40px;
}

.rule--snug { margin-bottom: 36px; }
.rule--mid  { margin-bottom: 38px; }

.section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

.section-label--on-dark { color: var(--bronze-light); }

/* --------------------------------------------------------------------------
   Image plate (Our Firm)
   -------------------------------------------------------------------------- */

.plate { padding: 0 var(--gutter) clamp(80px, 11vw, 140px); }

.plate__inner {
  max-width: var(--shell);
  margin: 0 auto;
}

.plate__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background-color: var(--ink);
  background-image: repeating-linear-gradient(135deg,
    rgba(247,244,239,.035) 0px, rgba(247,244,239,.035) 1px,
    transparent 1px, transparent 13px);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

/* --------------------------------------------------------------------------
   Labelled rows (Our Firm, Insights)
   -------------------------------------------------------------------------- */

.rows { padding: 0 var(--gutter); }

.rows--closing { padding-bottom: clamp(80px, 11vw, 130px); }

.row {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(56px, 7vw, 84px) 0;
  border-top: 1px solid var(--rule-dark);
}

/* The last row runs into the section padding rather than doubling it up. */
.row--open { padding-bottom: 0; }

.row__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
}

.row__lead {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.5;
  color: var(--statement);
  max-width: 36ch;
}

.row__lead--narrow { max-width: 34ch; }
.row__lead--wide   { max-width: 38ch; }

.row__text {
  margin: 24px 0 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--body-muted);
  max-width: 60ch;
}

.row__text + .row__text { margin-top: 22px; }

/* --------------------------------------------------------------------------
   Pull quote (Our Firm)
   -------------------------------------------------------------------------- */

.quote {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(90px, 13vw, 160px) var(--gutter);
  text-align: center;
}

.quote__inner {
  max-width: 900px;
  margin: 0 auto;
}

.quote__text {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.22;
  letter-spacing: -.005em;
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Numbered steps (What We Do)
   -------------------------------------------------------------------------- */

.steps {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 12vw, 150px) var(--gutter);
}

.steps__inner {
  max-width: var(--shell);
  margin: 0 auto;
}

.steps__head { margin-bottom: clamp(44px, 5vw, 72px); }

.steps__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.14;
  margin: 0;
  color: var(--cream);
  max-width: 18ch;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.step__number {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--bronze);
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(247,244,239,.16);
}

.step__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2vw, 26px);
  margin: 0 0 16px;
  color: var(--cream);
}

.step__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.76;
  color: rgba(247,244,239,.66);
}

/* --------------------------------------------------------------------------
   Service list (What We Do)
   -------------------------------------------------------------------------- */

.services {
  background: var(--cream);
  padding: clamp(80px, 12vw, 150px) var(--gutter);
}

.services__inner {
  max-width: var(--shell);
  margin: 0 auto;
}

.services__head {
  max-width: 760px;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.services__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.14;
  margin: 0;
  color: var(--body);
}

.services__list { border-top: 1px solid var(--rule-dark); }

.service {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(32px, 3.4vw, 46px) 0;
  border-bottom: 1px solid rgba(20,26,43,.12);
}

.service:last-child { border-bottom: none; }

.service__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 27px);
  margin: 0;
  color: var(--body);
}

.service__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.74;
  color: var(--body-muted);
  max-width: 56ch;
}

.service__note {
  color: var(--body-faint);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Client segments (Who We Serve)
   -------------------------------------------------------------------------- */

.segments { padding: 0 var(--gutter) clamp(80px, 11vw, 130px); }

.segments__list {
  max-width: var(--shell);
  margin: 0 auto;
  border-top: 1px solid var(--rule-dark);
}

.segment {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(48px, 5.5vw, 76px) 0;
  border-bottom: 1px solid rgba(20,26,43,.12);
  align-items: start;
}

.segment:last-child { border-bottom: none; }

.segment__numeral {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  color: rgba(154,123,79,.85);
}

.segment__body { max-width: 760px; }

.segment__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--body);
}

.segment__text {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--body-muted);
}

/* --------------------------------------------------------------------------
   Closing variants
   -------------------------------------------------------------------------- */

/* Statement close on navy (Who We Serve) */
.statement-close {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(90px, 13vw, 160px) var(--gutter);
}

.statement-close__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.statement-close__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.34;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--cream);
  text-wrap: pretty;
}

.statement-close .btn {
  margin-top: 46px;
  padding: 17px 32px;
}

/* Shorter closing panels (What We Do, Insights) */
.closing--compact { padding: clamp(80px, 12vw, 150px) var(--gutter); }
.closing--tall    { padding: clamp(90px, 13vw, 160px) var(--gutter); }

.closing--compact .closing__inner,
.closing--tall .closing__inner { max-width: 720px; }

.closing--compact .closing__title,
.closing--tall .closing__title {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.14;
}

.closing--compact .btn--solid,
.closing--tall .btn--solid { margin-top: 42px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact { padding: 0 var(--gutter) clamp(90px, 12vw, 150px); }

.contact__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  border-top: 1px solid var(--rule-dark);
  padding-top: clamp(48px, 6vw, 80px);
  align-items: start;
}

.field { margin-bottom: 36px; }
.field--last { margin-bottom: 14px; }

.field__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}

.field__input {
  border: none;
  border-bottom: 1px solid rgba(20,26,43,.24);
  background: transparent;
  padding: 12px 2px;
  font-size: 16.5px;
  font-family: inherit;
  color: var(--body);
  width: 100%;
  outline: none;
  transition: border-color .3s ease;
}

.field__input:focus { border-bottom-color: var(--bronze); }

textarea.field__input {
  line-height: 1.6;
  resize: vertical;
}

::placeholder { color: rgba(27,39,51,.32); }

.form__error {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--error);
}

.form__submit {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 17px 36px;
  transition: background .35s ease, border-color .35s ease;
}

.form__submit:hover,
.form__submit:focus-visible {
  background: var(--bronze);
  border-color: var(--bronze);
}

.form__note {
  margin: 30px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-faint);
  font-style: italic;
}

.form__thanks { padding: 48px 0; }

.form__thanks-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  margin: 0 0 18px;
  color: var(--body);
}

.form__thanks-text {
  margin: 0;
  max-width: 48ch;
  font-size: 16.5px;
  line-height: 1.76;
  color: var(--body-muted);
}

.office__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}

.office__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--body);
  margin-bottom: 18px;
}

.office__address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body-muted);
}

.office__email {
  display: inline-block;
  margin-top: 22px;
  font-size: 16px;
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 3px;
  transition: color .25s ease;
}

.office__email:hover,
.office__email:focus-visible { color: var(--bronze); }

.office__note {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(20,26,43,.12);
  font-size: 14px;
  line-height: 1.74;
  color: var(--body-faint);
  max-width: 40ch;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Same threshold the design uses to swap the bar for a hamburger. */
@media (max-width: 1023px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 900px) {
  .split__inner { grid-template-columns: 1fr; }
  .principles__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .principle__text,
  .split__text { max-width: none; }

  .row { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .row__text,
  .row__lead,
  .row__lead--narrow,
  .row__lead--wide,
  .steps__title { max-width: none; }
}

@media (max-width: 700px) {
  .service { grid-template-columns: 1fr; gap: 14px; }
  .service__text { max-width: none; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding-left: 0; padding-right: 0; }
  .hero__inner { padding-top: 120px; padding-bottom: 140px; }
  .hero__seam { display: none; }
  .btn { width: 100%; justify-content: center; }
  .site-footer__top { gap: 40px; }

  .segment { gap: 18px; }
  .plate__frame { aspect-ratio: 4 / 3; }
  .form__submit { width: 100%; justify-content: center; }
}
