/* ============================================
   Chris Neu Entertainment -- Custom Styles
   ============================================ */

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

/* --- Design Tokens --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg: #fafaf9;
  --bg-alt: #f0efed;
  --bg-card: #ffffff;
  --bg-dark: #131118;
  --text: #1c1917;
  --text-muted: #57534e;
  --text-faint: #a8a29e;
  --primary: #7c3aed;
  --primary-rgb: 124, 58, 237;
  --primary-light: #ede9fe;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --border: #d6d3d1;
  --border-light: #e7e5e4;

  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
}

html.dark {
  --bg: #0c0a12;
  --bg-alt: #141220;
  --bg-card: #1a1726;
  --bg-dark: #08060e;
  --text: #e7e5e4;
  --text-muted: #a8a29e;
  --text-faint: #6b6560;
  --primary: #a78bfa;
  --primary-rgb: 167, 139, 250;
  --primary-light: #2e1a5e;
  --accent: #fbbf24;
  --accent-light: #422006;
  --border: #2a2636;
  --border-light: #1e1b28;
  --shadow: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  padding-bottom: 2.25rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { max-width: 68ch; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.nav__logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links li { list-style: none; }

.nav__link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-cta svg { width: 16px; height: 16px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.4rem;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
}

.theme-toggle:hover { color: var(--primary); background: var(--bg-alt); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun { display: block; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Dark hero nav contrast */
.has-dark-hero .site-header:not(.scrolled) .nav__logo-main,
.has-dark-hero .site-header:not(.scrolled) .nav__link,
.has-dark-hero .site-header:not(.scrolled) .nav__hamburger span { color: #fff; }
.has-dark-hero .site-header:not(.scrolled) .nav__logo-sub { color: rgba(255,255,255,0.7); }
.has-dark-hero .site-header:not(.scrolled) .theme-toggle { color: rgba(255,255,255,0.8); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,18,0.92) 0%, rgba(12,10,18,0.5) 40%, rgba(12,10,18,0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 1.5rem;
  margin-left: calc((100vw - var(--max-w)) / 2 + 1.5rem);
}

@media (max-width: 1248px) {
  .hero__content { margin-left: 1.5rem; }
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  background: rgba(245,158,11,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn--dark {
  background: var(--primary);
  color: #fff;
}

.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; }

/* --- Section Shared --- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #e7e5e4; }

.section__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section__heading {
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section__intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* --- Split Narrative (About on homepage) --- */
.split-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-narrative__text h2 { margin-bottom: 1.25rem; }
.split-narrative__text p { color: var(--text-muted); margin-bottom: 1rem; }
.split-narrative__text p:last-of-type { margin-bottom: 1.5rem; }

.split-narrative__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* --- Services Stagger --- */
.services-stagger {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.service-row:hover { box-shadow: var(--shadow-lg); }

.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }

.service-row__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-row__body {
  padding: 2.5rem;
}

.service-row__body h3 { margin-bottom: 0.75rem; }

.service-row__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-row__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-row__link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-row__link:hover svg { transform: translateX(4px); }

/* --- Testimonials Marquee --- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial__role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Process Steps --- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  counter-increment: step;
  text-align: center;
}

.process-card__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.process-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0 auto; }

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__question:hover { color: var(--primary); }

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Band --- */
.cta-band {
  background: var(--primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn--primary { background: #fff; color: var(--primary); }
.cta-band .btn--primary:hover { background: var(--accent); color: #fff; }
.cta-band .btn--outline { border-color: rgba(255,255,255,0.4); }
.cta-band .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--bg-alt);
}

.page-hero .container { max-width: 760px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1.25rem;
}

.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0 auto; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form { width: 100%; }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info h3 { margin-bottom: 0.75rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail__icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail span,
.contact-detail a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}

.form-status.success { display: block; background: #d1fae5; color: #065f46; }
.form-status.error { display: block; background: #fee2e2; color: #991b1b; }

/* --- Service Detail Page --- */
.service-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--bg-dark);
  color: #fff;
}

.service-hero h1 { color: #fff; margin-bottom: 1rem; }
.service-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-content h2 { margin-bottom: 1rem; margin-top: 2.5rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { color: var(--text-muted); margin-bottom: 1rem; }
.service-content ul {
  color: var(--text-muted);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.service-content li { margin-bottom: 0.5rem; font-size: 0.95rem; }

.service-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.service-sidebar h3 { margin-bottom: 1rem; }
.service-sidebar ul { list-style: none; margin-bottom: 1.5rem; }
.service-sidebar li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-sidebar li:last-child { border-bottom: none; }
.service-sidebar .btn { width: 100%; justify-content: center; }

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

.footer-credit a { color: rgba(255,255,255,0.6); }
.footer-credit a:hover { color: var(--accent); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* --- Disclaimer Bar --- */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-faint);
  z-index: 101;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}

html.dark .disclaimer-bar {
  background: #0d0b14;
  border-color: #1e1b28;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Pull Quote Band --- */
.pull-quote-band {
  background: var(--bg-dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.pull-quote-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.pull-quote-band cite {
  color: rgba(255,255,255,0.5);
  font-style: normal;
  font-size: 0.9rem;
}

/* --- Event Types Grid (homepage) --- */
.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.event-type {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.event-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.event-type:hover img { transform: scale(1.04); }

.event-type__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.event-type__overlay h3 {
  color: #fff;
  font-size: 1.2rem;
}

/* --- 404 --- */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.page-404__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
}

.page-404 h2 { margin-top: -0.5rem; margin-bottom: 1rem; }
.page-404 p { color: var(--text-muted); margin-bottom: 2rem; }

/* --- Mobile --- */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }

  .nav__links.open { right: 0; }

  .nav__hamburger { display: flex; z-index: 201; }

  .nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__hamburger.active span:nth-child(2) { opacity: 0; }
  .nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-cta { display: none; }

  .hero { min-height: 80vh; }
  .hero__content { padding-top: var(--nav-h); margin-left: 1.5rem; }

  .split-narrative { grid-template-columns: 1fr; gap: 2rem; }
  .services-stagger .service-row { grid-template-columns: 1fr; }
  .services-stagger .service-row:nth-child(even) { direction: ltr; }
  .service-row__img { min-height: 220px; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .event-types { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* Subtle animations */
@media (prefers-reduced-motion: no-preference) {
  .hero__badge {
    animation: badge-pulse 3s ease-in-out infinite alternate;
  }
  @keyframes badge-pulse {
    from { opacity: 0.9; }
    to { opacity: 1; transform: translateY(-1px); }
  }
  .service-row__link svg {
    animation: nudge-right 2.5s ease-in-out infinite;
  }
  @keyframes nudge-right {
    0%, 70%, 100% { transform: translateX(0); }
    80% { transform: translateX(3px); }
    90% { transform: translateX(0); }
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
