/* ==========================================================================
   DCA GROUP — Design System
   Premium, composed, credible. Navy + a single gold accent. Lora + Inter.
   Tokens taken from DCA-design-spec.md; components extend the mockup layouts.
   ========================================================================== */

:root {
  /* ---- Color ---- */
  --color-navy:        #0A1828;
  --color-navy-deep:   #050F1C;
  --color-navy-surface:#122236;
  --color-gold:        #B88E55;
  --color-gold-hover:  #C9A063;
  --color-gold-text:   #C9A368;
  --color-cream:       #F7F6F3;
  --color-white:       #FFFFFF;
  --color-ink:         #1F2733;
  --color-muted:       #6B7280;
  --color-border:      #E6E3DD;
  --color-border-dark: rgba(255,255,255,.10);

  /* Teal accent reserved for the Lifebridge platform treatment */
  --color-teal-deep:   #0B2B2B;
  --color-teal:        #15514E;

  /* ---- Type ---- */
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --fs-h1: 46px;  --fs-h2: 32px;  --fs-h3: 19px;
  --fs-body-l: 17px; --fs-body: 14px; --fs-eyebrow: 13px;
  --lh-tight: 1.15; --lh-body: 1.6;
  --tracking-eyebrow: 0.2em;

  /* ---- Layout ---- */
  --container: 1200px;
  --gutter: 40px;
  --section-y: 88px;
  --grid-gap: 24px;
  --radius: 4px;
  --radius-tag: 2px;
  --header-h: 72px;

  /* ---- Spacing scale (4px base) ---- */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s6: 24px; --s8: 32px; --s12: 48px; --s16: 64px;

  /* ---- Effects ---- */
  --shadow-card: 0 1px 2px rgba(10,24,40,.04);
  --shadow-card-hover: 0 14px 34px rgba(10,24,40,.10);
  --shadow-header: 0 1px 0 rgba(255,255,255,.06);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: var(--lh-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--color-ink); }
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); line-height: 1.2; letter-spacing: -0.005em; }
h3 { font-size: var(--fs-h3); line-height: 1.3; }
p  { color: var(--color-ink); }
::selection { background: rgba(184,142,85,.22); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: 2px; }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s6); }
@media (min-width: 768px) { .container { padding-inline: var(--gutter); } }

.section { padding-block: 56px; }
@media (min-width: 768px) { .section { padding-block: var(--section-y); } }

.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }
.section--navy  { background: var(--color-navy); color: #E7EBF0; }
.section--navy-deep { background: var(--color-navy-deep); color: #E7EBF0; }
.section--navy h1, .section--navy h2, .section--navy h3,
.section--navy-deep h1, .section--navy-deep h2, .section--navy-deep h3 { color: #FFFFFF; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--color-gold-text);
}
.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--s3); }
.section-head h2 + p { margin-top: var(--s4); }
.lead { font-size: var(--fs-body-l); line-height: var(--lh-body); color: var(--color-muted); }
.section--navy .lead, .section--navy-deep .lead { color: #AEB8C4; }
.muted { color: var(--color-muted); }
.section--navy .muted, .section--navy-deep .muted { color: #93A0AE; }

.grid { display: grid; gap: var(--grid-gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); border: 1px solid transparent;
  padding: 13px 24px; font: 600 14px/1 var(--font-sans);
  cursor: pointer; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-gold); color: var(--color-navy); }
.btn-primary:hover { background: var(--color-gold-hover); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.28); color: #E7EBF0; font-weight: 500; }
.btn-outline:hover { border-color: rgba(255,255,255,.6); }
.btn-outline--light { border-color: #C9CFD6; color: var(--color-navy); }
.btn-outline--light:hover { border-color: var(--color-navy); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--color-gold-text); font: 600 14px var(--font-sans);
}
.link-arrow .arr { transition: transform .2s var(--ease); }
.link-arrow:hover .arr { transform: translateX(4px); }

/* ==========================================================================
   Header / Nav  (fixed navy bar)
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--color-navy);
  height: var(--header-h);
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid var(--color-border-dark);
}
.site-header .container { height: 100%; display: flex; align-items: center; gap: var(--s6); }

/* Brand logo (white/reversed DCA mark for navy header + footer) */
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-logo { height: 48px; width: auto; display: block; }
.footer-brand .brand-logo { height: 60px; }
@media (max-width: 980px) { .brand-logo { height: 42px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; }
.nav-links a { font-size: 14px; font-weight: 500; color: #C6CDD6; transition: color .18s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a.is-active { color: var(--color-gold-text); }
.header-cta { display: inline-flex; }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 42px; height: 42px; margin-left: auto; padding: 9px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-navy); border-bottom: 1px solid var(--color-border-dark);
    padding: var(--s4) var(--s6) var(--s8);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links li { border-bottom: 1px solid var(--color-border-dark); }
  .nav-links a { display: block; padding: 15px 2px; font-size: 16px; }
  .header-cta { margin-top: var(--s6); }
  .header-cta .btn { width: 100%; }
}

/* Spacer so fixed header doesn't overlap content */
.page { padding-top: var(--header-h); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; background: var(--color-navy); color: #fff; overflow: hidden;
}
.hero::after { /* subtle vignette for depth */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 80% 10%, rgba(184,142,85,.10), transparent 55%);
}
.hero .container { position: relative; z-index: 2; }

/* Home hero — split copy + imagery */
.hero-home {
  background:
    linear-gradient(90deg, rgba(10,24,40,.96) 0%, rgba(10,24,40,.90) 38%, rgba(10,24,40,.62) 66%, rgba(10,24,40,.40) 100%),
    url('/assets/img/hero-home.jpg');
  background-size: cover; background-position: center right;
}
@media (max-width: 768px) {
  .hero-home {
    background:
      linear-gradient(180deg, rgba(10,24,40,.84) 0%, rgba(10,24,40,.92) 100%),
      url('/assets/img/hero-home.jpg');
    background-size: cover; background-position: center;
  }
}
.hero-home .hero-inner { max-width: 640px; padding-block: 92px 96px; position: relative; z-index: 2; }
@media (max-width: 768px) { .hero-home .hero-inner { padding-block: 56px 60px; } }
.hero h1 { color: #fff; }
.hero p.lead { color: #C3CBD6; margin-top: var(--s6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s8); }

/* Decorative mountain artwork in the home hero (right side) */
.hero-art { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-art svg { position: absolute; right: -2%; bottom: 0; height: 86%; width: auto; opacity: .85; }
@media (max-width: 768px) { .hero-art svg { opacity: .35; height: 60%; } }

/* Intro + cards layout for the platform band */
.platform-intro h2 { color: #fff; }
.platform-intro p { color: #9FAAB7; margin-top: var(--s4); }
.platform-intro .btn { margin-top: var(--s8); }

/* Page hero — compact banner for interior pages */
.hero-page { background: var(--color-navy); }
.hero-page .hero-inner { padding-block: 64px 56px; max-width: 760px; }
.hero-page h1 { margin-top: var(--s3); }
.hero-page p { margin-top: var(--s4); color: #AEB8C4; font-size: var(--fs-body-l); }
/* Platform pages — light, full-bleed photographic hero (Summit + Lifebridge) */
.hero-page--photo {
  background:
    linear-gradient(100deg, rgba(247,246,243,.97) 0%, rgba(247,246,243,.93) 30%, rgba(247,246,243,.58) 47%, rgba(247,246,243,.14) 66%, rgba(247,246,243,0) 80%),
    var(--hero-photo, none);
  background-size: cover;
  background-position: center right;
}
.hero-page--photo::after { display: none; }
.hero-page--photo .hero-inner { max-width: 560px; padding-block: 104px 100px; }
.hero-page--photo h1 { color: var(--color-ink); }
.hero-page--photo p { color: #4A5563; }
.hero-page--photo .btn-outline { border-color: #C9CFD6; color: var(--color-navy); }
.hero-page--photo .btn-outline:hover { border-color: var(--color-navy); }
.hero-page--lifebridge { --hero-photo: url('/assets/img/lifebridge-hero.jpg'); }
.hero-page--summit { --hero-photo: url('/assets/img/summit-hero.jpg'); }
@media (max-width: 768px) {
  .hero-page--photo {
    background:
      linear-gradient(180deg, rgba(247,246,243,.95) 0%, rgba(247,246,243,.82) 52%, rgba(247,246,243,.72) 100%),
      var(--hero-photo, none);
    background-size: cover; background-position: center;
  }
  .hero-page--photo .hero-inner { padding-block: 56px 64px; }
}
/* Dark-overlay photo heroes — navy tint over image, white text retained */
.hero-page--photo-dark {
  background:
    linear-gradient(rgba(10,24,40,.78), rgba(10,24,40,.78)),
    var(--hero-photo, none);
  background-size: cover;
  background-position: center;
}
.hero-page--about    { --hero-photo: url('/assets/img/about-office.jpg'); }
.hero-page--contact  { --hero-photo: url('/assets/img/contact-cityscape.jpg'); }
.hero-page--services { --hero-photo: url('/assets/img/service-fiduciary.jpg'); }
.hero-page--insights { --hero-photo: url('/assets/img/insight-tax.jpg'); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: #D9D4CA; }
.card h3 { margin-bottom: var(--s3); }
.card p { color: var(--color-muted); font-size: 15px; }
.card .link-arrow { margin-top: var(--s4); }
.card-link { cursor: pointer; }

/* Icon chip — gold outline square */
.icon-chip {
  width: 44px; height: 44px; border-radius: var(--radius);
  border: 1px solid rgba(184,142,85,.45);
  display: grid; place-items: center; color: var(--color-gold);
  margin-bottom: var(--s6); flex: none;
  background: rgba(184,142,85,.05);
}
.icon-chip svg { width: 22px; height: 22px; }

/* Feature (icon row, no border) used on dark or light bands */
.feature { text-align: left; }
.feature .icon-chip { margin-bottom: var(--s4); }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--color-muted); }
.section--navy .feature p, .section--navy-deep .feature p { color: #9FAAB7; }

/* ==========================================================================
   Platform band (Summit + Lifebridge cards on navy)
   ========================================================================== */
.platform-band { background: var(--color-navy-deep); }
.platform-band h2, .platform-band h3 { color: #fff; }
.platform-band .lead { color: #AEB8C4; }
.platform-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s12); align-items: center; }
@media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr; gap: var(--s8); } }
.platform-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
@media (max-width: 520px) { .platform-cards { grid-template-columns: 1fr; } }
.platform-card {
  background: var(--color-navy-surface); border: 1px solid var(--color-border-dark);
  border-radius: var(--radius); padding: 26px; min-height: 210px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.platform-card:hover { transform: translateY(-3px); border-color: rgba(184,142,85,.4); }
.platform-card .plogo { font-family: var(--font-serif); color: #fff; font-size: 22px; display: flex; align-items: center; gap: 9px; }
.platform-card .plogo .mtn { color: var(--color-gold); }
.platform-card p { color: #9FAAB7; font-size: 14px; margin-top: var(--s3); flex: 1; }
.platform-card .link-arrow { margin-top: var(--s6); }
.platform-card .tag-soon {
  align-self: flex-start; margin-top: var(--s3);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-gold-text); border: 1px solid rgba(184,142,85,.4);
  border-radius: var(--radius-tag); padding: 3px 8px;
}
.platform-card--summit {
  background:
    linear-gradient(rgba(10,24,40,.78), rgba(10,24,40,.78)),
    url('/assets/img/summit-hero.jpg');
  background-size: cover;
  background-position: center;
  border-color: rgba(184,142,85,.2);
}
.platform-card--lifebridge {
  background:
    linear-gradient(rgba(10,24,40,.78), rgba(10,24,40,.78)),
    url('/assets/img/lifebridge-hero.jpg');
  background-size: cover;
  background-position: center;
  border-color: rgba(184,142,85,.2);
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; gap: var(--s8) var(--grid-gap); } }
.stat .num { font-family: var(--font-serif); font-weight: 500; font-size: 40px; color: var(--color-gold-text); line-height: 1; }
.stat .label { font-size: 13px; color: #9FAAB7; margin-top: var(--s3); max-width: 18ch; }

/* ==========================================================================
   Partners / Industries row
   ========================================================================== */
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--grid-gap); }
@media (max-width: 860px) { .partners { grid-template-columns: repeat(3, 1fr); row-gap: var(--s8); } }
@media (max-width: 460px) { .partners { grid-template-columns: repeat(2, 1fr); } }
.partner { display: flex; flex-direction: column; align-items: center; gap: var(--s4); text-align: center; }
.partner .icon-chip { margin: 0; width: 68px; height: 68px; }
.partner .icon-chip svg { width: 34px; height: 34px; }
.partner span { font-size: 14px; font-weight: 500; color: var(--color-ink); }

/* ==========================================================================
   Split feature (image + checklist)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s8); } }
.split--reverse .split-media { order: 2; }
@media (max-width: 900px) { .split--reverse .split-media { order: 0; } }
.checklist { list-style: none; padding: 0; margin-top: var(--s6); display: grid; gap: var(--s4); }
.checklist li { display: flex; gap: var(--s3); align-items: flex-start; font-size: 15px; }
.checklist li svg { width: 20px; height: 20px; color: var(--color-gold); flex: none; margin-top: 2px; }
.section--navy .checklist li, .section--navy-deep .checklist li { color: #C3CBD6; }

.media-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border);
  background: var(--color-navy-surface); aspect-ratio: 4 / 3; position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--dark { border-color: var(--color-border-dark); }

/* Decorative placeholder visual (brand-toned, used until real photography lands) */
.brand-visual {
  width: 100%; height: 100%; min-height: 260px; position: relative;
  display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(184,142,85,.16), transparent 45%),
    linear-gradient(160deg, #16293f, #0A1828 70%);
}
.brand-visual .wm { font-family: var(--font-serif); font-size: clamp(40px, 8vw, 78px); color: rgba(255,255,255,.07); letter-spacing: .06em; }
.brand-visual .wm-sub { position: absolute; bottom: 18px; left: 20px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(201,163,104,.55); }
.brand-visual::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 9px); }

/* App mockup screens (Summit / Lifebridge heroes) */
.app-shots { display: flex; gap: 14px; align-items: flex-end; }
.app-screen {
  border-radius: 8px; border: 1px solid rgba(255,255,255,.14); overflow: hidden;
  background: #0e1b2c; box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.app-screen .bar { height: 26px; background: #0b1726; display: flex; align-items: center; gap: 5px; padding-inline: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.app-screen .bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); display: block; }
.app-screen .body { padding: 14px; display: grid; gap: 9px; }
.app-screen .row { height: 9px; border-radius: 3px; background: rgba(255,255,255,.10); }
.app-screen .row.gold { background: rgba(184,142,85,.5); width: 55%; }
.app-screen .row.w70 { width: 70%; } .app-screen .row.w40 { width: 40%; } .app-screen .row.w85 { width: 85%; }
.app-screen.laptop { width: 360px; } .app-screen.phone { width: 120px; }
@media (max-width: 600px) { .app-screen.laptop { width: 100%; } .app-screen.phone { display: none; } }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--color-navy); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s8); flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #AEB8C4; margin-top: 6px; }
.cta-band .cta-actions { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* ==========================================================================
   Insights / article cards
   ========================================================================== */
.insight-card { padding: 0; overflow: hidden; }
.insight-card .thumb { aspect-ratio: 16 / 10; background: var(--color-navy-surface); position: relative; overflow: hidden; }
.insight-card .thumb .brand-visual { min-height: 0; }
.insight-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insight-card:hover .thumb img { transform: scale(1.04); }
.insight-card .insight-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--color-gold-text); background: rgba(184,142,85,.10);
  border-radius: var(--radius-tag); padding: 3px 8px; margin-bottom: var(--s3);
}
.insight-card h3 { font-size: 17px; line-height: 1.35; }
.insight-card .meta { font-size: 13px; color: var(--color-muted); margin-top: auto; padding-top: var(--s4); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; gap: var(--s4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--color-ink); }
.field .req { color: var(--color-gold); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--color-ink);
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 12px 14px; width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,142,85,.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
/* Honeypot anti-spam field — visually hidden, off-screen */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 13px; color: var(--color-muted); }
.form-status { font-size: 14px; border-radius: var(--radius); padding: 12px 14px; display: none; }
.form-status.is-ok { display: block; background: rgba(21,81,78,.08); color: #15514E; border: 1px solid rgba(21,81,78,.25); }
.form-status.is-err { display: block; background: rgba(176,58,46,.07); color: #B03A2E; border: 1px solid rgba(176,58,46,.25); }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s16); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s8); } }
.contact-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }
.contact-list { list-style: none; padding: 0; display: grid; gap: var(--s6); }
.contact-list li { display: flex; gap: var(--s4); align-items: flex-start; }
.contact-list .icon-chip { margin: 0; }
.contact-list .ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--color-muted); }
.contact-list .ci-value { font-size: 16px; color: var(--color-ink); font-weight: 500; margin-top: 2px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 42px; height: 42px; border-radius: var(--radius); border: 1px solid var(--color-border); display: grid; place-items: center; color: var(--color-navy); transition: border-color .2s var(--ease), color .2s var(--ease); }
.social-links a:hover { border-color: var(--color-gold); color: var(--color-gold-text); }
.social-links svg { width: 19px; height: 19px; }
/* Large social buttons — match btn-primary height, bigger icons */
.social-links--lg a { width: 48px; height: 48px; }
.social-links--lg svg { width: 26px; height: 26px; }
.map-link { display: block; width: 100%; height: 100%; position: relative; }
.map-link img { width: 100%; height: 100%; object-fit: cover; }
.map-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 18px 14px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: #fff;
  background: linear-gradient(transparent, rgba(5,15,28,.85));
}

/* Icon inside buttons (e.g. WhatsApp CTA) */
.btn svg { width: 18px; height: 18px; flex: none; }

/* Office hours block */
.hours-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px 24px; background: var(--color-white); box-shadow: var(--shadow-card); }
.hours-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 17px; color: var(--color-ink); }
.hours-head svg { width: 20px; height: 20px; color: var(--color-gold); flex: none; }
.hours-list { list-style: none; padding: 0; margin-top: var(--s4); display: grid; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--color-border); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--color-ink); font-weight: 500; }
.hours-list li span:last-child { color: var(--color-muted); }
.hours-list .closed { color: var(--color-muted); font-style: italic; }

/* ==========================================================================
   Founders
   ========================================================================== */
.founders-list { display: grid; gap: var(--s8); max-width: 1000px; margin-inline: auto; }
.founder-card {
  display: grid; grid-template-columns: 320px 1fr;
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
}
.founder-photo { background: #ECEAE4; min-height: 100%; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.founder-body h3 { font-size: 25px; margin-bottom: 4px; }
.founder-role { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--color-gold-text); margin-bottom: var(--s4); }
.founder-body p { font-size: 15px; color: var(--color-muted); line-height: 1.65; }
.founder-creds { font-size: 13px; color: var(--color-ink); margin-top: var(--s4); display: flex; gap: 8px; align-items: flex-start; }
.founder-creds svg { width: 17px; height: 17px; color: var(--color-gold); flex: none; margin-top: 1px; }
.founder-linkedin {
  display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s6); align-self: flex-start;
  font-size: 14px; font-weight: 600; color: var(--color-navy);
  border: 1px solid #C9CFD6; border-radius: var(--radius); padding: 9px 16px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.founder-linkedin svg { width: 18px; height: 18px; color: var(--color-gold); }
.founder-linkedin:hover { border-color: var(--color-gold); color: var(--color-gold-text); }
@media (max-width: 720px) {
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { aspect-ratio: 4 / 3; }
  .founder-body { padding: 28px; }
}

/* ==========================================================================
   Prose (legal pages)
   ========================================================================== */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin-top: var(--s12); margin-bottom: var(--s4); }
.prose h3 { font-size: 18px; margin-top: var(--s8); margin-bottom: var(--s3); }
.prose p, .prose li { color: #38414E; font-size: 15.5px; line-height: 1.7; }
.prose p { margin-bottom: var(--s4); }
.prose ul, .prose ol { margin: 0 0 var(--s4) 0; padding-left: 22px; display: grid; gap: 8px; }
.prose a { color: var(--color-gold-text); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--color-ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-navy-deep); color: #AEB8C4; padding-block: var(--s16) var(--s8); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s8); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: var(--s4); }
.footer-brand p { font-size: 14px; color: #8A96A4; max-width: 34ch; }
.footer-social { display: flex; gap: var(--s3); margin-top: var(--s6); }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid var(--color-border-dark); display: grid; place-items: center; color: #AEB8C4; transition: border-color .2s var(--ease), color .2s var(--ease); }
.footer-social a:hover { border-color: var(--color-gold); color: var(--color-gold-text); }
.footer-col h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: var(--s4); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--s3); }
.footer-col a { font-size: 14px; color: #9FAAB7; transition: color .18s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact .ci { font-size: 14px; color: #9FAAB7; display: flex; gap: 10px; align-items: flex-start; margin-bottom: var(--s3); }
.footer-contact .ci svg { width: 16px; height: 16px; color: var(--color-gold); flex: none; margin-top: 3px; }
.footer-contact .footer-cta { margin-top: var(--s6); color: #000; }
.footer-contact .footer-cta:hover { color: #000; }
.footer-bottom { border-top: 1px solid var(--color-border-dark); margin-top: var(--s12); padding-top: var(--s6); display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; align-items: center; }
.footer-bottom p, .footer-bottom a { font-size: 13px; color: #7E8B99; }
.footer-bottom .legal-links { display: flex; gap: var(--s6); flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--color-navy-surface); color: #D7DDE5;
  border: 1px solid var(--color-border-dark); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: 0 18px 50px rgba(0,0,0,.35);
  display: none; gap: var(--s6); align-items: center; justify-content: space-between; flex-wrap: wrap;
  max-width: 980px; margin-inline: auto;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { font-size: 13.5px; color: #B9C2CD; max-width: 64ch; }
.cookie-banner a { color: var(--color-gold-text); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--s3); flex: none; }
.cookie-actions .btn { padding: 10px 18px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Only hide-then-reveal when JS is available (no-JS visitors see content). */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.stack-sm > * + * { margin-top: var(--s4); }
.mt-6 { margin-top: var(--s6); } .mt-8 { margin-top: var(--s8); } .mt-12 { margin-top: var(--s12); }
.text-center { text-align: center; }
.maxw-720 { max-width: 720px; } .maxw-640 { max-width: 640px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-gold); color: var(--color-navy); padding: 10px 16px; border-radius: var(--radius); z-index: 300; font-weight: 600; }
.skip-link:focus { left: 12px; top: 12px; }
