:root {
    --green-light: #c8e86a;
    --green-mid: #6db33f;
    --green-dark: #2d7a1f;
    --black: #0a0a0a;
    --off-white: #f5f0e8;
    --gray: #888;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--black);
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(109,179,63,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Noise texture */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
  }

  .hero-logo {
    width: min(280px, 55vw);
    height: min(280px, 55vw);
    border-radius: 50%;
    object-fit: cover;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(109,179,63,0.4));
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  @keyframes logoFloat {
    0%, 100% { transform: translateY(0px); filter: drop-shadow(0 0 60px rgba(109,179,63,0.4)); }
    50% { transform: translateY(-12px); filter: drop-shadow(0 0 80px rgba(109,179,63,0.6)); }
  }

  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s 0.2s both;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 12vw, 130px);
    line-height: 0.92;
    text-align: center;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s 0.4s both;
  }

  .hero-title .line-green {
    color: var(--green-light);
    display: block;
  }

  .hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(14px, 2.5vw, 20px);
    color: rgba(245,240,232,0.6);
    text-align: center;
    max-width: 480px;
    margin: 24px auto 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s 0.6s both;
  }

  .hero-cta {
    margin-top: 48px;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s 0.8s both;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(109,179,63,0.4);
  }

  .btn-secondary {
    background: transparent;
    color: var(--off-white);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 36px;
    border: 1px solid rgba(245,240,232,0.25);
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .btn-secondary:hover {
    border-color: var(--green-mid);
    color: var(--green-light);
    transform: translateY(-2px);
  }


  /* ─── YEAR BAND ─── */
  .year-band {
    background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-dark));
    padding: 14px 0;
    overflow: hidden;
  }

  .year-ticker {
    display: flex;
    gap: 60px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
  }

  .year-ticker span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: rgba(10,10,10,0.6);
  }

  .year-ticker .dot {
    color: rgba(10,10,10,0.3);
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── EVENTS SECTION ─── */
  .section {
    padding: 100px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 60px;
  }

  /* Events grid */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2px;
  }

  .event-card {
    background: #111;
    padding: 32px 24px;
    border-top: 2px solid #1a1a1a;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .event-card:hover::before { transform: scaleX(1); }
  .event-card:hover { background: #161616; }

  .event-card.sold-out-soon { border-left: 1px solid rgba(109,179,63,0.3); }

  .event-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(245,240,232,0.2);
    margin-bottom: 24px;
  }

  .event-city {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--off-white);
  }

  .event-venue {
    font-size: 11px;
    font-weight: 300;
    color: rgba(245,240,232,0.4);
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .event-date {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--green-light);
    margin-bottom: 20px;
  }

  .event-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: white;
    text-decoration: none;
    transition: all 0.3s;
  }

  .event-badge:hover {
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    transform: translateX(4px);
  }

  .event-badge.save {
    background: transparent;
    border: 1px solid rgba(245,240,232,0.2);
    color: rgba(245,240,232,0.5);
  }

  /* ─── ABOUT STRIP ─── */
  .about-strip {
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  @media (max-width: 700px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
  }

  .about-stat-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat-label {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
  }

  .about-text p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.7;
    color: rgba(245,240,232,0.75);
    margin-bottom: 20px;
  }

  .about-text p:first-child {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--off-white);
  }

  /* ─── PASSPORT CTA ─── */
  .passport-cta {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
  }

  .passport-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(109,179,63,0.08) 0%, transparent 70%);
  }

  .passport-cta .section-label { text-align: center; }

  .passport-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    margin-bottom: 24px;
  }

  .passport-cta p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: rgba(245,240,232,0.5);
    max-width: 400px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid #1a1a1a;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }

  footer .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(245,240,232,0.3);
  }

  footer .footer-links {
    display: flex;
    gap: 32px;
  }

  footer a {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  footer a:hover { color: var(--green-light); }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }