*, *::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;
      --red: #9B2226; --deep-red: #7A1A1A;
    }
    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: 2px solid #B86810;
      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 ─── */
    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: #B04A20; border-bottom: 2px solid #B04A20; 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; } }

    /* ─── SHARED ─── */
    .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; }
    .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); }
    .check { color: var(--amber); margin-right: 8px; font-weight: 700; }
    .divider { height: 1px; background: var(--border); }

    /* ─── PAGE HERO ─── */
    .page-hero {
      position: relative; overflow: hidden;
      height: clamp(360px, 44vw, 520px);
      display: flex; align-items: flex-end;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background: url('/assets/images/private-large-group.jpg') center 40% / cover no-repeat;
    }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(13,10,7,0.2) 0%, rgba(13,10,7,0.5) 45%, rgba(13,10,7,0.94) 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.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #F5A830; margin-bottom: 10px; }
    .page-hero h1 { color: #F5ECD8 !important; font-family: 'Rye', cursive; font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--cream); line-height: 1.15; margin-bottom: 14px; }
    .page-hero p { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: #D4B892; font-weight: 300; max-width: 580px; line-height: 1.7; margin-bottom: 26px; }
    .page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ─── INTRO ─── */
    .intro-section {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: clamp(56px,7vw,88px) clamp(28px,6vw,80px);
    }
    .intro-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
    }
    @media (max-width: 860px) { .intro-inner { grid-template-columns: 1fr; } }
    .intro-inner img { width: 100%; height: 380px; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); }

    /* ─── PACKAGES ─── */
    .packages-section { padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px); }
    .packages-inner { max-width: 1200px; margin: 0 auto; }
    .packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
    @media (max-width: 860px) { .packages-grid { grid-template-columns: 1fr; } }

    .pkg-card {
      border-radius: 18px; overflow: hidden;
      border: 1px solid var(--border);
      display: flex; flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .pkg-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.45); }
    .pkg-card.featured { border-color: rgba(232,144,26,0.45); box-shadow: 0 0 0 1px rgba(232,144,26,0.18); }

    .pkg-photo { width: 100%; height: 240px; object-fit: cover; display: block; }
    .pkg-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 0; background: var(--surface); }
    .pkg-tier { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: 14px; }
    .pkg-tier.semi    { background: rgba(232,144,26,0.15); color: var(--amber); border: 1px solid rgba(232,144,26,0.3); }
    .pkg-tier.private { background: rgba(155,34,38,0.15); color: #CF4E52; border: 1px solid rgba(155,34,38,0.3); }
    .pkg-title { font-family: 'Rye', cursive; font-size: 1.4rem; color: var(--cream); line-height: 1.2; margin-bottom: 10px; }
    .pkg-tagline { font-size: 0.88rem; color: var(--light); font-weight: 300; line-height: 1.65; margin-bottom: 24px; }
    .pkg-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
    .pkg-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .pkg-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.86rem; color: var(--light); font-weight: 300; line-height: 1.5; }
    .pkg-list li .check { flex-shrink: 0; margin-top: 1px; }
    .pkg-note {
      margin-top: 22px; padding: 14px 16px;
      background: rgba(232,144,26,0.07); border: 1px solid rgba(232,144,26,0.2);
      border-radius: 8px; font-size: 0.8rem; color: var(--light); line-height: 1.65; font-weight: 300;
    }
    .pkg-note strong { color: var(--amber); }
    .pkg-cta {
      display: block; text-align: center; margin-top: 24px;
      padding: 13px 20px; border-radius: 8px;
      font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s, opacity 0.2s;
    }
    .pkg-cta.semi-cta { background: linear-gradient(135deg, var(--amber), var(--amber2)); color: #fff; border: none; }
    .pkg-cta.semi-cta:hover { opacity: 0.9; }
    .pkg-cta.private-cta { background: rgba(155,34,38,0.12); border: 1.5px solid rgba(155,34,38,0.4); color: #CF4E52; }
    .pkg-cta.private-cta:hover { background: rgba(155,34,38,0.22); }

    /* ─── CAPACITY STRIP ─── */
    .capacity-strip {
      background: linear-gradient(135deg, #2A1206, #3D2010);
      border-top: 1px solid rgba(232,144,26,0.2);
      border-bottom: 1px solid rgba(232,144,26,0.2);
      padding: clamp(40px,5vw,60px) clamp(28px,6vw,80px);
    }
    .capacity-inner {
      max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px; text-align: center;
    }
    .cap-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .cap-num { font-family: 'Rye', cursive; font-size: clamp(2rem, 4vw, 3rem); color: var(--amber); line-height: 1; }
    .cap-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); }
    .cap-desc { font-size: 0.78rem; color: var(--muted); font-weight: 300; line-height: 1.5; }

    /* ─── SCHEDULED vs UNSCHEDULED ─── */
    .pricing-section { padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px); background: var(--surface); border-top: 1px solid var(--border); }
    .pricing-inner { max-width: 1100px; margin: 0 auto; }
    .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
    @media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }
    .pricing-card {
      border-radius: 14px; border: 1px solid var(--border);
      background: var(--bg); padding: 32px 28px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .pricing-card.highlight { border-color: rgba(232,144,26,0.4); }
    .pricing-icon { font-size: 2.4rem; }
    .pricing-title { font-family: 'Rye', cursive; font-size: 1.2rem; color: var(--cream); }
    .pricing-desc { font-size: 0.87rem; color: var(--light); font-weight: 300; line-height: 1.7; }
    .pricing-detail { font-size: 0.8rem; color: var(--muted); line-height: 1.65; border-top: 1px solid var(--border); padding-top: 14px; }
    .pricing-detail strong { color: var(--amber); }

    /* ─── ADD-ONS ─── */
    .addons-section { padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px); }
    .addons-inner { max-width: 1100px; margin: 0 auto; }
    .addons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 40px;
    }
    @media (max-width: 860px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .addons-grid { grid-template-columns: 1fr; } }
    .addon-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 12px; padding: 22px 20px;
      display: flex; flex-direction: column; gap: 10px;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .addon-card:hover { transform: translateY(-3px); border-color: rgba(232,144,26,0.35); box-shadow: 0 10px 32px rgba(0,0,0,0.35); }
    .addon-icon { font-size: 1.8rem; }
    .addon-name { font-family: 'Rye', cursive; font-size: 0.88rem; color: var(--cream); line-height: 1.3; }
    .addon-desc { font-size: 0.78rem; color: var(--light); font-weight: 300; line-height: 1.6; flex: 1; }

    /* ─── GALLERY STRIP ─── */
    .gallery-strip {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
      height: clamp(200px, 28vw, 340px);
      overflow: hidden;
    }
    .gallery-strip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .gallery-strip img:hover { transform: scale(1.03); }

    /* ─── 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; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
    .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; }
    .callout-box { 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; }
    .callout-box 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/private-outdoors.jpg') center center / cover no-repeat; }
    .location-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,10,7,0.95) 0%, rgba(13,10,7,0.82) 55%, rgba(13,10,7,0.55) 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; }
    .location-cta-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.88); margin-bottom: 26px; font-weight: 400; line-height: 1.65; }
    .location-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ─── 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; }
    .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(300px, 56vw, 480px); }
      .page-hero-content { padding: 32px 20px 40px; }
      .page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
      .page-eyebrow { font-size: 0.875rem; }
      .page-hero p { font-size: 0.95rem; }
      /* Sections */
      .intro-section { padding: 36px 20px; }
      .packages-section { padding: 40px 20px; }
      .capacity-strip { padding: 32px 20px; }
      .pricing-section { padding: 40px 20px; }
      .addons-section { padding: 40px 20px; }
      .form-section { padding: 40px 20px; }
      .location-cta-inner { padding: 40px 20px; }
      /* Gallery strip: 2 columns on tablet */
      .gallery-strip { grid-template-columns: 1fr 1fr 1fr; height: clamp(160px, 24vw, 280px); }
      /* Orgs */
      .orgs-logos img { height: 44px; padding: 8px 12px; }
    }

    /* Gallery collapse at 640px */
    @media (max-width: 640px) {
      .gallery-strip { grid-template-columns: 1fr; height: auto; }
      .gallery-strip img { height: 200px; }
    }

    /* Mobile (≤ 480px) */
    @media (max-width: 480px) {
      /* Hero */
      .page-hero { height: clamp(340px, 92vw, 480px); }
      .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-section { padding: 28px 16px; }
      .packages-section { padding: 28px 16px; }
      .capacity-strip { padding: 24px 16px; }
      .pricing-section { padding: 28px 16px; }
      .addons-section { padding: 28px 16px; }
      .form-section { padding: 28px 16px; }
      /* Package cards */
      .pkg-body { padding: 22px 18px 28px; }
      .pkg-photo { height: 200px; }
      /* 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; }
      /* Gallery */
      .gallery-strip img { height: 180px; }
      /* Orgs */
      .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.15);
      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.9); text-decoration: none; letter-spacing: 0.1em;
      text-transform: uppercase; white-space: nowrap;
      border-bottom: 1px solid rgba(196,168,120,0.4);
      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;
    }
  
    /* 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;
    }
