*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #F4E8CE; --surface: #EAD9B4; --surface2: #DDCA9C;
      --border: rgba(100,55,10,0.18); --amber: #B86810; --amber2: #D4820E;
      --cream: #2C1406; --muted: #8B6035; --light: #50300E;
      --green: #2D6A4F; --red: #9B2226;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.65; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    input, select, textarea, button { font-family: 'Inter', sans-serif; }

    /* ─── TICKER ─── */
    .ticker-wrap {
      position: sticky; top: 0; z-index: 101;
      background: #2A1206;
      border-bottom: 1px solid rgba(232,144,26,0.3);
      overflow: hidden; height: 36px;
      display: flex; align-items: center;
    }
    .ticker-track {
      display: flex; align-items: center; gap: 32px;
      white-space: nowrap;
      animation: ticker 30s linear infinite;
      will-change: transform;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .ticker-item { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: #D8BC8A; text-transform: uppercase; cursor: pointer; }
    .ticker-item:hover { color: var(--amber); }
    .ticker-pill { background: var(--amber); color: #fff; padding: 1px 7px; border-radius: 3px; font-size: 0.65rem; font-weight: 800; margin-right: 6px; }
    .ticker-pill.gold { background: #C4A050; }
    .ticker-sep { color: rgba(232,144,26,0.4); font-size: 0.7rem; }

    /* ─── NAV ─── */
    /* EVENTS TICKER (second bar) */
    .ticker-wrap-events {
      background: #4A0E1A;
      border-bottom: 1px solid #8B2635;
      overflow: hidden; white-space: nowrap; height: 36px;
      display: flex; align-items: center;
      position: sticky; top: 36px; left: 0; right: 0; z-index: 100;
    }
    .ticker-wrap-events .ticker-track { animation-duration: 36s; }
    .ticker-wrap-events:hover .ticker-track { animation-play-state: paused; }
    .ticker-item-event {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 0 36px; font-family: 'Inter', sans-serif;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: #F5C6CC;
      text-decoration: none; transition: color 0.2s; cursor: pointer; white-space: nowrap;
    }
    .ticker-item-event:hover { color: #FF8A9A; }
    .ticker-sep-event { color: #8B2635; font-size: 0.65rem; flex-shrink: 0; padding: 0 4px; }
    .ticker-pill-event {
      display: inline-block; background: #8B2635; color: #fff;
      font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
      padding: 2px 7px; border-radius: 3px; text-transform: uppercase; flex-shrink: 0;
    }

    nav:not(.nav-drawer) {
      position: sticky; top: 72px; z-index: 100;
      background: #1E0A02; border-bottom: 2px solid #4A2810;
      padding: 0 clamp(16px,4vw,48px); height: 68px;
      display: flex; align-items: center;
      box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    }
    .nav-badge { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; }
    .nav-badge-emblem { width: 44px; height: 44px; }
    .nav-tagline {
      font-family: 'Rye', cursive;
      font-size: clamp(0.7rem, 1.3vw, 1rem);
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.06em;
      line-height: 1.2;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .nav-links { display: flex; align-items: center; gap: clamp(14px,2vw,28px); margin-left: auto; }
    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.9);
      text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: #E8901A; }
    .nav-links a.active { color: #E8901A; border-bottom: 2px solid #E8901A; padding-bottom: 2px; }
    .nav-cta {
      background: #B84A28 !important;
      color: #fff !important;
      padding: 10px 22px !important;
      border-radius: 4px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.75rem !important;
      font-weight: 800 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.14em !important;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: #983820 !important; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
    @media (max-width: 768px) { .nav-links { display: none; } }

    /* ─── PAGE HERO ─── */
    .page-hero {
      position: relative; overflow: hidden;
      height: clamp(320px, 40vw, 480px);
      display: flex; align-items: flex-end;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background: url('/assets/images/groups-hero.jpg') center 30% / cover no-repeat;
    }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        180deg,
        rgba(13,10,7,0.65) 0%,
        rgba(13,10,7,0.70) 50%,
        rgba(13,10,7,0.92) 100%
      );
    }
    .page-hero-content {
      position: relative; z-index: 1;
      padding: clamp(40px,5vw,64px) clamp(28px,6vw,80px);
      width: 100%;
    }
    .page-eyebrow {
      font-size: 0.82rem; font-weight: 800; letter-spacing: 0.2em;
      text-transform: uppercase; color: #FFFFFF;
      margin-bottom: 10px;
      text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }
    .page-hero h1 {
      font-family: 'Rye', cursive;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      color: #FFFFFF; line-height: 1.15;
      margin-bottom: 14px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.9);
    }
    .page-hero p {
      font-size: clamp(0.9rem, 1.4vw, 1.05rem);
      color: #F0E0C8; font-weight: 400;
      max-width: 560px; line-height: 1.7;
      margin-bottom: 24px;
    }
    .page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ─── SHARED COMPONENTS ─── */
    .section-label {
      font-size: 0.76rem; font-weight: 800; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--amber);
      margin-bottom: 10px; display: block;
    }
    .section-title {
      font-family: 'Rye', cursive;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--cream); line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.05rem; color: var(--light); font-weight: 300;
      line-height: 1.75; max-width: 640px;
    }
    .check { color: var(--amber); margin-right: 8px; font-weight: 700; }
    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--amber), var(--amber2));
      color: #fff; font-weight: 800; font-size: 0.82rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 14px 28px; border-radius: 8px; border: none;
      cursor: pointer; transition: opacity 0.2s, transform 0.2s;
    }
    .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
    .btn-ghost {
      display: inline-block;
      border: 1.5px solid rgba(100,55,10,0.3); color: var(--cream);
      font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 13px 26px; border-radius: 8px;
      cursor: pointer; transition: border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: var(--amber); background: rgba(100,55,10,0.07); }

    /* ─── INTRO STRIP ─── */
    .intro-strip {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: clamp(48px,6vw,72px) clamp(28px,6vw,80px);
    }
    .intro-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .intro-inner img {
      width: 100%; border-radius: 14px; object-fit: cover; height: 340px;
      border: 1px solid var(--border);
    }
    @media (max-width: 768px) { .intro-inner { grid-template-columns: 1fr; } }
    .intro-inner > * { min-width: 0; }

    /* ─── PERKS BAR ─── */
    .perks-bar {
      background: #120800;
      border-top: 1px solid rgba(196,149,10,0.2);
      border-bottom: 1px solid rgba(196,149,10,0.2);
      padding: 24px clamp(20px,4vw,60px) 20px;
    }
    .perks-grid {
      max-width: 900px; margin: 0 auto;
      display: flex; flex-wrap: wrap;
    }
    .perk-item {
      flex: 1; min-width: 160px; max-width: 200px;
      display: flex; flex-direction: column; align-items: center; text-align: center;
      gap: 10px; padding: 20px 16px 18px;
      border-right: 1px solid rgba(196,149,10,0.18);
      transition: background 0.2s;
    }
    .perk-item:last-child { border-right: none; }
    .perk-item:hover { background: rgba(196,149,10,0.05); }
    .perk-icon { width: 38px; height: 38px; color: #C4950A; flex-shrink: 0; }
    .perk-icon svg { width: 100%; height: 100%; stroke: #C4950A; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .perk-title { font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #C4950A; margin: 0; }
    .perk-desc { font-size: 0.82rem; color: rgba(255,245,220,0.8); font-weight: 400; line-height: 1.6; margin: 0; }

    /* ─── TIERS ─── */
    .tiers-section {
      padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px);
    }
    .tiers-inner { max-width: 1200px; margin: 0 auto; }
    .tiers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px; margin-top: 48px;
    }
    @media (max-width: 900px) { .tiers-grid { grid-template-columns: 1fr; } }
    .tier-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    }
    .tier-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .tier-card.featured {
      border-color: rgba(232,144,26,0.5);
      box-shadow: 0 0 0 1px rgba(232,144,26,0.2), 0 12px 40px rgba(232,144,26,0.12);
    }
    .tier-top-bar { height: 3px; }
    .tier-top-bar.private     { background: linear-gradient(90deg, #8B1A1A, #C0392B); }
    .tier-top-bar.semi        { background: linear-gradient(90deg, var(--amber), var(--amber2)); }
    .tier-top-bar.nonprivate  { background: linear-gradient(90deg, #2D6A4F, #3D9970); }
    .tier-inner { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; gap: 0; }
    .tier-badge {
      display: inline-block; font-size: 0.65rem; font-weight: 800;
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 4px; margin-bottom: 14px;
    }
    .tier-badge.private    { background: rgba(192,57,43,0.15); color: #C0392B; border: 1px solid rgba(192,57,43,0.3); }
    .tier-badge.semi       { background: rgba(232,144,26,0.15); color: var(--amber); border: 1px solid rgba(232,144,26,0.3); }
    .tier-badge.nonprivate { background: rgba(45,106,79,0.15); color: #3D9970; border: 1px solid rgba(45,106,79,0.3); }
    .tier-title {
      font-family: 'Rye', cursive;
      font-size: 1.3rem; color: var(--cream);
      margin-bottom: 8px; line-height: 1.2;
    }
    .tier-subtitle { font-size: 0.82rem; color: var(--light); font-weight: 300; line-height: 1.6; margin-bottom: 22px; }
    .tier-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
    .tier-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
    .tier-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--light); font-weight: 300; line-height: 1.5; }
    .tier-list li .check { flex-shrink: 0; margin-top: 1px; }
    .tier-cta {
      display: block; text-align: center;
      background: rgba(232,144,26,0.12); border: 1.5px solid rgba(232,144,26,0.35);
      color: var(--amber); font-weight: 700; font-size: 0.8rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 12px 20px; border-radius: 8px;
      cursor: pointer; transition: background 0.2s, border-color 0.2s;
    }
    .tier-cta:hover { background: rgba(232,144,26,0.22); border-color: var(--amber); }
    .tier-cta.featured-cta {
      background: linear-gradient(135deg, var(--amber), var(--amber2));
      border-color: transparent; color: #fff;
    }
    .tier-cta.featured-cta:hover { opacity: 0.9; }

    /* ─── WHAT'S INCLUDED ─── */
    .included-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px);
    }
    .included-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
    }
    @media (max-width: 768px) { .included-inner { grid-template-columns: 1fr; } }
    .included-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
    .included-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 10px;
    }
    .included-num {
      font-family: 'Rye', cursive; font-size: 1.2rem;
      color: var(--amber); flex-shrink: 0; line-height: 1; padding-top: 2px;
    }
    .included-text h4 { font-size: 0.88rem; font-weight: 700; color: var(--cream); margin-bottom: 3px; }
    .included-text p  { font-size: 0.8rem; color: var(--light); font-weight: 300; line-height: 1.6; }
    .included-photo-wrap { position: relative; }
    .included-photo-wrap img {
      width: 100%; border-radius: 14px; object-fit: cover;
      height: 420px; border: 1px solid var(--border);
    }
    .included-photo-badge {
      position: absolute; bottom: 20px; left: 20px; right: 20px;
      background: rgba(13,10,7,0.92); border: 1px solid rgba(232,144,26,0.3);
      border-radius: 10px; padding: 14px 18px;
      font-size: 0.82rem; color: #F0E0C8; font-weight: 400; line-height: 1.6;
      backdrop-filter: blur(8px);
    }
    .included-photo-badge strong { color: #FFB347; font-weight: 700; }

    /* ─── CONTACT FORM ─── */
    .form-section {
      padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px);
    }
    .form-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
    }
    @media (max-width: 900px) { .form-inner { grid-template-columns: 1fr; gap: 32px; } }
    .form-inner > * { min-width: 0; }
    .form-sidebar { }
    .form-sidebar .section-sub { margin-bottom: 32px; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; }
    .contact-row {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 16px;
      background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
    }
    .contact-row-icon { font-size: 1.3rem; flex-shrink: 0; }
    .contact-row-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
    .contact-row-val { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
    .contact-row-val a { color: var(--amber); }
    .contact-row-val a:hover { text-decoration: underline; }
    .group-note {
      margin-top: 24px; padding: 16px 18px;
      background: rgba(232,144,26,0.06); border: 1px solid rgba(232,144,26,0.2);
      border-radius: 10px; font-size: 0.82rem; color: var(--light);
      line-height: 1.7; font-weight: 300;
    }
    .group-note strong { color: var(--amber); }

    .rfp-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 540px) { .form-row-2 { grid-template-columns: 1fr; } }
    .form-field { display: flex; flex-direction: column; gap: 5px; }
    .form-field label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: var(--surface); border: 1px solid rgba(232,144,26,0.2);
      border-radius: 8px; padding: 11px 14px; color: var(--cream); font-size: 0.9rem;
      outline: none; transition: border-color 0.2s;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus { border-color: var(--amber); background: rgba(232,144,26,0.04); }
    .form-field select option { background: #3D2010; }
    .form-field textarea { min-height: 110px; resize: vertical; }
    .form-submit {
      background: linear-gradient(135deg, var(--amber), var(--amber2));
      border: none; border-radius: 8px; padding: 14px;
      color: #fff; font-weight: 800; font-size: 0.85rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer; transition: opacity 0.2s, transform 0.2s;
      width: 100%;
    }
    .form-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
    .form-success {
      display: none; text-align: center; padding: 24px;
      background: rgba(45,106,79,0.15); border: 1px solid rgba(45,106,79,0.3);
      border-radius: 10px; color: #3D9970; font-weight: 600;
    }

    /* ─── LOCATION CTA ─── */
    .location-cta {
      position: relative; overflow: hidden;
      min-height: 300px; display: flex; align-items: center;
    }
    .location-cta-bg {
      position: absolute; inset: 0;
      background: url('/assets/images/wagon.jpg') center center / cover no-repeat;
    }
    .location-cta-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(13,10,7,0.72) 0%, rgba(13,10,7,0.45) 70%, rgba(13,10,7,0.15) 100%);
    }
    .location-cta-inner {
      position: relative; z-index: 1;
      padding: clamp(48px,6vw,72px) clamp(28px,6vw,80px);
      max-width: 600px;
    }
    .location-cta-inner h2 {
      font-family: 'Rye', cursive;
      font-size: clamp(1.6rem,3.5vw,2.4rem);
      color: #FFFFFF; margin-bottom: 10px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    }
    .location-cta-inner p { font-size: 0.95rem; color: #F0E0C8; margin-bottom: 26px; font-weight: 400; line-height: 1.65; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
    .location-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .location-cta-inner .section-label { color: #FFFFFF; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

    /* ─── ORG LOGOS ─── */
        .orgs-section {
      background: #2E1D0E;
      border-top: 1px solid rgba(184,104,16,0.2);
      border-bottom: 1px solid rgba(184,104,16,0.2);
      padding: clamp(40px,5vw,64px) clamp(20px,6vw,80px);
    }
    .orgs-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: clamp(28px,4vw,60px); flex-wrap: wrap; justify-content: center; }
    .orgs-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); white-space: nowrap; flex-shrink: 0; }
    .orgs-logos { display: flex; align-items: center; gap: clamp(20px,4vw,48px); flex-wrap: wrap; }
    .orgs-logos img { height: 64px; object-fit: contain; background: #fff; border-radius: 8px; padding: 10px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); transition: opacity 0.2s, transform 0.2s; }
    .orgs-logos img:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }

    /* ─── FOOTER ─── */
    footer {
      background: #0D0A07;
      border-top: 1px solid rgba(184,104,16,0.15);
      padding: clamp(48px,6vw,72px) clamp(20px,6vw,80px) clamp(32px,4vw,48px);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 220px 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand img { height: 80px; margin-bottom: 20px; display: block; filter: brightness(0) invert(1); }
    .footer-social { display: flex; gap: 14px; margin-top: 4px; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(184,104,16,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--amber); transition: all 0.2s;
    }
    .footer-social a:hover { background: rgba(184,104,16,0.2); border-color: var(--amber); }
    .footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a, .footer-col p a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
    .footer-col ul li a:hover, .footer-col p a:hover { color: var(--cream); }
    .footer-col p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
    .footer-bottom {
      max-width: 1200px; margin: 48px auto 0;
      padding-top: 24px; border-top: 1px solid rgba(184,104,16,0.1);
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    }
    .footer-bottom p { font-size: 0.75rem; color: rgba(139,96,53,0.6); }
    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

    /* ─── MOBILE OPTIMIZATION ─── */

    /* Tablet (≤ 768px) */
    @media (max-width: 768px) {
      /* Hero */
      .page-hero { height: clamp(280px, 52vw, 440px); }
      .page-hero-content { padding: 32px 20px 40px; }
      .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
      .page-eyebrow { font-size: 0.875rem; }
      .page-hero p { font-size: 0.95rem; }
      /* Sections */
      .intro-strip { padding: 36px 20px; }
      .tiers-section { padding: 40px 20px; }
      .included-section { padding: 40px 20px; }
      .form-section { padding: 40px 20px; }
      .location-cta-inner { padding: 40px 20px; }
      /* Perks bar */
      .perks-bar { padding: 16px; }
      .perk-item { min-width: 140px; padding: 14px 12px; }
      /* Orgs */
      .orgs-logos img { height: 44px; padding: 8px 12px; }
    }

    /* Mobile (≤ 480px) */
    @media (max-width: 480px) {
      /* Hero */
      .page-hero { height: clamp(320px, 88vw, 440px); }
      .page-hero-content { padding: 24px 16px 32px; }
      .page-hero h1 { font-size: clamp(1.7rem, 8vw, 2.5rem); line-height: 1.2; }
      .page-eyebrow { font-size: 0.875rem; letter-spacing: 0.14em; }
      .page-hero p { font-size: 0.95rem; line-height: 1.7; }
      /* Stack hero CTAs */
      .page-hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
      .page-hero-actions .btn-primary,
      .page-hero-actions .btn-ghost { width: 100%; text-align: center; padding: 16px; min-height: 48px; }
      /* Sections */
      .intro-strip { padding: 28px 16px; }
      .tiers-section { padding: 28px 16px; }
      .included-section { padding: 28px 16px; }
      .form-section { padding: 28px 16px; }
      /* Perks bar */
      .perks-bar { padding: 12px; }
      .perks-grid { justify-content: center; }
      .perk-item { min-width: 130px; flex: 0 1 45%; border-right: none; border-bottom: 1px solid rgba(196,149,10,0.18); padding: 12px 10px; }
      .perk-item:nth-child(odd) { border-right: 1px solid rgba(196,149,10,0.18); }
      .perk-item:last-child { border-bottom: none; }
      /* Location CTA */
      .location-cta-inner { padding: 32px 16px; }
      .location-cta-actions { flex-direction: column; gap: 10px; }
      .location-cta-actions a { width: 100%; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; }
      /* Who books grid */
      .orgs-logos { gap: 10px; }
      .orgs-logos img { height: 32px; padding: 6px 10px; }
      .orgs-inner { gap: 12px; flex-direction: column; align-items: flex-start; }
    }
    
    /* DROPDOWNS */
    .nav-item { position: relative; }
    .nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
    .nav-item > a::after { content: "\25be"; font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
    .nav-item:hover > a::after { transform: rotate(180deg); }
    .nav-dropdown {
      display: none; position: absolute; top: calc(100% + 10px); left: 50%;
      transform: translateX(-50%); background: #1E0A02; border: 1.5px solid #4A2810;
      border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
      min-width: 180px; z-index: 200; overflow: hidden;
    }
    .nav-dropdown a {
      display: block; padding: 10px 18px;
      font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
      color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: 0.1em;
      text-transform: uppercase; white-space: nowrap;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown a:last-child { border-bottom: none; }
    .nav-dropdown a:hover { background: #2E1206; color: #E8901A; }
    .nav-item:hover .nav-dropdown { display: block; }
    /* Bridge the gap so mouse can travel from link to dropdown */
    .nav-item::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      height: 20px;
    }
    .nav-drawer-sub { padding-left: 18px; }
    .nav-drawer-sub a {
      display: block; padding: 8px 16px;
      font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
      color: rgba(255,248,232,0.7); text-decoration: none;
      letter-spacing: 0.08em; text-transform: uppercase;
      border-left: 2px solid rgba(196,149,10,0.4); margin: 2px 0; transition: color 0.2s;
    }
    .nav-drawer-sub a:hover { color: #F5C842; }
    .nav-drawer-section {
      font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 800;
      color: rgba(255,248,232,0.5); letter-spacing: 0.15em;
      text-transform: uppercase; padding: 14px 16px 4px;
    }
