    :root {
      --green-deep:  #1E3A2F;
      --green-mid:   #2C4A3E;
      --green-light: #3D6B5A;
      --gold:        #C9A96E;
      --gold-light:  #E2C99A;
      --ivory:       #F5F0E8;
      --ivory-dark:  #EDE7D9;
      --charcoal:    #1A1A1A;
      --text:        #2E2E2E;
      --text-muted:  #6B6B6B;
      --white:       #FFFFFF;
      --radius:      4px;
      --radius-lg:   12px;
      --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
      --shadow-md:   0 8px 40px rgba(0,0,0,0.14);
      --shadow-lg:   0 20px 60px rgba(0,0,0,0.22);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--ivory); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
    h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
    h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
    h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
    p  { line-height: 1.75; font-weight: 300; }
    .container { width: 90%; max-width: 1080px; margin: 0 auto; }
    .label { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
    .label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
    .btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border-radius: var(--radius); transition: all var(--transition); }
    .btn-gold { background: var(--gold); color: var(--charcoal); }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
    .btn-outline { border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }

    /* ── NAVBAR ── */
    #navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease; }
    #navbar.scrolled { background: rgba(30,58,47,0.97); backdrop-filter: blur(12px); padding: 14px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.2); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 1280px; margin: 0 auto; }
    .nav-logo img { height: 48px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a { color: rgba(255,255,255,0.85); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; position: relative; transition: color 0.3s; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-cta { padding: 10px 24px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--radius); transition: all 0.3s; }
    .nav-cta:hover { background: var(--gold); color: var(--charcoal); }
    .hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px 0; }
    .hamburger span { display: block; height: 1.5px; background: var(--white); transition: all 0.3s ease; border-radius: 2px; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .nav-drawer { position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh; background: var(--green-deep); z-index: 999; display: flex; flex-direction: column; justify-content: center; padding: 60px 40px; gap: 32px; transition: right 0.45s cubic-bezier(0.25,0.46,0.45,0.94); box-shadow: -20px 0 60px rgba(0,0,0,0.3); }
    .nav-drawer.open { right: 0; }
    .nav-drawer a { color: var(--ivory); font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; opacity: 0.85; transition: color 0.3s, opacity 0.3s; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; }
    .nav-drawer a:hover { color: var(--gold); opacity: 1; }
    .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .nav-overlay.open { opacity: 1; pointer-events: all; }

    /* ── PAGE HERO ── */
    .page-hero { background: var(--green-deep); padding: 160px 0 100px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(201,169,110,0.05)'/%3E%3C/svg%3E"); }
    .page-hero .container { position: relative; z-index: 1; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 32px; }
    .breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
    .breadcrumb a:hover { opacity: 0.75; }
    .breadcrumb span { color: rgba(245,240,232,0.25); }
    .page-hero h1 { color: var(--white); font-weight: 300; margin-bottom: 20px; }
    .page-hero h1 em { font-style: italic; color: var(--gold-light); }
    .page-hero-sub { color: rgba(245,240,232,0.6); font-size: 1rem; max-width: 560px; font-weight: 300; line-height: 1.75; }
    .page-hero-meta { display: flex; align-items: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
    .meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
    .meta-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }
    .meta-item strong { color: var(--gold); }

    /* ── MAIN SECTION ── */
    .main-section { padding: 100px 0 120px; background: var(--ivory); }
    .main-intro { max-width: 600px; margin-bottom: 72px; }
    .main-intro p { color: var(--text-muted); font-size: 0.95rem; margin-top: 16px; }

    /* ── CATEGORY GROUP ── */
    .acc-group { margin-bottom: 56px; }
    .acc-group-header {
      display: flex; align-items: center; gap: 16px;
      padding-bottom: 16px; margin-bottom: 20px;
      border-bottom: 1px solid rgba(30,58,47,0.1);
    }
    .acc-group-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(30,58,47,0.07);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--green-deep);
    }
    .acc-group-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .acc-group-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--green-deep); font-weight: 400; }
    .acc-group-count { margin-left: auto; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

    /* ── ACCORDION ── */
    .accordion { display: flex; flex-direction: column; gap: 10px; }
    .acc-item { background: var(--white); border: 1px solid rgba(30,58,47,0.09); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
    .acc-item.open { border-color: rgba(201,169,110,0.4); box-shadow: var(--shadow-sm); }
    .acc-trigger { width: 100%; display: flex; align-items: center; gap: 18px; padding: 24px 28px; text-align: left; cursor: pointer; background: none; border: none; transition: background 0.2s; }
    .acc-trigger:hover { background: rgba(30,58,47,0.02); }
    .acc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); opacity: 0.45; line-height: 1; flex-shrink: 0; width: 32px; transition: opacity 0.3s; }
    .acc-item.open .acc-num { opacity: 1; }
    .acc-main { flex: 1; min-width: 0; }
    .acc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--green-deep); display: block; line-height: 1.2; margin-bottom: 3px; }
    .acc-tag { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
    .acc-distance { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(201,169,110,0.1); padding: 4px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
    .acc-arrow { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(30,58,47,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--green-mid); transition: transform 0.4s var(--transition), background 0.3s, color 0.3s; }
    .acc-item.open .acc-arrow { transform: rotate(45deg); background: var(--green-deep); color: var(--gold); border-color: var(--green-deep); }
    .acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
    .acc-item.open .acc-body { max-height: 900px; }
    .acc-body-inner { padding: 0 28px 32px 78px; border-top: 1px solid rgba(30,58,47,0.06); }
    .acc-body-inner p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.85; margin-top: 22px; }
    .acc-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
    .acc-hl { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; color: var(--green-mid); background: rgba(30,58,47,0.06); padding: 5px 12px; border-radius: 20px; }
    .acc-hl::before { content: '✓'; color: var(--gold); font-size: 0.68rem; }
    .acc-note { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 0.76rem; color: var(--text-muted); font-style: italic; }
    .acc-note::before { content: 'ℹ'; font-style: normal; color: var(--gold); }

    /* ── BOTTOM CTA ── */
    .bottom-cta { background: var(--green-deep); padding: 100px 0; text-align: center; }
    .bottom-cta h2 { color: var(--ivory); margin-bottom: 14px; }
    .bottom-cta p { color: rgba(245,240,232,0.5); font-size: 0.95rem; max-width: 460px; margin: 0 auto 40px; }
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* ── FOOTER CTA BAND ── */
    .footer-cta-band { background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%); padding: 80px 0; text-align: center; border-top: 1px solid rgba(201,169,110,0.15); }
    .footer-cta-band h2 { color: var(--ivory); margin-bottom: 12px; }
    .footer-cta-band p { color: rgba(245,240,232,0.55); max-width: 480px; margin: 0 auto 36px; font-size: 0.92rem; }

    /* ── FOOTER ── */
    footer { background: var(--charcoal); color: rgba(245,240,232,0.55); padding: 60px 0 32px; }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; }
    .footer-col h4 { color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; font-family: 'Inter', sans-serif; font-weight: 500; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a { font-size: 0.83rem; transition: color 0.2s; color: rgba(245,240,232,0.45); }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom span { font-size: 0.78rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .page-hero { padding: 130px 0 70px; }
      .page-hero-meta { gap: 16px; }
      .acc-trigger { padding: 20px 18px; gap: 12px; }
      .acc-body-inner { padding: 0 18px 26px; }
      .acc-num { display: none; }
      .acc-distance { display: none; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 480px) {
      .footer-inner { grid-template-columns: 1fr; }
      .main-section { padding: 60px 0 80px; }
      .acc-group { margin-bottom: 40px; }
    }
    /* ── GO TO TOP ── */
    #goTop {
      position: fixed; bottom: 32px; right: 32px; z-index: 990;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--green-deep); border: 1px solid rgba(201,169,110,0.25);
      color: var(--gold); display: flex; align-items: center; justify-content: center;
      cursor: pointer; opacity: 0; pointer-events: none;
      transition: opacity 0.35s, transform 0.3s, border-color 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    #goTop.visible { opacity: 1; pointer-events: all; }
    #goTop:hover { transform: translateY(-3px); border-color: rgba(201,169,110,0.7); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
