/* ============================================================
   ALLIED ADVISORS — site design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  /* Brand */
  --blue:    #434495;   /* primary */
  --indigo:  #2B255C;   /* deep, dominant dark */
  --taupe:   #8F8071;   /* accent only */
  --offwhite:#F3F2F1;   /* backgrounds */

  /* Derived neutrals (low-saturation, brand-toned) */
  --paper:   #FBFBFA;
  --white:   #FFFFFF;
  --ink:     #1B1830;   /* near-black, indigo-toned */
  --muted:   #5C5870;   /* secondary text */
  --line:    #E4E2E6;   /* hairlines */
  --line-dk: rgba(255,255,255,0.14);

  /* Blue tints */
  --blue-08: rgba(67, 68, 149, 0.08);
  --blue-12: rgba(67, 68, 149, 0.12);
  --taupe-12:rgba(143, 128, 113, 0.14);

  /* Type */
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Archivo', system-ui, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(72px, 11vw, 144px);
  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); line-height: 1.02; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }

/* ---------- type scale ---------- */
.display {
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.4rem); font-weight: 300; line-height: 1.55; color: var(--muted); }
.body-lg { font-size: 1.08rem; }
.muted { color: var(--muted); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.7em;
}
.eyebrow.on-dark { color: var(--taupe); }

/* ---------- chevron motif ---------- */
.chev {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--blue);
}
.chev svg { width: auto; height: 1em; }
.chev--lg svg { height: 1.6em; }
.chev--taupe { color: var(--taupe); }
.chev--white { color: #fff; }

/* layered hero chevrons */
.chev-stack { display: inline-flex; align-items: center; }
.chev-stack svg { height: 100%; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--blue);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.6em;
  padding: 0.95em 1.5em;
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn .chev { color: currentColor; transition: transform 0.4s var(--ease); }
.btn:hover { background: var(--indigo); border-color: var(--indigo); box-shadow: 0 14px 30px -16px rgba(43,37,92,0.6); }
.btn:hover .chev { transform: translateX(4px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--blue-08); border-color: var(--blue); color: var(--blue); box-shadow: none; }
.btn--ghost:hover .chev { color: var(--blue); }

.btn--on-dark {
  --bg: #fff;
  --fg: var(--indigo);
  border-color: #fff;
}
.btn--on-dark:hover { background: var(--taupe); border-color: var(--taupe); color: #fff; box-shadow: none; }

.btn--outline-dark {
  --bg: transparent;
  --fg: #fff;
  border-color: var(--line-dk);
}
.btn--outline-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); box-shadow: none; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}
.textlink .chev { transition: transform 0.4s var(--ease); }
.textlink:hover .chev { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243,242,241,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(243,242,241,0.92); }
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 76px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: none; border: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s; margin-inline: auto; }

/* ---------- wordmark / logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.logo__img { height: 30px; width: auto; display: block; }
.logo--footer .logo__img { height: 34px; }
@media (max-width: 880px) { .logo__img { height: 27px; } }
.logo__mark { color: var(--blue); height: 26px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  color: var(--blue);
}
.logo__sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 3px;
  padding-left: 0.08em;
}
.logo--footer .logo__name { color: #fff; }
.logo--footer .logo__mark { color: #fff; }

/* mobile nav */
@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    margin: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    box-shadow: 0 24px 40px -28px rgba(27,24,48,0.45);
  }
  .nav__links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__link { width: 100%; padding: 1rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1.25rem 0 0; }
  body.nav-open { overflow: hidden; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(64px, 9vw, 120px) var(--section); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title { margin-top: 1.5rem; }
.hero__title .accent { color: var(--blue); }
.hero__copy { margin-top: 1.6rem; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* faint chevron field in hero bg */
.hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(100deg, transparent 35%, #000 95%);
  mask-image: linear-gradient(100deg, transparent 35%, #000 95%);
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
}

/* ---------- media placeholder ---------- */
.ph {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, var(--blue-08) 0 12px, transparent 12px 24px),
    var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--muted);
  aspect-ratio: 4 / 5;
}
.ph--wide { aspect-ratio: 16 / 10; }
.ph--sq { aspect-ratio: 1; }
.ph__label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.45em 0.8em;
  border-radius: 100px;
  color: var(--taupe);
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px),
    var(--indigo);
  border-color: var(--line-dk);
}
.ph--dark .ph__label { background: rgba(255,255,255,0.06); border-color: var(--line-dk); color: rgba(255,255,255,0.7); }
.ph__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 32px); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(43,37,92,0.45); border-color: transparent; }
.pillar:hover::before { transform: scaleY(1); }
.pillar__num { font-family: var(--display); font-weight: 900; font-size: 0.9rem; color: var(--taupe); letter-spacing: 0.1em; }
.pillar__title { margin-top: 1.3rem; font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.025em; }
.pillar__desc { margin-top: 1rem; color: var(--muted); }
.pillar__list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.85rem; }
.pillar__list li { display: flex; gap: 0.7rem; align-items: baseline; font-size: 0.98rem; }
.pillar__list .chev { color: var(--blue); flex-shrink: 0; font-size: 0.8em; transform: translateY(1px); }
.pillar__foot { margin-top: auto; padding-top: 2rem; }

/* ============================================================
   PROOF BAND (dark)
   ============================================================ */
.band-dark { background: var(--indigo); color: #fff; position: relative; overflow: hidden; }
.band-dark .eyebrow { color: var(--taupe); }
.band-dark .lead { color: rgba(255,255,255,0.72); }
.band-dark .h2 { color: #fff; }
.band-blue { background: var(--blue); color: #fff; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(36px, 5vw, 56px);
  background: var(--line-dk);
  border: 1px solid var(--line-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) { .metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  background: var(--indigo);
  padding: clamp(24px, 3vw, 38px);
  position: relative;
}
.metric__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 0.08em;
}
.metric__num .unit { font-size: 0.5em; color: var(--taupe); font-weight: 800; }
.metric__label { margin-top: 0.7rem; color: rgba(255,255,255,0.66); font-size: 0.92rem; line-height: 1.4; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.shead { display: grid; grid-template-columns: 1fr; gap: 1.1rem; max-width: 760px; }
.shead--split {
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
@media (max-width: 720px) { .shead--split { grid-template-columns: 1fr; align-items: start; } }

/* ============================================================
   APPROACH / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 2px solid var(--blue); padding-top: 1.4rem; }
.step__n { font-family: var(--display); font-weight: 900; font-size: 0.85rem; color: var(--taupe); letter-spacing: 0.12em; }
.step__t { margin-top: 0.7rem; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.step__d { margin-top: 0.7rem; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   FEATURE ROWS (alternating)
   ============================================================ */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.frow + .frow { margin-top: clamp(56px, 8vw, 110px); }
.frow--flip .frow__media { order: 2; }
@media (max-width: 860px) {
  .frow { grid-template-columns: 1fr; gap: 32px; }
  .frow--flip .frow__media { order: 0; }
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-08);
  padding: 0.45em 0.85em;
  border-radius: 100px;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 28px); }
@media (max-width: 820px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -42px rgba(43,37,92,0.45); }
.case__sector { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
.case__head { margin-top: 1rem; font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
.case__body { margin-top: 1rem; color: var(--muted); font-size: 0.98rem; }
.case__stats { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.case__stat .n { font-family: var(--display); font-weight: 900; font-size: 1.7rem; letter-spacing: -0.03em; color: var(--blue); }
.case__stat .l { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

/* ============================================================
   STAT STRIP (light, inline)
   ============================================================ */
.statstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2.5vw,32px); }
@media (max-width: 760px) { .statstrip { grid-template-columns: 1fr 1fr; } }
.statbox .n { font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem,4vw,3rem); letter-spacing: -0.04em; color: var(--indigo); line-height: 1; }
.statbox .n .unit { color: var(--taupe); font-size: 0.55em; }
.statbox .l { margin-top: 0.6rem; color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   VALUES / LIST CARDS
   ============================================================ */
.cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.5vw,28px); }
@media (max-width: 820px){ .cards3 { grid-template-columns: 1fr; } }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px,3vw,36px);
}
.card__ico { color: var(--blue); height: 28px; margin-bottom: 1.2rem; }
.card__t { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.card__d { margin-top: 0.7rem; color: var(--muted); font-size: 0.97rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 2.5vw, 28px); }
.quote {
  flex: 1 1 300px;
  max-width: 344px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -42px rgba(43,37,92,0.4); }
.quote__mark { color: var(--taupe); height: 16px; margin-bottom: 1.3rem; }
.quote__text { font-size: 1.04rem; line-height: 1.6; color: var(--ink); flex: 1; }
.quote__text .hl { color: var(--blue); font-weight: 600; }
.quote__by {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.quote__co { font-weight: 700; letter-spacing: -0.01em; font-size: 0.98rem; }
.quote__role { color: var(--muted); font-size: 0.84rem; margin-top: 0.15rem; }
.quote__tick {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-08);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.quote__tick svg { width: 18px; height: 18px; }

/* featured pull quote (on dark/blue band) */
.pullquote { max-width: 60rem; }
.pullquote__mark { color: var(--taupe); height: 28px; margin-bottom: 1.6rem; }
.pullquote__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #fff;
}
.pullquote__by { margin-top: 1.8rem; display: flex; align-items: center; gap: 0.9rem; color: rgba(255,255,255,0.72); }
.pullquote__by .co { color: #fff; font-weight: 700; }
.pullquote__by .sep { width: 28px; height: 2px; background: var(--taupe); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  background: var(--blue);
  color: #fff;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; }
@media (max-width: 760px){ .cta__inner { grid-template-columns: 1fr; gap: 1.8rem; } }
.cta .h2 { color: #fff; }
.cta__field { position: absolute; inset: 0; opacity: 0.16; pointer-events: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.field label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 1rem;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-12);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-aside { background: var(--indigo); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px,3.5vw,44px); }
.contact-aside .eyebrow { color: var(--taupe); }
.contact-line { display: flex; gap: 0.9rem; align-items: flex-start; padding-block: 1.1rem; border-top: 1px solid var(--line-dk); }
.contact-line:first-of-type { border-top: none; }
.contact-line .chev { color: var(--taupe); margin-top: 0.25rem; }
.contact-line .k { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.contact-line .v { font-size: 1.05rem; font-weight: 600; margin-top: 0.15rem; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
.form-success {
  display: none;
  background: var(--blue-08);
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 1.1em 1.3em;
  border-radius: var(--radius);
  font-weight: 600;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--indigo); color: rgba(255,255,255,0.7); padding-block: clamp(56px,7vw,88px) 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px,5vw,64px); }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); font-weight: 700; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding-block: 0.4rem; color: rgba(255,255,255,0.7); font-size: 0.96rem; transition: color 0.25s; }
.footer-col a:hover { color: #fff; }
.footer-blurb { margin-top: 1.3rem; max-width: 34ch; font-size: 0.96rem; color: rgba(255,255,255,0.62); }
.footer-bottom {
  margin-top: clamp(40px,6vw,72px);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-dk);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.phero { padding-block: clamp(56px,8vw,104px) clamp(40px,5vw,64px); position: relative; overflow: hidden; }
.phero__inner { max-width: 800px; }
.phero .display { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
.crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.4rem; display: flex; gap: 0.6rem; align-items: center; }
.crumb a:hover { color: var(--blue); }
.crumb .chev { color: var(--taupe); font-size: 0.7em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* utility */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
