/* =========================================================
   BOWLING COLORADO SUSEGANA — Neon 70s Pop
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Bungee&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-0: #060014;
  --bg-1: #0d0225;
  --bg-2: #160534;
  --ink: #f8f1ff;
  --ink-dim: #b6a6d8;

  --neon-pink:   #ff2d95;
  --neon-cyan:   #00f0ff;
  --neon-yellow: #ffe93a;
  --neon-purple: #b537f2;
  --neon-orange: #ff7a18;
  --neon-lime:   #aefd2a;

  --font-display: 'Monoton', cursive;
  --font-accent: 'Bungee', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --container: 1240px;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =========================================================
   DYNAMIC BACKGROUND — floating neon orbs + grain
   ========================================================= */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at top, #1a0540 0%, var(--bg-0) 55%),
    var(--bg-0);
  overflow: hidden;
}
.bg-stage::before {
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  mix-blend-mode: screen;
  animation: float 22s ease-in-out infinite;
  will-change: transform;
}
.orb.pink   { width: 520px; height: 520px; background: var(--neon-pink);   top: -120px; left: -120px; }
.orb.cyan   { width: 480px; height: 480px; background: var(--neon-cyan);   top: 40%;    right: -140px; animation-delay: -6s; }
.orb.purple { width: 600px; height: 600px; background: var(--neon-purple); bottom: -180px; left: 20%;  animation-delay: -12s; }
.orb.yellow { width: 380px; height: 380px; background: var(--neon-yellow); top: 10%;    left: 45%;    animation-delay: -18s; opacity: .25; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,-40px) scale(1.12); }
  66%     { transform: translate(-50px,50px) scale(.92); }
}

/* Grid overlay */
.bg-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s ease;
}
.nav.scrolled {
  padding: 14px 0;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(6,0,20,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--neon-pink);
  text-shadow:
    0 0 8px var(--neon-pink),
    0 0 22px rgba(255,45,149,.55);
  white-space: nowrap;
}
.logo span {
  color: var(--neon-cyan);
  text-shadow:
    0 0 8px var(--neon-cyan),
    0 0 22px rgba(0,240,255,.55);
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--ink);
  transition: color .25s;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--neon-cyan); }
.nav-links a.active { color: var(--neon-pink); }

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--neon-pink);
  border-radius: 999px;
  color: var(--neon-pink);
  transition: all .3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--neon-pink);
  color: var(--bg-0);
  box-shadow: 0 0 22px rgba(255,45,149,.65);
}

.nav-burger {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  flex-shrink: 0;
  padding: 4px 8px;
  line-height: 1;
}

/* =========================================================
   HERO — sticky scroll-fade (Vista Energy style)
   ========================================================= */
.hero-wrap {
  position: relative;
  height: 200vh;   /* gives scroll room for the fade */
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-poster {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,149,.35), transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(0,240,255,.3), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(181,55,242,.25), transparent 70%),
    #0a0118;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,0,20,.35) 0%, rgba(6,0,20,.55) 55%, rgba(6,0,20,.88) 100%);
  z-index: 1;
}
/* Slight bottom-only fade — blends the image edge into the page background */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(0deg,
    rgba(6,0,20,1)   0%,
    rgba(6,0,20,.55) 7%,
    rgba(6,0,20,.18) 15%,
    rgba(6,0,20,0)   24%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1100px;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0,240,255,.7);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s .2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 168px);
  line-height: .92;
  letter-spacing: .02em;
  margin-bottom: 18px;
  color: var(--neon-pink);
  text-shadow:
    0 0 6px #fff,
    0 0 14px var(--neon-pink),
    0 0 28px var(--neon-pink),
    0 0 54px rgba(255,45,149,.85),
    0 0 90px rgba(255,45,149,.45);
  opacity: 0;
  animation: fadeUp 1.1s .45s forwards, flicker 6s 2s infinite;
}
.hero-title .amp {
  color: var(--neon-yellow);
  text-shadow:
    0 0 6px #fff,
    0 0 14px var(--neon-yellow),
    0 0 28px var(--neon-yellow),
    0 0 54px rgba(255,233,58,.65);
}
.hero-title .sub {
  display: block;
  font-size: .4em;
  margin-top: 10px;
  color: var(--neon-cyan);
  text-shadow:
    0 0 6px #fff,
    0 0 14px var(--neon-cyan),
    0 0 28px var(--neon-cyan),
    0 0 54px rgba(0,240,255,.65);
}
.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 400;
  color: var(--ink-dim);
  max-width: 620px;
  margin: 28px auto 42px;
  opacity: 0;
  animation: fadeUp 1.1s .75s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s .95s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s cubic-bezier(.7,0,.2,1);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15) inset,
    0 10px 40px -10px rgba(255,45,149,.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.25) inset,
    0 18px 55px -12px rgba(255,45,149,.95);
}
.btn-ghost {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0,240,255,.05);
}
.btn-ghost:hover {
  background: var(--neon-cyan);
  color: var(--bg-0);
  box-shadow: 0 0 30px rgba(0,240,255,.6);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0;
  animation: fadeUp 1.1s 1.4s forwards;
}
.scroll-hint::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--neon-cyan), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes flicker {
  0%,19%,21%,23%,25%,54%,56%,100% { opacity: 1; }
  20%,24%,55% { opacity: .82; }
}

/* Hero scroll-fade: JS updates --hero-opacity */
.hero {
  opacity: var(--hero-opacity, 1);
  transform: scale(var(--hero-scale, 1));
  transition: opacity .1s linear;
}

/* =========================================================
   SECTION BASE
   ========================================================= */
.section {
  position: relative;
  z-index: 3;
  padding: 140px 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section-head {
  max-width: 840px;
  margin: 0 auto 90px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  padding: 8px 18px;
  border: 1px solid rgba(0,240,255,.35);
  border-radius: 999px;
  margin-bottom: 28px;
  text-shadow: 0 0 10px rgba(0,240,255,.6);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--neon-pink);
  text-shadow:
    0 0 4px #fff,
    0 0 12px var(--neon-pink),
    0 0 26px var(--neon-pink),
    0 0 50px rgba(255,45,149,.55);
  margin-bottom: 28px;
}
.section-title .alt {
  color: var(--neon-yellow);
  text-shadow:
    0 0 4px #fff,
    0 0 12px var(--neon-yellow),
    0 0 26px var(--neon-yellow),
    0 0 50px rgba(255,233,58,.55);
}
.section-title .alt2 {
  color: var(--neon-cyan);
  text-shadow:
    0 0 4px #fff,
    0 0 12px var(--neon-cyan),
    0 0 26px var(--neon-cyan),
    0 0 50px rgba(0,240,255,.55);
}
.section-lead {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================================
   INTRO STRIP (numbers)
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  color: var(--neon-yellow);
  text-shadow:
    0 0 4px #fff,
    0 0 14px var(--neon-yellow),
    0 0 30px rgba(255,233,58,.6);
  margin-bottom: 12px;
}
.stat:nth-child(2) .stat-num { color: var(--neon-cyan); text-shadow: 0 0 4px #fff, 0 0 14px var(--neon-cyan), 0 0 30px rgba(0,240,255,.6); }
.stat:nth-child(3) .stat-num { color: var(--neon-pink); text-shadow: 0 0 4px #fff, 0 0 14px var(--neon-pink), 0 0 30px rgba(255,45,149,.6); }
.stat:nth-child(4) .stat-num { color: var(--neon-purple); text-shadow: 0 0 4px #fff, 0 0 14px var(--neon-purple), 0 0 30px rgba(181,55,242,.6); }
.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* =========================================================
   SERVICES — alternating layout
   ========================================================= */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 160px;
}
.service:last-child { margin-bottom: 0; }
.service.reverse .service-media { order: 2; }

.service-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.service:hover .service-media img { transform: scale(1.06); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,0,20,.55) 100%);
  pointer-events: none;
}
.service-media .badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--neon-yellow);
  text-shadow:
    0 0 4px #fff,
    0 0 12px var(--neon-yellow),
    0 0 26px rgba(255,233,58,.7);
}
.service-media .tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 8px 16px;
  background: rgba(6,0,20,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--neon-cyan);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.service-body .mini {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255,45,149,.6);
  margin-bottom: 22px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  color: var(--ink);
  text-shadow:
    0 0 4px rgba(255,255,255,.5),
    0 0 18px rgba(0,240,255,.35);
  margin-bottom: 26px;
}
.service-body p {
  font-size: 16.5px;
  color: var(--ink-dim);
  margin-bottom: 16px;
}
.service-body ul {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-body li {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.03);
}

/* =========================================================
   SMALL GRID — extras (6 mini cards)
   ========================================================= */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mini-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: all .45s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.mini-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--neon-pink), transparent, var(--neon-cyan), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s;
}
.mini-card:hover { transform: translateY(-6px); }
.mini-card:hover::before { opacity: 1; }
.mini-card .icon {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-cyan), 0 0 40px rgba(0,240,255,.6);
  margin-bottom: 22px;
  display: block;
}
.mini-card:nth-child(2) .icon { color: var(--neon-pink);   text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-pink),   0 0 40px rgba(255,45,149,.6); }
.mini-card:nth-child(3) .icon { color: var(--neon-yellow); text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-yellow), 0 0 40px rgba(255,233,58,.6); }
.mini-card:nth-child(4) .icon { color: var(--neon-purple); text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-purple), 0 0 40px rgba(181,55,242,.6); }
.mini-card:nth-child(5) .icon { color: var(--neon-lime);   text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-lime),   0 0 40px rgba(174,253,42,.6); }
.mini-card:nth-child(6) .icon { color: var(--neon-orange); text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-orange), 0 0 40px rgba(255,122,24,.6); }
.mini-card h4 {
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.mini-card p {
  font-size: 14.5px;
  color: var(--ink-dim);
}

/* =========================================================
   PARTY / EVENTS banner
   ========================================================= */
.party {
  position: relative;
  padding: 110px 60px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,45,149,.18), rgba(181,55,242,.18) 50%, rgba(0,240,255,.18));
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
}
.party::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q 25 0 50 50 T 100 50' stroke='%23ff2d95' stroke-width='.4' fill='none' opacity='.25'/%3E%3C/svg%3E");
  background-size: 120px;
  opacity: .35;
}
.party h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  color: var(--neon-yellow);
  text-shadow:
    0 0 6px #fff,
    0 0 18px var(--neon-yellow),
    0 0 38px rgba(255,233,58,.7);
  margin-bottom: 26px;
}
.party p {
  position: relative;
  font-size: 18px;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 40px;
}
.party .btn { position: relative; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.page-hero {
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.page-hero .section-title { margin-bottom: 22px; }
.page-hero .section-lead { max-width: 560px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 90px;
}
.contact-card {
  position: relative;
  padding: 48px 36px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
  transition: all .4s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,45,149,.5);
  box-shadow: 0 20px 60px -20px rgba(255,45,149,.4);
}
.contact-card .ic {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-cyan), 0 0 40px rgba(0,240,255,.6);
  margin-bottom: 24px;
  display: block;
}
.contact-card:nth-child(2) .ic { color: var(--neon-pink); text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-pink), 0 0 40px rgba(255,45,149,.6); }
.contact-card:nth-child(3) .ic { color: var(--neon-yellow); text-shadow: 0 0 8px #fff, 0 0 18px var(--neon-yellow), 0 0 40px rgba(255,233,58,.6); }
.contact-card h4 {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.contact-card .big {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
  word-break: break-word;
}
.contact-card .sub { font-size: 13px; color: var(--ink-dim); }

/* Contact CTA big */
.contact-cta {
  position: relative;
  padding: 110px 60px;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,45,149,.18), rgba(0,240,255,.18));
  border: 1px solid rgba(255,255,255,.12);
}
.contact-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  color: var(--neon-pink);
  text-shadow:
    0 0 6px #fff,
    0 0 18px var(--neon-pink),
    0 0 40px rgba(255,45,149,.7);
  margin-bottom: 24px;
}
.contact-cta p {
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 42px;
}
.phone-big {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  color: var(--neon-yellow);
  text-shadow:
    0 0 6px #fff,
    0 0 18px var(--neon-yellow),
    0 0 40px rgba(255,233,58,.7);
  display: block;
  margin-bottom: 32px;
  letter-spacing: .03em;
  transition: all .4s;
}
.phone-big:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
}

/* Hours box */
.hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 520px;
  margin: 50px auto 0;
  padding: 32px 40px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.hours-row {
  display: contents;
}
.hours-row > * {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  font-size: 14.5px;
}
.hours-row:last-child > * { border-bottom: 0; }
.hours-day { color: var(--ink-dim); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: 12.5px; }
.hours-time { color: var(--ink); text-align: right; font-weight: 600; }
.hours-time.closed { color: var(--neon-pink); }

/* =========================================================
   MAP PAGE
   ========================================================= */
.map-section {
  position: relative;
  z-index: 3;
  padding: 60px 0 140px;
}
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,45,149,.25),
    0 40px 120px -40px rgba(0,240,255,.35);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
  filter: grayscale(.35) contrast(1.08) saturate(1.2);
}
.map-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.map-info .info {
  padding: 34px 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
}
.map-info .info h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,240,255,.5);
  margin-bottom: 16px;
}
.map-info .info p { font-size: 15.5px; color: var(--ink); }
.map-info .info p span { color: var(--ink-dim); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  z-index: 3;
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(6,0,20,.5);
  backdrop-filter: blur(10px);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 22px;
  text-shadow: 0 0 10px rgba(0,240,255,.5);
}
.footer .logo { font-size: 26px; margin-bottom: 18px; display: inline-block; }
.footer p { font-size: 14px; color: var(--ink-dim); max-width: 320px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 14px; }
.footer li a { color: var(--ink-dim); transition: color .25s; }
.footer li a:hover { color: var(--neon-pink); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: .06em;
}

/* Bottoni CTA affiancati (dove-trovarci) */
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .service { grid-template-columns: 1fr; gap: 40px; margin-bottom: 110px; }
  .service.reverse .service-media { order: 0; }
  .service-media { aspect-ratio: 16/10; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; padding: 40px; }
  .stat { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 30px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .map-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Party/CTA banner: padding laterale ridotto su tablet */
  .party, .contact-cta { padding: 80px 40px; }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-burger { display: block; }

  /* Logo nav: evita overflow su schermi stretti */
  .logo { font-size: 16px; }

  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 50px; }

  /* Hero */
  .hero-wrap { height: 140vh; }
  .hero-title {
    /* Monoton è largo: su mobile deve riempire 70-90% del viewport */
    font-size: clamp(56px, 16vw, 96px);
    line-height: .95;
  }
  .hero-title .sub { font-size: .35em; }
  .hero-lead { font-size: 14.5px; margin: 18px auto 30px; }
  .hero-ctas { flex-direction: column; width: 100%; padding: 0 20px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Stats: già 2x2 dal breakpoint 1024px, qui aggiustiamo padding e testo */
  .stats { padding: 28px 20px; gap: 20px; }
  .stat-num { font-size: clamp(36px, 9vw, 56px); }
  .stat-label { font-size: 11px; letter-spacing: .15em; }
  .stat:nth-child(1),
  .stat:nth-child(2) { padding-bottom: 20px; }

  /* Service: margine inferiore eccessivo */
  .service { margin-bottom: 70px; gap: 28px; }
  .service-body h3 {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.05;
  }
  .service-body p { font-size: 15px; }
  .service-media { aspect-ratio: 16/10; }

  /* Section titles */
  .section-title { font-size: clamp(30px, 8vw, 50px); }
  .section-lead { font-size: 15px; }

  .mini-grid { grid-template-columns: 1fr; }

  /* Party / CTA banner */
  .party, .contact-cta { padding: 54px 20px; }
  .party h3 { font-size: clamp(28px, 8vw, 46px); }
  .party p { font-size: 15px; margin-bottom: 30px; }
  .party .btn,
  .contact-cta .btn { width: 100%; justify-content: center; }

  /* Map */
  .map-wrap iframe { height: 420px; }

  /* Footer — logo Monoton troppo largo su mobile */
  .footer .logo {
    font-size: clamp(18px, 5.5vw, 24px);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
    line-height: 1.2;
  }
  .footer-inner {
    padding: 0 16px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 16px 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .footer p { max-width: 100%; }

  /* Sub-pages: page hero */
  .page-hero { padding: 130px 0 50px; }

  /* Contact cards */
  .contact-card { padding: 36px 22px; }
  .contact-card .ic { font-size: 36px; margin-bottom: 18px; }
  .contact-card .big { font-size: 18px; }
  .contact-grid { gap: 18px; margin-bottom: 60px; }

  /* Big CTA */
  .contact-cta h3 { font-size: clamp(28px, 8.5vw, 50px); }
  .contact-cta p { font-size: 15px; margin-bottom: 28px; }
  .phone-big {
    font-size: clamp(16px, 5.5vw, 28px);
    margin-bottom: 24px;
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 0 8px;
  }

  /* Hours box */
  .hours { padding: 22px 18px; max-width: 100%; margin-top: 36px; }
  .hours-row > * { padding: 10px 0; font-size: 13px; }
  .hours-day { font-size: 11.5px; letter-spacing: .08em; }

  /* Map info */
  .map-section { padding: 30px 0 100px; }
  .map-info { margin-top: 40px; gap: 18px; }
  .map-info .info { padding: 26px 22px; }
  .map-wrap iframe { height: 360px; }

  /* Flex dei bottoni in dove-trovarci CTA */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Orb: dimensioni ridotte per non causare overflow laterale */
  .orb.pink   { width: 260px; height: 260px; top: -60px; left: -60px; }
  .orb.cyan   { width: 240px; height: 240px; right: -70px; }
  .orb.purple { width: 300px; height: 300px; bottom: -90px; }
  .orb.yellow { width: 190px; height: 190px; }
}

/* Very small phones (≤420px) */
@media (max-width: 420px) {
  .logo { font-size: 14px; }
  .footer .logo { font-size: clamp(16px, 5vw, 20px); }
  .page-hero { padding: 120px 0 44px; }

  /* Hero title: Monoton a ≤420px — ancora prominente ma senza overflow */
  .hero-title { font-size: clamp(44px, 14vw, 64px); }
  .hero-lead { font-size: 13.5px; }

  .section-title { font-size: clamp(26px, 8.5vw, 36px); }
  .section-lead { font-size: 14.5px; }
  .eyebrow { font-size: 11px; letter-spacing: .22em; padding: 6px 14px; }

  .stats { padding: 20px 14px; }
  .stat-num { font-size: clamp(30px, 9vw, 44px); }

  .service-body h3 { font-size: clamp(22px, 7vw, 32px); }

  .phone-big { font-size: clamp(14px, 5vw, 22px); letter-spacing: .01em; }
  .contact-cta h3 { font-size: clamp(24px, 8.5vw, 36px); }
  .contact-cta { padding: 44px 16px; }
  .contact-card { padding: 28px 16px; }
  .contact-card .big { font-size: 15.5px; }

  /* Hours: su 360px la griglia 2col può stare stretta */
  .hours {
    padding: 18px 12px;
    grid-template-columns: auto 1fr;
  }
  .hours-time { font-size: 12.5px; }

  /* Mini-card: padding ridotto su telefoni molto stretti */
  .mini-card { padding: 28px 20px; }

  /* Footer ancora più compatto */
  .footer-inner { padding: 0 12px; gap: 30px; }
  .footer-bottom { padding: 16px 12px 0; font-size: 11.5px; }

  .map-wrap iframe { height: 280px; }
  .party { padding: 44px 16px; }
  .party h3 { font-size: clamp(24px, 8.5vw, 36px); }
}

/* Mobile nav panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6,0,20,.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
}
.mobile-menu li { margin: 22px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink), 0 0 30px rgba(255,45,149,.6);
}
