/* ── Variables ── */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --text: #f5f5f5;
  --text-muted: #888888;
  --accent: #39FF14;
  --accent-dim: rgba(57, 255, 20, 0.12);
  --accent-glow: 0 0 18px rgba(57, 255, 20, 0.35);
  --whatsapp: #25D366;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --section-pad: clamp(64px, 10vw, 120px);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(42px, 7vw, 96px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }

/* ── Section shared ── */
section {
  padding: var(--section-pad) 24px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--accent-glow);
  flex-shrink: 0;
}
.section-title {
  margin-bottom: 60px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); color: #0a0a0a; transform: translateY(-2px); box-shadow: var(--accent-glow); }
.btn-whatsapp {
  background: transparent;
  color: var(--whatsapp);
  border: 1.5px solid var(--whatsapp);
}
.btn-whatsapp:hover { background: var(--whatsapp); color: #fff; transform: translateY(-2px); }
.btn-submit {
  margin-top: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 16px;
  padding: 16px 36px;
}
.btn-submit:hover { background: #1da851; transform: translateY(-2px); }
.btn:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 24px 40px;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  padding: 14px 40px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 40px 24px;
  gap: 20px;
}
.mobile-menu a {
  font-size: 18px;
  color: var(--text-muted);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav { padding: 20px 24px; }
  #nav.scrolled { padding: 14px 24px; }
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  max-width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url('assets/images/hero-switch.webp') center center / cover no-repeat;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,5,0.90) 0%,
    rgba(5,5,5,0.65) 55%,
    rgba(5,5,5,0.20) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 80px 120px;
  max-width: 720px;
  opacity: 0;
}
.hero-title {
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Products Carousel ── */
#products {
  padding: var(--section-pad) 24px;
  background: var(--bg-2);
  max-width: 100%;
}
.products-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.products-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.products-left .section-title { margin-bottom: 0; }
.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-list-item:first-child { border-top: 1px solid var(--border); }
.product-list-item.active .product-list-name {
  color: var(--accent);
}
.product-list-item.active {
  border-color: rgba(57,255,20,0.25);
}
.product-list-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.product-list-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.products-left .carousel-footer {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.products-left .carousel-more {
  font-size: 16px;
  margin: 0;
}
.products-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .products-layout { grid-template-columns: 1fr; gap: 48px; }
  .products-right { order: -1; }
}

.carousel-scene {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 700px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  user-select: none;
}

.carousel-stage {
  width: 280px;
  height: 360px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}
.carousel-stage.dragging {
  transition: none;
  cursor: grabbing;
}

.carousel-card {
  position: absolute;
  width: 260px;
  height: 340px;
  left: 0; top: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  transition: box-shadow 0.4s, border-color 0.4s;
}
.carousel-card.active {
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--accent-glow);
}

.carousel-card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.carousel-card.active .carousel-card-img img {
  transform: scale(1.04);
}

.carousel-card-info {
  padding: 20px;
  text-align: left;
  flex: 1;
}
.carousel-card-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.carousel-card-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Standee base */
.carousel-base {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.carousel-base-top {
  width: 320px;
  height: 16px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.carousel-base-body {
  width: 80px;
  height: 20px;
  background: linear-gradient(180deg, #222 0%, #111 100%);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

.carousel-hint {
  text-align: center;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
}
.carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.carousel-more {
  font-size: 22px;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.05em;
}
.btn-outline {
  background: transparent;
  border: 1px solid #444;
  color: var(--text);
  padding: 12px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--accent-glow);
}

@media (max-width: 600px) {
  .carousel-scene { height: 420px; }
  .carousel-stage { width: 240px; height: 320px; }
  .carousel-card { width: 220px; height: 300px; }
  .carousel-card-img { height: 180px; }
  .carousel-base { display: none; }
}

@media (max-width: 480px) {
  .carousel-scene { height: 380px; }
  .carousel-stage { width: 220px; height: 300px; }
  .carousel-card { width: 200px; height: 280px; }
  .carousel-card-img { height: 160px; }
}

/* ── Section Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  background: var(--bg);
}
.section-divider-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(57,255,20,0.3), transparent);
}
.section-divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--accent-glow);
}

/* ── About ── */
#about {
  background-color: var(--bg-2);
  background-image: radial-gradient(circle, rgba(57,255,20,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: var(--section-pad) 24px;
  text-align: center;
}
.about-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-inner .section-label { justify-content: center; }
.about-body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 640px;
}
.about-quote-wrap {
  width: 100%;
  padding: 48px 0;
  position: relative;
}
.about-quote-wrap::before,
.about-quote-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(57, 255, 20, 0.3);
}
.about-quote-wrap::before { top: 0; }
.about-quote-wrap::after  { bottom: 0; }
.about-quote {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(57, 255, 20, 0.3), 0 0 80px rgba(57, 255, 20, 0.12);
}
.quote-word {
  display: inline-block;
}

.about-promise {
  max-width: 560px;
}
.about-promise-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.about-promise-body {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--text-muted);
  line-height: 1.9;
}

/* ── Why Kaplin stats ── */
#why-kaplin {
  background: var(--bg);
  max-width: 100%;
  padding: var(--section-pad) 24px;
}
#why-kaplin > .section-label {
  max-width: var(--max-w);
  margin: 0 auto 60px;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: 60px 40px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(30px);
}
.stat-item:not(:last-child) { border-right: 1px solid var(--border); }
.stat-icon { color: var(--accent); opacity: 0.9; text-shadow: var(--accent-glow); }
.stat-number {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
  line-height: 1;
}
.stat-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item { padding: 40px 28px; }
}

/* ── Gallery ── */
#gallery {
  background: var(--bg-2);
  max-width: 100%;
  padding: var(--section-pad) 24px;
}
#gallery > .section-label,
#gallery > .section-title {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
#gallery > .section-title { margin-bottom: 60px; }
.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  background: var(--surface);
  border: 1px solid rgba(57,255,20,0.2);
  box-shadow: 0 0 0 0 rgba(57,255,20,0);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(57,255,20,0.06);
  pointer-events: none;
}
.gallery-item:hover {
  border-color: rgba(57,255,20,0.5);
  box-shadow: 0 0 24px rgba(57,255,20,0.2), 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-wide, .gallery-tall { grid-column: span 1; grid-row: span 1; }
}

/* ── Contact Form ── */
#contact {
  background: var(--bg);
  max-width: 100%;
  padding: var(--section-pad) 24px;
}
#contact > .section-label,
#contact > .section-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#contact > .section-title { margin-bottom: 60px; }
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px;
  opacity: 0;
  transform: translateY(30px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { margin-bottom: 20px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e55;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a1a; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
}

/* ── Footer ── */
#footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 72px 40px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-since {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 100px;
  margin-top: 4px;
  width: fit-content;
}
.btn-instagram {
  background: transparent;
  color: #C13584;
  border: 1.5px solid #C13584;
}
.btn-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links li svg { color: var(--accent); flex-shrink: 0; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-address-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-address-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-address {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #444;
}
.footer-bottom-right { color: #333 !important; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  #footer { padding: 56px 24px 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Hero */
  .hero-content { display: none; }
  #hero {
    background-image: url('assets/images/hero-switch-mobile.webp');
    background-position: center top;
    background-size: cover;
  }
  #hero::before { display: none; }

  /* Stop Y-shift animations on mobile - only fade, no jump */
  .gallery-item { transform: none; }
  .stat-item { transform: none; }
  .form-wrap { transform: none; }

  /* About */
  .about-inner { gap: 28px; }
  .about-quote-wrap { padding: 32px 0; }
  .about-promise { padding-top: 28px; }

  /* Products */
  .products-left .carousel-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .product-list-item { padding: 12px 0; }

  /* Section titles */
  .section-title { font-size: clamp(28px, 7vw, 40px); }

  /* Why Kaplin */
  .stat-number { font-size: clamp(40px, 10vw, 56px); }

  /* Contact form */
  .form-card { padding: 40px 24px; }

  /* Footer */
  #footer { padding: 48px 24px 0; }
  .footer-wa-btn { font-size: 12px; padding: 8px 16px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-content { padding: 100px 20px 60px; }
  .btn { padding: 12px 22px; font-size: 14px; }

  /* Nav */
  #nav { padding: 16px 20px; }

  /* About */
  .about-inner { padding: 0 4px; }

  /* Carousel */
  .carousel-scene { height: 380px; }
  .carousel-stage { width: 220px; height: 300px; }
  .carousel-card { width: 200px; height: 280px; }
  .carousel-card-img { height: 160px; }

  /* Gallery */
  .gallery-grid { gap: 8px; grid-auto-rows: 180px; }

  /* Section spacing */
  section { padding: 56px 20px; }
  .about-inner, .stats-grid { padding: 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
}
