:root {
    --navy: #001D47;
    --navy-deep: #000F2A;
    --navy-mid: #0A2A55;
    --gold: #D9AF4D;
    --gold-light: #EBC66D;
    --gold-deep: #B8954A;
    --gold-dark: #8F6F2F;
    --cream: #F8F5F0;
    --cream-deep: #F0EBE1;
    --white: #FFFFFF;
    --ink: #0E1830;
    --muted: #5E6B82;
    --muted-soft: #8892A6;
    --hairline: rgba(0, 29, 71, 0.12);
    --hairline-strong: rgba(0, 29, 71, 0.22);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter Tight', sans-serif;
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle paper grain */
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.02  0 0 0 0 0.11  0 0 0 0 0.28  0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
      radial-gradient(circle at 20% 10%, rgba(217, 175, 77, 0.06), transparent 50%),
      radial-gradient(circle at 80% 90%, rgba(0, 29, 71, 0.04), transparent 50%),
      linear-gradient(180deg, var(--cream), var(--cream));
  }

  a { color: inherit; text-decoration: none; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

  /* ============ REUSABLE GOLD SHIMMER ============ */
  .gold-shimmer {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }

  /* ============ NAV ============ */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248, 245, 240, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--navy);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 9px;
  }
  .logo-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 50%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-links {
    display: flex; gap: 40px; align-items: center;
  }
  .nav-links a {
    font-size: 13px; font-weight: 500;
    color: var(--navy); opacity: 0.72;
    letter-spacing: 0.04em;
    position: relative; padding: 4px 0;
    transition: opacity 0.25s ease;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-family: 'Inter Tight', sans-serif;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer; border: none;
    position: relative; overflow: hidden;
  }
  .btn-primary {
    background: var(--navy); color: var(--cream);
    box-shadow: 0 10px 30px -12px rgba(0, 29, 71, 0.4);
  }
  .btn-primary:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(0, 29, 71, 0.55);
  }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--navy);
    box-shadow: 0 10px 30px -12px rgba(184, 149, 74, 0.45);
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(184, 149, 74, 0.6);
  }
  .btn-ghost {
    background: transparent; color: var(--navy);
    border: 1px solid var(--navy);
  }
  .btn-ghost:hover { background: var(--navy); color: var(--cream); }

  /* ============ HERO ============ */
  .hero {
    position: relative; padding: 24px 0 32px !important;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-single {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .hero-single .hero-eyebrow {
    display: inline-flex;
    justify-content: center;
  }
  .hero-single .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-single .hero-ctas {
    justify-content: center;
  }
  .hero-single .hero-meta {
    justify-content: center;
  }
  .hero-left { position: relative; z-index: 2; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 32px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; display: block;
    width: 28px; height: 1px; background: var(--gold);
  }
  .hero-eyebrow::after { width: 60px; }

  h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 88px;
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 36px;
    color: var(--navy);
  }
  h1 em {
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }
  .hero-sub {
    font-size: 19px; line-height: 1.65;
    color: var(--muted);
    max-width: 540px; margin-bottom: 48px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
  .hero-meta {
    display: flex; align-items: center; gap: 14px;
    font-size: 12px; color: var(--muted);
    letter-spacing: 0.04em;
  }
  .hero-meta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
  .hero-meta strong { color: var(--navy); font-weight: 600; }

  /* Hero right panel - editorial feature block */
  .hero-right { position: relative; padding-left: 40px; }
  .hero-right::before {
    content: ''; position: absolute;
    left: 0; top: 20px; bottom: 20px;
    width: 1px; background: var(--hairline-strong);
  }
  .hero-stats { display: flex; flex-direction: column; gap: 36px; }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-style: italic;
    font-size: 56px; line-height: 1;
    color: var(--navy); margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .hero-stat-num span {
    font-size: 24px; vertical-align: top; margin-left: 4px;
    color: var(--gold-deep); font-style: normal;
  }
  .hero-stat-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted);
  }

  /* Decorative hero ornament */
  .hero-ornament {
    position: absolute; right: -60px; top: 30%;
    font-family: 'Playfair Display', serif;
    font-size: 400px; line-height: 1;
    color: var(--gold);
    opacity: 0.05;
    font-style: italic;
    pointer-events: none;
    user-select: none;
  }

  /* ============ SECTION BASICS ============ */
  section { padding: 140px 0; position: relative; }
  .section-eyebrow {
    display: flex; justify-content: center; align-items: center;
    gap: 14px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 24px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 60px; line-height: 1.08;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 820px; margin: 0 auto 24px;
    color: var(--navy);
  }
  .section-title em {
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section-sub {
    text-align: center; font-size: 17px;
    color: var(--muted); max-width: 640px;
    margin: 0 auto 80px; line-height: 1.65;
  }

  /* Divider ornament */
  .ornament {
    display: flex; justify-content: center; align-items: center; gap: 16px;
    margin: 0 auto 60px;
    max-width: 100px;
  }
  .ornament-line { flex: 1; height: 1px; background: var(--hairline-strong); }
  .ornament-mark {
    color: var(--gold-deep);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
  }

  /* ============ HOW IT WORKS ============ */
  .how { background: transparent; position: relative; padding: 140px 0; }
  .how::before {
    content: ''; position: absolute;
    left: 0; right: 0; top: 0; height: 1px;
    background: var(--hairline-strong);
  }
  .how::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--hairline-strong);
  }
  .how-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1120px; margin: 0 auto;
  }
  .how-step {
    text-align: left; padding: 0 32px;
    position: relative;
  }
  .how-step + .how-step {
    border-left: 1px solid var(--hairline);
  }
  .how-num {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 400;
    font-size: 86px; line-height: 1;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 50%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
  }
  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    color: var(--navy);
  }
  .how-step p {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; max-width: 320px;
  }

  /* ============ TIERS ============ */
  .tiers-section { background: transparent; padding: 160px 0; }
  .tiers-grid {
    display: grid; grid-template-columns: 0.85fr 1fr 1fr 1.15fr;
    gap: 16px; margin-top: 60px;
  }
  .tier-card {
    background: var(--white);
    border-radius: 2px;
    padding: 40px 32px;
    border: 1px solid var(--hairline);
    display: flex; flex-direction: column;
    position: relative;
    box-shadow: 0 30px 60px -30px rgba(0, 29, 71, 0.12),
                0 2px 4px rgba(0, 29, 71, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  }
  .tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -30px rgba(0, 29, 71, 0.2),
                0 4px 8px rgba(0, 29, 71, 0.06);
  }
  .tier-card.tier-coffee {
    background: var(--cream-deep);
    border: 1px dashed var(--hairline-strong);
    box-shadow: none;
  }
  .tier-card.tier-featured {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--cream);
    border: 1px solid rgba(217, 175, 77, 0.2);
    box-shadow: 0 40px 80px -30px rgba(0, 29, 71, 0.5),
                0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; overflow: hidden;
  }
  .tier-card.tier-featured::before {
    content: ''; position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(217, 175, 77, 0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .tier-card.tier-featured .tier-name,
  .tier-card.tier-featured .tier-price,
  .tier-card.tier-featured .tier-delivery,
  .tier-card.tier-featured .tier-best,
  .tier-card.tier-featured .tier-plan,
  .tier-card.tier-featured .tier-feature { color: var(--cream); }
  .tier-card.tier-featured .tier-best,
  .tier-card.tier-featured .tier-plan,
  .tier-card.tier-featured .tier-delivery { opacity: 0.7; }
  .tier-card.tier-featured .tier-feature-mark { color: var(--gold); }
  .tier-card.tier-featured .tier-divider { background: rgba(217, 175, 77, 0.2); }

  .tier-badge {
    position: absolute; top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: var(--navy);
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    box-shadow: 0 6px 16px -4px rgba(184, 149, 74, 0.5);
    z-index: 2;
  }

  .tier-eyebrow {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
  }
  .tier-card.tier-featured .tier-eyebrow { color: var(--gold); }

  .tier-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 34px; letter-spacing: -0.02em;
    margin-bottom: 12px; color: var(--navy);
    line-height: 1;
  }
  .tier-best {
    font-size: 13px; color: var(--muted);
    font-style: italic; margin-bottom: 24px;
    line-height: 1.5; min-height: 40px;
  }
  .tier-divider {
    height: 1px; background: var(--hairline);
    margin-bottom: 24px;
  }
  .tier-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 52px; letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 6px;
    color: var(--navy);
  }
  .tier-price sup {
    font-size: 24px; vertical-align: top;
    top: 12px; position: relative;
    font-weight: 500;
  }
  .tier-plan {
    font-size: 12px; color: var(--muted);
    margin-bottom: 8px; letter-spacing: 0.02em;
  }
  .tier-delivery {
    font-size: 10px; color: var(--muted);
    font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .tier-features {
    list-style: none; margin-bottom: 32px; flex: 1;
  }
  .tier-feature {
    font-size: 14px; color: var(--ink);
    line-height: 1.55; padding: 10px 0;
    position: relative; padding-left: 22px;
    border-bottom: 1px solid var(--hairline);
  }
  .tier-card.tier-featured .tier-feature {
    border-bottom-color: rgba(217, 175, 77, 0.15);
  }
  .tier-feature:last-child { border-bottom: none; }
  .tier-feature-mark {
    position: absolute; left: 0; top: 10px;
    color: var(--gold-deep);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    line-height: 1.5;
  }
  .tier-cta {
    display: flex; justify-content: center; align-items: center;
    padding: 16px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .tier-cta.cta-navy {
    background: var(--navy); color: var(--cream);
  }
  .tier-cta.cta-navy:hover { background: var(--navy-deep); }
  .tier-cta.cta-gold {
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--navy);
  }
  .tier-cta.cta-ghost {
    background: transparent; color: var(--navy);
    border: 1px solid var(--navy);
  }
  .tier-cta.cta-ghost:hover { background: var(--navy); color: var(--cream); }

  .tier-cta-row {
    display: flex; flex-direction: column; gap: 8px;
  }
  .tier-card.tier-featured .tier-cta.cta-ghost {
    color: var(--cream); border-color: rgba(217, 175, 77, 0.5);
  }
  .tier-card.tier-featured .tier-cta.cta-ghost:hover {
    background: rgba(217, 175, 77, 0.12); color: var(--cream); border-color: var(--gold);
  }

  /* ============ ABOUT - navy dramatic ============ */
  .about {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--cream); position: relative;
    overflow: hidden; padding: 180px 0;
  }
  .about::before {
    content: ''; position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(217, 175, 77, 0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  .about::after {
    content: ''; position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(217, 175, 77, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .about-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 0.85fr 1.2fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }
  .about-portrait {
    position: relative;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-deep) 100%);
    border-radius: 2px;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6),
                0 0 80px -20px rgba(217, 175, 77, 0.25);
  }
  .about-portrait img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1px;
    filter: saturate(1.02);
  }
  .about-portrait::before {
    content: ''; position: absolute;
    inset: 0; pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
  }
  .about-portrait-caption {
    position: absolute; bottom: -36px; left: 14px;
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 400;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.04em;
  }
  .about .section-eyebrow {
    justify-content: flex-start; margin-bottom: 24px;
    color: var(--gold);
  }
  .about .section-eyebrow::before, .about .section-eyebrow::after { background: var(--gold); }
  .about .section-eyebrow::after { display: none; }
  .about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 52px; line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 32px;
    color: var(--cream);
  }
  .about-title em {
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .about-body {
    font-size: 17px; color: rgba(248, 245, 240, 0.82);
    line-height: 1.8; margin-bottom: 32px;
  }
  .about-body p + p { margin-top: 16px; }
  .about-body strong {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .about-signature {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 400;
    font-size: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .about-signature::before {
    content: ''; display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    -webkit-text-fill-color: initial;
  }

  /* ============ FAQ ============ */
  .faq { padding: 160px 0; }
  .faq-list { max-width: 880px; margin: 0 auto; }
  .faq-item {
    border-top: 1px solid var(--hairline-strong);
    padding: 36px 0;
    display: grid; grid-template-columns: auto 1fr;
    gap: 36px; align-items: start;
  }
  .faq-item:last-child {
    border-bottom: 1px solid var(--hairline-strong);
  }
  .faq-num {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 400;
    font-size: 22px; line-height: 1;
    color: var(--gold-deep);
    padding-top: 4px; min-width: 40px;
  }
  .faq-q {
    font-family: 'Playfair Display', serif;
    font-weight: 600; font-size: 24px;
    letter-spacing: -0.01em; color: var(--navy);
    margin-bottom: 14px; line-height: 1.3;
  }
  .faq-a {
    font-size: 15.5px; color: var(--muted);
    line-height: 1.75;
  }

  /* ============ FINAL CTA - navy dramatic ============ */
  .final-cta {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--cream); text-align: center;
    padding: 160px 0; position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .final-cta::after {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(217, 175, 77, 0.08) 0%, transparent 55%);
    pointer-events: none;
  }
  .final-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
  .final-mark {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  .final-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 72px; line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    color: var(--cream);
  }
  .final-title em {
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .final-sub {
    font-size: 18px; color: rgba(248, 245, 240, 0.78);
    margin-bottom: 48px; line-height: 1.65;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy-deep);
    color: rgba(248, 245, 240, 0.65);
    padding: 72px 0 40px;
    border-top: 1px solid rgba(217, 175, 77, 0.2);
  }
  .footer-inner {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px; margin-bottom: 56px;
  }
  footer .logo { color: var(--cream); margin-bottom: 20px; }
  .footer-tag {
    font-size: 14px; color: rgba(248, 245, 240, 0.6);
    max-width: 340px; line-height: 1.65;
  }
  .footer-col h4 {
    color: var(--gold); font-size: 10px;
    font-weight: 600; letter-spacing: 0.28em;
    text-transform: uppercase; margin-bottom: 22px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 14px; color: rgba(248, 245, 240, 0.7);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(248, 245, 240, 0.08);
    padding-top: 28px;
    display: flex; flex-direction: column;
    gap: 10px;
    font-size: 12px; color: rgba(248, 245, 240, 0.45);
  }
  .footer-disclaimer {
    max-width: 900px; font-style: italic; line-height: 1.65;
  }
  .footer-copyright {
    font-style: normal;
    color: rgba(248, 245, 240, 0.55);
    letter-spacing: 0.02em;
  }
  .footer-url {
    color: rgba(248, 245, 240, 0.45);
    font-size: 12px;
  }
  .footer-credit {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px dashed rgba(217, 175, 77, 0.18);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 400;
    font-size: 13px;
    color: rgba(248, 245, 240, 0.55);
    letter-spacing: 0.02em;
  }
  .footer-credit a {
    color: var(--gold);
    transition: color 0.2s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .footer-credit a:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
  }

  /* ============ QUIZ ============ */
  .quiz-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--cream);
    padding: 140px 0; position: relative; overflow: hidden;
  }
  .quiz-section::before {
    content: ''; position: absolute;
    top: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(217, 175, 77, 0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .quiz-section::after {
    content: ''; position: absolute;
    bottom: -200px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(217, 175, 77, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .quiz-section .section-eyebrow { color: var(--gold); }
  .quiz-section .section-eyebrow::before,
  .quiz-section .section-eyebrow::after { background: var(--gold); }
  .quiz-section .section-title { color: var(--cream); }
  .quiz-section .section-sub { color: rgba(248, 245, 240, 0.7); }
  .quiz-container {
    max-width: 720px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .quiz-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 175, 77, 0.2);
    border-radius: 4px;
    padding: 56px 48px;
    backdrop-filter: blur(10px);
  }
  .quiz-progress {
    display: flex; gap: 6px; justify-content: center;
    margin-bottom: 40px;
  }
  .quiz-dot {
    width: 28px; height: 2px;
    background: rgba(217, 175, 77, 0.25);
    transition: background 0.3s;
  }
  .quiz-dot.active { background: var(--gold); }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; animation: fadeIn 0.4s ease; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .quiz-num {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 400;
    font-size: 48px; line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }
  .quiz-question {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 34px; line-height: 1.2;
    color: var(--cream);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .quiz-options {
    display: flex; flex-direction: column; gap: 12px;
  }
  .quiz-option {
    background: transparent;
    border: 1px solid rgba(217, 175, 77, 0.25);
    color: var(--cream);
    padding: 18px 24px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px; font-weight: 500;
    text-align: left; cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
  }
  .quiz-option:hover {
    background: rgba(217, 175, 77, 0.08);
    border-color: var(--gold);
    transform: translateX(4px);
  }
  .quiz-result {
    text-align: center;
    display: none;
  }
  .quiz-result.active { display: block; animation: fadeIn 0.5s ease; }
  .quiz-result-eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .quiz-result-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 56px; line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .quiz-result-price {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 22px; color: var(--cream);
    margin-bottom: 20px;
    font-style: italic;
  }
  .quiz-result-body {
    font-size: 16px; line-height: 1.7;
    color: rgba(248, 245, 240, 0.78);
    max-width: 480px; margin: 0 auto 36px;
  }
  .quiz-result-ctas {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }
  .quiz-restart {
    background: transparent; border: none;
    color: rgba(248, 245, 240, 0.5);
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer; margin-top: 28px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .quiz-restart:hover { color: var(--gold); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .container { padding: 0 24px; }
    .hero { padding: 48px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-right { padding-left: 0; border-top: 1px solid var(--hairline); padding-top: 48px; }
    .hero-right::before { display: none; }
    h1 { font-size: 52px; }
    .section-title { font-size: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 56px; max-width: 520px; }
    .about-portrait { max-width: 360px; margin: 0 auto; }
    .about-title { font-size: 36px; }
    .final-title { font-size: 44px; }
    .how-grid { grid-template-columns: 1fr; gap: 56px; }
    .how-step + .how-step { border-left: none; border-top: 1px solid var(--hairline); padding-top: 56px; }
    .tiers-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    section { padding: 80px 0; }
    .how, .faq, .final-cta, .about, .tiers-section { padding: 96px 0; }
    .quiz-section { padding: 96px 0; }
    .quiz-card { padding: 36px 24px; }
    .quiz-question { font-size: 24px; }
    .quiz-result-title { font-size: 40px; }
  }
/* ========== FAQ ACCORDION ========== */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 0 !important;
  border-top: none;
  border-bottom: 1px solid var(--hairline);
}
.faq-item:first-child { border-top: 1px solid var(--hairline-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline-strong); }
.faq-q {
  width: 100%;
  background: none !important; border: none !important;
  padding: 28px 0 !important;
  margin-bottom: 0 !important;
  font-family: 'Playfair Display', serif;
  font-size: 22px !important; font-weight: 500 !important;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex !important; justify-content: space-between; align-items: center;
  gap: 24px;
  transition: color 0.25s;
  line-height: 1.3;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-chev {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px; font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}
.faq-item.faq-open .faq-chev {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
  font-size: 15px; color: var(--muted);
  line-height: 1.75;
  padding: 0 0 0 0;
}
.faq-item.faq-open .faq-a {
  max-height: 400px;
  padding: 0 0 28px 0;
}

/* ========== ABOUT PAGE DEDICATED ========== */
.about-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.about-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 56px;
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
}
.about-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-sig {
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  display: flex; align-items: center; gap: 12px;
}
.about-sig .sig-mark { color: var(--gold); }
.about-sig .sig-name { color: var(--navy); font-size: 18px; }

/* ========== BOOKING PAGES ========== */
.book-hero {
  padding: 100px 0 140px;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 175, 77, 0.06), transparent 50%),
    var(--cream);
}
.book-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.book-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.book-eyebrow::before, .book-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.book-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 72px;
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 24px;
}
.book-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 40%, var(--gold) 70%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.book-sub {
  font-size: 18px; color: var(--muted);
  line-height: 1.7; max-width: 560px;
  margin: 0 auto 48px;
}
.book-price-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(0, 29, 71, 0.15);
  margin: 0 auto 56px;
  max-width: 520px;
  text-align: left;
}
.book-price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
}
.book-price-label {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 24px;
  color: var(--navy);
}
.book-price-desc {
  font-size: 13px; color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}
.book-price-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 56px;
  color: var(--navy); line-height: 1;
  letter-spacing: -0.02em;
}
.book-price-amount sup {
  font-size: 24px; font-weight: 500;
  vertical-align: super;
  margin-right: 2px;
}
.book-price-divider {
  height: 1px; background: var(--hairline);
  margin: 28px 0;
}
.btn-large {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 32px;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.24em;
}
.book-meta-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}
.book-guarantees {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
}
.book-guarantee {
  display: flex; gap: 16px; align-items: flex-start;
  text-align: left;
}
.book-guarantee-mark {
  color: var(--gold); font-size: 18px;
  line-height: 1.2; margin-top: 2px;
}
.book-guarantee strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 15px;
  color: var(--navy); margin-bottom: 4px;
}
.book-guarantee span {
  font-size: 13px; color: var(--muted);
  line-height: 1.6;
}

/* Gated booking pages (Starter/Launch/Full Suite) */
.gate-card {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  border: 1px solid rgba(217, 175, 77, 0.3);
  border-radius: 4px;
  padding: 56px 44px;
  box-shadow: 0 30px 60px -30px rgba(0, 29, 71, 0.4);
  max-width: 520px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.gate-card::before {
  content: ''; position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217, 175, 77, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.gate-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.gate-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 500;
  line-height: 1.2; color: var(--cream);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.gate-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gate-sub {
  font-size: 14px; color: rgba(248, 245, 240, 0.72);
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.gate-input {
  width: 100%;
  background: rgba(248, 245, 240, 0.04);
  border: 1px solid rgba(217, 175, 77, 0.3);
  border-radius: 2px;
  padding: 16px 20px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.14em;
  text-align: center;
  outline: none;
  transition: all 0.25s ease;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.gate-input::placeholder { color: rgba(248, 245, 240, 0.3); letter-spacing: 0.2em; }
.gate-input:focus {
  border-color: var(--gold);
  background: rgba(217, 175, 77, 0.06);
  box-shadow: 0 0 0 3px rgba(217, 175, 77, 0.1);
}
.gate-error {
  display: none;
  font-size: 12px; color: #E8756A;
  margin-bottom: 12px;
  font-style: italic;
  position: relative; z-index: 1;
}
.gate-error.active { display: block; }
.gate-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 16px 32px;
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 14px 36px -14px rgba(217, 175, 77, 0.5);
  position: relative; z-index: 1;
}
.gate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(217, 175, 77, 0.65);
}
.gate-hint {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(248, 245, 240, 0.5);
  font-style: italic;
  position: relative; z-index: 1;
}
.gate-hint a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 3px;
}

/* Unlocked payment options (hidden until code is valid) */
.payment-options {
  display: none;
  max-width: 720px;
  margin: 0 auto;
}
.payment-options.unlocked { display: block; }

.payment-eyebrow {
  text-align: center;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.payment-header {
  text-align: center;
  margin-bottom: 48px;
}
.payment-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}
.payment-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 50%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.payment-header p {
  font-size: 15px; color: var(--muted);
}

.payment-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
.payment-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  box-shadow: 0 20px 40px -20px rgba(0, 29, 71, 0.08);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 56px -20px rgba(0, 29, 71, 0.18);
  border-color: var(--gold);
}
.payment-card.featured {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  border: 1px solid rgba(217, 175, 77, 0.3);
}
.payment-card-label {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.payment-card.featured .payment-card-label { color: var(--cream); }
.payment-card-desc {
  font-size: 13px; color: var(--muted);
  font-style: italic;
}
.payment-card.featured .payment-card-desc { color: rgba(248, 245, 240, 0.6); }
.payment-card-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 32px;
  color: var(--navy); line-height: 1;
  letter-spacing: -0.02em;
}
.payment-card.featured .payment-card-amount {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.payment-card-amount sup {
  font-size: 14px; font-weight: 500;
  vertical-align: super;
  margin-right: 2px;
}
.payment-card-amount small {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  text-align: right;
}
.payment-card.featured .payment-card-amount small {
  color: rgba(248, 245, 240, 0.55);
  -webkit-text-fill-color: rgba(248, 245, 240, 0.55);
  background: none;
}

@media (max-width: 720px) {
  .book-guarantees { grid-template-columns: 1fr; }
  .book-price-row { flex-direction: column; align-items: flex-start; }
  .book-hero h1 { font-size: 44px; }
  .payment-card { flex-direction: column; align-items: flex-start; }
}

/* Disabled Buy buttons on tools page - shown until individual links are wired */
.tool-buy-disabled,
.bundle-cta-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  font-style: italic;
}

/* ========== CONTACT PAGE ========== */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 30px 60px -30px rgba(0, 29, 71, 0.12);
}
.hidden-honeypot { display: none !important; }
.contact-field {
  margin-bottom: 24px;
}
.contact-field label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: all 0.25s ease;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(217, 175, 77, 0.1);
}
.contact-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}
.contact-meta a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-success {
  text-align: center;
  padding: 56px 48px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.contact-success-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.contact-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-success p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .contact-form { padding: 32px 24px; }
}

/* ========== ABOUT PAGE (dedicated page, not home section) ========== */
.about-page {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about-page::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217, 175, 77, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.about-page-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 1;
}
.about-page-photo-col {
  position: relative;
}
.about-page-photo-frame {
  padding: 12px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-deep) 100%);
  border-radius: 2px;
  box-shadow: 0 40px 80px -30px rgba(0, 29, 71, 0.25);
  position: relative;
}
.about-page-photo-frame::before {
  content: ''; position: absolute;
  inset: 0; pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}
.about-page-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 1px;
  filter: saturate(1.02);
}
.about-page-caption {
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  text-align: center;
}
.about-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.about-page-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.about-page-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
}
.about-page-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-page-body {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
}
.about-page-body p + p { margin-top: 20px; }
.about-page-body strong {
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.about-page-sig {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.about-page-sig-mark { color: var(--gold); font-size: 18px; }
.about-page-sig-name {
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr !important;
    gap: 48px;
    max-width: 600px;
  }
  .about-page-title { font-size: 40px; }
  .about-page { padding: 80px 0; }
}
