/* ============================================================
   CALDAS TATTOO — London Redesign
   Accent: #E8D875  |  Playfair Display + Inter
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #E8D875;
  --accent-hover: #f0e49a;
  --bg: #000;
  --bg-alt: #0a0a0a;
  --bg-feat: #050508;
  --text: #fff;
  --text-sec: rgba(255,255,255,0.8);
  --text-muted: rgba(255,255,255,0.6);
  --text-subtle: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.1);
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.05);
  --acc-border: rgba(232,216,117,0.15);
  --acc-border-h: rgba(232,216,117,0.4);
  --r-card: 12px;
  --r-btn: 6px;
  --r-img: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
nav.scrolled { background: rgba(0,0,0,0.95); padding: 15px 40px; }

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; color: #fff; font-family: 'Inter', sans-serif; white-space: nowrap; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none; background: transparent; border: 0; padding: 0;
  width: 36px; height: 36px; cursor: pointer; z-index: 110;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-toggle { display: flex; gap: 8px; }
.lang-btn {
  padding: 6px 12px; background: transparent;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  border-radius: 4px; cursor: pointer; font-size: 0.85rem; font-family: inherit;
  transition: all 0.3s;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn.active { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 600; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4; filter: grayscale(30%);
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; max-width: 900px; }

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 7.5vw, 6.5rem);
  font-weight: 600; line-height: 1.08; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero-highlight { color: var(--accent); display: block; font-style: italic; font-weight: 400; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  position: relative; padding: 16px 40px; border-radius: var(--r-btn);
  font-size: 1rem; font-weight: 600; font-family: inherit;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; overflow: hidden;
}
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }

.btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,216,117,0.3);
}
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: #fff; transform: translateY(-2px); }

.wpp-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* WPP pulse ring on button */
.btn-wpp-pulse {
  position: absolute; inset: 0; border-radius: inherit;
  animation: btnPulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,216,117,0.55); }
  65%  { box-shadow: 0 0 0 14px rgba(232,216,117,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,216,117,0); }
}

/* ── SECTION COMMON ─────────────────────────────────────── */
section { padding: 120px 40px; }

.section-label {
  font-size: 0.82rem; letter-spacing: 3px; color: var(--accent);
  margin-bottom: 18px; font-weight: 700; text-transform: uppercase; text-align: center;
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px;
  line-height: 1.15; text-align: center; font-weight: 500;
}
.section-title-italic { font-style: italic; font-weight: 400; color: var(--accent); }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-hero { background: var(--bg); padding: 100px 40px; }
.about-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 220px) 1fr; gap: 60px; align-items: center;
}
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-img); }
.about-content { text-align: left; }
.about-content .section-label { text-align: left; }
.about-title { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 28px; line-height: 1.2; font-weight: 500; text-align: left; }
.about-text { font-size: 1.05rem; line-height: 1.8; color: var(--text-sec); margin-bottom: 36px; }
.guest-spots { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.guest-label { font-size: 0.82rem; letter-spacing: 2px; color: var(--accent); margin-bottom: 18px; font-weight: 700; text-transform: uppercase; }
.guest-list { list-style: none; }
.guest-list li { color: var(--text-muted); margin-bottom: 10px; font-size: 1rem; line-height: 1.6; }
.guest-list strong { color: #fff; font-weight: 600; }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.how-it-works { background: var(--bg); text-align: center; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 60px; max-width: 1200px; margin: 80px auto 0;
}
.process-step { position: relative; padding-top: 50px; }
.step-number {
  font-size: 4rem; font-weight: 700; color: rgba(232,216,117,0.1);
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  line-height: 1; font-family: 'Playfair Display', serif;
}
.step-title { font-size: 1rem; margin-bottom: 14px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-family: 'Inter', sans-serif; }
.step-description { color: var(--text-muted); line-height: 1.8; font-size: 0.93rem; }
.cta-button { margin-top: 60px; }

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  background: var(--bg-feat);
  text-align: center;
  padding: 110px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.final-cta .section-label { margin-bottom: 24px; }
.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.final-cta-text {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ── STUDIOS ────────────────────────────────────────────── */
.studios { background: var(--bg-alt); }
.studios-intro { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.studios-desc { font-size: 1rem; color: var(--text-sec); line-height: 1.7; margin-top: 20px; }
.studios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 28px; max-width: 1400px; margin: 0 auto;
}
.studio-card {
  background: #111; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--card-border); transition: transform 0.3s, border-color 0.3s;
}
.studio-card:hover { transform: translateY(-8px); border-color: var(--acc-border-h); }
.studio-image { width: 100%; height: 210px; }
.studio-image--london   { background: linear-gradient(135deg,#1a1515,#2a1f1f); }
.studio-image--amsterdam { background: linear-gradient(135deg,#121a1a,#1e2a28); }
.studio-image--berlin   { background: linear-gradient(135deg,#161616,#222222); }
.studio-image--munich   { background: linear-gradient(135deg,#191915,#28281e); }
.studio-content { padding: 26px; }
.studio-location { font-size: 0.78rem; color: var(--accent); margin-bottom: 8px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.studio-name { font-size: 1.3rem; margin-bottom: 10px; color: #fff; font-weight: 600; }
.studio-description { color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-size: 0.92rem; }
.studio-address { color: var(--text-subtle); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
.studio-link { color: var(--accent); text-decoration: none; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; font-weight: 600; }
.studio-link:hover { gap: 10px; }

/* ── PORTFOLIO ──────────────────────────────────────────── */
.portfolio { background: var(--bg); }
.portfolio-header { text-align: center; margin-bottom: 50px; }
.portfolio-item { position: relative; overflow: hidden; border-radius: var(--r-img); background: #111; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-cta { text-align: center; margin-top: 60px; }

/* ── PORTFOLIO MARQUEE ROWS ─────────────────────────────── */
.marquee-rows { display: flex; flex-direction: column; gap: 14px; }

.marquee-row {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeLeft 32s linear infinite;
}

.marquee-row--rev .marquee-track {
  animation: marqueeRight 32s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeLeft  { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes marqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.marquee-item {
  width: 240px;
  height: 320px;
  flex-shrink: 0;
  border-radius: var(--r-img);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}

.marquee-item:hover { border-color: rgba(232,216,117,0.35); }

.marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(12%);
  transition: filter 0.35s ease, transform 0.5s ease;
}

.marquee-item:hover img { filter: grayscale(0%); }

/* ── FEATURES ───────────────────────────────────────────── */
.features { background: var(--bg-feat); }
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; max-width: 1200px; margin: 60px auto 0;
}
.feature-card {
  background: var(--card-bg); border: 1px solid var(--acc-border);
  border-radius: var(--r-card); padding: 34px 26px; transition: all 0.3s;
}
.feature-card:hover { border-color: var(--acc-border-h); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.feature-icon { width: 44px; height: 44px; border: 1px solid rgba(232,216,117,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.2rem; color: var(--accent); }
.feature-badge { display: inline-block; font-size: 0.68rem; letter-spacing: 1px; color: var(--accent); border: 1px solid rgba(232,216,117,0.3); border-radius: 20px; padding: 3px 11px; margin-bottom: 14px; text-transform: uppercase; font-weight: 600; }
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; color: #fff; }
.feature-description { color: var(--text-muted); font-size: 0.91rem; line-height: 1.7; }

/* ── TESTIMONIALS MARQUEE ───────────────────────────────── */
.testimonials { background: var(--bg-alt); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-overflow { overflow: hidden; width: 100%; }
.testimonials-track { display: flex; gap: 22px; animation: marquee 40s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  min-width: 350px; max-width: 350px;
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card); padding: 28px; flex-shrink: 0;
}
.review-stars { color: var(--accent); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 0.82rem; color: var(--text-subtle); font-weight: 600; }
.google-badge { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 48px; color: var(--text-muted); font-size: 0.92rem; }
.google-stars { color: var(--accent); font-size: 1.05rem; }
.google-badge strong { color: #fff; font-size: 1.15rem; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: #080808; padding: 60px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-container { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 50px; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 55px; background: var(--border); flex-shrink: 0; }

/* ── LOCATION ───────────────────────────────────────────── */
.location { background: var(--bg); }
.location-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-info .section-label { text-align: left; }
.location-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; font-weight: 500; }
.address { font-size: 1.05rem; line-height: 1.9; color: var(--text-sec); margin-bottom: 28px; }
.location-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.location-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.location-detail-icon { font-size: 1.1rem; line-height: 1.5; }
.location-detail-item strong { display: block; color: #fff; margin-bottom: 3px; font-weight: 600; font-size: 0.95rem; }
.location-detail-item p { color: var(--text-muted); font-size: 0.9rem; }
.map-container { width: 100%; height: 400px; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto 60px; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 50px; }
.footer-logo { font-size: 1.3rem; font-weight: 700; letter-spacing: 2px; color: #fff; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-tagline { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; text-decoration: none; }
.footer-social-link svg { width: 17px; height: 17px; }
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,216,117,0.05); }
.footer-col-title { font-size: 0.76rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; font-weight: 700; font-family: 'Inter', sans-serif; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-address { font-style: normal; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; }
.footer-hours { color: var(--text-subtle); font-size: 0.86rem; line-height: 1.7; }
.footer-book-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: var(--text-subtle); font-size: 0.83rem; }

/* ── ABOUT PHOTOS GRID ──────────────────────────────────── */
.about-photos-grid {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 8px;
  align-items: start;
  align-self: start;
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}

.about-photo-main {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-img);
  display: block;
}

/* Crop portrait-1 upward so the watch brand is less visible */
.about-photo-work {
  object-position: center 0%;
}

.about-photos-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-photo-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.about-photo-thumb:hover {
  opacity: 1;
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  border-radius: var(--r-img);
}

.portfolio-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(232,216,117,0.8);
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--accent);
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0,0,0,0.45);
}

.portfolio-item:hover .portfolio-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ── GOOGLE LINK ────────────────────────────────────────── */
.google-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.google-link:hover { opacity: 0.8; }

/* ── FLOATING WPP ───────────────────────────────────────── */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #000; text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,216,117,0.35);
  opacity: 0; pointer-events: none;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s;
}
.wpp-float.visible { opacity: 1; pointer-events: auto; transform: scale(1) translateY(0); }
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(232,216,117,0.5); }
.wpp-float svg { width: 28px; height: 28px; position: relative; z-index: 1; }

.wpp-float-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(232,216,117,0.5);
  animation: floatRing 2.6s ease-out infinite;
  pointer-events: none;
}
.wpp-float-ring--delay { animation-delay: 1.3s; }

@keyframes floatRing {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 968px) {
  .about-container { grid-template-columns: 1fr; gap: 36px; }
  .about-content, .about-title { text-align: center; }
  .about-content .section-label { text-align: center; }
  .guest-spots { text-align: left; }
  .about-photos-grid { grid-template-columns: 1fr 64px; }
  .location-content { grid-template-columns: 1fr; }
  .stat-item { padding: 14px 28px; }
  .marquee-item { width: 200px; height: 270px; }
}

@media (max-width: 768px) {
  nav { padding: 15px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .logo { font-size: 1.15rem; letter-spacing: 1.5px; }

  /* Show hamburger, hide inline lang/nav */
  .nav-toggle { display: flex; }

  /* Slide-in menu panel */
  .nav-links {
    display: flex !important;
    position: fixed; top: 0; right: 0;
    width: min(78vw, 320px); height: 100vh;
    flex-direction: column; align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 4px;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 99;
  }
  .nav-links a {
    width: 100%; font-size: 1.25rem; padding: 18px 0;
    border-bottom: 1px solid var(--border);
    color: #fff;
  }

  /* Lang toggle always visible in navbar on mobile — smaller */
  .lang-toggle {
    position: static;
    transform: none;
    transition: none;
    gap: 4px;
  }
  .lang-btn {
    padding: 3px 7px;
    font-size: 0.65rem;
    border-radius: 3px;
  }

  nav.nav-open .nav-links { transform: translateX(0); }

  body.menu-open { overflow: hidden; }

  section { padding: 80px 20px; }
  .about-hero { padding: 80px 20px; }
  .marquee-item { width: 160px; height: 220px; }
  .features-grid { grid-template-columns: 1fr; }
  .studios-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 40px 20px; }
  .stats-container { flex-direction: column; }
  .stat-divider { width: 50px; height: 1px; }
  .stat-item { padding: 14px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .review-card { min-width: 270px; max-width: 270px; }
  .wpp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wpp-float svg { width: 24px; height: 24px; }
}
