*, *::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;
      --rose: #C4526A; --rose2: #E07088; --blush: rgba(196,82,106,0.12);
      --gold: #C4A050; --gold2: #E0C070;
    }
    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-label.rose { color: var(--rose2); }
    .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-primary.rose-btn { background: linear-gradient(135deg, var(--rose), var(--rose2)); }
    .btn-ghost { display: inline-block; border: 1.5px solid rgba(255,255,255,0.7); color: #FFFFFF; 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; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
    .divider { height: 1px; background: var(--border); }

    /* ─── HERO ─── */
    .page-hero { position: relative; overflow: hidden; min-height: clamp(520px, 80vw, 700px); display: flex; align-items: flex-end; }
    .page-hero-bg { position: absolute; inset: 0; background: url('/assets/images/wedding-hero.jpg') center 30% / cover no-repeat; }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(13,10,7,0.15) 0%, rgba(13,10,7,0.35) 40%, rgba(13,10,7,0.92) 100%);
    }
    /* Subtle rose vignette on right */
    .page-hero-overlay::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 40%, rgba(196,82,106,0.12) 0%, transparent 60%); }
    .page-hero-content { position: relative; z-index: 1; padding: clamp(24px,5vw,64px) clamp(20px,6vw,80px) clamp(32px,5vw,64px); width: 100%; }
    .page-eyebrow { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 10px; text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6); }
    .page-hero h1 { color: #FFFFFF !important; font-family: 'Rye', cursive; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 4px 30px rgba(0,0,0,0.6); }
    .page-hero h1 em { font-style: italic; color: #FF8FAD; text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 4px 30px rgba(0,0,0,0.5); }
    .page-hero p { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: #FFFFFF; font-weight: 400; max-width: 560px; line-height: 1.75; margin-bottom: 28px; text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.7); }
    .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: 1fr 1fr; gap: 64px; align-items: center; }
    @media (max-width: 860px) { .intro-inner { grid-template-columns: 1fr; } }
    .intro-inner img { width: 100%; height: 420px; object-fit: cover; border-radius: 14px; border: 1px solid rgba(196,82,106,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
    .intro-quote {
      margin: 28px 0 32px;
      padding: 20px 24px;
      border-left: 3px solid var(--rose);
      background: var(--blush);
      border-radius: 0 10px 10px 0;
    }
    .intro-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: #2C1406; line-height: 1.7; }
    .intro-quote cite { display: block; margin-top: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose2); font-style: normal; }

    /* ─── WHY THE RANCH ─── */
    .why-section { padding: clamp(60px,8vw,100px) clamp(28px,6vw,80px); }
    .why-inner { max-width: 1200px; margin: 0 auto; }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
    .why-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px;
      display: flex; flex-direction: column; gap: 12px;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    }
    .why-card:hover { transform: translateY(-4px); border-color: rgba(196,82,106,0.35); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
    .why-icon { font-size: 2rem; }
    .why-title { font-family: 'Rye', cursive; font-size: 1rem; color: var(--cream); line-height: 1.3; }
    .why-desc { font-size: 0.84rem; color: var(--light); font-weight: 300; line-height: 1.7; flex: 1; }

    /* ─── PHOTO GALLERY ─── */
    .gallery-mosaic {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 260px 260px;
      gap: 4px;
      overflow: hidden;
    }
    .gallery-mosaic .g1 { grid-column: 1; grid-row: 1 / 3; }
    .gallery-mosaic .g2 { grid-column: 2; grid-row: 1; }
    .gallery-mosaic .g3 { grid-column: 3; grid-row: 1; }
    .gallery-mosaic .g4 { grid-column: 2 / 4; grid-row: 2; }
    .gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .gallery-mosaic img:hover { transform: scale(1.04); }
    .gallery-mosaic div { overflow: hidden; }
    @media (max-width: 700px) {
      .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
      .gallery-mosaic .g1 { grid-column: 1 / 3; grid-row: 1; }
      .gallery-mosaic .g2 { grid-column: 1; grid-row: 2; }
      .gallery-mosaic .g3 { grid-column: 2; grid-row: 2; }
      .gallery-mosaic .g4 { grid-column: 1 / 3; grid-row: 3; }
    }

    /* ─── 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; }
    .included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
    .inc-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; transition: border-color 0.2s; }
    .inc-card:hover { border-color: rgba(196,82,106,0.3); }
    .inc-card-icon { font-size: 1.7rem; }
    .inc-card-title { font-family: 'Rye', cursive; font-size: 0.9rem; color: var(--cream); }
    .inc-card-desc { font-size: 0.8rem; color: var(--light); font-weight: 300; line-height: 1.65; }

    /* ─── EVENTECTIVE CALLOUT ─── */
    .eventective-bar {
      background: linear-gradient(135deg, #2A1206 0%, #3D2010 50%, #2A1206 100%);
      border-top: 1px solid rgba(196,82,106,0.2);
      border-bottom: 1px solid rgba(196,82,106,0.2);
      padding: clamp(40px,5vw,60px) clamp(28px,6vw,80px);
    }
    .eventective-inner {
      max-width: 900px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .eventective-text h3 { font-family: 'Rye', cursive; font-size: 1.3rem; color: #F5ECD8; margin-bottom: 8px; }
    .eventective-text p { font-size: 0.88rem; color: rgba(245,236,216,0.75); font-weight: 300; line-height: 1.65; max-width: 480px; }
    .eventective-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--rose), var(--rose2));
      color: #fff; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 14px 24px; border-radius: 8px; white-space: nowrap;
      transition: opacity 0.2s, transform 0.2s; flex-shrink: 0;
    }
    .eventective-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }

    /* ─── 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(--rose2); }
    .contact-row-val a:hover { text-decoration: underline; }
    .callout-box { margin-top: 24px; padding: 16px 18px; background: var(--blush); border: 1px solid rgba(196,82,106,0.25); border-radius: 10px; font-size: 0.82rem; color: var(--light); line-height: 1.7; font-weight: 300; }
    .callout-box strong { color: var(--rose2); }
    .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(196,82,106,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(--rose); background: rgba(196,82,106,0.04); }
    .form-field select option { background: #3D2010; }
    .form-field textarea { min-height: 120px; resize: vertical; }
    .form-submit { background: linear-gradient(135deg, var(--rose), var(--rose2)); 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/wedding-sedona.jpg') center 40% / 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(320px, 60vw, 520px); }
      .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; }
      /* Intro */
      .intro-section { padding: 36px 20px; }
      /* Why section */
      .why-section { padding: 40px 20px; }
      /* Included */
      .included-section { padding: 40px 20px; }
      /* Form */
      .form-section { padding: 40px 20px; }
      /* Location CTA */
      .location-cta-inner { padding: 40px 20px; }
      /* Orgs */
      .orgs-logos img { height: 44px; padding: 8px 12px; }
      /* Eventective */
      .eventective-bar { padding: 32px 20px; }
    }

    /* Eventective stack at 640px */
    @media (max-width: 640px) {
      .eventective-inner { flex-direction: column; gap: 20px; }
      .eventective-btn { align-self: flex-start; }
    }

    /* Mobile (≤ 480px) */
    @media (max-width: 480px) {
      /* Hero */
      .page-hero { height: clamp(380px, 90vw, 520px); }
      .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; }
      /* Intro */
      .intro-section { padding: 28px 16px; }
      .intro-quote { padding: 16px 18px; }
      .intro-quote p { font-size: 1rem; }
      /* Button row in intro */
      div[style*="display:flex;gap:12px"],
      div[style*="display: flex; gap: 12px"] { flex-direction: column; }
      /* Why section */
      .why-section { padding: 28px 16px; }
      /* Included */
      .included-section { padding: 28px 16px; }
      .included-grid { grid-template-columns: 1fr; }
      /* 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; justify-content: center; min-height: 48px; display: flex; align-items: center; }
      /* Form */
      .form-section { padding: 28px 16px; }
      .contact-row { padding: 12px 14px; }
      /* 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;
    }
