/* ================================================================
   VIA — PRIVATE ADVISORY
   Palette: Deep navy · Warm ivory · Soft charcoal · Muted brass/gold
   Typography: Cormorant Garamond (display) · Switzer (body)
   Concept: Family office meets editorial. Quiet authority. Timeless.
   ================================================================ */

:root, [data-theme='light'] {
  /* ── Type scale ─────────────────────────────────────────── */
  --text-xs:   clamp(0.6875rem, 0.65rem + 0.2vw, 0.8125rem);
  --text-sm:   clamp(0.8125rem, 0.77rem + 0.22vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 0.95rem + 0.6vw, 1.375rem);
  --text-xl:   clamp(1.375rem,  1.1rem  + 1.4vw, 2.125rem);
  --text-2xl:  clamp(1.875rem,  1.2rem  + 2.2vw, 3.25rem);
  --text-3xl:  clamp(2.5rem,    1.2rem  + 4vw,   5rem);
  --text-hero: clamp(3.25rem,   1rem    + 7vw,   8.5rem);

  /* ── Spacing (4px base) ─────────────────────────────────── */
  --space-1:  0.25rem;   --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;      --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;      --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;      --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;      --space-40: 10rem;    --space-48: 12rem;

  /* ── Surfaces ────────────────────────────────────────────── */
  --color-bg:              #F5F2EB;   /* warm parchment */
  --color-surface:         #F9F7F2;
  --color-surface-2:       #FDFCFA;
  --color-surface-ink:     #EDE9DF;   /* slightly richer */
  --color-divider:         #D8D3C8;
  --color-border:          #C9C4B7;

  /* ── Text ────────────────────────────────────────────────── */
  --color-text:            #1A1B1F;   /* near-black with cool undertone */
  --color-text-muted:      #5C5A54;
  --color-text-faint:      #9A9790;
  --color-text-inverse:    #F9F7F2;

  /* ── Navy (primary) ─────────────────────────────────────── */
  --color-navy:            #1C2540;
  --color-navy-bg:         #1C2540;   /* always deep navy — for section backgrounds */
  --color-navy-mid:        #253060;
  --color-navy-light:      #3A4B7A;
  --color-navy-highlight:  #D4D9E8;

  /* ── Gold / brass (accent) ──────────────────────────────── */
  --color-gold:            #A07A3C;
  --color-gold-hover:      #85632E;
  --color-gold-light:      #EDE3D0;
  --color-gold-rule:       #C8A96E;   /* for thin decorative lines */

  /* ── Charcoal ────────────────────────────────────────────── */
  --color-charcoal:        #2E2E2E;

  /* ── Radii ───────────────────────────────────────────────── */
  --radius-sm:   0.1875rem;
  --radius-md:   0.375rem;
  --radius-lg:   0.625rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* ── Motion ──────────────────────────────────────────────── */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);

  /* ── Shadows (navy-tinted) ───────────────────────────────── */
  --shadow-sm: 0 1px 3px oklch(0.18 0.04 250 / 0.07);
  --shadow-md: 0 4px 20px oklch(0.18 0.04 250 / 0.1);
  --shadow-lg: 0 16px 48px oklch(0.18 0.04 250 / 0.14);

  /* ── Content widths ──────────────────────────────────────── */
  --content-narrow:  600px;
  --content-default: 920px;
  --content-wide:    1160px;

  /* ── Fonts ───────────────────────────────────────────────── */
  --font-display: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --font-body:    'Switzer', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Dark Mode ───────────────────────────────────────────────── */
[data-theme='dark'] {
  --color-bg:             #0F1118;
  --color-surface:        #141720;
  --color-surface-2:      #191D28;
  --color-surface-ink:    #131622;
  --color-divider:        #252A38;
  --color-border:         #313749;
  --color-text:           #E8E5DC;
  --color-text-muted:     #8A8880;
  --color-text-faint:     #595750;
  --color-text-inverse:   #0F1118;
  --color-navy:           #4A6FC4;
  --color-navy-bg:        #1C2540;   /* stays deep for section backgrounds */
  --color-navy-mid:       #6085D4;
  --color-navy-light:     #7A9AE0;
  --color-navy-highlight: #1E2844;
  --color-gold:           #C9A05A;
  --color-gold-hover:     #E0B870;
  --color-gold-light:     #2A2418;
  --color-gold-rule:      #8A6E3A;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 20px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 16px 48px oklch(0 0 0 / 0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0F1118;
    --color-surface:        #141720;
    --color-surface-2:      #191D28;
    --color-surface-ink:    #131622;
    --color-divider:        #252A38;
    --color-border:         #313749;
    --color-text:           #E8E5DC;
    --color-text-muted:     #8A8880;
    --color-text-faint:     #595750;
    --color-text-inverse:   #0F1118;
    --color-navy:           #4A6FC4;
  --color-navy-bg:        #1C2540;   /* stays deep for section backgrounds */
    --color-navy-mid:       #6085D4;
    --color-navy-light:     #7A9AE0;
    --color-navy-highlight: #1E2844;
    --color-gold:           #C9A05A;
    --color-gold-hover:     #E0B870;
    --color-gold-light:     #2A2418;
    --color-gold-rule:      #8A6E3A;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 20px oklch(0 0 0 / 0.45);
    --shadow-lg: 0 16px 48px oklch(0 0 0 / 0.6);
  }
}

/* ================================================================
   LAYOUT
   ================================================================ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 6vw, var(--space-16));
}
.container--default { max-width: var(--content-default); }
.container--narrow  { max-width: var(--content-narrow);  }

section {
  padding-block: clamp(var(--space-20), 10vw, var(--space-48));
}

/* ── Ornamental horizontal rule ──────────────────────────────── */
.rule {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-divider);
}
.rule-mark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold-rule);
}

/* ── Section overline ────────────────────────────────────────── */
.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-4);
}

/* ── Display heading ─────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

/* ── Body lead ───────────────────────────────────────────────── */
.lead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 56ch;
}

/* ================================================================
   HEADER
   ================================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--space-4);
  transition:
    background 500ms var(--ease-out),
    border-color 500ms var(--ease-out),
    box-shadow 500ms var(--ease-out);
}

.site-header.scrolled {
  background: color-mix(in oklab, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — wordmark SVG */
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* SVG <text> fill: CSS class override so dark mode can switch it */
.logo-wordmark { fill: #1C2540; }
[data-theme='dark'] .logo-wordmark { fill: #E8E5DC; }

/* Nav monogram + wordmark lockup */
.nav-logo-lockup {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.nav-logo-wordmark {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #E8E5DC;
  text-transform: uppercase;
  line-height: 1;
}

.site-header.scrolled .nav-logo-text {
  color: var(--color-navy);
}

[data-theme='dark'] .nav-logo-text,
[data-theme='dark'] .site-header.scrolled .nav-logo-text {
  color: #E8E5DC;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
}
.nav-links a:hover { color: #E8E5DC; }

/* When header is scrolled (light bg), revert to dark text */
.site-header.scrolled .nav-links a { color: var(--color-text-muted); }
.site-header.scrolled .nav-links a:hover { color: var(--color-navy); }
.site-header.scrolled .btn-nav { color: var(--color-text-muted); border-color: var(--color-border); }

/* Dark mode — nav links always white-ivory, hover stays white + gold underline */
[data-theme='dark'] .nav-links a { color: #C8C4B8; }
[data-theme='dark'] .nav-links a:hover { color: #F0EDE6; }
[data-theme='dark'] .site-header.scrolled .nav-links a { color: #C8C4B8; }
[data-theme='dark'] .site-header.scrolled .nav-links a:hover { color: #F0EDE6; }

/* Dark mode — services button: white letters, visible border */
[data-theme='dark'] .btn-nav {
  color: #E8E5DC;
  border-color: oklch(0.82 0.01 60 / 0.25);
}

/* Dark mode — subscribe button gets a visible ivory border so it reads against dark header */
[data-theme='dark'] .btn-nav-cta {
  color: #E8E5DC;
  border-color: oklch(0.82 0.01 60 / 0.3);
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.btn-nav {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8E5DC;
  border-color: oklch(0.82 0.01 60 / 0.3);
  text-decoration: none;
  padding: var(--space-2) var(--space-5);
  border: 1px solid oklch(0.82 0.01 60 / 0.3);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    background var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}
.btn-nav:hover {
  background: linear-gradient(135deg, #7A5C1E 0%, #9A7530 15%, #B8922E 30%, #D4AA50 45%, #EDD078 55%, #F5E098 60%, #EDD078 65%, #C89840 78%, #A07830 90%, #8A6520 100%);
  color: #1C2540;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(200, 160, 60, 0.35);
  transform: translateY(-1px);
}

.btn-nav-cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8E5DC;
  background: var(--color-navy-bg);
  text-decoration: none;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition:
    background var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}
.btn-nav-cta:hover {
  background: linear-gradient(135deg, #7A5C1E 0%, #9A7530 15%, #B8922E 30%, #D4AA50 45%, #EDD078 55%, #F5E098 60%, #EDD078 65%, #C89840 78%, #A07830 90%, #8A6520 100%);
  color: #1C2540;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 160, 60, 0.35);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
}
.theme-toggle:hover { color: var(--color-text); }

.nav-mobile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
}

@media (max-width: 860px) {
  .nav-links, .btn-nav { display: none; }
  .nav-mobile-btn { display: flex; }
}
@media (max-width: 480px) {
  .btn-nav-cta { display: none; }
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(var(--space-48), 16vw, 12rem);
  padding-bottom: clamp(var(--space-24), 10vw, var(--space-48));
}

/* Full-bleed textured navy background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-navy-bg);
  z-index: 0;
}

/* Subtle noise grain overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Radial light — top left, warm */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, oklch(0.52 0.06 82 / 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 90% 90%, oklch(0.25 0.06 250 / 0.5) 0%, transparent 60%),
    linear-gradient(170deg, oklch(0.22 0.06 255) 0%, oklch(0.14 0.05 250) 100%);
}

/* Thin gold horizontal rule — sits in clear space between nav and content */
.hero-rule {
  position: absolute;
  left: 0;
  right: 0;
  top: 158px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, oklch(0.68 0.08 80 / 0.18) 15%, oklch(0.68 0.08 80 / 0.18) 85%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero logo mark — transparent PNG wordmark */
.hero-logo-mark {
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}

.hero-logo-img {
  width: clamp(180px, 24vw, 260px);
  height: auto;
  display: block;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(0.68 0.08 80 / 0.75);
  margin-bottom: clamp(var(--space-6), 2.5vw, var(--space-10));
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: oklch(0.68 0.08 80 / 0.6);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 1.2rem + 6.5vw, 8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: clamp(var(--space-8), 3vw, var(--space-16));
  max-width: 18ch;
}

.hero-heading em {
  font-style: normal;
  color: oklch(0.75 0.08 80);  /* warm gold */
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.85rem + 0.4vw, 1.125rem);
  font-weight: 300;
  line-height: 1.8;
  color: oklch(0.75 0.01 250 / 0.7);
  max-width: 46ch;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: oklch(0.68 0.08 80);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition:
    background var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}
.btn-primary:hover {
  background: oklch(0.75 0.07 80);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px oklch(0.68 0.08 80 / 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: oklch(0.75 0.01 250 / 0.7);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid oklch(0.75 0.01 250 / 0.25);
  transition:
    color var(--transition-interactive),
    border-color var(--transition-interactive);
}
.btn-ghost:hover {
  color: #fff;
  border-color: oklch(0.75 0.01 250 / 0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: oklch(0.72 0.01 250 / 0.65);
}
.hero-scroll span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, oklch(0.65 0.01 250 / 0.5), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.5; transform: scaleY(1) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(1.1) translateY(4px); }
}

/* ================================================================
   PHILOSOPHY
   ================================================================ */

.philosophy {
  background: var(--color-bg);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(var(--space-12), 8vw, var(--space-32));
  align-items: start;
}

.philosophy-aside {
  position: sticky;
  top: var(--space-32);
}

.philosophy-aside .overline { margin-bottom: var(--space-6); }

.philosophy-aside-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.philosophy-body p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 62ch;
}

.philosophy-body p strong {
  font-weight: 500;
  color: var(--color-text);
}

/* Pull quote */
.pull-quote {
  border-left: 2px solid var(--color-gold-rule);
  padding-left: var(--space-8);
  padding-block: var(--space-8);
  margin-block: var(--space-4);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--color-text);
  max-width: 44ch;
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-px, 1px);
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  margin-top: var(--space-8);
}

.value-cell {
  background: var(--color-surface);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.value-cell strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  font-style: italic;
  color: var(--color-text);
}

.value-cell span {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 860px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-aside { position: static; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FOUNDER
   ================================================================ */

.founder {
  background: var(--color-navy-bg);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, oklch(0.52 0.06 82 / 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 0%,   oklch(0.25 0.06 250 / 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Grain overlay */
.founder::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--space-12), 7vw, var(--space-24));
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-image-col {
  position: relative;
}

.founder-portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: oklch(0.22 0.05 250);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
}

.founder-portrait svg {
  width: 100%;
  height: 100%;
}

/* Thin gold border frame offset */
.founder-portrait-frame {
  position: absolute;
  inset: var(--space-4) calc(-1 * var(--space-4)) calc(-1 * var(--space-4)) var(--space-4);
  border: 1px solid oklch(0.68 0.08 80 / 0.25);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.founder-text .overline {
  color: oklch(0.68 0.08 80 / 0.8);
  margin-bottom: var(--space-6);
}

.founder-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-8);
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.founder-body p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: oklch(0.72 0.02 250 / 0.75);
  max-width: 58ch;
}

.founder-domains {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.domain-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.68 0.08 80 / 0.7);
  border: 1px solid oklch(0.68 0.08 80 / 0.2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-sm);
}

@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-image-col { max-width: 300px; }
  .founder-portrait-frame { display: none; }
}

/* ================================================================
   SERVICES
   ================================================================ */

.services {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

.services-intro {
  text-align: center;
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}

.services-intro .overline { text-align: center; }

.services-intro-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.services-intro p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Three-tier layout */
.services-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-5);
}

.tier {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    box-shadow var(--transition-interactive),
    border-color var(--transition-interactive);
}

.tier--featured {
  background: var(--color-navy-bg);
  border-color: transparent;
  color: #fff;
}

.tier--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(0.52 0.06 82 / 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.tier:hover:not(.tier--featured):not(.tier--gold) {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.tier-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tier-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--color-gold-rule);
}

.tier-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.tier--featured .tier-name { color: #fff; }

.tier-price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  letter-spacing: 0.02em;
}

.tier--featured .tier-price {
  color: oklch(0.72 0.02 250 / 0.6);
  border-bottom-color: oklch(0.68 0.08 80 / 0.2);
}

.tier-price strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  font-style: italic;
}

.tier--featured .tier-price strong { color: #fff; }

.tier-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: none;
}

.tier--featured .tier-desc { color: oklch(0.72 0.02 250 / 0.7); }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}

.tier--featured .tier-features li { color: oklch(0.72 0.02 250 / 0.75); }

.tier-check {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition:
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    background var(--transition-interactive),
    transform var(--transition-interactive);
}

.tier-cta:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-surface-ink);
  transform: translateY(-1px);
}

.tier-cta--gold {
  background: oklch(0.68 0.08 80);
  border-color: transparent;
  color: var(--color-navy);
  font-weight: 600;
}

.tier-cta--gold:hover {
  background: oklch(0.75 0.07 80);
  color: var(--color-navy);
  border-color: transparent;
}

.tier-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-4);
  letter-spacing: 0.04em;
}

.tier--featured .tier-note { color: oklch(0.68 0.01 250 / 0.7); }

/* ── Gold tier — VIA Counsel ─────────────────────────────────── */
.tier--gold {
  background:
    linear-gradient(145deg,
      #7A5C1E 0%,
      #9A7530 15%,
      #B8922E 30%,
      #D4AA50 45%,
      #EDD078 55%,
      #F5E098 60%,
      #EDD078 65%,
      #C89840 78%,
      #A07830 90%,
      #8A6520 100%
    );
  border-color: #C8A05A;
  position: relative;
  overflow: hidden;
}

/* Metallic sheen sweep */
.tier--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 245, 210, 0.18) 40%,
    rgba(255, 250, 230, 0.32) 50%,
    rgba(255, 245, 210, 0.18) 60%,
    transparent 80%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Subtle inner glow on top edge */
.tier--gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 245, 200, 0.6) 30%,
    rgba(255, 255, 220, 0.9) 50%,
    rgba(255, 245, 200, 0.6) 70%,
    transparent
  );
  pointer-events: none;
}

.tier--gold:hover {
  box-shadow:
    0 0 0 1px rgba(200, 160, 90, 0.6),
    0 8px 32px rgba(160, 122, 60, 0.35),
    0 24px 60px rgba(100, 75, 25, 0.25);
  transform: translateY(-4px);
}

/* Text on gold — use near-black for strong contrast on bright gold */
.tier--gold .tier-label {
  color: #1C1408;
}
.tier--gold .tier-label::before {
  background: rgba(28, 20, 8, 0.5);
}

.tier--gold .tier-name {
  color: #110D04;
  text-shadow: 0 1px 2px rgba(255, 240, 180, 0.25);
}

.tier--gold .tier-price {
  color: #3A2A0A;
  border-bottom-color: rgba(28, 20, 8, 0.2);
}

.tier--gold .tier-price strong {
  color: #110D04;
}

.tier--gold .tier-desc {
  color: #2A1E08;
  font-weight: 400;
}

.tier--gold .tier-features li {
  color: #2A1E08;
  font-weight: 400;
}

.tier--gold .tier-check {
  color: #1C1408;
}

.tier--gold .tier-cta {
  background: #1C2540;
  color: #E8C97A;
  border-color: transparent;
  font-weight: 600;
}

.tier--gold .tier-cta:hover {
  background: #253060;
  color: #F0D88A;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28, 37, 64, 0.4);
}

.tier--gold .tier-note {
  color: rgba(30, 20, 5, 0.5);
}

@media (max-width: 960px) {
  .services-tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ================================================================
   THE BRIEF — EDITORIAL SECTION
   ================================================================ */

.the-brief {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  position: relative;
  overflow: hidden;
}

/* Large background typography */
.brief-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-text);
  opacity: 0.025;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brief-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(var(--space-12), 8vw, var(--space-32));
  align-items: center;
  position: relative;
  z-index: 1;
}

.brief-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.brief-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.brief-body p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 58ch;
}

.brief-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.brief-topic {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-sm);
}

/* Email form */
.brief-form {
  display: flex;
  gap: 0;
  max-width: 440px;
}

.brief-input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-interactive);
}

.brief-input::placeholder {
  color: var(--color-text-faint);
  font-style: italic;
}

.brief-input:focus {
  border-color: var(--color-navy-light);
  background: var(--color-surface-2);
}

.brief-submit {
  padding: var(--space-4) var(--space-6);
  background: var(--color-navy-bg);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    border-color var(--transition-interactive);
}

.brief-submit:hover {
  background: var(--color-navy-mid);
  /* uses navy-mid which is fine */
  border-color: var(--color-navy-mid);
}

.brief-disclaimer {
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
}

/* Sample issue card */
.brief-sample {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.sample-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.sample-overline::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--color-gold-rule);
}

.sample-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.sample-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  max-width: none;
}

.sample-divider {
  height: 1px;
  background: var(--color-divider);
  margin-bottom: var(--space-5);
}

.sample-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sample-date {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
}

.sample-read {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.sample-read:hover { color: var(--color-gold-hover); }

@media (max-width: 860px) {
  .brief-grid { grid-template-columns: 1fr; }
  .brief-sample { display: none; }
  .brief-form { max-width: 100%; }
}

/* ================================================================
   CLOSING / CTA
   ================================================================ */

.closing {
  background: var(--color-surface-ink);
  border-top: 1px solid var(--color-divider);
  text-align: center;
}

.closing-content {
  max-width: 52ch;
  margin-inline: auto;
}

.closing-rule {
  width: 1px;
  height: 48px;
  background: var(--color-gold-rule);
  margin-inline: auto;
  margin-bottom: var(--space-8);
  opacity: 0.6;
}

.closing-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.closing-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: none;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  background: var(--color-navy-bg);
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  line-height: 1.7;
  color: oklch(0.6 0.02 250 / 0.6);
  margin-top: var(--space-4);
  max-width: 36ch;
  max-width: none;
}

.footer-links {
  display: flex;
  gap: var(--space-12);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.68 0.08 80 / 0.7);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: oklch(0.72 0.01 250 / 0.78);  /* raised from 0.55 */
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-col a:hover { color: oklch(0.9 0.01 250 / 0.9); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(0.68 0.08 80 / 0.12);
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: oklch(0.5 0.02 250 / 0.5);
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: oklch(0.6 0.02 250 / 0.45);
}

/* ================================================================
   FADE-IN REVEALS (opacity only — no layout shift)
   ================================================================ */

.fade-in {
  opacity: 1; /* fallback */
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: fadeReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}

@keyframes fadeReveal {
  to { opacity: 1; }
}

/* JS fallback for browsers without scroll-driven animation */
.fade-in.visible { opacity: 1; }

/* Stagger helpers (applied via JS or inline style) */
.fade-delay-1 { animation-delay: 0.08s; }
.fade-delay-2 { animation-delay: 0.16s; }
.fade-delay-3 { animation-delay: 0.24s; }

/* ================================================================
   ELEVATED EDITORIAL TOUCHES
   ================================================================ */

/* 1. Hero heading — "weightful" drops in warm gold with an
      extra-wide tracked italic that breaks slightly from the grid.
      The oversized first letter of the hero heading gets a
      barely-there drop-cap treatment. */
.hero-heading {
  position: relative;
}

/* Decorative large numeral / dingbat in corner of hero — subtle */
.hero-content::before {
  content: '✦';
  position: absolute;
  top: -2rem;
  right: 0;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: oklch(0.68 0.08 80 / 0.22);
  font-family: var(--font-body);
  user-select: none;
  pointer-events: none;
}

/* 2. Pull-quote — left border replaced with a single elegant
      vertical gold stroke + the quotation mark is oversized
      and floats into the margin like a literary journal */
.pull-quote {
  position: relative;
  padding-left: var(--space-10);
  border-left: none !important;
}

.pull-quote::before {
  content: none;
}

/* Decorative ghost quote mark — sits in the gap between paragraph and pull-quote */
.pull-quote-mark {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(10rem, 18vw, 16rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.5;
  color: oklch(0.68 0.08 80 / 0.07);
  pointer-events: none;
  user-select: none;
  margin-block: 0;
  height: 0;
  overflow: visible;
}

.pull-quote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1.5px;
  background: linear-gradient(
    to bottom,
    transparent,
    oklch(0.68 0.08 80 / 0.6) 20%,
    oklch(0.68 0.08 80 / 0.6) 80%,
    transparent
  );
}

/* 3. Value cells — on hover, the title gets a subtle gold
      underline that draws in from left like a reveal wipe */
.value-cell strong {
  position: relative;
  display: inline-block;
}

.value-cell strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: oklch(0.68 0.08 80 / 0.7);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-cell:hover strong::after {
  width: 100%;
}

/* 4. Overline labels get a tiny decorative diamond before them */
.overline::before {
  content: '◆';
  font-size: 0.4em;
  margin-right: 0.6em;
  opacity: 1;
  vertical-align: middle;
  color: var(--color-gold);
}

/* Ghost section numerals — visible in both light and dark */
.section-mark {
  position: absolute;
  right: clamp(var(--space-8), 6vw, var(--space-24));
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-mark-svg {
  width: clamp(80px, 10vw, 140px);
  height: auto;
  color: var(--color-gold-rule);
  opacity: 0.28;
  display: block;
}

/* Light sections — gold tone */
.philosophy .section-mark-svg {
  color: var(--color-gold);
  opacity: 0.22;
}

/* Dark/navy sections — brighter gold so it reads */
.founder .section-mark-svg {
  color: var(--color-gold-rule);
  opacity: 0.35;
}

/* 5. Nav links — ultra-fine underline animates in on hover,
      growing from center outward (more editorial than a slide) */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: oklch(0.68 0.08 80 / 0.6);
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
  left: 0;
  right: 0;
}

/* 6. Section numbers — philosophy and founder sections get a
      large ghost numeral watermark in the background corner,
      barely visible, extremely chic */
.philosophy {
  position: relative;
}



/* 7. Footer tagline gets very wide tracking — almost
      architectural, like engraved text on a building */
.footer-tagline {
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  font-size: var(--text-xs) !important;
}

/* 8. Tier cards — on hover the tier name gets a gold shimmer
      pass (CSS animation, single direction, once) */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.tier:hover .tier-name {
  background: linear-gradient(
    90deg,
    currentColor 0%,
    oklch(0.78 0.10 82) 40%,
    oklch(0.90 0.12 80) 50%,
    oklch(0.78 0.10 82) 60%,
    currentColor 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 1.2s ease forwards;
}

/* 9. Cursor-following subtle glow on the hero (CSS only, no JS) */
.hero-content {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* 10. The Brief section signup input gets a gold focus ring
       instead of the default browser outline */
.brief-form input:focus,
.brief-form select:focus {
  outline: none;
  border-color: oklch(0.68 0.08 80 / 0.8) !important;
  box-shadow: 0 0 0 2px oklch(0.68 0.08 80 / 0.15),
              inset 0 1px 3px oklch(0 0 0 / 0.05);
}


/* Hero bottom framing rule — sits below buttons, above scroll indicator */
.hero-rule--bottom {
  top: auto;
  bottom: 80px;
}

/* ================================================================
   VISUAL ELEMENTS — Compass, Pull Quote Ornaments, Services Rule,
   Closing Corners, Footer Bar
   ================================================================ */

/* 1. HERO COMPASS ROSE ─────────────────────────────────────────── */
.hero-compass {
  position: absolute;
  right: -18%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero-compass-svg {
  width: clamp(480px, 55vw, 780px);
  height: auto;
  color: oklch(0.68 0.08 80 / 1);
  opacity: 0.13;
  display: block;
}

/* 2. PULL QUOTE ORNAMENT LINES ─────────────────────────────────── */
.pull-quote {
  position: relative;
}

.pull-quote-ornament {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  display: block;
}

/* Vertical line with diamond terminal at top */
.pull-quote-ornament::before,
.pull-quote-ornament::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* The line itself */
.pull-quote-ornament::before {
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-gold-rule) 15%,
    var(--color-gold-rule) 85%,
    transparent 100%
  );
}

/* Diamond terminal at top */
.pull-quote-ornament::after {
  top: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--color-gold-rule);
  transform: translateX(-50%) rotate(45deg);
}

.pull-quote-ornament--left {
  left: -var(--space-6);
  left: -1.5rem;
}

.pull-quote-ornament--right {
  right: -1.5rem;
}

/* 3. SERVICES ORNAMENTAL RULE ──────────────────────────────────── */
.services-ornament-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
  padding-inline: var(--space-4);
}

.services-ornament-svg {
  width: 100%;
  max-width: 600px;
  height: 20px;
  color: var(--color-gold-rule);
  opacity: 0.55;
  display: block;
}

/* 4. CLOSING CTA CORNER BRACKETS ───────────────────────────────── */
.closing {
  position: relative;
}

.closing-corners {
  position: absolute;
  inset: clamp(var(--space-6), 4vw, var(--space-12));
  pointer-events: none;
  z-index: 0;
}

.closing-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  display: block;
}

.closing-corner--tl {
  top: 0; left: 0;
  border-top: 1px solid var(--color-gold-rule);
  border-left: 1px solid var(--color-gold-rule);
  opacity: 0.45;
}

.closing-corner--tr {
  top: 0; right: 0;
  border-top: 1px solid var(--color-gold-rule);
  border-right: 1px solid var(--color-gold-rule);
  opacity: 0.45;
}

.closing-corner--bl {
  bottom: 0; left: 0;
  border-bottom: 1px solid var(--color-gold-rule);
  border-left: 1px solid var(--color-gold-rule);
  opacity: 0.45;
}

.closing-corner--br {
  bottom: 0; right: 0;
  border-bottom: 1px solid var(--color-gold-rule);
  border-right: 1px solid var(--color-gold-rule);
  opacity: 0.45;
}

/* 5. FOOTER GOLD BAR ───────────────────────────────────────────── */
.footer-gold-bar {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    oklch(0.68 0.08 80 / 0.6) 20%,
    oklch(0.78 0.09 80 / 0.9) 50%,
    oklch(0.68 0.08 80 / 0.6) 80%,
    transparent 100%
  );
  margin-bottom: var(--space-12);
}

