    :root {
      --earth:  #1a1408;
      --soil:   #2e1f0a;
      --bark:   #4a3218;
      --field:  #7a5c2e;
      --straw:  #c9a96e;
      --cream:  #f5edd8;
      --leaf:   #4e7c40;
      --moss:   #3a5c30;
      --sky:    #e8f0e4;
      --accent: #8ab87a;
    }

    *, *::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;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 3rem;
      background: rgba(26,20,8,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700;
      color: var(--straw);
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(245,237,216,0.7);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--straw); }

    /* ── PAGE HEADER ── */
    .page-header {
      padding: 10rem 2rem 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;
    }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--cream);
    }
    .page-sub {
      margin-top: 1rem;
      font-size: 1rem;
      color: rgba(245,237,216,0.55);
      max-width: 480px;
      margin-left: auto; margin-right: auto;
    }

    /* ── CONTENT ── */
    .container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

    section { padding: 5rem 2rem; }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--straw);
      margin-bottom: 2rem;
    }

    /* ── CONTACT OPTIONS ── */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-bottom: 5rem;
    }
    .contact-card {
      background: var(--soil);
      border: 1px solid rgba(201,169,110,0.12);
      border-radius: 4px;
      padding: 2.2rem;
      text-align: center;
      transition: border-color 0.25s, transform 0.2s;
    }
    .contact-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }
    .contact-icon { font-size: 2rem; margin-bottom: 1rem; }
    .contact-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }
    .contact-card p {
      font-size: 0.85rem;
      color: rgba(245,237,216,0.5);
      margin-bottom: 1.2rem;
    }
    .contact-card a {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(138,184,122,0.35);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .contact-card a:hover { color: var(--straw); border-color: var(--straw); }

    /* ── FAQ ── */
    .faq-section { background: var(--soil); border-top: 1px solid rgba(201,169,110,0.1); }

    .faq-list { list-style: none; }
    .faq-item {
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }
    .faq-item:first-child { border-top: 1px solid rgba(201,169,110,0.1); }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.4rem 0;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--cream);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .faq-question:hover { color: var(--straw); }
    .faq-arrow {
      color: var(--straw);
      font-size: 1.2rem;
      transition: transform 0.25s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }
    .faq-answer {
      font-size: 0.9rem;
      color: rgba(245,237,216,0.55);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-item.open .faq-answer {
      max-height: 400px;
      padding-bottom: 1.4rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--earth);
      border-top: 1px solid rgba(201,169,110,0.12);
      padding: 3rem 2rem;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
      gap: 1.5rem;
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--straw); font-weight: 700; }
    .footer-links { display: flex; gap: 1.5rem; list-style: none; }
    .footer-links a { font-size: 0.8rem; color: rgba(245,237,216,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--straw); }
    .footer-copy { font-size: 0.75rem; color: rgba(245,237,216,0.25); width: 100%; text-align: center; margin-top: 1.5rem; }

    @media (max-width: 640px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
    }
  
    /* 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; }
