/* ============================================================
   TrueRise Financial — public website
   Design direction: editorial-financial minimalism.
   Tokens carry forward from the FNA app (ink/gold/cream + Fraunces).
   ============================================================ */

:root {
  /* Ink (deep navy) ---------------------------------------------------- */
  --ink:           #15233e;
  --ink-soft:      #36456a;
  --ink-muted:     #7e8aa5;
  --ink-faint:     #b9c0d1;

  /* Paper — near-white base, warm cream as deliberate accent --------- */
  --paper:         #fdfcfa;   /* main surface: barely-warm near-white */
  --paper-soft:    #f3ecdb;   /* deepest warm wash (hero glow, etc.)  */
  --paper-bright:  #ffffff;   /* crisp white for cards                */
  --paper-warm:    #f7f1e2;   /* warm cream — alternating sections    */
  --paper-cream:   #faf6ec;   /* mid cream — secondary accent         */

  /* Gold (signature accent) — warm honey-gold -------------------------- */
  --gold:          #c08a2e;   /* livelier, warmer — buttons, accents  */
  --gold-deep:     #91661d;   /* dark enough for text on light bg     */
  --gold-soft:     #e6bd6e;   /* luminous highlight — eyebrows, glow  */
  --gold-wash:     #f8edd4;   /* warm tint wash                       */
  --gold-faint:    #efe2c4;   /* faintest wash                        */

  /* Lines & structure -------------------------------------------------- */
  --line:          #e9e4d6;
  --line-soft:     #f0ebdf;
  --line-deep:     #d3c8aa;

  /* Typography --------------------------------------------------------- */
  --serif:         'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:          'Instrument Sans', 'Helvetica Neue', system-ui, sans-serif;
  --mono:          'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout ------------------------------------------------------------- */
  --max-w:         1180px;
  --pad-x:         max(24px, 4vw);
  --topbar-h:      72px;
}

/* ============================================================
   Reset
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}
button { font: inherit; }

::selection {
  background: var(--gold-wash);
  color: var(--gold-deep);
}

/* ============================================================
   Containers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 237, 0.94);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-h);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(168, 131, 57, .28));
}
.brand-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.brand-word strong {
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.nav a {
  color: var(--ink-soft);
  padding-block: 4px;
  border-bottom: 1.5px solid transparent;
}
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.nav-cta { display: inline-flex; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px var(--pad-x) 28px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-bright);
}
.mobile-menu a {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu a.btn {
  align-self: flex-start;
}

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu:not([hidden]) { display: flex; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper-bright);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #0d1730;
  border-color: #0d1730;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(21, 35, 62, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--gold-deep); }
.btn-gold {
  background: var(--gold);
  color: var(--paper-bright);
  border-color: var(--gold);
  padding: 14px 28px;
  font-size: 15.5px;
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -10px rgba(168, 131, 57, 0.6);
}

/* ============================================================
   Eyebrow (small caps label used at start of each section)
   ============================================================ */
.eyebrow,
.eyebrow-light {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow-light { color: var(--gold-soft); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -20%, var(--gold-wash) 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 110%, var(--paper-soft) 0%, transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.hero-inner {
  padding-block: clamp(80px, 13vw, 160px);
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168, 131, 57, 0.15);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.hero-sub {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 28px;
}

.hero-mission {
  display: flex;
  align-items: baseline;
  gap: 14px;
  max-width: 600px;
  margin: 0 0 44px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.5;
  color: var(--gold-deep);
}
.hero-mission-rule {
  flex-shrink: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

/* Trust strip */
.trust-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px dotted var(--line-deep);
  padding-top: 28px;
  max-width: 720px;
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.trust-strip li:last-child { border-right: 0; }
.trust-strip li + li {
  padding-left: 24px;
}
.trust-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.trust-value {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .trust-strip li:nth-child(2) { border-right: 0; }
  .trust-strip li:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust-strip li + li { padding-left: 0; }
  .trust-strip li:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }
  .trust-strip li:nth-child(even) { padding-left: 24px; }
}

/* Hero image — full-width banner above text content */
.hero-image {
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  /* The image has cream background that blends seamlessly with the page */
}
/* The image sits BEFORE the hero text in document order, but visually
   we want the text on top. Flip the order: image last, but position
   first via reverse stacking on the hero container. */

/* ============================================================
   Section base
   ============================================================ */
.section {
  padding-block: clamp(80px, 9vw, 140px);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
/* Plain sections get a faint warm glow from the upper right —
   barely perceptible, just enough to lift them off flatness */
.section:not(.section-alt):not(.section-feature) {
  background:
    radial-gradient(780px 420px at 88% -6%, rgba(230, 189, 110, 0.13), transparent 60%),
    radial-gradient(680px 380px at 4% 104%, rgba(230, 189, 110, 0.07), transparent 58%),
    var(--paper);
}
.section-alt {
  background:
    radial-gradient(820px 440px at 8% -8%, rgba(192, 138, 46, 0.12), transparent 60%),
    radial-gradient(700px 400px at 100% 106%, rgba(230, 189, 110, 0.10), transparent 58%),
    var(--paper-warm);
}
/* Feature section — a confident warm honey band for page rhythm */
.section-feature {
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(230, 189, 110, 0.34), transparent 62%),
    radial-gradient(820px 460px at 100% 108%, rgba(192, 138, 46, 0.20), transparent 60%),
    linear-gradient(168deg, #f6e9c8 0%, #f3e3ba 100%);
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
/* Within the honey band, borders and muted text need warmer/darker
   values to keep contrast and visibility against the gold */
.section-feature .process-step {
  border-top-color: rgba(145, 102, 29, 0.26);
}
.section-feature .process-step:last-child {
  border-bottom-color: rgba(145, 102, 29, 0.26);
}
.section-feature .process-num {
  color: #7a5518;
}
.section-feature .process-meta {
  color: #6b5a3a;
}
.section-feature .approach-banner {
  border-color: rgba(145, 102, 29, 0.22);
}
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0;
}

/* ============================================================
   Pillars (services grid)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillars-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 40px 28px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background .25s ease;
}
.pillar:hover {
  background: var(--paper-warm);
}

/* Imaged pillar variant: full-width header image */
.pillar-imaged {
  padding-top: 0;
}
.pillar-image {
  margin: 0 -28px 24px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.pillar-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pillar-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pillar-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.pillar-tags {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pillar-tags li {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

@media (max-width: 1000px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .pillars-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   Process (numbered steps)
   ============================================================ */

/* Approach banner — wide image between section lede and process steps */
.approach-banner {
  margin: 0 0 56px;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.approach-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* About inset — portrait image sits above the facts panel in right column */
.about-inset {
  margin: 0 0 28px;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.about-inset img {
  display: block;
  width: 100%;
  height: auto;
}

.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  padding-top: 8px;
}
.process-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 12px;
}
.process-meta {
  font-family: var(--sans);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0;
}
.process-body p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 760px;
}

@media (max-width: 720px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .process-num { padding-top: 0; }
}

/* ============================================================
   Principles
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.principle {
  padding: 44px 32px 40px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.principle:last-child { border-right: 0; padding-right: 0; }
.principle:not(:first-child) { padding-left: 32px; }
.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.principle-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.principle-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 920px) {
  .principles { grid-template-columns: 1fr; }
  .principle {
    padding: 32px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle:last-child { border-bottom: 0; }
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 580px;
}
.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}
.about-title {
  margin-bottom: 32px;
}
.about-meta {
  font-size: 14.5px !important;
  color: var(--ink-muted) !important;
  font-style: italic;
  border-top: 1px dotted var(--line-deep);
  padding-top: 22px;
  margin-top: 28px !important;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 100px;
}

/* Practice at a glance — replaces the older photo placeholder */
.about-facts {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  position: relative;
}
.about-facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
}
.about-facts-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}

.facts-list {
  margin: 0;
  padding: 0;
}
.fact-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  align-items: baseline;
}
.fact-row:last-child { border-bottom: 0; }
.fact-row dt {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.fact-row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-side {
    position: static;
    max-width: 340px;
  }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background-color: var(--ink);
  background-image: image-set(
    url("/cta-backdrop-960.jpg") 1x,
    url("/cta-backdrop.jpg") 2x
  );
  background-image: -webkit-image-set(
    url("/cta-backdrop-960.jpg") 1x,
    url("/cta-backdrop.jpg") 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--paper-bright);
  padding-block: clamp(90px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
/* Browsers without image-set support fall back to the larger image */
@supports not (background-image: image-set(url("test.jpg") 1x)) {
  .cta { background-image: url("/cta-backdrop.jpg"); }
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Subtle navy darkening over the backdrop so text stays legible
     even where the doorway glow is brightest */
  background:
    linear-gradient(to right, rgba(21, 35, 62, 0.78) 0%, rgba(21, 35, 62, 0.45) 50%, rgba(21, 35, 62, 0.78) 100%),
    radial-gradient(800px 400px at 80% -20%, rgba(168, 131, 57, 0.10), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper-bright);
  margin: 0 0 22px;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-soft);
}
.cta-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(251, 247, 237, 0.78);
  margin: 0 0 40px;
  max-width: 540px;
  margin-inline: auto;
}
.cta-actions { margin-bottom: 60px; }

/* ============================================================
   Mission band
   ============================================================ */
.mission {
  background: var(--ink);
  color: var(--paper-bright);
  padding-block: clamp(72px, 10vw, 128px);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 340px at 15% -10%, rgba(168, 131, 57, 0.16), transparent 62%),
    radial-gradient(620px 320px at 100% 115%, rgba(168, 131, 57, 0.13), transparent 60%);
  pointer-events: none;
}
.mission-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.mission-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--paper-bright);
  margin: 18px 0 0;
}
.mission-statement em {
  font-style: italic;
  color: var(--gold-soft);
}
.mission-goal {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 36px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 237, 0.74);
}
.mission-goal-marker {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(168, 131, 57, 0.18);
  flex-shrink: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dotted rgba(216, 184, 106, 0.35);
  padding-top: 36px;
  margin-top: 28px;
}
.contact-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 520px;
  margin-inline: auto;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-inline: 16px;
  border-right: 1px solid rgba(216, 184, 106, 0.18);
}
.contact-block:last-child { border-right: 0; }
.contact-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.contact-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--paper-bright);
  letter-spacing: -0.005em;
}
a.contact-value:hover { color: var(--gold-soft); }

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .contact-block {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 184, 106, 0.18);
    padding: 0 0 18px;
  }
  .contact-block:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--paper-bright);
  padding-block: 64px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 320px;
}
.footer-mark {
  width: 32px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 1px 3px rgba(168, 131, 57, .28));
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 14px;
}
.footer-wordmark strong { font-weight: 600; }
.footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-col-head {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.footer-fineprint {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-fineprint p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 920px;
}

@media (max-width: 920px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Reveal-on-scroll micro-animation
   ============================================================ */
.section,
.cta,
.hero-inner > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.section.is-in,
.cta.is-in,
.hero-inner > *.is-in {
  opacity: 1;
  transform: translateY(0);
}
.hero-inner > *:nth-child(1).is-in { transition-delay: 0s; }
.hero-inner > *:nth-child(2).is-in { transition-delay: .08s; }
.hero-inner > *:nth-child(3).is-in { transition-delay: .16s; }
.hero-inner > *:nth-child(4).is-in { transition-delay: .24s; }
.hero-inner > *:nth-child(5).is-in { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .section,
  .cta,
  .hero-inner > * {
    opacity: 1;
    transform: none;
  }
}
