:root {
      --gold:       #c9a84c;
      --gold-light: #e8c97a;
      --gold-dark:  #8a6820;
      --ink:        #110e06;
      --ink-mid:    #1e180a;
      --ink-soft:   #3d2e10;
      --paper:      #fdf8ef;
      --paper-dark: #f0e8d5;
      --text-body:  #3d2e10;
      --text-muted: #7a6040;
      --border:     rgba(201,168,76,0.25);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Lato', sans-serif;
      background: var(--paper);
      color: var(--text-body);
      line-height: 1.85;
      font-size: 16px;
    }

    /* Nav */
    .site-nav {
      background: rgba(17,14,6,0.97);
      border-bottom: 1px solid var(--gold-dark);
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 62px;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-logo {
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-decoration: none;
    }
    .nav-cta {
      background: var(--gold);
      color: var(--ink);
      padding: 8px 22px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-decoration: none;
      border-radius: 1px;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--gold-light); }

    /* Hero */
    .hero {
      background: var(--ink);
      background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139,26,26,0.10) 0%, transparent 55%);
      padding: 72px 6% 60px;
      text-align: center;
      border-bottom: 1px solid var(--gold-dark);
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      padding: 4px 18px;
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    /* Layer 1: H1 */
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 4vw, 2.8rem);
      color: var(--gold-light);
      font-weight: 700;
      line-height: 1.35;
      max-width: 780px;
      margin: 0 auto 20px;
      letter-spacing: 0.02em;
    }
    .hero-sub {
      color: rgba(255,255,255,0.5);
      font-size: 0.95rem;
      max-width: 580px;
      margin: 0 auto 36px;
      font-weight: 300;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--ink);
      padding: 13px 34px;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-decoration: none;
      border-radius: 1px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-secondary {
      border: 1px solid rgba(201,168,76,0.4);
      color: rgba(255,255,255,0.6);
      padding: 12px 28px;
      font-size: 0.88rem;
      letter-spacing: 0.08em;
      text-decoration: none;
      border-radius: 1px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

    /* Trust bar */
    .trust-bar {
      background: var(--paper-dark);
      border-bottom: 1px solid var(--border);
      padding: 16px 6%;
      display: flex;
      gap: 28px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--text-muted);
      letter-spacing: 0.03em;
    }
    .trust-dot {
      width: 5px;
      height: 5px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Main content */
    .main-wrapper {
      max-width: 860px;
      margin: 0 auto;
      padding: 56px 6% 80px;
    }

    /* Layer 2: H2 */
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      color: var(--ink);
      font-weight: 700;
      margin: 56px 0 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
      letter-spacing: 0.03em;
      position: relative;
    }
    h2::before {
      content: '';
      position: absolute;
      bottom: -1px; left: 0;
      width: 44px; height: 2px;
      background: var(--gold);
    }

    /* Layer 3: H3 */
    h3 {
      font-size: 1.05rem;
      color: var(--ink-soft);
      font-weight: 700;
      margin: 26px 0 9px;
      padding-left: 13px;
      border-left: 3px solid var(--gold);
    }

    p { margin-bottom: 14px; font-size: 0.97rem; line-height: 1.88; }

    /* Price cards */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2px;
      margin: 28px 0;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .price-card {
      background: var(--paper-dark);
      padding: 32px 28px;
      position: relative;
    }
    .price-card.featured {
      background: var(--ink);
      border: 1px solid var(--gold-dark);
    }
    .price-card.featured * { color: rgba(255,255,255,0.8); }
    .price-card.featured .price-amount { color: var(--gold-light); }
    .price-label  { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; }
    .price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
    .price-desc   { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

    /* Steps */
    .steps { margin: 20px 0; counter-reset: step; }
    .step  { display: flex; gap: 18px; margin-bottom: 22px; align-items: flex-start; }
    .step-num {
      counter-increment: step;
      min-width: 38px; height: 38px;
      border: 1px solid var(--gold);
      color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
    }
    .step-num::after { content: counter(step, decimal-leading-zero); }
    .step-body strong { display: block; color: var(--ink); margin-bottom: 3px; font-size: 0.95rem; }
    .step-body span   { font-size: 0.87rem; color: var(--text-muted); }

    /* Callout */
    .callout {
      background: var(--ink);
      border-left: 4px solid var(--gold);
      padding: 22px 26px;
      margin: 28px 0;
      color: rgba(255,255,255,0.75);
      font-size: 0.93rem;
      line-height: 1.8;
    }
    .callout strong { color: var(--gold-light); }

    /* Contact */
    .contact-section {
      background: var(--ink);
      background-image: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
      border: 1px solid var(--gold-dark);
      padding: 48px 40px;
      text-align: center;
      margin: 60px 0 0;
    }
    .contact-section h2 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--gold-light);
      border: none;
      margin: 0 0 10px;
      font-size: 1.7rem;
    }
    .contact-section h2::before { display: none; }
    .contact-sub { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 30px; }
    .contact-grid { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
    .contact-item { text-align: center; }
    .contact-item-label { font-size: 0.65rem; letter-spacing: 0.22em; color: var(--gold-dark); margin-bottom: 5px; text-transform: uppercase; }
    .contact-item-value { font-size: 1rem; color: var(--gold-light); font-weight: 700; letter-spacing: 0.05em; }
    .contact-item-value-sm { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
    .contact-divider { width: 1px; background: var(--gold-dark); align-self: stretch; }

        /* Footer */
    .site-footer {
      background: #0e0b04;
      border-top: 1px solid var(--gold-dark);
      padding: 32px 5%;
      text-align: center;
    }
    .footer-links {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .footer-links a {
      color: #d9c07a;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
    }
    .footer-links a:hover {
      color: var(--gold-light);
      text-decoration: underline;
    }
    .footer-copy {
      font-size: 0.9rem;
      color: #a88a4a;
      line-height: 1.8;
    }

    /* Language switcher */
    .lang-switcher {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .lang-btn {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }
    .lang-btn:hover, .lang-btn.active { color: var(--gold); }
    .lang-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

    @media (max-width: 640px) {
      .contact-divider { display: none; }
      .hero { padding: 48px 5% 40px; }
      h2 { font-size: 1.35rem; }
      .contact-section { padding: 36px 20px; }
    }
