/* ==========================================================================
   STUSA Studios — Design System
   ========================================================================== */

:root {
  --black: #050505;
  --near-black: #0a0a0b;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --line: rgba(255, 255, 255, 0.12);
  --white: #f5f6f7;
  --muted: #9a9da2;
  --gold: #c3cad1;
  --gold-bright: #ffffff;
  --gold-dim: #6b7178;
  --glow: rgba(255, 255, 255, 0.28);
  --ice: #b9e4ff;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-script: "Anton", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 6px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

/* subtle grain / vignette overlay across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  mix-blend-mode: multiply;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 300;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-dim), var(--gold-bright) 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s ease, color 0.4s ease, border-color .4s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(120deg, var(--gold-dim), var(--gold-bright));
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 8px 30px -8px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -8px var(--glow);
}

.btn-ghost {
  border-color: rgba(247,245,240,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,6,6,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 14px 40px;
  border-color: var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn { padding: 12px 26px; font-size: 0.72rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
}
.nav-burger span {
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.35) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.82) 55%, var(--black) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(255,255,255,0.06);
  margin-bottom: 30px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px 2px var(--glow);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(0.7);} }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  max-width: 900px;
  margin-bottom: 26px;
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero-meta {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-bright);
}
.hero-meta .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

/* ==========================================================================
   Services / Studios grid with 3D tilt
   ========================================================================== */

.services {
  padding: 140px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.tilt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  perspective: 1200px;
}

.tilt-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0;
  height: 460px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease, border-color 0.4s ease;
  cursor: pointer;
}
.tilt-card:hover { border-color: rgba(255,255,255,0.35); }

.tilt-card .card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0) scale(1.05);
  transition: transform 0.6s var(--ease);
  filter: grayscale(30%) brightness(0.65);
}
.tilt-card:hover .card-img { transform: scale(1.12); filter: grayscale(0%) brightness(0.55); }

.tilt-card .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,6,0) 20%, rgba(6,6,6,0.92) 100%);
}

.tilt-card .card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px;
  transform: translateZ(40px);
}

.tilt-card .card-index {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.tilt-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.tilt-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }

.tilt-card .card-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tilt-card .card-link svg { transition: transform 0.3s var(--ease); }
.tilt-card:hover .card-link svg { transform: translateX(6px); }

/* ==========================================================================
   Stats / feature strip
   ========================================================================== */

.feature-strip {
  padding: 100px 0;
  background: var(--near-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature-item { text-align: left; }
.feature-item .icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  margin-bottom: 22px;
  color: var(--gold-bright);
}
.feature-item h4 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-item p { color: var(--muted); font-size: 0.9rem; }

/* ==========================================================================
   Split section (About)
   ========================================================================== */

.split {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  position: relative;
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(25%) brightness(0.8);
}

.split-text .section-lede { max-width: none; margin-bottom: 30px; }
.split-list { display: flex; flex-direction: column; gap: 18px; margin: 30px 0 40px; }
.split-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.98rem;
}
.split-list li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* ==========================================================================
   Booking / Scheduler section
   ========================================================================== */

.booking-hero {
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.booking-panel {
  padding: 0 0 140px;
}
.booking-frame {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  min-height: 720px;
}
.booking-frame iframe { width: 100%; height: 720px; border: none; background: var(--surface); }

.booking-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}
.booking-note strong { color: var(--gold-bright); }

/* ==========================================================================
   Pricing / options cards (studios page)
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  background: var(--surface);
  transition: transform 0.5s var(--ease), border-color 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.4); }
.price-card.featured { background: linear-gradient(160deg, rgba(255,255,255,0.1), var(--surface) 60%); border-color: rgba(255,255,255,0.45); }
.price-card .badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0a0a0a; background: var(--gold-bright);
  padding: 6px 12px; border-radius: var(--radius);
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-bright); margin: 18px 0; }
.price-card .price span { font-family: var(--font-body); font-size: 0.95rem; color: var(--muted); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 26px 0 34px; }
.price-card ul li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.price-card ul li::before { content: "—"; color: var(--gold); }

/* ==========================================================================
   Shop grid
   ========================================================================== */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.35); }
.product-media {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(6,6,6,0.75); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--radius); color: var(--gold-bright);
  border: 1px solid var(--line);
}
.product-body { padding: 26px; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-body p.desc { color: var(--muted); font-size: 0.87rem; margin-bottom: 18px; min-height: 40px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-bright); }
.product-buy {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--radius);
  background: var(--white); color: #0a0a0a; font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.product-buy:hover { background: var(--gold-bright); transform: translateY(-2px); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  margin: 0 auto 140px;
  max-width: var(--container);
  padding: 90px 60px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-band p { color: var(--muted); max-width: 480px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-bottom: 140px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item .icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright); flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-item p, .contact-info-item a { color: var(--muted); font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--gold-bright); }

.map-embed {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--near-black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  border-top: 1px solid var(--line);
  padding: 90px 0 34px;
  background: var(--near-black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
}
.footer-brand .logo { margin-bottom: 18px; display: inline-block; }
.footer-brand .logo-img { height: 52px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 280px; margin-bottom: 24px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  color: var(--muted);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }

.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a, .footer-col p { color: var(--muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.8rem; flex-wrap: wrap; gap: 14px;
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  padding: 190px 0 90px;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .breadcrumb {
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero .breadcrumb span { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 780px; }
.page-hero p { color: var(--muted); max-width: 560px; margin-top: 20px; font-size: 1.05rem; }

/* ==========================================================================
   Studio detail blocks
   ========================================================================== */

.studio-block {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.studio-block.reverse { direction: rtl; }
.studio-block.reverse > * { direction: ltr; }
.studio-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  height: 520px;
}
.studio-gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
  filter: grayscale(25%) brightness(0.82);
  border: 1px solid var(--line);
}
.studio-gallery .stack { display: flex; flex-direction: column; gap: 16px; }
.studio-gallery .stack img { height: calc(50% - 8px); }

.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 40px; }
.amenity-grid div { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; color: var(--muted); }
.amenity-grid div .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .tilt-grid, .pricing-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .studio-block, .studio-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media, .studio-gallery { height: 400px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .nav { padding-left: 20px; padding-right: 20px; }
  .nav.is-scrolled { padding-left: 20px; padding-right: 20px; }
  .logo-img { height: 34px; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: 0.68rem; }
  .tilt-grid, .pricing-grid, .shop-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 30px; }
  .cta-band { padding: 60px 30px; margin-bottom: 90px; }
  .form-row { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 22px; }
}
