    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --forest:    #141210;
      --deep:      #0a0908;
      --gold:      #c9a84c;
      --gold-mid:  #d4b86a;
      --gold-lit:  #e8d49a;
      --cream:     #f0ead8;
      --sand:      #c8bfa8;
      --muted:     #7a7268;
      --border:    rgba(201,168,76,0.15);
      --radius:    4px;
    }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--deep);
      background-image: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
      color: var(--cream);
      font-family: 'Libre Baskerville', serif;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }
    h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
    .label { font-family: 'Libre Baskerville', serif; font-size: 10px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-mid); }
    section { position: relative; z-index: 1; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 10px 40px;
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(to bottom, rgba(10,9,8,0.95), transparent);
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 90px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { font-family: 'Libre Baskerville', serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--cream); }
    .nav-back { color: var(--gold-lit) !important; }

    /* HERO */
    .hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 40px 100px; max-width: 1100px; margin: 0 auto; }
    .hero-inner { max-width: 780px; }
    .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
    .hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
    .hero h1 { font-size: clamp(52px, 8vw, 96px); color: var(--cream); margin-bottom: 32px; }
    .hero h1 em { font-style: italic; color: var(--gold-lit); }
    .hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 560px; margin-bottom: 52px; }
    .hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
    .btn-primary { display: inline-block; padding: 14px 32px; background: var(--gold); color: var(--deep); font-family: 'Libre Baskerville', serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); transition: background 0.2s, transform 0.2s; font-weight: 700; }
    .btn-primary:hover { background: var(--gold-mid); transform: translateY(-1px); }
    .btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-family: 'Libre Baskerville', serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .btn-ghost:hover { color: var(--cream); }
    .btn-ghost::after { content: '→'; }

    /* SECTIONS */
    .section-pad { padding: 120px 40px; max-width: 1100px; margin: 0 auto; }
    .section-header { margin-bottom: 72px; }
    .section-header .label { display: block; margin-bottom: 16px; }
    .section-header h2 { font-size: clamp(36px, 5vw, 62px); color: var(--cream); }
    .section-header h2 em { font-style: italic; color: var(--gold-lit); }
    .section-header p { margin-top: 20px; color: var(--muted); font-size: 16px; max-width: 560px; line-height: 1.8; }
    .divider { height: 1px; background: var(--border); margin: 0 40px; }

    /* WHY SECTION */
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .why-card { background: var(--forest); padding: 44px 40px; transition: background 0.3s; }
    .why-card:hover { background: #1a1714; }
    .why-icon { font-size: 28px; margin-bottom: 20px; display: block; }
    .why-card h3 { font-size: 24px; color: var(--cream); margin-bottom: 12px; }
    .why-card p { color: var(--muted); font-size: 14px; line-height: 1.8; }

    /* HOW IT WORKS */
    .steps { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .step { display: grid; grid-template-columns: 80px 1fr; border-bottom: 1px solid var(--border); transition: background 0.3s; }
    .step:last-child { border-bottom: none; }
    .step:hover { background: rgba(201,168,76,0.03); }
    .step-num { display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gold); padding: 36px 0; }
    .step-content { padding: 36px 40px; }
    .step-content h3 { font-size: 22px; color: var(--cream); margin-bottom: 8px; }
    .step-content p { color: var(--muted); font-size: 14px; line-height: 1.8; }

    /* PRICING */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .pricing-card { background: var(--forest); padding: 48px 36px; display: flex; flex-direction: column; position: relative; transition: background 0.3s; }
    .pricing-card:hover { background: #1a1714; }
    .pricing-card.featured { background: #1c1810; border-top: 2px solid var(--gold); }
    .pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--deep); font-family: 'Libre Baskerville', serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 4px 4px; font-weight: 700; }
    .pricing-tier { font-family: 'Libre Baskerville', serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 16px; display: block; }
    .pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 6px; }
    .pricing-price sup { font-size: 24px; vertical-align: super; font-weight: 400; }
    .pricing-price-note { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .pricing-volume { font-size: 12px; color: var(--gold-lit); margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 36px; }
    .pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--sand); line-height: 1.6; }
    .pricing-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
    .pricing-cta { display: block; text-align: center; padding: 13px 24px; border: 1px solid var(--border); border-radius: var(--radius); font-family: 'Libre Baskerville', serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: background 0.2s, border-color 0.2s; }
    .pricing-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }
    .pricing-card.featured .pricing-cta { background: var(--gold); border-color: var(--gold); color: var(--deep); font-weight: 700; }
    .pricing-card.featured .pricing-cta:hover { background: var(--gold-mid); border-color: var(--gold-mid); }
    .pricing-note { margin-top: 28px; text-align: center; font-size: 13px; color: var(--muted); }
    .pricing-note a { color: var(--gold-lit); text-decoration: none; }
    .pricing-note a:hover { color: var(--cream); }

    /* CONTACT */
    .contact-section { background: var(--forest); padding: 120px 0; }
    .contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-left h2 { font-size: clamp(36px, 4vw, 56px); color: var(--cream); margin: 16px 0 24px; }
    .contact-left h2 em { font-style: italic; color: var(--gold-lit); }
    .contact-left p { color: var(--muted); font-size: 15px; line-height: 1.85; }
    .contact-email { display: block; margin-top: 28px; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold-lit); text-decoration: none; transition: color 0.2s; }
    .contact-email:hover { color: var(--cream); }
    .contact-form { display: flex; flex-direction: column; gap: 18px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
    .form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; color: var(--cream); font-family: 'Libre Baskerville', serif; font-size: 14px; transition: border-color 0.2s; outline: none; width: 100%; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
    .form-group select option { background: var(--forest); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit { margin-top: 8px; padding: 16px 32px; background: var(--gold); color: var(--deep); border: none; border-radius: var(--radius); font-family: 'Libre Baskerville', serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s; width: 100%; font-weight: 700; }
    .form-submit:hover { background: var(--gold-mid); transform: translateY(-1px); }
    .form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }

    /* FOOTER */
    footer { padding: 40px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); position: relative; z-index: 1; }
    .footer-left { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--muted); }
    .footer-left strong { color: var(--cream); font-weight: 600; }
    .footer-right { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 20px 24px; }
      .nav-links { display: none; }
      .hero { padding: 120px 24px 80px; }
      .section-pad { padding: 80px 24px; }
      .why-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 48px; }
      footer { flex-direction: column; gap: 12px; text-align: center; }
    }