/* ═══════════════════════════════════════════
   HUS OFFICE — STYLESHEET
   Saffron-inspired light theme
   ═══════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────── */
:root {
  --bg:       #FAFAF7;
  --bg-w:     #FFFFFF;
  --bg-dark:  #0A0A0A;
  --text:     #0A0A0A;
  --text-2:   #555550;
  --text-3:   #9A9A95;
  --border:   #E2E1DC;
  --border-2: #C8C7C2;
  --card-bg:  #F0EFEB;

  --ff-head: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.45, 0, 0.55, 1);

  --sp:    120px;
  --sp-s:  72px;
  --nav-h: 64px;
}

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

/* ── CONTAINER ───────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── SEC LABELS ──────────────────────────── */
.sec-tag {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.sec-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.75;
}

/* ── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ─────────────────────────────── */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.btn-line:hover { opacity: 0.5; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: var(--text);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-solid:hover { background: #333; transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo { display: flex; align-items: baseline; gap: 10px; }
.loader-hus {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
}
.loader-office {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #666;
  text-transform: uppercase;
}
.loader-bar { width: 180px; height: 1px; background: #1e1e1e; overflow: hidden; }
.loader-progress { height: 100%; width: 0%; background: #fff; transition: width 0.06s linear; }

/* ═══════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.05s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(10,10,10,0.28);
  border-radius: 50%;
  pointer-events: none;
  z-index: 8999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-ring.big { width: 58px; height: 58px; border-color: rgba(10,10,10,0.14); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 48px; height: 48px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: var(--bg-w);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.25s var(--ease);
}
.float-wa svg { width: 20px; height: 20px; }
.float-wa:hover { background: var(--text); color: #fff; border-color: var(--text); transform: translateY(-3px); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 700;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,250,247,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo = tagline (Saffron-style) */
.nav-logo {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 200px;
  line-height: 1.3;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.5; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-cta {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.5; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 20px; height: 1px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 650;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mob-menu.open { transform: translateY(0); }
.mob-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: #555; font-size: 1.4rem;
  transition: color 0.2s;
}
.mob-close:hover { color: #fff; }
.mob-nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mob-nav a {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  color: #1e1e1e;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color 0.2s;
}
.mob-nav a:hover { color: #fff; }
.mob-foot {
  position: absolute; bottom: 28px;
  font-family: var(--ff-body);
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: #333; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   HERO  — Saffron split layout
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Optional background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.22;
  /* When you have a bg image, uncomment and adjust:
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  */
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px 52px;
  width: 100%;
  gap: 48px;
}
.hero-left  { flex: 1; }
.hero-right {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding-bottom: 8px;
}

/* ── EYEBROW ─────────────────────────────── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;

  /* Initial hidden state — JS adds .revealed */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero-eyebrow.revealed { opacity: 1; transform: translateY(0); }

.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
  animation: dotblink 2.4s ease-in-out infinite;
}
@keyframes dotblink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ── HERO TITLE — clip / mask reveal ────── */
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 9.5vw, 10rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

/*
  Each .hero-line clips its child with overflow:hidden
  The .hero-line-inner starts below and slides up
  This is the EXACT technique Saffron uses
*/
.hero-line {
  display: block;
  overflow: hidden;
  /* Small extra padding so descenders don't clip */
  padding-bottom: 0.04em;
}
.hero-line-inner {
  display: block;
  /* Start below the clip boundary */
  transform: translateY(106%);
  /* Smooth deceleration — matching Saffron's feel */
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
/* JS adds this class with staggered setTimeout */
.hero-line-inner.revealed {
  transform: translateY(0);
}

/* ── HERO RIGHT ──────────────────────────── */
.hero-right {
  /* Initial hidden state */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.hero-right.revealed { opacity: 1; transform: translateY(0); }

.hero-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.78;
}

.hero-scroll { display: flex; align-items: center; gap: 14px; }
.scroll-track {
  width: 40px; height: 1px;
  background: var(--border-2);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--text);
  animation: scrollslide 2.2s var(--ease-io) infinite;
}
@keyframes scrollslide { 0%{left:-100%} 50%{left:0%} 100%{left:100%} }
.hero-scroll span {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── HERO FOOTER ─────────────────────────── */
.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 18px 48px;
  border-top: 1px solid var(--border);

  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.hero-footer.revealed { opacity: 1; }

.hero-agency {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hero-explore-link {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.hero-explore-link:hover { color: var(--text); }

/* ── HERO REVEAL (eyebrow + right + footer) */
.hero-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.hero-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════ */
.strip {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
}
.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
.strip-set {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.strip-set span {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 20px;
  transition: color 0.2s;
}
.strip-set span:hover { color: var(--text); }
.strip-set em { font-style: normal; color: var(--border-2); font-size: 0.4rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   SERVICES REEL CAROUSEL
   ═══════════════════════════════════════════ */
.services-sec { padding: var(--sp) 0 var(--sp-s); }

.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.carousel-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.carousel-header-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px;
}
.carousel-hint {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.carousel-nav { display: flex; gap: 8px; }
.cnav-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-2);
  background: none;
  color: var(--text-2);
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.cnav-btn:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* Drag wrapper */
.carousel-track-wrap { overflow: hidden; cursor: grab; user-select: none; }
.carousel-track-wrap.grabbing { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 16px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* ── REEL CARD — 9:16 portrait ──────────── */
.reel-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.reel-canvas-wrap {
  position: relative;
  width: 300px;
  height: 533px;       /* 9 : 16 exact */
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-dark);
  flex-shrink: 0;
}

/* Actual video / canvas inside the wrap */
.reel-canvas-wrap video,
.reel-canvas-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.reel-canvas { width: 100%; height: 100%; display: block; }

.reel-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}
.reel-num {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
}
.reel-play {
  align-self: flex-end;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  pointer-events: auto;
  transition: background 0.2s;
}
.reel-card:hover .reel-play { background: rgba(255,255,255,0.24); }

.reel-info {
  padding: 16px 4px 0;
  border-top: 1px solid var(--border);
}
.reel-by {
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.reel-name {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.reel-desc { font-size: 0.78rem; color: var(--text-2); line-height: 1.55; }

.carousel-dots { display: flex; gap: 6px; margin-top: 28px; }
.cdot {
  width: 20px; height: 2px;
  background: var(--border-2);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.cdot.active { width: 36px; background: var(--text); }

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats-sec {
  padding: var(--sp-s) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-l {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   STUDIO RENTAL
   ═══════════════════════════════════════════ */
.studio-sec {
  padding: var(--sp) 0;
  border-bottom: 1px solid var(--border);
}
.studio-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.studio-head .sec-desc { max-width: 420px; }

/* Optional studio photo */
.studio-photo {
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 400px;
}
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }

.studio-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 56px;
}
.feat-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-2);
  transition: all 0.2s;
  cursor: default;
}
.feat-pill:hover { border-color: var(--text); color: var(--text); }

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
}
.price-card {
  background: var(--bg-w);
  padding: 48px 44px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.price-card:hover { background: var(--card-bg); }
.price-card--feat {
  background: var(--text);
  color: #fff;
}
.price-card--feat:hover { background: #111; }

.feat-badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
}
.price-label {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.price-card--feat .price-label { color: rgba(255,255,255,0.5); }
.price-num { display: flex; align-items: flex-start; gap: 3px; margin-bottom: 4px; }
.p-cur {
  font-size: 1rem; font-weight: 400;
  color: var(--text-3); margin-top: 10px;
}
.price-card--feat .p-cur { color: rgba(255,255,255,0.5); }
.p-val {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1; letter-spacing: -0.03em;
}
.price-card--feat .p-val { color: #fff; }
.price-per { font-size: 0.78rem; color: var(--text-3); margin-bottom: 32px; }
.price-card--feat .price-per { color: rgba(255,255,255,0.5); }
.price-list { flex: 1; margin-bottom: 32px; }
.price-list li {
  font-size: 0.83rem; color: var(--text-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.price-list li::before { content:'—'; color: var(--border-2); font-size: 0.7rem; flex-shrink: 0; }
.price-card--feat .price-list li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
.price-card--feat .price-list li::before { color: rgba(255,255,255,0.25); }
.price-card--feat .btn-solid { background:#fff; color: var(--text); }
.price-card--feat .btn-solid:hover { background:#e8e8e8; }

/* ═══════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════ */
.location-sec { padding: var(--sp) 0; border-bottom: 1px solid var(--border); }
.location-head { margin-bottom: 40px; }
.location-city {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--text);
}
.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px; align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.loc-col { display: flex; flex-direction: column; gap: 6px; }
.loc-city-name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.loc-addr { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.loc-phone { font-size: 0.85rem; color: var(--text-2); margin-top: 8px; transition: color 0.2s; }
.loc-phone:hover { color: var(--text); }
.loc-coords { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.loc-coords div { display: flex; align-items: baseline; gap: 10px; }
.coord-k { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; color: var(--text-3); text-transform: uppercase; min-width: 24px; }
.coord-v { font-size: 0.85rem; color: var(--text-2); }

/* Pin animation */
.pin-anim {
  position: relative;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.pin-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.1);
}
.pr1 { width:42px; height:42px; animation:pinpulse 2.8s ease-out infinite 0s; }
.pr2 { width:68px; height:68px; animation:pinpulse 2.8s ease-out infinite 0.5s; }
.pr3 { width:96px; height:96px; animation:pinpulse 2.8s ease-out infinite 1s; }
@keyframes pinpulse {
  0%{opacity:0.5;transform:scale(0.92)} 60%{opacity:0.1;transform:scale(1)} 100%{opacity:0;transform:scale(1.08)}
}
.pin-dot { width:22px; height:22px; color:var(--text); z-index:1; animation:pinbounce 2s ease-in-out infinite; }
.pin-dot svg { width:22px; height:22px; }
@keyframes pinbounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ═══════════════════════════════════════════
   CONTACT & SOCIAL
   ═══════════════════════════════════════════ */
.contact-sec { padding: var(--sp) 0; border-bottom: 1px solid var(--border); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.social-grid {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.soc-link {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.2s;
}
.soc-link:last-child { border-bottom: none; }
.soc-link:hover { background: var(--card-bg); color: var(--text); }
.soc-icon { width:18px; height:18px; flex-shrink:0; }
.soc-icon svg { width:18px; height:18px; }
.soc-name { font-size:0.82rem; font-weight:500; flex:1; }
.soc-arr { font-size:0.8rem; opacity:0.4; transition:opacity 0.2s, transform 0.2s; }
.soc-link:hover .soc-arr { opacity:1; transform:translate(2px,-2px); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { padding: var(--sp) 0 56px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer-tagline {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 440px;
  line-height: 1.1;
}
.footer-newsletter { max-width: 320px; }
.nl-label { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.nl-row {
  display: flex;
  border: 1px solid var(--border-2);
  border-radius: 4px; overflow: hidden;
}
.nl-input {
  flex: 1; padding: 11px 14px;
  background: none; border: none; outline: none;
  font-size: 0.82rem; color: var(--text);
}
.nl-input::placeholder { color: var(--text-3); }
.nl-btn {
  padding: 11px 18px;
  background: var(--text); color: #fff;
  border: none;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.nl-btn:hover { background: #333; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; align-items: center;
}
.footer-logo { font-family: var(--ff-head); font-size: 1rem; font-weight: 800; letter-spacing: 0.05em; color: var(--text); }
.footer-logo span { font-family: var(--ff-body); font-weight: 300; font-size: 0.63rem; letter-spacing: 0.3em; color: var(--text-3); margin-left: 6px; text-transform: uppercase; }
.footer-copy { font-size: 0.7rem; color: var(--text-3); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; justify-content: center; }
.footer-links a { font-size: 0.7rem; color: var(--text-3); letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-social { display: flex; gap: 20px; justify-content: flex-end; }
.footer-social a { font-size: 0.7rem; color: var(--text-3); letter-spacing: 0.06em; transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .location-details { grid-template-columns: 1fr 1fr; }
  .loc-pin-col { display: none; }
}
@media (max-width: 900px) {
  :root { --sp: 80px; --sp-s: 52px; }
  .container  { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .burger     { display: flex; }

  .hero-inner { flex-direction: column; align-items: flex-start; padding: 36px 28px 40px; gap: 28px; }
  .hero-right { width: 100%; }
  .hero-footer { padding: 16px 28px; }

  .carousel-track  { padding: 0 28px; }
  .carousel-header { padding: 0 28px; }
  .carousel-dots   { padding: 0 28px; }
  .carousel-nav    { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }

  .pricing-row     { grid-template-columns: 1fr; }
  .location-details{ grid-template-columns: 1fr; }
  .footer-top      { flex-direction: column; gap: 32px; }
  .footer-bottom   { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-links, .footer-social { justify-content: center; }
  .studio-head { flex-direction: column; gap: 20px; }
}
@media (max-width: 580px) {
  .reel-card        { width: calc(100vw - 72px); }
  .reel-canvas-wrap { width: 100%; height: calc((100vw - 72px) * 16 / 9); }
  .hero-title       { font-size: clamp(2.8rem, 14vw, 5rem); }
  .location-city    { font-size: clamp(2.4rem, 13vw, 5rem); }
  .footer-tagline   { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
