    :root {
      --earth:  #1a1408;
      --soil:   #2e1f0a;
      --straw:  #c9a96e;
      --cream:  #f5edd8;
      --leaf:   #4e7c40;
      --accent: #8ab87a;
      --sky:    #7bb0d0;
      --line:   rgba(201,169,110,0.16);
      --muted:  rgba(245,237,216,0.62);
    }

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

    body {
      background: var(--earth);
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.7;
    }

    img { display: block; max-width: 100%; height: auto; }
    h1, h2, h3 { font-family: 'Playfair Display', serif; }

    /* ── PAGE HEADER ── */
    .page-header {
      padding: 9rem 2rem 3.5rem;
      text-align: center;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(78,124,64,0.15) 0%, transparent 70%),
        var(--soil);
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }
    .eyebrow {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(138,184,122,0.4);
      padding: 0.3rem 1rem;
      border-radius: 2rem;
      margin-bottom: 1.5rem;
    }
    .page-header h1 {
      font-size: clamp(2.4rem, 6vw, 3.8rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--cream);
    }
    .page-sub {
      margin: 1rem auto 0;
      font-size: 1rem;
      color: rgba(245,237,216,0.55);
      max-width: 600px;
    }

    .wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
    section { padding: 4rem 0; }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .price-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--soil);
    }
    .price-card.featured { border-color: var(--leaf); box-shadow: 0 0 0 1px var(--leaf); }
    .price-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: #241a08;
      border-bottom: 1px solid var(--line);
    }
    .price-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
    .price-kicker {
      margin-bottom: 8px;
      color: var(--sky);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .price-card.featured .price-kicker { color: var(--accent); }
    .price-body h3 { margin-bottom: 8px; font-size: 1.18rem; color: var(--cream); line-height: 1.2; }
    .price-body p { margin-bottom: 16px; color: var(--muted); font-size: 0.92rem; }
    .price {
      margin-top: auto;
      display: flex;
      align-items: baseline;
      gap: 6px;
      font-family: 'Playfair Display', serif;
    }
    .price .amount { font-size: 2rem; font-weight: 900; color: var(--cream); }
    .price .each { font-size: 0.85rem; font-weight: 400; color: rgba(245,237,216,0.5); font-family: 'DM Sans', sans-serif; }

    .bundle-list { list-style: none; margin: 14px 0 18px; padding: 0; display: grid; gap: 8px; }
    .bundle-list li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; color: var(--muted); font-size: 0.92rem; }
    .bundle-list .check { color: var(--accent); font-weight: 900; }

    .cta-band {
      margin-top: 2.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      padding: 30px 34px;
      border-radius: 10px;
      background: #241a08;
      border: 1px solid var(--line);
    }
    .cta-band h2 { margin-bottom: 8px; font-size: 1.6rem; color: var(--cream); }
    .cta-band p { margin: 0; max-width: 640px; color: var(--muted); }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 6px;
      border: 1px solid var(--leaf);
      color: var(--cream);
      background: var(--leaf);
      text-decoration: none;
      font-weight: 800;
      white-space: nowrap;
    }
    .button:hover { background: #3a5c30; border-color: #3a5c30; }

    .price-note {
      margin-top: 1.5rem;
      text-align: center;
      color: rgba(245,237,216,0.5);
      font-size: 0.88rem;
    }

    @media (max-width: 960px) {
      .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 620px) {
      .price-grid { grid-template-columns: 1fr; }
      .cta-band { grid-template-columns: 1fr; text-align: center; }
      .cta-band .button { width: 100%; }
    }

    /* unified-footer */
    .footer {
      padding: 30px 0;
      color: rgba(245,237,216,0.58);
      background: #2e1f0a;
      border-top: 1px solid rgba(201,169,110,0.16);
      font-size: 0.9rem;
    }
    .footer .footer-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
    }
    .footer .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer .footer-links a {
      color: rgba(245,237,216,0.58);
      text-decoration: none;
      font-weight: 750;
      font-size: 0.9rem;
    }
    .footer .footer-links a:hover { color: #8ab87a; }
