/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg:       #09090F;
  --bg-card:  #0E0E18;
  --accent:   #BAFF29;
  --accent-dim: rgba(186,255,41,0.12);
  --text:     #F0F0E8;
  --muted:    #55555F;
  --border:   rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --body-pad: clamp(20px, 6vw, 100px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  padding: 0 var(--body-pad);
}

/* ============================================================
   CUSTOM CURSOR
============================================================ */
@media (hover: hover) {
  *, *::before, *::after { cursor: none !important; }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(186,255,41,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
  will-change: left, top;
}
.cursor-ring.hovered {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  background: var(--accent-dim);
}
.cursor-ring.clicking {
  width: 30px;
  height: 30px;
  background: rgba(186,255,41,0.2);
}

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--body-pad);
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(9,9,15,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(186,255,41,0.3) !important;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

/* Animated grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Glow blob */
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(186,255,41,0.07) 0%, transparent 65%);
  top: -150px; right: -200px;
  pointer-events: none;
  animation: glowDrift 8s ease-in-out infinite;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

/* Secondary glow */
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 80, 255, 0.06) 0%, transparent 70%);
  bottom: 50px; left: 0;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
}
.hero-eyebrow .status-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(186,255,41,0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(186,255,41,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(186,255,41,0); }
  100%{ box-shadow: 0 0 0 0 rgba(186,255,41,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  opacity: 0;
  transform: translateY(40px);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent-word { color: var(--accent); }
.hero-title em { font-style: italic; color: rgba(186,255,41,0.7); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 440px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
.tag {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: rgba(186,255,41,0.3); color: var(--text); }

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 20px 40px rgba(186,255,41,0.3);
}
.btn-secondary {
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.2s, transform 0.25s var(--ease-out);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Hero Right — 3D / Spline */
.hero-right {
  z-index: 1;
  height: 580px;
  position: relative;
}
.spline-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
}

/* Placeholder orb — replace with your Spline scene */
.spline-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.orb-scene {
  position: relative;
  width: 260px;
  height: 260px;
}
.orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(186,255,41,0.55) 0%, rgba(100,80,255,0.25) 45%, transparent 70%);
  animation: orbFloat 6s ease-in-out infinite;
  filter: blur(0px);
}
.orb-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(186,255,41,0.18);
  animation: orbRing 6s ease-in-out infinite;
}
.orb-ring-2 {
  position: absolute;
  inset: -42px;
  border-radius: 50%;
  border: 1px solid rgba(186,255,41,0.08);
  animation: orbRing 6s ease-in-out infinite 1s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}
@keyframes orbRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Floating particles */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly 5s ease-in-out infinite;
}
@keyframes particleFly {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  30% { opacity: 1; transform: translateY(-40px) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

.spline-label {
  font-size: 0.72rem;
  color: rgba(186,255,41,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item .bullet {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
============================================================ */
section { padding: 7rem 0; }

/* Full-bleed sections — break out of body padding so background reaches screen edges */
/* padding-inline restores content alignment to match the body gutter */
.marquee-section, #stats, #work, #services, #contact, #hero {
  margin-left: calc(-1 * var(--body-pad));
  margin-right: calc(-1 * var(--body-pad));
  padding-left: var(--body-pad);
  padding-right: var(--body-pad);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ============================================================
   WORK
============================================================ */
#work { padding-bottom: 5rem; }

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.work-view-all {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}
.work-view-all:hover { color: var(--accent); gap: 0.75rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.work-card { position: relative; border-radius: 22px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); cursor: none; }
.work-card:nth-child(1) { grid-column: 1 / 8; }
.work-card:nth-child(2) { grid-column: 8 / 13; }
.work-card:nth-child(3) { grid-column: 1 / 6; }
.work-card:nth-child(4) { grid-column: 6 / 13; }

.work-card-inner {
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}
.work-card:nth-child(1) .work-card-inner { padding-top: 55%; }
.work-card:nth-child(4) .work-card-inner { padding-top: 62%; }

.work-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.work-card:nth-child(1) .work-card-bg { background: linear-gradient(135deg, #0d0d1e 0%, #1a1040 60%, #0f0a1a 100%); }
.work-card:nth-child(2) .work-card-bg { background: linear-gradient(135deg, #0a1a10 0%, #0e3020 100%); }
.work-card:nth-child(3) .work-card-bg { background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 100%); }
.work-card:nth-child(4) .work-card-bg { background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2d 100%); }

.work-card-shape {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.05em;
  transition: opacity 0.3s;
}
.work-card:hover .work-card-shape { opacity: 0.08; }
.work-card:hover .work-card-bg { transform: scale(1.04); }

.work-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(9,9,15,0.95) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.work-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.work-card-type {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.work-card-cta {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(8px) scale(0.85);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.work-card:hover .work-card-cta { opacity: 1; transform: translateY(0) scale(1); }

/* ============================================================
   SERVICES
============================================================ */
#services { background: var(--bg-card); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.35s, transform 0.35s var(--ease-out), background 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(186,255,41,0.18);
  transform: translateY(-5px);
  background: rgba(186,255,41,0.02);
}
.service-card:hover::after { opacity: 1; }

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(186,255,41,0.08);
  line-height: 1;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.service-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.service-list li {
  font-size: 0.8rem;
  color: var(--muted);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-list li::before { content: '→'; color: var(--accent); font-size: 0.75rem; }

/* ============================================================
   STATS / NUMBERS
============================================================ */
#stats {
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-box {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.stat-box:hover { background: var(--bg-card); }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================================
   BOOKING
============================================================ */
#booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.booking-left { position: sticky; top: 7rem; }
.booking-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.booking-left h2 em { font-style: italic; color: var(--accent); }
.booking-left > p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
}
.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(240,240,232,0.75);
}
.perk-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Cal.com embed container */
.booking-embed-area {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  height: 660px;
  overflow: hidden;
  position: relative;
  padding: 0;
}
#my-cal-inline-discovery-call {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.booking-embed-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.booking-step-num {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT FORM
============================================================ */
#contact { background: var(--bg-card); }
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}
.contact-inner .section-label { margin-bottom: 1rem; }
.contact-inner .section-title { margin-bottom: 1rem; }
.contact-intro {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: none;
  width: 100%;
}
.form-group select option { background: #1a1a28; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(186,255,41,0.35);
  background: rgba(186,255,41,0.02);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: none;
  font-family: var(--font-body);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(186,255,41,0.3);
}

.form-message {
  grid-column: 1 / -1;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}
.form-message.success { background: rgba(186,255,41,0.1); color: var(--accent); border: 1px solid rgba(186,255,41,0.2); }
.form-message.error { background: rgba(255,80,80,0.1); color: #ff8080; border: 1px solid rgba(255,80,80,0.2); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   SCROLL REVEAL
   Initial hidden state only — GSAP + ScrollTrigger handles animation.
   Stagger timing is controlled via script.js, not transition-delay.
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .work-card:nth-child(1) { grid-column: 1 / -1; }
  .work-card:nth-child(2) { grid-column: 1 / 7; }
  .work-card:nth-child(3) { grid-column: 7 / 13; }
  .work-card:nth-child(4) { grid-column: 1 / -1; }
  #stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem var(--body-pad); }
  .nav-links li:not(:last-child) { display: none; }
  #hero { grid-template-columns: 1fr; padding: 7rem 0 3rem; gap: 3rem; }
  .hero-right { height: 380px; }
  section { padding: 5rem 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:nth-child(n) { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; gap: 1.5rem; }
  #booking { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0; }
  .booking-left { position: static; }
  .booking-embed-area { height: 600px; }
  .contact-form { grid-template-columns: 1fr; }
  #stats { grid-template-columns: repeat(2, 1fr); padding: 2rem 0; }
  .stat-box { padding: 2rem 1rem; }
  .stat-number { font-size: 2.8rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 0; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  #stats { grid-template-columns: 1fr 1fr; padding: 1.5rem 0; }
  .stat-box { padding: 1.5rem 0.75rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.72rem; }
  #booking { padding: 3rem 0; }
  .booking-left h2 { font-size: 2rem; }
}
