:root {
    --cream:      #F5F1EB;
    --warm-white: #FAF8F5;
    --stone:      #C8BFB0;
    --sage:       #7A8C7E;
    --sage-deep:  #4E6352;
    --charcoal:   #2A2A28;
    --ink:        #1A1A18;
    --gold:       #A8915A;
    --gold-light: #C8A96A;
    --mist:       #E8E2D9;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); min-height: 100vh; line-height: 1.6; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245,241,235,0.97);
    border-bottom: 1px solid var(--mist);
    backdrop-filter: blur(8px);
    padding: 0 3rem; height: 62px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
  .nav-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--ink); letter-spacing: 0.02em; }
  .nav-sub { font-size: 0.66rem; color: var(--sage); display: block; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--sage-deep); }
  .nav-links a.active { color: var(--sage-deep); font-weight: 500; }
  .nav-cta { padding: 0.42rem 1.1rem; background: var(--sage-deep) !important; color: var(--cream) !important; border-radius: 2px; font-size: 0.74rem !important; }
  .nav-cta:hover { background: var(--sage) !important; }

  /* ── PAGE ── */
  .page { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }

  /* ── PAGE HEADER ── */
  .page-header { margin-bottom: 2rem; }
  .eyebrow { font-size: 0.63rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
  .eyebrow::before { content: ''; display: block; width: 18px; height: 1px; background: var(--sage); }
  .page-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 0.55rem; }
  .page-intro { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: #5a5a56; max-width: 520px; }

  /* ── SECTION LABEL ── */
  .section-label {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sage); margin: 2rem 0 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .section-label::before { content: ''; display: block; width: 14px; height: 1px; background: var(--sage); }

  /* ── ACCORDION ── */
  .accordion { display: flex; flex-direction: column; gap: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--mist); }
  .accordion + .section-label { margin-top: 2.2rem; }

  .acc-item { border-bottom: 1px solid var(--mist); background: white; }
  .acc-item:last-child { border-bottom: none; }

  .acc-trigger {
    width: 100%; padding: 1.1rem 1.4rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: white; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; text-align: left;
    transition: background 0.15s;
  }
  .acc-trigger:hover { background: rgba(78,99,82,0.03); }
  .acc-trigger.open { background: white; }

  .acc-question {
    font-size: 0.9rem; font-weight: 500; color: var(--charcoal);
    line-height: 1.4; flex: 1;
    transition: color 0.2s;
  }
  .acc-trigger.open .acc-question { color: var(--sage-deep); }

  .acc-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    border: 1.5px solid var(--stone); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--stone); font-size: 1rem; line-height: 1;
    transition: border-color 0.2s, color 0.2s, transform 0.25s, background 0.2s;
    font-weight: 300;
  }
  .acc-trigger.open .acc-icon {
    border-color: var(--sage-deep); background: var(--sage-deep); color: white;
    transform: rotate(45deg);
  }

  .acc-body {
    display: none;
    padding: 0 1.4rem 1.2rem 1.4rem;
    animation: fadeIn 0.2s ease;
  }
  .acc-body.open { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

  .acc-body p {
    font-size: 0.86rem; font-weight: 300; color: #5a5a56; line-height: 1.72;
    margin-bottom: 0.65rem;
  }
  .acc-body p:last-child { margin-bottom: 0; }
  .acc-body strong { font-weight: 500; color: var(--charcoal); }

  .acc-body ul, .acc-body ol {
    margin: 0.4rem 0 0.65rem 0;
    padding-left: 0;
    display: flex; flex-direction: column; gap: 0.3rem;
    list-style: none;
  }
  .acc-body ul li, .acc-body ol li {
    font-size: 0.86rem; font-weight: 300; color: #5a5a56; line-height: 1.65;
    display: flex; align-items: baseline; gap: 0.5rem;
  }
  .acc-body ul li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--stone); flex-shrink: 0; margin-top: 0.46em;
  }
  .acc-body ol { counter-reset: faq-ol; }
  .acc-body ol li { counter-increment: faq-ol; }
  .acc-body ol li::before {
    content: counter(faq-ol) '.';
    font-size: 0.78rem; font-weight: 500; color: var(--sage-deep);
    flex-shrink: 0; min-width: 1.1rem;
  }
  .acc-body a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
  .acc-body .acc-note {
    background: rgba(78,99,82,0.05); border-left: 2px solid var(--sage-deep);
    border-radius: 0 4px 4px 0; padding: 0.7rem 1rem; margin-top: 0.6rem;
    font-size: 0.84rem; font-weight: 400; color: var(--sage-deep); line-height: 1.6;
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--ink); border-radius: 8px;
    padding: 2rem 2.4rem; display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem;
  }
  .cta-band-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 300; color: var(--cream); margin-bottom: 0.25rem; }
  .cta-band-text p { font-size: 0.82rem; font-weight: 300; color: var(--stone); line-height: 1.6; }
  .cta-band-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; }
  .btn-cream { padding: 0.7rem 1.5rem; background: var(--cream); color: var(--ink); font-size: 0.82rem; font-weight: 500; border: none; border-radius: 2px; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; transition: background 0.2s; letter-spacing: 0.03em; }
  .btn-cream:hover { background: var(--stone); }
  .btn-outline-cream { padding: 0.7rem 1.4rem; background: transparent; color: var(--cream); font-size: 0.82rem; font-weight: 400; border: 1px solid rgba(200,191,176,0.4); border-radius: 2px; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
  .btn-outline-cream:hover { border-color: rgba(200,191,176,0.7); }

  /* ── FOOTER ── */
  footer { background: var(--cream); border-top: 1px solid var(--mist); padding: 1.4rem 3rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.74rem; color: var(--sage); }