/* ─────────────────────────────────────────────
   VAYEM STUDIOS — Tesla-style Design System
   ───────────────────────────────────────────── */

:root {
  --ink:           #F2EFE9;
  --ink-band:      #0D0B12;
  --accent-violet: #7C3AED;
  --accent-cyan:   #00D4FF;
  --accent-rose:   #F43F8E;
  --accent-amber:  #F59E0B;
  --accent-emerald:#10B981;
  --accent-cobalt: #2C5FE0;
  --canvas:        #13111A;
  --canvas-soft:   #1A1726;
  --hairline:      rgba(255,255,255,0.10);
  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Fraunces', 'Georgia', serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
body {
  font-family: var(--font-sans);
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === MAGNETIC CURSOR (desktop / fine-pointer only) === */
@media (hover: hover) and (pointer: fine) {
  a, button, .btn, .work-photo, .proof-card, .testimonial-card,
  .deliver-card, .contact-card, .video-cell, .bai-wrap { cursor: none; }
}
.magnetic-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-violet);
  box-shadow: 0 0 16px rgba(124,58,237,0.6);
  pointer-events: none;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  mix-blend-mode: difference;
}
.magnetic-cursor.is-active {
  width: 44px; height: 44px;
  background: rgba(124,58,237,0.35);
  box-shadow: 0 0 28px rgba(124,58,237,0.5);
}
.magnetic-cursor.is-pressed { width: 12px; height: 12px; }
@media (max-width: 991px) {
  .magnetic-cursor { display: none; }
}

/* Once the intro has played this session (see the head script), hide
   the overlay instantly with no animation — set before paint so there
   is no flash of it appearing first. */
.intro-skip #welcome-overlay { display: none; }

/* === WELCOME OVERLAY ===
   Sequence: "VS" pops in flush → separates into "Vayem Studios" on
   one line (same Georgia wordmark as the nav/footer logo) → once both
   words finish typing, "Studios" glides down to sit directly under
   "Vayem" (the exact stacked lockup used everywhere else on the site)
   → the camera fades in centered just above the "y" → flash → the
   overlay reveals the site. Nothing animates until ".wm-ready" is
   added by JS (after fonts/metrics are confirmed ready), and the
   "Studios" drop + camera position are both computed from real
   measured positions, not guessed offsets. */
#welcome-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.wm-ready#welcome-overlay {
  animation: overlayFadeOut 0.55s ease 4.70s forwards;
}
.ww-wrap { position: relative; display: inline-block; }
.welcome-wordmark {
  display: flex; align-items: baseline; justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 9vw, 76px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}
.wm-block { display: inline-flex; align-items: baseline; }
.wm-block-v { margin-right: 0.22em; }
/* The "VS" monogram: both big letters are invisible until ready, then
   fade/scale in together. V and S are already shifted toward each
   other (measured via JS), so at this moment they sit flush together
   — looking like one "VS" mark. */
.wm-block-v .wm-big, .wm-block-s .wm-big {
  display: inline-block;
  opacity: 0; transform: scale(0.7);
}
.wm-ready .wm-block-v .wm-big, .wm-ready .wm-block-s .wm-big {
  animation: wmMonogramIn 0.45s cubic-bezier(.34,1.56,.64,1) 0.25s forwards;
}
/* Matches the brand mark elsewhere on the site: "Vayem" in white,
   "Studios" in cobalt blue — no gradient. */
.wm-block-v .wm-big {
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.35));
}
.wm-block-s .wm-big, .wm-block-s .wm-typed {
  color: var(--accent-cobalt);
  filter: drop-shadow(0 0 18px rgba(44,95,224,0.55));
}
/* Stage 1, the one and only horizontal separating move: V and S glide
   apart from sitting flush together — centered as a pair within the
   full final word's width — to their real final positions on one
   line. --shift-v/--shift-s are computed independently via JS, since
   "ayem" and "tudios" aren't the same width. Pure transform, so it's
   smooth and never repeats. */
.wm-block-v { transform: translateX(var(--shift-v, 0px)); }
.wm-block-s { transform: translateX(var(--shift-s, 0px)); }
.wm-ready .wm-block-v {
  animation: wmSeparateV 0.95s cubic-bezier(0.65, 0, 0.35, 1) 0.85s forwards;
}
.wm-ready .wm-block-s {
  animation: wmSeparateS 0.95s cubic-bezier(0.65, 0, 0.35, 1) 0.85s forwards;
}
@keyframes wmSeparateV {
  from { transform: translateX(var(--shift-v, 0px)); }
  to   { transform: translateX(0); }
}
@keyframes wmSeparateS {
  from { transform: translateX(var(--shift-s, 0px)); }
  to   { transform: translateX(0); }
}
/* Stage 2: once "Vayem Studios" has finished typing on one line,
   both lines recenter on the wrap's true horizontal center and
   "Studios" drops down into place under "Vayem" — --vayem-dx and
   --studios-dx/--studios-dy are measured live from the actual
   rendered positions right before this triggers, so the finished
   two-line lockup ends up dead-center on screen for the flash. */
.wm-block-v.vayem-center {
  animation: wmVayemCenter 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.wm-block-s.studios-drop {
  animation: wmStudiosDrop 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes wmVayemCenter {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--vayem-dx, 0px)); }
}
@keyframes wmStudiosDrop {
  from { transform: translateX(0); }
  to   { transform: translate(var(--studios-dx, 0px), var(--studios-dy, 0px)); }
}
.wm-rest {
  display: inline-flex;
  text-transform: uppercase;
}
.wm-typed {
  display: inline-block;
  opacity: 0; transform: translateY(6px);
}
.wm-ready .wm-typed {
  animation: wmLetterIn 0.32s ease forwards;
}
/* The camera: positioned absolutely via JS (left/top set once
   "Studios" has dropped into place), centered above the "y". */
.welcome-camera {
  position: absolute;
  display: inline-block;
  font-size: 0.85em;
  line-height: 1;
  transform: translate(-50%, -100%) scale(0);
  opacity: 0;
}
.wm-camera-ready .welcome-camera {
  animation: wmCameraIn 0.45s cubic-bezier(.34,1.56,.64,1) forwards;
}
.welcome-flash {
  position: absolute; inset: 0;
  background: #fff;
  opacity: 0;
}
.wm-ready .welcome-flash {
  animation: wmFlash 0.45s ease 4.30s forwards;
}
@keyframes wmMonogramIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wmLetterIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wmCameraIn {
  0%   { opacity: 0; transform: translate(-50%, -100%) scale(0); }
  60%  { opacity: 1; transform: translate(-50%, -100%) scale(1.2); }
  100% { opacity: 1; transform: translate(-50%, -100%) scale(1); }
}
@keyframes wmFlash {
  0%   { opacity: 0; }
  45%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes overlayFadeOut {
  to { opacity: 0; transform: scale(1.02); pointer-events: none; }
}

/* === NAV === */
/* Always solid — was transparent until scrolled, but that made the
   nav text hard to read sitting over the hero video/banner. Now it's
   the same dark glass background everywhere, from the very top. */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  background: rgba(13,11,18,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--hairline);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.06);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0 48px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
/* Stacked brand mark — "VAYEM" with "STUDIOS" below it, same Georgia
   serif and white/cobalt split as the approved logo concept. */
.nav-wordmark {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  line-height: 1; transition: color 0.3s;
}
.nav-wordmark .nw-vayem {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.3px; color: #fff;
}
.nav-wordmark .nw-studios {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-cobalt); margin-top: 2px;
  /* Exact correction is computed and applied via JS (canvas glyph-ink
     measurement) — see the alignStackedWordmarks script. */
}
/* Footer brand mark — same stacked VAYEM/Studios treatment as the nav. */
.footer-brand-vayem {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px; font-weight: 700; letter-spacing: 0.3px; color: #fff;
}
.footer-brand-studios {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent-cobalt); margin-top: 3px;
}
.footer-brand-stack { display: flex; flex-direction: column; line-height: 1; margin-bottom: 12px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.15s; letter-spacing: 0.2px; }
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.65); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav.scrolled .nav-actions .btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.22);
}
.nav.scrolled .nav-actions .btn-outline-white:hover { background: rgba(255,255,255,0.06); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  padding: 12px 26px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.1px;
  position: relative; overflow: hidden;
}
/* Glassy light sweep on hover */
.btn::before {
  content: ''; position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

/* Solid accent — primary CTA everywhere */
.btn-violet {
  background: var(--accent-violet);
  color: #fff;
}
.btn-violet:hover { background: #6328C7; transform: translateY(-1px); }

/* Ink outline — secondary CTA on light canvas */
.btn-outline-violet {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-outline-violet:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* White solid — used only on dark ink-band sections */
.btn-white {
  background: rgba(255,255,255,0.95);
  color: var(--ink-band);
}
.btn-white:hover { background: #fff; transform: translateY(-1px); }

/* White outline — used only on dark ink-band sections */
.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.16); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* === FULL-SCREEN SECTIONS (Tesla-style) === */
.panel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Content always visible but animates in */
.panel-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.panel-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.panel-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 32px;
}

/* CTA row — sits in normal flow below content by default */
.panel-cta {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}
.panel-cta.visible { opacity: 1; }

#hero .panel-cta { justify-content: center; }
#hero .panel-content { text-align: center; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0;
  animation: hintFade 1s ease 3.4s forwards;
}
.scroll-hint span { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.30);
  border-bottom: 1.5px solid rgba(255,255,255,0.30);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes hintFade { to { opacity: 1; } }
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}

/* === BACKGROUNDS === */
.bg-dark  { background: var(--ink-band); }
.bg-ink   { background: var(--ink-band); }
.bg-white { background: var(--canvas); color: var(--ink); }
.bg-soft  { background: var(--canvas-soft); color: var(--ink); }

/* Dark "ink band" sections — used sparingly for contrast (CTA / Contact / Footer) */
.ink-band {
  background: var(--ink-band);
  color: rgba(255,255,255,0.82);
}
.ink-band .sub { color: rgba(255,255,255,0.55); }
.ink-band .eyebrow { color: rgba(255,255,255,0.45); }

/* Dark gradient overlays for image-like panels */
.panel-gradient-dark {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.6) 85%,
    rgba(0,0,0,0.85) 100%);
}
.panel-gradient-top {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.0) 70%,
    rgba(0,0,0,0.7) 100%);
}

/* Animated glow background */
.bg-glow {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.glow-orb-1 {
  width: 600px; height: 600px;
  top: -20%; left: -10%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.30) 0%, transparent 70%);
  animation-delay: 0s;
}
.glow-orb-2 {
  width: 500px; height: 500px;
  bottom: -20%; right: -10%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.20) 0%, transparent 70%);
  animation-delay: -3s;
}
.glow-orb-3 {
  width: 400px; height: 400px;
  top: 30%; left: 40%;
  background: radial-gradient(ellipse, rgba(244,63,142,0.12) 0%, transparent 70%);
  animation-delay: -5s;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Grid overlay */
.bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* === TYPOGRAPHY === */
.headline-hero {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
}
.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--ink);
}
.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.headline-md {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.1px;
  color: var(--ink);
}
/* Dark ink-band sections override headline color to white */
.ink-band .headline-hero, .ink-band .headline-xl, .ink-band .headline-lg, .ink-band .headline-md {
  color: #fff;
}
.sub {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 16px auto 0;
}
.sub-dark {
  color: rgba(255,255,255,0.65);
}
.sub-light {
  color: rgba(255,255,255,0.65);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.eyebrow-violet { color: var(--accent-violet); }
.eyebrow-dark   { color: rgba(255,255,255,0.45); }
.eyebrow-light  { color: rgba(255,255,255,0.45); }

.gradient-text {
  color: var(--accent-violet);
  font-style: italic;
}

/* === STUDIO SCENE — one fixed backdrop pinned behind Hero, Baseline-to-Luxury,
   and What We Deliver. Content scrolls normally on top; the backdrop locks to
   the bottom of the scene once you scroll past it, handing off cleanly into
   the next (light) section. === */
.studio-scene { position: relative; background: #0D0B12; }
.studio-bg {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden;
  background: #0D0B12;
}
.studio-bg.pinned-bottom { position: absolute; top: auto; bottom: 0; }
.studio-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(124,58,237,0.22) 0%, transparent 45%),
    radial-gradient(circle at 78% 75%, rgba(0,212,255,0.16) 0%, transparent 45%);
}
.studio-floor {
  position: absolute; left: 0; right: 0; bottom: -10%; height: 70%;
  background-image:
    linear-gradient(rgba(124,58,237,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(600px) rotateX(62deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.9), transparent 85%);
}
/* Faint glowing topographic contour lines, like the reference site —
   sits above the floor grid, very low opacity so it reads as texture. */
.studio-contours {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.5;
}
.studio-contours path {
  fill: none;
  stroke: rgba(124,58,237,0.5);
  stroke-width: 1;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.25));
}
.studio-contours path:nth-child(2) { stroke: rgba(0,212,255,0.35); }
.studio-contours path:nth-child(4) { stroke: rgba(0,212,255,0.3); }

/* === HERO (panel 1) — door-opening intro video, full-bleed === */
#hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,11,18,0.15) 0%, rgba(13,11,18,0.55) 70%, rgba(13,11,18,0.85) 100%);
  pointer-events: none;
}
.hero-text {
  position: relative; z-index: 2;
  width: 100%; max-width: 100%; box-sizing: border-box;
  padding: 24px;
  display: flex; justify-content: center;
}
.hero-glass-panel {
  background: rgba(15,12,20,0.50);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 40px 64px;
  max-width: 980px;
  width: 100%;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.hero-glass-panel.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-text .sub { margin: 16px auto 0; max-width: 620px; color: rgba(255,255,255,0.70); }
.hero-text .headline-md { color: rgba(255,255,255,0.85); }
.hero-text .headline-hero { color: #fff; }
.hero-text .panel-cta { justify-content: center; }
@media (max-width: 991px) {
  .hero-text { padding: 110px 24px 56px; }
  .hero-glass-panel { padding: 40px 36px; max-width: 100%; }
}
@media (max-width: 767px) {
  .hero-text { padding: 100px 20px 40px; }
  .hero-glass-panel { padding: 32px 24px; border-radius: 20px; }
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: #C9AFFF;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-violet);
  box-shadow: 0 0 8px rgba(124,58,237,0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}

/* === SERVICE PANELS === */
.service-panel { background: #0A0A0A; }

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  height: 100vh;
}
.service-visual {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.service-visual-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.service-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  position: relative;
  z-index: 2;
}
.service-body .eyebrow { margin-bottom: 12px; }
.service-body .headline-lg { margin-bottom: 20px; }
.service-body p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 36px; max-width: 420px; }
.service-body .btn { align-self: flex-start; }

/* Visual mockup cards inside service panels */
.mock-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  width: 320px;
  position: relative;
  overflow: hidden;
}
.mock-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
}
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-img {
  aspect-ratio: 3/4;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  position: relative;
}
.mock-img.span2 { grid-column: 1 / -1; aspect-ratio: 16/9; }
.mock-label {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.mock-label-text { font-size: 12px; color: rgba(255,255,255,0.40); }
.mock-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 100px;
}
.badge-ai { background: rgba(124,58,237,0.25); color: #B39DFF; border: 1px solid rgba(124,58,237,0.30); }
.badge-live { background: rgba(16,185,129,0.20); color: #34D399; border: 1px solid rgba(16,185,129,0.30); }

.m1 { background: linear-gradient(135deg, #2D1B50, #150D28); }
.m2 { background: linear-gradient(135deg, #0F2D4A, #071828); }
.m3 { background: linear-gradient(135deg, #1A2D15, #0D1A0A); }
.m4 { background: linear-gradient(135deg, #2D1520, #1A0810); }
.m5 { background: linear-gradient(135deg, #1E1E1E, #111); }
.m6 { background: linear-gradient(135deg, #0D2030, #07111A); }

/* Large visual for model panel */
.model-showcase {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  padding: 40px;
  height: 100%;
  align-items: center;
}
.model-card {
  border-radius: 14px; overflow: hidden;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.model-card.tall { aspect-ratio: 2/3; }
.model-card.mid  { aspect-ratio: 2/3; margin-top: 40px; }
.model-card-label {
  position: absolute; bottom: 10px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border-radius: 6px; padding: 4px 10px;
  font-size: 10px; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 0.5px;
}

/* === WHAT WE DELIVER === */
.deliver-panel { position: relative; z-index: 1; }
.deliver-panel .headline-xl { color: #fff; }
.deliver-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}
.deliver-card {
  padding: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: box-shadow 0.3s, transform 0.15s, opacity 0.35s;
  transform-style: preserve-3d; will-change: transform;
}
.deliver-card:hover { box-shadow: 0 18px 40px rgba(124,58,237,0.30), inset 0 1px 0 rgba(255,255,255,0.14); }
/* Hovering one card lifts it forward and gently recedes the rest, like a depth-sorted panel group */
.deliver-grid.has-active .deliver-card { opacity: 0.5; }
.deliver-grid.has-active .deliver-card.is-active {
  opacity: 1; z-index: 2;
  box-shadow: 0 28px 60px rgba(124,58,237,0.36), inset 0 1px 0 rgba(255,255,255,0.16);
}
.deliver-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  color: #B39DFF;
  margin-bottom: 12px;
}
.deliver-title { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: #fff; margin-bottom: 10px; letter-spacing: -0.2px; }
.deliver-desc  { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.58); }
@media (max-width: 767px) {
  .deliver-grid { grid-template-columns: 1fr; gap: 28px; max-width: 460px; }
}

/* === HOW IT WORKS === */
.how-panel { background: var(--canvas-soft); }
.how-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 48px auto 0;
}
.how-step {
  text-align: center;
}
.how-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-violet);
  color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 32px rgba(124,58,237,0.40);
}
.how-step-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.how-step-desc  { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); }

/* === CONTACT PANEL === */
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 48px auto 0;
  width: 100%;
  padding: 0 24px;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.3s;
  transform-style: preserve-3d; will-change: transform;
}
.contact-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.16);
}
.contact-card.featured {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.35);
}
.contact-card.featured:hover {
  background: rgba(124,58,237,0.22);
  border-color: rgba(124,58,237,0.55);
}
.contact-icon { font-size: 36px; margin-bottom: 16px; }
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.contact-card.featured .contact-label { color: #B39DFF; }
.contact-value { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; word-break: break-word; line-height: 1.4; }
.contact-hint  { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.contact-card a.btn { display: block; width: 100%; justify-content: center; }
.contact-cards.contact-cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }

/* === PORTFOLIO PANEL === */
.portfolio-panel { background: #0A0A0A; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.portfolio-item {
  border-radius: 12px; overflow: hidden;
  cursor: pointer; position: relative;
  transition: transform 0.2s;
}
.portfolio-item:hover { transform: scale(1.04); }
.portfolio-item.tall { aspect-ratio: 2/3; }
.portfolio-item.wide { aspect-ratio: 16/9; }
.portfolio-item.sq   { aspect-ratio: 1; }
.portfolio-item-label {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  padding: 3px 8px; border-radius: 4px;
}
.pi1 { background: linear-gradient(145deg, #3B1F6E, #1A0D35); }
.pi2 { background: linear-gradient(145deg, #0F3A5C, #071E30); }
.pi3 { background: linear-gradient(145deg, #2D1B40, #160D22); }
.pi4 { background: linear-gradient(145deg, #1A3A20, #0D1F10); }
.pi5 { background: linear-gradient(145deg, #3A1020, #200810); }

/* === FOOTER (last panel) === */
.footer-panel {
  background: var(--ink-band);
  min-height: auto;
  padding: 64px 40px 40px;
  position: relative;
}
.footer-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), rgba(0,212,255,0.4), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.20); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.40);
  cursor: pointer; transition: all 0.15s;
}
.footer-social:hover { background: rgba(124,58,237,0.20); border-color: rgba(124,58,237,0.40); color: #B39DFF; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .hero-text { padding: 110px 24px 56px; }
  .hero-glass-panel { padding: 40px 36px; max-width: 100%; }
  .bai-wrap { height: 300px; }
  .service-split { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .service-visual { min-height: 40vh; }
  .service-body { padding: 48px 32px; }
  .service-body p { max-width: none; }
  .model-showcase { grid-template-columns: 1fr 1fr; padding: 24px; }
  .model-card.mid { margin-top: 0; }
  .model-card:last-child { display: none; }
  .how-steps-grid { grid-template-columns: 1fr; gap: 28px; max-width: 480px; }
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; }
  .portfolio-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === MOBILE NAV MENU ===
   Below 767px the inline nav links/actions are hidden and replaced by
   a hamburger button that drops down a full-width menu containing the
   exact same links — so Portfolio, Pricing & Terms etc. are reachable
   on mobile, not just on desktop. */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-burger { display: flex; }
  .nav.menu-open {
    height: auto; max-height: 88vh; overflow-y: auto;
    background: rgba(13,11,18,0.97);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--hairline);
  }
  .nav.menu-open .nav-inner { flex-wrap: wrap; align-items: flex-start; }
  .nav.menu-open .nav-links,
  .nav.menu-open .nav-actions {
    display: flex; flex-direction: column;
    width: 100%; gap: 2px;
  }
  .nav.menu-open .nav-links { padding: 8px 0 16px; }
  .nav.menu-open .nav-links a {
    width: 100%; padding: 13px 4px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav.menu-open .nav-actions {
    padding: 14px 0 18px;
    gap: 10px;
  }
  .nav.menu-open .nav-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-inner { padding: 0 20px; }
  .headline-hero { font-size: 38px; letter-spacing: -0.5px; }
  .headline-xl   { font-size: 28px; }
  .panel-cta { flex-direction: column; gap: 12px; align-items: center; }
  .service-body { padding: 32px 24px; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-panel { padding: 48px 24px 32px; }
  .float-inquire { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 13px; }
  /* Long CTA labels ("Book a Demo via WhatsApp →") were forced nowrap,
     pushing buttons wider than the screen — text got silently clipped
     by body's overflow-x:hidden instead of wrapping. */
  .btn { white-space: normal; text-align: center; }
  .panel-cta .btn, .sample-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-text {
    padding: 100px 20px 40px;
  }
  .hero-glass-panel { padding: 32px 24px; border-radius: 20px; }
  .hero-tagline { margin-bottom: 16px; font-size: 10px; padding: 5px 12px; }
  .hero-text .headline-md { font-size: 15px; margin-top: 8px !important; }
  .hero-text .sub { font-size: 13px; line-height: 1.6; margin-top: 12px; max-width: 100%; }
  .hero-text .panel-cta { margin-top: 24px; }
}

/* ═══════════════════════════════════════════
   GALLERY STRIP (right after hero)
═══════════════════════════════════════════ */
.gallery-strip {
  scroll-snap-align: start;
  background: #000;
  padding: 48px 0;
  overflow: hidden;
}
.gallery-strip-header {
  text-align: center; margin-bottom: 28px; padding: 0 40px;
}
.gallery-scroll {
  display: flex; gap: 14px;
  overflow-x: auto; padding: 0 40px 16px;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0; width: 230px; aspect-ratio: 2/3;
  border-radius: 14px; overflow: hidden;
  position: relative;
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.80) brightness(0.88);
  transition: filter 0.35s ease, transform 0.45s ease;
}
.gallery-thumb:hover img {
  filter: saturate(1.25) brightness(1.10) contrast(1.06);
  transform: scale(1.05);
}
.gallery-thumb-label {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  padding: 3px 9px; border-radius: 5px;
  pointer-events: none;
}
.gallery-strip-cta { text-align: center; margin-top: 24px; }

/* ═══════════════════════════════════════════
   BEFORE/AFTER INTERACTIVE SLIDER SECTION
═══════════════════════════════════════════ */
.ba-section {
  position: relative; z-index: 1;
  min-height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 24px;
  gap: 0;
}
.ba-section .panel-content { transform: none; opacity: 1; }
.ba-section .headline-xl { color: #fff; }

.ba-tabs {
  display: flex; gap: 8px; margin: 24px 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--hairline);
  border-radius: 100px; padding: 4px;
}
.ba-tab {
  padding: 8px 22px; border-radius: 100px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; color: rgba(255,255,255,0.55);
  background: transparent; transition: all 0.2s;
}
.ba-tab.active { background: var(--accent-violet); color: #fff; }

.ba-trio {
  display: flex; flex-wrap: nowrap; gap: 24px;
  justify-content: center; align-items: flex-start;
  margin: 32px auto 0;
  max-width: 960px;
}

/* Cards rise up out of the studio floor in 3D as they scroll into view */
.rise-card {
  opacity: 0;
  transform: perspective(1000px) rotateX(55deg) translateY(70px) translateZ(-80px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rise-card.risen {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) translateZ(0);
}
.ba-trio .rise-card:nth-child(1) { transition-delay: 0s; }
.ba-trio .rise-card:nth-child(2) { transition-delay: 0.12s; }
.ba-trio .rise-card:nth-child(3) { transition-delay: 0.24s; }
.deliver-grid .rise-card:nth-child(1) { transition-delay: 0s; }
.deliver-grid .rise-card:nth-child(2) { transition-delay: 0.1s; }
.deliver-grid .rise-card:nth-child(3) { transition-delay: 0.2s; }
.deliver-grid .rise-card:nth-child(4) { transition-delay: 0.3s; }
.ba-card { flex: 0 1 auto; }
.ba-card-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.6px;
  color: rgba(255,255,255,0.55); margin-bottom: 10px; text-align: center;
}
.ba-card-placeholder {
  width: 240px; aspect-ratio: 3/4; border-radius: 20px;
  background: linear-gradient(145deg, rgba(124,58,237,0.08), rgba(124,58,237,0.03));
  border: 1px dashed rgba(124,58,237,0.30);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5;
}

.bai-outer { position: relative; margin: 0 auto; }
.bai-wrap {
  position: relative; height: 360px;
  border-radius: 20px;
  overflow: hidden; cursor: ew-resize;
  user-select: none; touch-action: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1.5px rgba(255,255,255,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.bai-wrap:hover { box-shadow: 0 24px 56px rgba(124,58,237,0.20), 0 0 0 1.5px rgba(255,255,255,0.7); }
/* Each card's frame is a compromise between its before/after photo ratios —
   the slide-reveal needs one shared frame, so this splits the crop evenly
   instead of cropping only the "before" shot to match the "after" shot. */
.bai-wrap.ratio-jewellery { aspect-ratio: 0.86; }
.bai-wrap.ratio-clothing  { aspect-ratio: 0.68; }
.bai-wrap.ratio-footwear  { aspect-ratio: 0.885; }
.bai-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.bai-after-img { z-index: 1; }
.bai-before-clip {
  position: absolute; inset: 0; z-index: 2;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}
.bai-before-clip img { width: 100%; height: 100%; object-fit: cover; }
.bai-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.bai-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.40);
  font-size: 14px; line-height: 1;
  color: #333; font-weight: 700;
}
.bai-label-left, .bai-label-right {
  position: absolute; top: 10px; z-index: 4;
  font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.bai-label-left  { left: 10px;  background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.80); }
.bai-label-right { right: 10px; background: rgba(124,58,237,0.85); color: #fff; }
.bai-range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; opacity: 0;
  cursor: ew-resize; margin: 0; padding: 0;
}
.bai-hint {
  text-align: center; margin-top: 6px;
  font-size: 11px; color: rgba(255,255,255,0.40);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ═══════════════════════════════════════════
   HOVER BOLDER — NO INITIAL ZOOM/DIM
   Images show at full quality at rest.
   Hover adds vibrancy + lift only.
═══════════════════════════════════════════ */
/* Model showcase — horizontal row, individual card pops on hover */
.model-showcase {
  display: flex !important; gap: 8px;
  width: 100%; height: 100%;
  padding: 20px; align-items: stretch;
}
.model-img-card {
  flex: 1; border-radius: 14px; position: relative; cursor: pointer;
  transition: transform 0.38s cubic-bezier(0.34,1.1,0.64,1), box-shadow 0.35s ease;
}
.model-img-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: 14px;
  filter: none; transition: filter 0.35s ease;
}
.model-img-card .model-img-overlay { border-radius: 0 0 14px 14px; }
.model-img-card:hover {
  transform: scale(1.13);
  z-index: 10;
  box-shadow: 0 24px 64px rgba(124,58,237,0.55);
}
.model-img-card:hover img { filter: saturate(1.15) brightness(1.08) contrast(1.03); }

.portfolio-item { transition: box-shadow 0.3s; }
.portfolio-item img {
  filter: none;
  transition: filter 0.35s ease, transform 0.45s ease;
}
.portfolio-item:hover { box-shadow: 0 16px 48px rgba(124,58,237,0.35); }
.portfolio-item:hover img {
  filter: saturate(1.15) brightness(1.06) contrast(1.03);
  transform: scale(1.04);
}

.ba-slot { transition: box-shadow 0.3s; }
.ba-slot img { filter: none; transition: filter 0.3s, transform 0.3s; }
.ba-slot:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.25); }
.ba-slot:hover img { filter: saturate(1.10) brightness(1.04); transform: scale(1.02); }

/* E-com image grid */
.ecom-img-slot {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 1; position: relative;
  transition: box-shadow 0.3s;
}
.ecom-img-slot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: none;
  transition: filter 0.35s, transform 0.45s;
}
.ecom-img-slot:hover { box-shadow: 0 10px 36px rgba(124,58,237,0.30); z-index: 2; }
.ecom-img-slot:hover img {
  filter: saturate(1.15) brightness(1.06) contrast(1.03);
  transform: scale(1.04);
}
.ecom-label {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  padding: 2px 8px; border-radius: 4px;
  font-size: 9px; color: rgba(255,255,255,0.75);
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   GALLERY THUMBS — NO INITIAL DIM
═══════════════════════════════════════════ */
.gallery-thumb img {
  filter: none;
  transition: filter 0.35s ease, transform 0.45s ease;
  object-fit: cover; object-position: center;
}
.gallery-thumb:hover img {
  filter: saturate(1.15) brightness(1.06) contrast(1.03);
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════
   SKINCARE VIDEO PANEL (Service 02)
═══════════════════════════════════════════ */
.video-full-visual {
  position: relative; overflow: hidden;
  background: #000;
}
.video-full-visual iframe,
.video-full-visual video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: none; display: block;
  pointer-events: none;
}
.video-mute-btn {
  position: absolute; bottom: 24px; right: 24px; z-index: 10;
  background: rgba(0,0,0,0.70); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 10px 20px; border-radius: 100px;
  cursor: pointer; font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  pointer-events: all;
}
.video-mute-btn:hover { background: rgba(124,58,237,0.70); border-color: rgba(124,58,237,0.50); }

/* ═══════════════════════════════════════════
   CLASSICSIXNY SHOWCASE SECTION
═══════════════════════════════════════════ */
.classic-panel {
  position: relative;
  background: var(--canvas);
  min-height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 40px;
}

/* Real-photo parallax: each photo in a category row drifts at its own
   depth as you scroll past — genuine depth from real photography
   rather than a simulated 3D effect. JS sets the translateY inline. */
.parallax-item { will-change: transform; }
.classic-photos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 960px; width: 100%;
  margin: 36px auto 20px;
}
.classic-photo {
  aspect-ratio: 9/16; border-radius: 16px; overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.classic-photo.sq { aspect-ratio: 1; }
.classic-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: filter 0.35s, transform 0.45s;
  object-position: top center;
}
.classic-photo img { filter: none; }
.classic-photo:hover { box-shadow: 0 12px 48px rgba(124,58,237,0.40); transform: translateY(-4px); }
.classic-photo:hover img { filter: saturate(1.15) brightness(1.06); transform: scale(1.04); }
.classic-photo-tag {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  background: rgba(124,58,237,0.80); color: #fff;
  padding: 2px 8px; border-radius: 4px;
}
.classic-video-wrap {
  max-width: 300px; margin: 16px auto 0;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 9/16;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
}
.classic-video-wrap iframe, .classic-video-wrap video { width: 100%; height: 100%; object-fit: cover; border: none; display: block; }

/* ═══════════════════════════════════════════
   WORK ROW — richer side-by-side composition:
   photo mosaic next to the category's video card
═══════════════════════════════════════════ */
.work-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; max-width: 960px; margin: 0 auto; width: 100%;
}
.work-row.reverse { flex-direction: row-reverse; }
/* Tableware's 3-photo mosaic needs an explicit shared height for its grid-row spans */
.work-row.mosaic-3 { height: 480px; }

.work-photos {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; width: 300px;
}
.work-photo {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 9/16;
  transition: box-shadow 0.3s, transform 0.1s;
  transform-style: preserve-3d; will-change: transform;
}
.work-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s; }
.work-photo:hover { box-shadow: 0 14px 40px rgba(124,58,237,0.22); }
.work-photo:hover img { transform: scale(1.05) translateZ(10px); }

/* 3-photo mosaic: one large photo + two stacked, sharing the row's fixed height */
.work-photos.cols-3 {
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: auto; max-width: 520px;
  height: 100%;
}
.work-photos.cols-3 .work-photo { aspect-ratio: unset; }
.work-photos.cols-3 .work-photo:first-child { grid-row: 1 / 3; }

.work-video {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 9/16;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
}
.work-row.mosaic-3 .work-video { width: auto; height: 100%; }
.work-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767px) {
  .work-row, .work-row.reverse { flex-direction: column; align-items: center; height: auto; }
  .work-row.mosaic-3 { height: auto; }
  .work-row.mosaic-3 .work-photos { height: 320px; }
  .work-row.mosaic-3 .work-video { width: 60%; max-width: 220px; height: auto; aspect-ratio: 9/16; }
  .work-row.mosaic-3 .work-photos.cols-3 { width: 100%; max-width: 260px; }
  .work-photos { width: 240px; }
  .work-video { width: 60%; max-width: 220px; }
}

/* ═══════════════════════════════════════════
   VIDEO SHOWCASE SECTION
═══════════════════════════════════════════ */
.video-showcase {
  background: var(--canvas-soft);
  min-height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 40px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px; width: 100%;
  margin: 36px auto 0;
}
.video-grid.video-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.video-grid.video-grid-1 { grid-template-columns: 1fr; max-width: 280px; }
@media (max-width: 480px) {
  .video-grid.video-grid-2 { grid-template-columns: 1fr; max-width: 300px; }
}
/* 9 cells: show 3×3 on desktop, 2×N on tablet, 1×N on mobile */
.video-cell {
  border-radius: 18px; overflow: hidden;
  background: rgba(255,255,255,0.06);
  aspect-ratio: 9/16;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.video-cell:hover {
  box-shadow: 0 0 0 1px rgba(124,58,237,0.5), 0 16px 48px rgba(124,58,237,0.30);
  transform: scale(1.06);
  z-index: 5;
}
.video-cell iframe, .video-cell video { width: 100%; height: 100%; object-fit: cover; border: none; display: block; pointer-events: none; }
.video-cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.80));
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75); text-align: center;
  pointer-events: none;
}
.video-play-toggle {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(124,58,237,0.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.video-play-toggle:hover { background: rgba(124,58,237,1); transform: translate(-50%, -50%) scale(1.06); }

/* ═══════════════════════════════════════════
   JEWELLERY SHOWCASE
═══════════════════════════════════════════ */
.jewellery-panel {
  background: #fff;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 40px;
}
.jewellery-pairs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 880px; width: 100%; margin: 48px auto 0;
}
.jewellery-pair { }
.jewellery-pair-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px;
}
.jewellery-before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.j-slot { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 3/4; }
.j-slot img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.3s, transform 0.35s; }
.j-slot:hover img { filter: saturate(1.15) brightness(1.08); transform: scale(1.04); }
.j-label {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 9px; border-radius: 100px; backdrop-filter: blur(6px);
}
.j-before { background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.80); }
.j-after  { background: rgba(124,58,237,0.85); color: #fff; }

/* Responsive additions */
@media (max-width: 991px) {
  .classic-photos-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .jewellery-pairs { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 767px) {
  .classic-panel, .video-showcase, .jewellery-panel { padding: 60px 20px; }
  .classic-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .video-grid { grid-template-columns: 1fr; max-width: 300px; }
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF / GUARANTEES SECTION
═══════════════════════════════════════════ */
.proof-panel {
  background: var(--canvas);
  min-height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 40px;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 960px; margin: 48px auto 0; width: 100%;
}
.proof-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 28px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: 18px; padding: 32px 24px; text-align: center;
  transition: box-shadow 0.3s, transform 0.1s;
  transform-style: preserve-3d; will-change: transform;
}
.proof-card:hover {
  box-shadow: 0 20px 48px rgba(124,58,237,0.30), inset 0 1px 0 rgba(255,255,255,0.14);
}
.proof-grid.proof-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
.proof-icon { font-size: 32px; margin-bottom: 16px; }
.proof-stat { font-size: 32px; font-weight: 800; color: var(--accent-violet); letter-spacing: -0.8px; margin-bottom: 4px; }
.proof-label { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.proof-desc  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Client reviews */
.testimonials-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px; max-width: 980px; margin: 40px auto 0; width: 100%;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 28px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px;
  flex: 1 1 280px; max-width: 300px;
  transition: box-shadow 0.3s, transform 0.1s;
  transform-style: preserve-3d; will-change: transform;
}
.testimonial-card:hover { box-shadow: 0 20px 44px rgba(124,58,237,0.30), inset 0 1px 0 rgba(255,255,255,0.14); }
.testimonial-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.70); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.t-av1 { background: linear-gradient(135deg, #7C3AED, #00D4FF); }
.t-av2 { background: linear-gradient(135deg, #F43F8E, #7C3AED); }
.t-av3 { background: linear-gradient(135deg, #10B981, #00D4FF); }
.t-av4 { background: linear-gradient(135deg, #F59E0B, #F43F8E); }
.t-av5 { background: linear-gradient(135deg, #00D4FF, #10B981); }
.t-name { font-size: 13px; font-weight: 700; color: #fff; }
.t-role { font-size: 11px; color: rgba(255,255,255,0.50); }

/* ═══════════════════════════════════════════
   FREE SAMPLE CTA SECTION
═══════════════════════════════════════════ */
.sample-panel {
  background: var(--ink-band);
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 40px; position: relative; overflow: hidden;
}
.sample-panel::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  filter: blur(60px);
}
.sample-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; }
.sample-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,0.18); border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #B39DFF;
}
.sample-inner h2 { color: #fff; margin-bottom: 16px; }
.sample-inner p  { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 16px; line-height: 1.65; }
.sample-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  /* Horizontal scroll row instead of stacking full-width cards, so all
     five reviews stay reachable by swiping sideways rather than scrolling
     down through a long vertical stack. */
  .testimonials-row {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 20px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card {
    flex: 0 0 78vw; max-width: 320px;
    scroll-snap-align: start;
  }
}
@media (max-width: 767px) {
  .gallery-scroll { padding: 0 20px 12px; }
  .gallery-thumb { width: 180px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .proof-grid.proof-grid-3 { grid-template-columns: 1fr; max-width: 420px; gap: 16px; }
  .contact-cards.contact-cards-2 { grid-template-columns: 1fr; max-width: 360px; }
  .proof-panel { padding: 60px 20px; }
  .sample-panel { padding: 60px 24px; }
  .ba-section { padding: 60px 16px; }
  .ba-trio { flex-direction: column; align-items: center; }
  .bai-wrap { height: 280px; }
  /* These three sections used min-height:100vh + centering, which left huge
     empty gaps on mobile then cut abruptly into the next, tightly-padded
     section. Match them to the same compact padding as everything else. */
  .panel { min-height: auto; padding: 60px 20px; }
  .deliver-panel, .how-panel, #contact { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════
   REAL IMAGES
═══════════════════════════════════════════ */
.drive-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: inherit;
}
.img-error { display: none; }

/* ═══════════════════════════════════════════
   BACK NAVIGATION
   Only shown (via JS, checking document.referrer) when the visitor
   arrived from another page on this site — so it returns them to
   the exact scroll position they left, on phone and desktop alike.
═══════════════════════════════════════════ */
.back-nav {
  position: fixed; top: 88px; left: 24px; z-index: 150;
  display: flex; align-items: center; gap: 7px;
  background: rgba(13,11,18,0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  padding: 9px 16px 9px 12px;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0; transform: translateX(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-nav.is-visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.back-nav:hover { background: rgba(124,58,237,0.35); border-color: rgba(124,58,237,0.5); }
@media (max-width: 767px) {
  .back-nav { top: 80px; left: 14px; padding: 8px 14px 8px 10px; font-size: 12px; }
}

/* ═══════════════════════════════════════════
   FLOATING INQUIRE NOW BUTTON
═══════════════════════════════════════════ */
.float-inquire {
  position: fixed;
  bottom: 32px; right: 32px; z-index: 200;
  background: var(--accent-violet);
  color: #fff;
  border: none; border-radius: 100px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(124,58,237,0.55);
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  letter-spacing: -0.1px;
  /* Hidden until the hero (which has its own Book a Demo CTA) scrolls
     out of view — see .is-visible toggle in the scroll JS. */
  opacity: 0; transform: scale(0.6) translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.float-inquire.is-visible {
  opacity: 1; transform: scale(1) translateY(0);
  pointer-events: auto;
}
.float-inquire:hover {
  background: #5B21B6;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(124,58,237,0.65);
}
.float-inquire svg { transition: transform 0.2s; }
.float-inquire:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   MODEL SHOWCASE — REAL IMAGES
═══════════════════════════════════════════ */
.model-img-card {
  border-radius: 14px; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.model-img-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.model-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.model-img-tag {
  display: inline-block;
  background: rgba(124,58,237,0.80); backdrop-filter: blur(4px);
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 0.6px; padding: 3px 9px; border-radius: 4px;
}

/* ═══════════════════════════════════════════
   BEFORE / AFTER COMPARISON
═══════════════════════════════════════════ */
.before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  height: 100%;
}
.ba-slot { position: relative; border-radius: 10px; overflow: hidden; }
.ba-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 4px;
  backdrop-filter: blur(6px);
}
.ba-before { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.ba-after  { background: rgba(124,58,237,0.75); color: #fff; }

/* ═══════════════════════════════════════════
   VIDEO PANEL
═══════════════════════════════════════════ */
.video-embed-wrap {
  position: relative; width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
  background: #000;
}
.video-embed-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.video-overlay-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.8);
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 4px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   PORTFOLIO REAL IMAGES
═══════════════════════════════════════════ */
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   INQUIRY PAGE
═══════════════════════════════════════════ */
.inq-page {
  min-height: 100vh;
  background: #08080F;
  font-family: var(--font-sans);
  color: #fff;
  display: flex; flex-direction: column;
}
.inq-nav {
  height: 60px; display: flex; align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,8,15,0.95);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 10;
}
.inq-nav-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.inq-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.50);
  transition: color 0.15s; cursor: pointer; text-decoration: none;
}
.inq-back:hover { color: #fff; }

.inq-body {
  flex: 1; display: flex; align-items: flex-start; justify-content: center;
  padding: 64px 24px 80px;
}
.inq-card {
  width: 100%; max-width: 620px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 52px 48px;
  position: relative; overflow: hidden;
}
.inq-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #7C3AED, #00D4FF, transparent);
}
.inq-header { text-align: center; margin-bottom: 40px; }
.inq-header .eyebrow { color: var(--accent-violet); margin-bottom: 10px; }
.inq-title { font-size: 30px; font-weight: 700; letter-spacing: -0.5px; color: #fff; margin-bottom: 10px; }
.inq-subtitle { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.4px; color: rgba(255,255,255,0.55);
  margin-bottom: 7px; text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  font-family: var(--font-sans); font-size: 15px; color: #fff;
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.20); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-violet);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.form-select { color: rgba(255,255,255,0.75); cursor: pointer; }
.form-select option { background: #1A0A2E; color: #fff; }
.form-textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%; padding: 15px;
  background: var(--accent-violet);
  color: #fff; border: none; border-radius: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  cursor: pointer; margin-top: 8px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: #5B21B6; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.40); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.25);
  margin-top: 16px; line-height: 1.6;
}

/* Success state */
.inq-success {
  display: none; text-align: center; padding: 40px 0;
}
.inq-success.show { display: block; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.success-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 32px; }

@media (max-width: 600px) {
  .inq-card { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .inq-nav { padding: 0 20px; }
}

/* ═══════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════ */
.nav-links a.active { color: #fff; }
.nav-links a.active::after { content: ''; display: block; height: 2px; margin-top: 4px; background: var(--accent-violet); border-radius: 2px; }

.port-header {
  position: relative;
  padding: 140px 40px 56px;
  text-align: center;
  background:
    radial-gradient(circle at 22% 15%, rgba(124,58,237,0.20) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,212,255,0.14) 0%, transparent 45%),
    #0D0B12;
  overflow: hidden;
}

/* Same pill-switcher look as the "Baseline to Luxury" tabs, so this
   reads as the same design language rather than a one-off widget. */
.port-tabs {
  position: sticky; top: 72px; z-index: 50;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(13,11,18,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--hairline);
}
.port-tabs a {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.port-tabs a:hover { color: #fff; background: var(--accent-violet); }

.port-section { background: var(--canvas); padding: 72px 40px; }
.port-section-soft { background: var(--canvas-soft); }
.port-section-head { text-align: center; max-width: 700px; margin: 0 auto 36px; }

.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.port-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: #15121C;
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.25s, transform 0.15s;
}
.port-item:hover { box-shadow: 0 16px 40px rgba(124,58,237,0.30); transform: translateY(-3px); }
.port-item img, .port-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.port-item:hover img, .port-item:hover video { transform: scale(1.06); }
.port-play-badge {
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff;
  background: rgba(13,11,18,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  pointer-events: none;
}

/* Lightbox */
.port-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,7,11,0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
}
.port-lightbox.open { display: flex; }
.port-lb-stage { max-width: 88vw; max-height: 86vh; display: flex; align-items: center; justify-content: center; }
.port-lb-stage img, .port-lb-stage video {
  max-width: 88vw; max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.port-lb-close {
  position: absolute; top: 22px; right: 28px;
  width: 42px; height: 42px;
  font-size: 26px; line-height: 1; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  cursor: pointer;
}
.port-lb-close:hover { background: rgba(255,255,255,0.16); }
.port-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 28px; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  cursor: pointer;
}
.port-lb-nav:hover { background: rgba(124,58,237,0.3); }
.port-lb-prev { left: 24px; }
.port-lb-next { right: 24px; }
.port-lb-want {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 9px;
  background: var(--accent-violet); color: #fff;
  padding: 13px 24px; border-radius: 100px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 10px 30px rgba(124,58,237,0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.port-lb-want:hover { background: #5B21B6; transform: translateX(-50%) translateY(-2px); }
@media (max-width: 600px) {
  .port-header { padding: 110px 20px 40px; }
  .port-tabs { top: 0; gap: 8px; padding: 12px 16px; }
  .port-section { padding: 48px 20px; }
  .port-lb-nav { width: 40px; height: 40px; font-size: 20px; }
  .port-lb-prev { left: 8px; }
  .port-lb-next { right: 8px; }
  .port-lb-close { top: 14px; right: 14px; width: 36px; height: 36px; }
  .port-lb-want { bottom: 14px; padding: 10px 18px; font-size: 12px; gap: 7px; }
  /* Instagram-style dense grid instead of one big photo per row,
     which forced endless vertical scrolling to browse a category. */
  .port-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .port-item { border-radius: 4px; }
  .port-play-badge { width: 18px; height: 18px; top: 5px; right: 5px; font-size: 7px; }
}
@media (max-width: 380px) {
  .port-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
}

/* ═══════════════════════════════════════════
   PRICING & TERMS PAGE
═══════════════════════════════════════════ */
.terms-table-wrap {
  max-width: 860px; margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
.terms-table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); }
.terms-table th {
  text-align: left;
  font-size: 13px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
  color: #fff;
  background: rgba(124,58,237,0.22);
  padding: 16px 22px;
}
.terms-table td {
  padding: 16px 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.terms-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.03); }
.terms-table td:nth-child(2) { color: #fff; font-weight: 600; }

.terms-list {
  max-width: 760px; margin: 0 auto;
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.terms-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,0.75);
}
.terms-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #00D4FF);
}
@media (max-width: 600px) {
  .terms-table th, .terms-table td { padding: 12px 14px; font-size: 13px; }
}
