:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5E9C8;
    --deep-purple: #1E0A3C;
    --mid-purple: #3B1C6E;
    --violet: #6B3FA0;
    --cream: #FAF6EE;
    --white: #FFFFFF;
    --dark: #0D0519;
    --text-muted: #9B8BAC;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(13,5,25,0.95) 0%, rgba(13,5,25,0) 100%);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(13,5,25,0.97); backdrop-filter: blur(12px); }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; text-transform: uppercase; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: var(--cream); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 24px; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
  .nav-cta:hover { background: var(--gold); color: var(--dark); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107,63,160,0.35) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(59,28,110,0.4) 0%, transparent 60%),
      linear-gradient(160deg, #0D0519 0%, #1E0A3C 50%, #0D0519 100%);
  }

  /* Animated orbs */
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 8s ease-in-out infinite;
  }
  .orb-1 { width: 500px; height: 500px; background: rgba(107,63,160,0.2); top: -100px; left: -100px; animation-delay: 0s; }
  .orb-2 { width: 300px; height: 300px; background: rgba(201,168,76,0.12); top: 20%; right: 5%; animation-delay: 3s; }
  .orb-3 { width: 400px; height: 400px; background: rgba(59,28,110,0.25); bottom: -50px; right: -50px; animation-delay: 1.5s; }

  @keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.97); }
  }

  /* Gold particle lines */
  .hero-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(201,168,76,0.06) 49%, rgba(201,168,76,0.06) 51%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(201,168,76,0.04) 49%, rgba(201,168,76,0.04) 51%, transparent 52%);
    background-size: 60px 60px;
  }

  .hero-content { position: relative; z-index: 2; max-width: 900px; }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
  }

  .hero-logo-img {
    width: min(380px, 85vw);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
    filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
  }
  .hero-tagline em { font-style: italic; color: var(--gold-light); }

  .hero-sub {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
  }

  .hero-meta {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
  }
  .hero-meta-item { text-align: center; }
  .hero-meta-item .value { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
  .hero-meta-item .label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; display: block; }

  .hero-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.3); margin: 0 auto; display: block; }

  .hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: var(--dark);
    border: none;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }

  .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
  }
  .scroll-indicator span { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ── SECTION COMMONS ── */
  section { position: relative; z-index: 1; }

  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }

  .gold-rule { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); margin-bottom: 32px; }

  /* ── STATS BAND ── */
  #stats {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(59,28,110,0.5) 0%, rgba(30,10,60,0.8) 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(201,168,76,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item.visible { opacity: 1; transform: translateY(0); }
  .stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--gold); line-height: 1; display: block; }
  .stat-desc { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; display: block; }

  /* ── CONCEPT ── */
  #concept {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, #130826 50%, var(--dark) 100%);
  }
  .concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .concept-text p { font-size: 0.9rem; line-height: 1.9; color: rgba(250,246,238,0.75); margin-bottom: 20px; font-weight: 300; }
  .concept-visual {
    position: relative;
    height: 480px;
  }
  .concept-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107,63,160,0.3) 0%, rgba(30,10,60,0.6) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .concept-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(201,168,76,0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
  }
  @keyframes shimmer { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
  .placeholder-label { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(201,168,76,0.5); letter-spacing: 0.1em; text-align: center; padding: 20px; }
  .placeholder-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }

  /* Floating accent card */
  .concept-accent-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--dark);
    padding: 28px 32px;
    width: 200px;
  }
  .concept-accent-card .number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
  .concept-accent-card .text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-top: 6px; display: block; }

  .reasons-list { list-style: none; margin-top: 32px; }
  .reasons-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    font-size: 0.8rem;
    color: rgba(250,246,238,0.7);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .reasons-list li.visible { opacity: 1; transform: translateX(0); }
  .reasons-list li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 5px; flex-shrink: 0; }

  /* ── ZONES ── */
  #zones {
    padding: 120px 0;
    background: #0A0418;
  }
  .zones-header { text-align: center; margin-bottom: 72px; }
  .zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.12);
  }
  .zone-card {
    background: #0D0519;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.4s;
  }
  .zone-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .zone-card:hover { background: #150929; }
  .zone-card:hover::before { transform: scaleX(1); }
  .zone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
    transition: color 0.4s;
  }
  .zone-card:hover .zone-number { color: rgba(201,168,76,0.2); }
  .zone-icon { font-size: 1.6rem; margin-bottom: 16px; }
  .zone-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--gold-light); margin-bottom: 10px; line-height: 1.2; }
  .zone-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.7; }

  /* zone placeholder image */
  .zone-img {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(107,63,160,0.2) 0%, rgba(30,10,60,0.4) 100%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(201,168,76,0.15);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.3);
    /* REPLACE: set background-image: url('your-zone-photo.jpg'); background-size: cover; */
  }

  /* ── TIERS ── */
  #tiers {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0418 0%, var(--deep-purple) 50%, #0A0418 100%);
  }
  .tiers-header { text-align: center; margin-bottom: 72px; }
  .tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .tier-card {
    background: linear-gradient(160deg, rgba(30,10,60,0.8) 0%, rgba(13,5,25,0.95) 100%);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    opacity: 0;
    transform: translateY(40px);
  }
  .tier-card.visible { opacity: 1; transform: translateY(0); }
  .tier-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.5); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.08); }
  .tier-card.featured { border-color: rgba(201,168,76,0.5); background: linear-gradient(160deg, rgba(59,28,110,0.8) 0%, rgba(30,10,60,0.95) 100%); }
  .tier-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 6px 16px;
  }
  .tier-icon { font-size: 2.5rem; margin-bottom: 24px; display: block; }
  .tier-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold-light); margin-bottom: 8px; }
  .tier-tagline { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 32px; display: block; }
  .tier-perks { list-style: none; margin-bottom: 40px; }
  .tier-perks li { font-size: 0.77rem; color: rgba(250,246,238,0.7); padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.07); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  .tier-perks li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
  .tier-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 28px; display: block; }
  .tier-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
  }
  .tier-cta:hover { background: var(--gold); color: var(--dark); }
  .tier-card.featured .tier-cta { background: var(--gold); color: var(--dark); }
  .tier-card.featured .tier-cta:hover { background: var(--gold-light); }

  /* ── ACCESS PASSES ── */
  #passes {
    padding: 80px 0;
    background: rgba(13,5,25,0.95);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .passes-header { text-align: center; margin-bottom: 56px; }
  .passes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pass-card {
    padding: 32px 24px;
    text-align: center;
    background: linear-gradient(160deg, rgba(30,10,60,0.6) 0%, rgba(13,5,25,0.8) 100%);
    border: 1px solid rgba(201,168,76,0.12);
    transition: border-color 0.3s, transform 0.3s;
  }
  .pass-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
  .pass-type { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
  .pass-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px; }
  .pass-duration { font-size: 0.6rem; color: var(--text-muted); display: block; margin-bottom: 16px; }
  .pass-desc { font-size: 0.72rem; color: rgba(250,246,238,0.6); line-height: 1.6; }

  /* ── MARKETING ── */
  #reach {
    padding: 100px 0;
    background: #060212;
  }
  .reach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
  .media-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
  .media-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: border-color 0.3s, color 0.3s;
  }
  .media-item:hover { border-color: rgba(201,168,76,0.3); color: var(--gold-pale); }
  .reach-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .reach-visual-item {
    background: linear-gradient(135deg, rgba(107,63,160,0.2) 0%, rgba(30,10,60,0.5) 100%);
    border: 1px dashed rgba(201,168,76,0.12);
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.3);
    gap: 8px;
    /* REPLACE: add background-image, background-size: cover */
  }
  .reach-visual-item .ri-icon { font-size: 1.5rem; opacity: 0.3; }

  /* ── FUTURE CITIES ── */
  #cities {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(59,28,110,0.3) 0%, rgba(13,5,25,0.95) 100%);
    overflow: hidden;
  }
  .cities-marquee-wrap { overflow: hidden; margin-top: 48px; }
  .cities-marquee { display: flex; gap: 48px; animation: marquee 20s linear infinite; white-space: nowrap; }
  .city-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.3);
    letter-spacing: 0.15em;
    flex-shrink: 0;
    transition: color 0.3s;
  }
  .city-tag:hover { color: var(--gold); }
  .city-divider { color: rgba(201,168,76,0.15); flex-shrink: 0; font-size: 1.2rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── CONTACT ── */
  #contact {
    padding: 120px 0;
    background: var(--dark);
  }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-info .info-card { margin-top: 40px; }
  .contact-person { margin-bottom: 32px; padding: 28px; border-left: 2px solid rgba(201,168,76,0.3); }
  .contact-person .name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); margin-bottom: 4px; }
  .contact-person .title { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; display: block; }
  .contact-person .detail { font-size: 0.75rem; color: rgba(250,246,238,0.6); display: flex; gap: 8px; margin-bottom: 6px; }
  .contact-person .detail a { color: inherit; text-decoration: none; }
  .contact-person .detail a:hover { color: var(--gold); }

  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--cream);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
  .form-group select option { background: var(--deep-purple); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    border: none;
    padding: 18px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
  .form-submit:active { transform: translateY(0); }

  /* ── FOOTER ── */
  footer {
    padding: 48px;
    background: #050110;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(201,168,76,0.6); letter-spacing: 0.2em; }
  .footer-center { text-align: center; }
  .footer-center p { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.15em; }
  .footer-social { display: flex; gap: 16px; }
  .social-link { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--text-muted); text-decoration: none; transition: all 0.3s; }
  .social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

  /* ── ANIMATIONS ── */
  .fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in-up.visible { opacity: 1; transform: translateY(0); }

  /* ── MOBILE ── */
  @media (max-width: 1024px) {
    .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .concept-grid, .reach-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .passes-grid { grid-template-columns: repeat(2, 1fr); }
    .concept-accent-card { display: none; }
    .concept-visual { height: 300px; }
    .reach-visual-grid { display: none; }
  }

  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .section-inner { padding: 0 24px; }
    .hero-meta { gap: 28px; }
    .hero-meta-item .value { font-size: 1.5rem; }
    .zones-grid { grid-template-columns: 1fr; }
    .passes-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 32px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .media-logos { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── PARALLAX DIVIDER ── */
  .parallax-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ── TOAST ── */
  #toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 32px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s;
  }
  #toast.show { transform: translateY(0); opacity: 1; }
