/* =========================================================
   AGENCIA NEPTUNE — Premium B&W Promotora
   Festival energy × luxury agency restraint
   ========================================================= */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --black: #000000;
  --white: #ffffff;
  --grey-05: #0a0a0a;
  --grey-10: #111111;
  --grey-15: #161616;
  --grey-30: #2b2b2b;
  --grey-50: #6e6e6e;
  --grey-80: #d4d4d4;
  --grey-90: #efefef;
  --grey-95: #f6f6f6;

  --font-display: 'Anton', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --maxw: 1480px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 10vw, 160px);

  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--white); color: var(--black); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

/* ---------- Section heads ---------- */
.section__head {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section__index { font-weight: 700; }
.section__rule { flex: 1; height: 1px; background: currentColor; opacity: 0.25; }
.section__year { opacity: 0.6; }

.section__head--invert { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--pad-x);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  mix-blend-mode: normal;
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 10px var(--pad-x);
}
.nav.is-light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: var(--black);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  color: var(--white);
}
.nav.is-light .nav__inner { color: var(--black); }

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.35));
  transition: transform 0.5s var(--ease), height 0.4s var(--ease);
  animation: logoPulse 3.6s var(--ease) infinite;
  transform-origin: center;
}
.nav__logo:hover .nav__logo-img {
  transform: rotate(-3deg) scale(1.05);
}
.nav.is-light .nav__logo-img {
  filter: drop-shadow(0 0 8px rgba(0, 80, 160, 0.25));
}
.nav.is-scrolled .nav__logo-img { height: 46px; }
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.25)); }
  50%      { filter: drop-shadow(0 0 18px rgba(120, 80, 255, 0.55)); }
}
.nav__logo-text { font-weight: 400; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 0;
  transition: opacity 0.25s var(--ease);
}
.nav__links a span { font-size: 9.5px; opacity: 0.55; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease);
}
.nav__links a:hover::after { right: 0; }

/* ---- Nav CTA — bulletproof, no currentColor anywhere ---- */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid #ffffff;
  background: transparent;
  color: #ffffff;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover,
.nav__cta:focus-visible,
.nav__cta:active {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  outline: none;
}
/* Light nav state (over white sections) — black border + text. */
.nav.is-light .nav__cta {
  border-color: #000000;
  color: #000000;
  background: transparent;
}
.nav.is-light .nav__cta:hover,
.nav.is-light .nav__cta:focus-visible,
.nav.is-light .nav__cta:active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), width 0.3s var(--ease);
}
.nav__burger span:nth-child(2) { width: 14px; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
}

/* mobile menu open state */
body.menu-open { overflow: hidden; }
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--black);
  color: var(--white);
  z-index: 99;
  padding: 100px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  display: flex; flex-direction: column;
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 64px);
  line-height: 1.1;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nav__mobile a span {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.16em;
}
.nav__mobile-foot {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background: var(--black);
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.4) 100%);
}
/* film grain via tiny noise */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 100px var(--pad-x) 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero__topbar-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--pad-x) 40px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.18);
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px rgba(255,255,255,0.9);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 19vw, 320px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
}

.hero__title-word {
  display: inline-flex;
  position: relative;
  z-index: 2;
  /* base color for the letters */
  color: var(--white);
}

/* Each letter: stagger slide-up + clip mask */
.hero__char {
  display: inline-block;
  position: relative;
  transform: translateY(110%);
  opacity: 0;
  animation: heroChar 1.1s var(--ease-out) forwards;
  animation-delay: calc(0.08s * var(--i));
  /* subtle glow that builds the elegant feel */
  text-shadow:
    0 0 1px rgba(255,255,255,0.6),
    0 0 32px rgba(255,255,255,0.18),
    0 0 80px rgba(255,255,255,0.08);
}
@keyframes heroChar {
  0%   { transform: translateY(110%); opacity: 0; filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

/* Shine sweep — a duplicate of the word that slides across with a moving gradient clipped to the text */
.hero__title-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0) 65%
  );
  background-size: 220% 100%;
  background-position: -120% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: inherit;
  opacity: 0;
  animation: heroShine 4.5s var(--ease-out) 1.4s infinite;
  mix-blend-mode: screen;
}
@keyframes heroShine {
  0%   { background-position: -120% 0; opacity: 0; }
  10%  { opacity: 1; }
  55%  { background-position: 220% 0; opacity: 1; }
  60%  { opacity: 0; }
  100% { background-position: 220% 0; opacity: 0; }
}

/* Subtle radial glow behind the wordmark */
.hero__title::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 35%,
    rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}

/* Underline accent — a thin animated rule under the word */
.hero__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--white);
  transform: translateX(-50%);
  animation: heroRule 1.4s var(--ease-out) 1s forwards;
  box-shadow: 0 0 14px rgba(255,255,255,0.6);
}
@keyframes heroRule {
  0%   { width: 0; opacity: 0; }
  100% { width: 32%; opacity: 0.85; }
}

.hero__sub {
  max-width: 680px;
  margin: 36px auto 40px;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s both;
  text-shadow: 0 1px 24px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}
.hero__sub-em {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s both;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--white);
  overflow: hidden;
  transition: color 0.45s var(--ease), background-color 0.45s var(--ease), border-color 0.45s var(--ease);
  z-index: 1;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn > span { position: relative; z-index: 1; transition: transform 0.4s var(--ease); }
.btn__arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* FILLED — white background, black text. Hover: black background, white text, white border stays. */
.btn--filled {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--filled::before { background: var(--black); }
.btn--filled:hover {
  color: var(--white);
  border-color: var(--white);
  background: var(--black);
}

/* OUTLINE — transparent, white border + text. Hover: fills white, text goes black. */
.btn--outline {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}
.btn--outline::before { background: var(--white); }
.btn--outline:hover {
  color: var(--black);
  border-color: var(--white);
  background: var(--white);
}

/* FILLED DARK — for use on white sections (services CTA). Black bg, white text. Hover inverts. */
.btn--filled-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--filled-dark::before { background: var(--white); }
.btn--filled-dark:hover {
  color: var(--black);
  border-color: var(--black);
  background: var(--white);
}

/* GHOST — fully transparent on dark hero, both CTAs use this for parity. Hover: white fill, black text. */
.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost::before { background: var(--white); }
.btn--ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn--block { width: 100%; justify-content: space-between; }

/* ---------- Hero bottom ---------- */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad-x) 40px;
}

.hero__stats {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 16px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0) 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 30%;
  background: var(--white);
  animation: scrollDrop 2s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

@media (max-width: 720px) {
  .hero__topbar { padding-top: 90px; flex-wrap: wrap; gap: 8px; font-size: 9px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero__stat-num { font-size: 26px; }
  .hero__stats { width: 100%; justify-content: space-between; gap: 12px; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--black);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marquee 40s linear infinite;
  padding-right: 36px;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee__star {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  opacity: 0.5;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--white);
  color: var(--black);
  padding: var(--section-y) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.about__headline em {
  font-style: normal;
  display: inline-block;
  position: relative;
  padding: 0 12px;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--black);
}
.about__copy {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-30);
}

.about__cards {
  display: grid;
  gap: 16px;
}
.about__card {
  border: 1px solid var(--black);
  padding: 28px 28px 32px;
  position: relative;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease);
  z-index: 0;
}
.about__card > * { position: relative; z-index: 1; }
.about__card:hover { color: var(--white); }
.about__card:hover::before { transform: translateY(0); }

.about__card-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  opacity: 0.6;
}
.about__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.about__card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   EVENTS
   ========================================================= */
.events {
  background: var(--black);
  color: var(--white);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.events__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 11vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 clamp(48px, 6vw, 80px);
}
.events__headline-line { display: block; }
.events__headline-line--outline {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
  padding-left: clamp(40px, 8vw, 120px);
}
.events__headline-line:nth-child(3) {
  text-align: right;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  grid-auto-flow: dense;
  gap: 16px;
}

.event {
  position: relative;
  overflow: hidden;
  background: var(--grey-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  min-height: 280px;
  transition: transform 0.6s var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}
.event { --py: 0px; --ps: 1.04; }
.event__media {
  position: absolute;
  inset: -6%;
  background: var(--img) center/cover no-repeat;
  z-index: -2;
  transform: translateY(var(--py)) scale(var(--ps));
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.15) contrast(1.05);
  will-change: transform;
}
.event::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
  transition: opacity 0.5s var(--ease);
}
.event:hover { --ps: 1.10; }
.event:hover::after { opacity: 0.7; }

.event__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.event__num {
  border: 1px solid rgba(255,255,255,0.55);
  padding: 4px 10px;
  border-radius: 999px;
}
.event__loc { opacity: 0.75; }

.event__title-wrap { display: flex; flex-direction: column; gap: 8px; }
.event__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
.event__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Sizing within grid */
.event--xl   { grid-column: span 4; grid-row: span 2; min-height: 600px; }
.event--tall { grid-column: span 2; grid-row: span 2; min-height: 600px; }
.event--md   { grid-column: span 3; min-height: 420px; }
.event--sm   { grid-column: span 2; min-height: 320px; }
.event--wide { grid-column: span 6; min-height: 460px; }
.event--type { grid-column: span 2; background: var(--white); color: var(--black); }
.event--type::after { display: none; }
.event--type-dark { background: var(--grey-10); color: var(--white); border-color: rgba(255,255,255,0.12); }
.event--type-dark::after { display: none; }
.event--type-dark .event__type-content { color: var(--white); }
.event__type-content {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: auto;
}
.event__type-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 56px);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}
.event__type-copy {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .events__grid { grid-template-columns: repeat(4, 1fr); }
  .event--xl   { grid-column: span 4; grid-row: span 1; min-height: 480px; }
  .event--tall { grid-column: span 4; grid-row: span 1; min-height: 380px; }
  .event--md   { grid-column: span 2; min-height: 360px; }
  .event--sm   { grid-column: span 2; min-height: 300px; }
  .event--wide { grid-column: span 4; min-height: 420px; }
  .event--type { grid-column: span 2; }
}
@media (max-width: 640px) {
  .events__grid { grid-template-columns: 1fr; }
  .event--xl, .event--md, .event--type { grid-column: span 1; min-height: 320px; }
  .events__headline-line--outline { padding-left: 0; }
  .events__headline-line:nth-child(3) { text-align: left; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--black);
  color: var(--white);
  padding: var(--section-y) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.services__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 clamp(40px, 5vw, 80px);
  max-width: 14ch;
}
.services__headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
  display: inline-block;
}

.services__list {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.service {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  transition: background 0.4s var(--ease);
}
.service::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 100%;
  background: var(--white);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.service:hover::before, .service.is-open::before { transform: scaleY(1); }
.service:hover, .service.is-open { color: var(--black); }
.service > * { position: relative; z-index: 1; }

.service__head {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 36px) 0;
}
.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.7;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 64px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.service__plus {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.service.is-open .service__plus {
  transform: rotate(45deg);
  background: var(--black);
  color: var(--white);
}

.service__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.service__body p {
  max-width: 70ch;
  margin: 0;
  padding: 0 0 36px 104px;
  font-size: 15.5px;
  line-height: 1.65;
}
.service.is-open .service__body { max-height: 240px; }

@media (max-width: 720px) {
  .service__head { grid-template-columns: 50px 1fr auto; gap: 12px; }
  .service__body p { padding-left: 0; padding-right: 0; }
}

.services__cta {
  margin-top: clamp(48px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 48px;
}
.services__cta p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  max-width: 24ch;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--white);
  color: var(--black);
  padding: var(--section-y) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.contact__headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--black);
}
.contact__copy {
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-30);
  margin: 0 0 40px;
}

.contact__info {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--black);
}
.contact__info li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--black);
  font-size: 14.5px;
  line-height: 1.55;
}
.contact__info-key {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-top: 2px;
}
.contact__info-val a { position: relative; }
.contact__info-val a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.contact__info-val a:hover::after { transform: scaleX(1); }

/* Form */
.contact__form {
  background: var(--black);
  color: var(--white);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact__field { display: flex; flex-direction: column; gap: 8px; }
.contact__field--full { grid-column: span 2; }
.contact__field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.3s var(--ease);
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-bottom-color: var(--white);
}
.contact__field select { appearance: none; padding-right: 20px; }
.contact__field select option { background: var(--black); color: var(--white); }

.contact__form .btn {
  grid-column: span 2;
  margin-top: 12px;
}
.contact__form-status {
  grid-column: span 2;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 4px 0 0;
  min-height: 16px;
  color: var(--white);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .contact__field--full,
  .contact__form .btn,
  .contact__form-status { grid-column: span 1; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 8vw, 120px) 0 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 22px;
}
.footer__brand-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Original cyan/blue glow logo on the black footer */
  filter: drop-shadow(0 0 18px rgba(0, 200, 255, 0.4));
}
.footer__claim {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.7;
  max-width: 32ch;
  text-align: right;
}

.footer__giant {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 22vw, 360px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  margin: 60px 0;
  white-space: nowrap;
  text-align: center;
  user-select: none;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer__col-key {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}
.footer__col a {
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--grey-80); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 800px) {
  .footer__bottom { grid-template-columns: repeat(2, 1fr); }
  .footer__claim { text-align: left; }
}
@media (max-width: 480px) {
  .footer__bottom { grid-template-columns: 1fr; }
}

/* =========================================================
   EXTRA ANIMATIONS — desktop + mobile
   ========================================================= */

/* Footer logo also gets the pulse glow */
.footer__brand-img { animation: logoPulse 4s var(--ease) infinite; }

/* Footer giant NEPTUNE — slow horizontal drift */
.footer__giant {
  background-size: 200% 100%;
  animation: footerGiantShine 8s linear infinite;
}
@keyframes footerGiantShine {
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}

/* Hero stats — counter style entrance */
.hero__stat {
  opacity: 0;
  transform: translateY(16px);
  animation: statRise 1s var(--ease-out) forwards;
}
.hero__stat:nth-child(1) { animation-delay: 1.2s; }
.hero__stat:nth-child(2) { animation-delay: 1.35s; }
.hero__stat:nth-child(3) { animation-delay: 1.5s; }
@keyframes statRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle floating glow on hero eyebrow */
.hero__eyebrow {
  animation: floatY 4.5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Marquee — slight scale wobble on its star separators */
.marquee__star { animation: starSpin 12s linear infinite; display: inline-block; }
@keyframes starSpin {
  to { transform: rotate(360deg); }
}

/* Section heads — line draw across */
.section__head .section__rule {
  position: relative;
  overflow: hidden;
}
.section__head .section__rule::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transform: translateX(-100%);
  animation: ruleSweep 3s var(--ease) infinite;
  opacity: 0.6;
}
@keyframes ruleSweep {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* About cards — wave-in stagger when the group becomes visible */
.about__cards.is-visible .about__card {
  animation: cardSlide 0.8s var(--ease-out) both;
}
.about__cards.is-visible .about__card:nth-child(1) { animation-delay: 0.05s; }
.about__cards.is-visible .about__card:nth-child(2) { animation-delay: 0.18s; }
.about__cards.is-visible .about__card:nth-child(3) { animation-delay: 0.31s; }
@keyframes cardSlide {
  0%   { opacity: 0; transform: translateX(40px) scale(0.98); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Event cards — pop-in + hover float lift */
.events__grid.is-visible .event {
  animation: eventPop 0.9s var(--ease-out) both;
}
.events__grid.is-visible .event:nth-child(1) { animation-delay: 0.05s; }
.events__grid.is-visible .event:nth-child(2) { animation-delay: 0.15s; }
.events__grid.is-visible .event:nth-child(3) { animation-delay: 0.25s; }
.events__grid.is-visible .event:nth-child(4) { animation-delay: 0.35s; }
.events__grid.is-visible .event:nth-child(5) { animation-delay: 0.45s; }
@keyframes eventPop {
  0%   { opacity: 0; transform: translateY(40px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.event {
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.event:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

/* Service rows — slide tag from left */
.services__list.is-visible .service {
  animation: serviceSlide 0.7s var(--ease-out) both;
}
.services__list.is-visible .service:nth-child(1) { animation-delay: 0.05s; }
.services__list.is-visible .service:nth-child(2) { animation-delay: 0.15s; }
.services__list.is-visible .service:nth-child(3) { animation-delay: 0.25s; }
.services__list.is-visible .service:nth-child(4) { animation-delay: 0.35s; }
@keyframes serviceSlide {
  0%   { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Service plus rotation more vivid on hover */
.service:hover .service__plus { transform: rotate(180deg); }

/* Nav links — letters rise on hover */
.nav__links a span { transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.nav__links a:hover span { transform: translateY(-2px); opacity: 1; }

/* CTAs in hero — subtle floating */
.hero__ctas .btn { animation: btnFloat 5s ease-in-out infinite; }
.hero__ctas .btn:nth-child(2) { animation-delay: 1s; }
@keyframes btnFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Tap / active feedback (mobile-first) */
@media (hover: none) {
  .btn:active,
  .nav__cta:active,
  .event:active {
    transform: scale(0.97);
    transition: transform 0.18s var(--ease);
  }
  .event:hover { transform: none; box-shadow: none; }
  .hero__ctas .btn { animation: none; }
}

/* Mobile-specific reveal animation: fade up tighter */
@media (max-width: 720px) {
  .reveal, .reveal-stagger > * {
    transform: translateY(20px);
  }
  /* Hero title still slides per character — keep it */
  .hero__char { animation-duration: 0.9s; }

  /* Marquee speeds up a bit on mobile so it feels alive */
  .marquee__track { animation-duration: 22s; }

  /* Slight breathing on logo a touch faster on mobile */
  .nav__logo-img { animation-duration: 3s; }

  /* About cards — vertical stagger on mobile (no horizontal slide) */
  @keyframes cardSlide {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Event cards — gentler pop on small screens */
  @keyframes eventPop {
    0%   { opacity: 0; transform: translateY(28px) scale(0.99); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Service rows — slide from below on mobile (more natural in column layout) */
  @keyframes serviceSlide {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Stats fade in slightly later on mobile (after hero CTAs) */
  .hero__stat:nth-child(1) { animation-delay: 1.4s; }
  .hero__stat:nth-child(2) { animation-delay: 1.55s; }
  .hero__stat:nth-child(3) { animation-delay: 1.7s; }
}

/* Scroll-driven hero parallax — title drifts up slightly on scroll */
.hero__title { transition: transform 0.1s linear; }

/* =========================================================
   ACCESSIBILITY: prefers-reduced-motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
}

/* =========================================================
   MOBILE RESPONSIVE — fine tuning < 720px
   ========================================================= */
@media (max-width: 720px) {
  :root {
    --pad-x: 18px;
    --section-y: 72px;
  }

  /* NAV */
  .nav { padding: 12px 18px; }
  .nav.is-scrolled { padding: 10px 18px; }
  .nav__inner { gap: 12px; }
  .nav__logo { font-size: 17px; gap: 10px; }
  .nav__logo-img { height: 46px; }
  .nav.is-scrolled .nav__logo-img { height: 38px; }

  /* HERO */
  .hero { min-height: 100svh; }
  .hero__topbar {
    padding-top: 78px;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 8.5px;
    letter-spacing: 0.18em;
  }
  .hero__topbar-dot { width: 3px; height: 3px; }
  .hero__content { padding: 20px 18px 24px; }
  .hero__eyebrow {
    font-size: 9.5px;
    padding: 6px 12px;
    margin-bottom: 22px;
    letter-spacing: 0.16em;
  }
  .hero__title { font-size: clamp(64px, 22vw, 120px); line-height: 0.88; }
  .hero__sub {
    font-size: 14px;
    line-height: 1.55;
    margin: 22px auto 28px;
    padding: 0 8px;
  }
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 11px;
  }
  .hero__bottom { padding: 0 18px 28px; gap: 24px; }
  .hero__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero__stat { padding-left: 10px; }
  .hero__stat-num { font-size: 22px; }
  .hero__stat-label { font-size: 8.5px; letter-spacing: 0.14em; }
  .hero__scroll { display: none; }

  /* MARQUEE */
  .marquee { padding: 18px 0; }
  .marquee__track { gap: 22px; padding-right: 22px; animation-duration: 28s; }
  .marquee__item { font-size: 28px; }
  .marquee__star { font-size: 18px; }

  /* SECTION HEADS */
  .section__head {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 32px;
    font-size: 10px;
  }
  .section__rule { order: 3; flex-basis: 100%; }

  /* ABOUT */
  .about__headline { font-size: clamp(36px, 10vw, 56px); margin-bottom: 22px; }
  .about__copy { font-size: 14.5px; }
  .about__cards { gap: 12px; }
  .about__card { padding: 22px 20px 24px; }
  .about__card-title { font-size: 26px; }
  .about__card p { font-size: 13.5px; line-height: 1.6; }

  /* EVENTS */
  .events__headline {
    font-size: clamp(46px, 14vw, 80px);
    margin-bottom: 36px;
  }
  .events__headline-line--outline {
    padding-left: 0;
    -webkit-text-stroke: 1px var(--white);
  }
  .events__headline-line:nth-child(3) { text-align: left; }
  .events__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .event {
    grid-column: span 1 !important;
    grid-row: auto !important;
    min-height: 340px !important;
    padding: 20px;
  }
  .event--xl   { min-height: 440px !important; }
  .event--tall { min-height: 380px !important; }
  .event--wide { min-height: 380px !important; }
  .event__title { font-size: 28px; }
  .event__type-title { font-size: 32px; }
  .event__type-copy { font-size: 13.5px; }

  /* SERVICES */
  .services__headline { font-size: clamp(36px, 10vw, 56px); margin-bottom: 32px; }
  .service__head {
    grid-template-columns: 36px 1fr 36px;
    gap: 12px;
    padding: 18px 0;
  }
  .service__num { font-size: 10.5px; }
  .service__title { font-size: 26px; line-height: 1.05; }
  .service__plus { width: 36px; height: 36px; font-size: 18px; }
  .service__body p { font-size: 14px; padding: 0 0 22px; }
  .service.is-open .service__body { max-height: 320px; }
  .services__cta { flex-direction: column; align-items: flex-start; padding-top: 32px; }
  .services__cta p { font-size: 22px; }
  .services__cta .btn { width: 100%; justify-content: center; }

  /* CONTACT */
  .contact__headline { font-size: clamp(36px, 10vw, 56px); margin-bottom: 22px; }
  .contact__copy { font-size: 14.5px; margin-bottom: 28px; }
  .contact__info li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
    font-size: 14px;
  }
  .contact__info-key { padding-top: 0; }
  .contact__form { padding: 24px 20px; gap: 16px; }
  .contact__field input,
  .contact__field select,
  .contact__field textarea { font-size: 16px; } /* avoid iOS auto-zoom */
  .contact__form .btn { padding: 16px 22px; }

  /* FOOTER */
  .footer { padding: 60px 0 28px; }
  .footer__top { flex-direction: column; padding-bottom: 32px; gap: 16px; }
  .footer__claim { text-align: left; font-size: 10.5px; }
  .footer__giant { font-size: 22vw; margin: 36px 0; }
  .footer__bottom { gap: 24px; padding-bottom: 36px; }
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
}

/* tighter tweaks for very small phones */
@media (max-width: 380px) {
  .hero__title { font-size: 64px; }
  .hero__sub { font-size: 13.5px; }
  .hero__stat-num { font-size: 19px; }
  .hero__stats { gap: 6px; }
  .hero__stat { padding-left: 8px; }
  .events__headline { font-size: 42px; }
  .about__headline,
  .services__headline,
  .contact__headline { font-size: 34px; }
  .service__title { font-size: 22px; }
}

/* landscape phones — keep hero usable */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 600px; }
  .hero__title { font-size: clamp(56px, 12vw, 96px); }
  .hero__sub { margin: 16px auto 22px; }
  .hero__topbar { padding-top: 70px; }
}
