/* ===== Design tokens ===== */
:root {
  --ink:        oklch(15% 0.012 40);
  --ink-soft:   oklch(22% 0.014 40);
  --ink-line:   oklch(30% 0.012 40);
  --paper:      oklch(97% 0.012 75);
  --paper-alt:  oklch(94% 0.016 70);
  --paper-line: oklch(88% 0.014 65);
  --signal:     oklch(68% 0.19 38);
  --signal-ink: oklch(20% 0.03 38);
  --signal-soft:oklch(93% 0.045 45);
  --whatsapp:   #25D366;
  --whatsapp-dk:#1DA851;
  --text-dark:  oklch(20% 0.012 40);
  --text-muted-dark: oklch(42% 0.014 40);
  --text-light: oklch(97% 0.01 70);
  --text-muted-light: oklch(74% 0.012 60);

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;

  --fs-sm: 0.9375rem;
  --fs-base: 1.125rem;
  --fs-md: 1.3rem;
  --fs-lg: 1.7rem;
  --fs-xl: clamp(1.9rem, 3vw, 2.6rem);
  --fs-hero: clamp(2.4rem, 6vw, 4.4rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease-out-q: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-e: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; color: inherit; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; padding: 0; color: inherit; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-lg { width: 30px; height: 30px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--signal); color: var(--signal-ink); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }

.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 14px;
}
.eyebrow-dark { color: var(--signal-ink); }
.eyebrow-light { color: var(--signal); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; white-space: nowrap; min-height: 44px;
  transition: transform 200ms var(--ease-out-q), background 200ms var(--ease-out-q), box-shadow 200ms var(--ease-out-q);
}
.btn:hover { transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dk); box-shadow: 0 8px 22px oklch(60% 0.15 150 / 0.35); }
.btn-primary { background: var(--signal); color: var(--signal-ink); }
.btn-primary:hover { box-shadow: 0 8px 22px oklch(68% 0.19 38 / 0.35); }
.btn-ghost-light { color: var(--text-light); border: 1.5px solid oklch(97% 0.01 70 / 0.4); }
.btn-ghost-light:hover { border-color: var(--text-light); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(97% 0.012 75 / 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--paper-line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 28px;
}
.wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.wordmark span { color: var(--signal); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text-muted-dark); transition: color 180ms; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 220ms var(--ease-out-q), opacity 220ms; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%); transition: transform 320ms var(--ease-out-e);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--text-light); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.mobile-menu .btn { margin-top: 12px; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(15% 0.012 40 / 0.15) 0%, oklch(15% 0.012 40 / 0.55) 55%, oklch(15% 0.012 40 / 0.92) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 24px var(--space-5); width: 100%; }
.hero .eyebrow { color: var(--signal); }
.hero h1 { color: var(--text-light); font-size: var(--fs-hero); font-weight: 700; line-height: 1.04; margin-bottom: 20px; max-width: 14ch; }
.hero-lede { color: var(--text-muted-light); font-size: 1.15rem; max-width: 46ch; margin-bottom: 32px; line-height: 1.55; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; }

.marquee {
  position: relative; z-index: 1; background: var(--ink); border-top: 1px solid var(--ink-line);
  overflow: hidden; padding: 14px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.12em; color: var(--text-muted-light); white-space: nowrap; padding-right: 4px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-play-state: paused; } }

/* ===== Services ===== */
.services { padding: var(--space-6) 0; background: var(--paper); }
.services h2, .party-reel-section h2, .gallery-section h2, .find-us h2 { font-size: var(--fs-xl); font-weight: 700; max-width: 16ch; margin-bottom: var(--space-4); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card {
  background: var(--paper-alt); border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: var(--space-3); position: relative; overflow: hidden;
}
.service-num {
  font-family: var(--font-display); font-weight: 800; font-size: 3.5rem; color: var(--signal-soft);
  display: block; line-height: 1; margin-bottom: var(--space-2);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted-dark); line-height: 1.55; }

/* ===== Party Reel ===== */
.party-reel-section { padding: var(--space-6) 0; background: var(--ink); color: var(--text-light); }
.party-reel-section .eyebrow-dark { color: var(--signal); }
.party-reel-section h2 { color: var(--text-light); }
.section-lede { color: var(--text-muted-light); max-width: 60ch; margin-bottom: var(--space-4); font-size: 1.05rem; }

.reel-stack { display: flex; flex-direction: column; gap: var(--space-4); }
.reel-card {
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: var(--radius-lg);
  padding: var(--space-3); display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--space-3); align-items: center;
}
.reel-label { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 6px; }
.reel-sub { color: var(--text-muted-light); font-size: 0.95rem; margin-bottom: var(--space-2); }
.reel-frame-count { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--signal); letter-spacing: 0.04em; }

.reel-stage-wrap { position: relative; }
.reel-stage {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-md); overflow: hidden;
  background: var(--ink); touch-action: pan-y;
  perspective: 900px;
}
.reel-stage img {
  width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none;
  transform: rotateY(var(--tilt, 0deg)); transition: transform 260ms var(--ease-out-q);
}
@media (prefers-reduced-motion: reduce) { .reel-stage img { transform: none !important; } }

.reel-controls { display: flex; align-items: center; gap: 12px; margin-top: var(--space-2); }
.reel-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink);
  border: 1px solid var(--ink-line); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background 180ms, border-color 180ms;
}
.reel-arrow:hover { background: var(--signal); border-color: var(--signal); color: var(--signal-ink); }
.reel-arrow svg { width: 18px; height: 18px; }

.reel-track {
  position: relative; flex: 1; height: 44px; display: flex; align-items: center; cursor: pointer;
  touch-action: none;
}
.reel-track-bg { position: absolute; left: 0; right: 0; height: 6px; border-radius: 4px; background: var(--ink-line); }
.reel-track-fill { position: absolute; left: 0; height: 6px; border-radius: 4px; background: var(--signal); }
.reel-handle {
  position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--signal);
  border: 3px solid var(--ink); box-shadow: 0 2px 8px oklch(0% 0 0 / 0.4);
  transform: translateX(-50%); cursor: grab;
}
.reel-handle:active { cursor: grabbing; }

/* ===== Gallery ===== */
.gallery-section { padding: var(--space-6) 0; background: var(--paper-alt); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.gallery-grid button {
  display: block; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5; background: var(--paper-line);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--ease-out-q); }
.gallery-grid button:hover img { transform: scale(1.05); }

/* ===== Why us ===== */
.why-us { padding: var(--space-6) 0; background: var(--ink); color: var(--text-light); }
.why-us h2.light { color: var(--text-light); font-size: var(--fs-xl); font-weight: 700; max-width: 20ch; margin-bottom: var(--space-4); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.why-item svg { color: var(--signal); margin-bottom: 14px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--text-muted-light); font-size: 0.95rem; line-height: 1.5; }

/* ===== How it works ===== */
.how-it-works { padding: var(--space-6) 0; background: var(--paper); }
.how-it-works h2 { font-size: var(--fs-xl); font-weight: 700; max-width: 16ch; margin-bottom: var(--space-4); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-bottom: var(--space-4); }
.how-steps li { background: var(--paper-alt); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: var(--space-3); }
.how-num {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--signal); color: var(--signal-ink);
  font-family: var(--font-display); font-weight: 700; margin-bottom: var(--space-2);
}
.how-steps h3 { font-size: 1.15rem; margin-bottom: 8px; }
.how-steps p { color: var(--text-muted-dark); line-height: 1.5; }
.how-cta { margin: 0 auto; display: flex; width: fit-content; }

/* ===== Find us ===== */
.find-us { padding: var(--space-6) 0; background: var(--paper-alt); }
.find-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); align-items: center; }
.find-us h2 { margin-bottom: var(--space-3); }
.find-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-3); }
.find-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted-dark); }
.find-list svg { color: var(--signal-ink); margin-top: 2px; flex-shrink: 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--paper-line); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--text-muted-light); padding: var(--space-5) 0 var(--space-4); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.footer-wordmark { font-size: 1.4rem; }
.footer-credit { font-size: 0.85rem; margin-top: 10px; }
.footer-credit a { color: var(--signal); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: oklch(10% 0.01 40 / 0.94);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: oklch(97% 0.01 70 / 0.12); color: var(--text-light);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 180ms;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--signal); color: var(--signal-ink); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .service-grid, .why-grid, .how-steps { grid-template-columns: 1fr; }
  .reel-card { grid-template-columns: 1fr; }
  .reel-stage-wrap { order: -1; }
  .find-us-grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .hero h1 { max-width: 100%; }
  .section-inner { padding: 0 18px; }
  .services, .party-reel-section, .gallery-section, .why-us, .how-it-works, .find-us { padding: var(--space-5) 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
