/* =====================================================
   Details By Joe — Light Luxury Redesign
   Palette: pearl / silver / soft gray + restrained azure
   Type: Manrope (weight contrast, thin display)
   ===================================================== */

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

:root {
  /* surfaces */
  --paper:   #fcfcfd;
  --mist:    #f1f3f7;
  --cloud:   #e9ecf2;
  --glass:   rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);

  /* ink */
  --ink:       #1b2027;
  --ink-soft:  #515a66;
  --ink-faint: #8a93a1;

  /* accent */
  --azure:      oklch(0.58 0.12 252);
  --azure-deep: oklch(0.50 0.13 254);
  --azure-tint: oklch(0.96 0.03 252);

  /* lines + shadow */
  --hair:    rgba(27, 40, 66, 0.09);
  --hair-2:  rgba(27, 40, 66, 0.06);
  --shadow-sm: 0 2px 10px -2px rgba(24, 42, 80, 0.10);
  --shadow:    0 22px 50px -24px rgba(24, 42, 80, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(24, 42, 80, 0.40);

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* soft pearl wash behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -8%, var(--azure-tint), transparent 60%),
    radial-gradient(900px 600px at 8% 102%, #eef1f6, transparent 55%),
    var(--paper);
}

/* ---------- shared type ---------- */
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--azure-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--azure-deep);
  opacity: 0.6;
}
.eyebrow.center { justify-content: center; }

.display {
  font-weight: 250;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display b { font-weight: 600; }
.display .accent { color: var(--azure-deep); font-weight: 300; }

h2.display { font-size: clamp(30px, 4.6vw, 56px); }

.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.75;
  max-width: 52ch;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 11vw, 150px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .display { margin-top: 22px; }
.section-head .lead { margin-top: 22px; }
.section.mist { background: var(--mist); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
              background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(24, 42, 80, 0.5);
}
.btn-accent {
  background: var(--azure-deep);
  color: #fff;
  box-shadow: 0 10px 26px -12px var(--azure);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px var(--azure); }
.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border-color: var(--hair);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(27,40,66,0.22); background: var(--glass-strong); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 44px);
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 13px clamp(20px, 4vw, 44px);
  background: rgba(252, 252, 253, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--hair);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.brand {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.brand-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px -4px rgba(24,42,80,0.45);
  flex-shrink: 0;
}
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--azure-deep); transform: translateY(-2px); }
.brand span { font-weight: 300; color: var(--ink-soft); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--azure-deep);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }
.nav-links .btn { padding: 0.7rem 1.3rem; font-size: 13px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 60%;
  transform: scale(1.06);
  animation: heroDrift 18s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(252,252,253,0.55) 0%, rgba(252,252,253,0) 22%, rgba(252,252,253,0) 55%, rgba(245,247,250,0.30) 100%),
    linear-gradient(105deg, rgba(252,252,253,0.42) 0%, rgba(252,252,253,0.06) 45%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px clamp(36px, 6vw, 72px);
}
.hero-card {
  max-width: 620px;
  padding: clamp(28px, 3.4vw, 46px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
}
.hero h1.display {
  font-size: clamp(40px, 6.6vw, 80px);
  margin: 22px 0 20px;
}
.hero .lead { max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- clean (photo-less) hero ---------- */
.hero-clean {
  align-items: center;
  background:
    radial-gradient(900px 560px at 50% -6%, var(--azure-tint), transparent 62%),
    radial-gradient(760px 520px at 88% 108%, #eef1f7, transparent 58%),
    var(--paper);
  text-align: center;
}
.hero-orbs { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-orbs::before, .hero-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}
.hero-orbs::before {
  width: 520px; height: 520px;
  left: -120px; top: 8%;
  background: radial-gradient(circle, oklch(0.9 0.06 252 / 0.7), transparent 70%);
  animation: orbFloat 16s var(--ease) infinite alternate;
}
.hero-orbs::after {
  width: 460px; height: 460px;
  right: -100px; bottom: 4%;
  background: radial-gradient(circle, oklch(0.93 0.04 230 / 0.7), transparent 70%);
  animation: orbFloat 20s var(--ease) infinite alternate-reverse;
}
@keyframes orbFloat { to { transform: translate(40px, -28px) scale(1.1); } }
.hero-clean .hero-inner {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(96px, 14vh, 150px);
  padding-bottom: clamp(48px, 8vw, 80px);
}
.hero-center { max-width: 820px; }
.hero-center .eyebrow { margin-bottom: 4px; }
.hero-clean h1.display {
  font-size: clamp(44px, 8vw, 96px);
  margin: 24px 0 22px;
}
.hero-clean .lead { max-width: 56ch; margin: 0 auto; }
.hero-clean .hero-actions { justify-content: center; }
.hero-clean .hero-stats { margin-top: clamp(40px, 6vw, 64px); margin-left: auto; margin-right: auto; }

/* floating stats strip */
.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 18px;
  max-width: 620px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}
.hero-stats .stat {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 20px 22px;
}
.stat-num { font-size: clamp(26px, 3.2vw, 36px); font-weight: 300; letter-spacing: -0.02em; color: var(--ink); }
.stat-num b { color: var(--azure-deep); font-weight: 500; }
.stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }

.scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 10.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-faint);
}
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(var(--ink-faint), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

@media (max-width: 600px) { .scroll-hint { display: none; } }

/* =====================================================
   MARQUEE / TRUST STRIP
   ===================================================== */
.trust {
  border-top: 1px solid var(--hair-2);
  border-bottom: 1px solid var(--hair-2);
  background: rgba(255,255,255,0.5);
}
.trust .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px 38px; padding-top: 26px; padding-bottom: 26px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.trust-item i { font-size: 19px; color: var(--azure-deep); }

/* =====================================================
   VIDEO SHOWCASE
   ===================================================== */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vid-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } }

.vtile {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cloud);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.vtile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vtile video, .vtile .vposter {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vtile .vposter { transition: transform 0.6s var(--ease), opacity 0.4s; }
.vtile:hover .vposter { transform: scale(1.04); }
.vtile .vscrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,28,42,0.55) 0%, rgba(20,28,42,0) 42%, rgba(20,28,42,0.15) 100%);
  transition: opacity 0.4s;
}
.vtile .vplay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.vtile .vplay i { font-size: 28px; margin-left: 3px; }
.vtile:hover .vplay { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.vtile .vlabel {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  z-index: 2;
  color: #fff;
}
.vtile .vlabel .vt { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.vtile .vlabel .vs { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.78); margin-top: 2px; }
.vtile.playing .vposter, .vtile.playing .vscrim, .vtile.playing .vplay, .vtile.playing .vlabel { opacity: 0; pointer-events: none; }
.vtile.playing { cursor: default; }
.vtile.playing video { z-index: 3; }


/* =====================================================
   BEFORE / AFTER COMPARE
   ===================================================== */
.compare-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(20px, 3vw, 40px); align-items: stretch; }
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; } }

.compare {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--hair);
  user-select: none;
  touch-action: pan-y;
  background: var(--cloud);
  font-size: 0; /* kill inline-img gap */
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}
/* "before" image sits in normal flow → container always has real height (no aspect-ratio needed) */
.compare .cmp-before {
  display: block;
  width: 100%;
  height: auto;
}
/* "after" revealed by a width-clipped overlay (no clip-path needed) */
.compare .cmp-after {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
.compare .cmp-after img {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: auto;
  max-width: none;
}
@supports (aspect-ratio: 1) {
  .compare .cmp-after img { height: 100%; }
}
.compare .cap {
  position: absolute; top: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--ink); box-shadow: var(--shadow-sm);
}
.compare .cap.before { left: 16px; }
.compare .cap.after { right: 16px; color: var(--azure-deep); }
.compare .handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 2px; margin-left: -1px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(24,42,80,0.12);
  cursor: ew-resize;
}
.compare .knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  cursor: ew-resize;
}
.compare .knob i { font-size: 22px; }

.compare-aside { display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.compare-aside .display { font-size: clamp(26px, 3vw, 38px); }
.ba-points { display: grid; gap: 16px; }
.ba-point { display: flex; gap: 14px; align-items: flex-start; }
.ba-point .ic {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--azure-tint); color: var(--azure-deep);
  font-size: 20px;
}
.ba-point h4 { font-size: 15px; font-weight: 600; }
.ba-point p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* full-bleed showcase */
.showcase {
  margin-top: clamp(20px, 3vw, 36px);
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--hair);
}
.showcase img { width: 100%; height: clamp(280px, 42vw, 540px); object-fit: cover; object-position: center 58%; }
.showcase .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(252,252,253,0.6) 0%, transparent 42%);
  display: flex; align-items: center;
}
.showcase .badge {
  position: absolute; right: 22px; bottom: 22px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600;
}
.showcase .badge span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 12px; margin-top: 2px; }
.showcase .sc-copy { padding: clamp(26px, 4vw, 52px); max-width: 460px; }
.showcase .sc-copy .display { font-size: clamp(24px, 2.8vw, 38px); }

/* ---------- recent work gallery ---------- */
.gallery {
  margin-top: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }
.gphoto {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--hair);
  height: 0;
  padding-bottom: 133.33%; /* 3:4 fallback */
  background: var(--cloud);
}
@supports (aspect-ratio: 1) {
  .gphoto { height: auto; padding-bottom: 0; aspect-ratio: 3 / 4; }
}
.gphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gphoto:hover img { transform: scale(1.045); }
.gphoto figcaption {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.gphoto figcaption i { color: var(--azure-deep); font-size: 16px; }

/* ---------- process video ---------- */
.video-frame {
  position: relative;
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 1000px;
  width: fit-content;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hair);
  background: #0c0e12;
}
.video-frame video {
  display: block;
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
}
.video-chip {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink);
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}
.video-chip i { color: var(--azure-deep); font-size: 15px; }

/* ---------- booking modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.modal.open { opacity: 1; visibility: visible; }
.modal-veil {
  position: absolute; inset: 0;
  background: rgba(20, 28, 44, 0.34);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--glass-strong);
  backdrop-filter: blur(26px) saturate(1.5); -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 34px 30px 30px;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.5s var(--ease);
}
.modal.open .modal-card { transform: none; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--hair); background: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-soft); font-size: 20px;
  transition: transform 0.4s var(--ease), color 0.3s, border-color 0.3s;
}
.modal-close:hover { transform: rotate(90deg); color: var(--ink); border-color: rgba(27,40,66,0.22); }
.modal-card .eyebrow { margin-bottom: 12px; }
.modal-card h3 { font-size: 23px; font-weight: 600; letter-spacing: -0.01em; }
.modal-card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 7px; line-height: 1.6; }
.modal-opts { display: grid; gap: 12px; margin-top: 24px; }
.modal-opt {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--hair);
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.modal-opt:hover { transform: translateY(-2px); background: #fff; border-color: var(--azure); box-shadow: var(--shadow-sm); }
.modal-opt .mo-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--azure-tint); color: var(--azure-deep); font-size: 22px;
}
.modal-opt .mo-body { flex: 1; }
.modal-opt .mo-method { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.modal-opt .mo-value { font-size: 16px; font-weight: 600; margin-top: 1px; }
.modal-opt .arr { font-size: 19px; color: var(--ink-faint); transition: transform 0.4s var(--ease), color 0.3s; }
.modal-opt:hover .arr { transform: translateX(4px); color: var(--azure-deep); }

/* ---------- screenpal embed (portrait) ---------- */
.video-embed {
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 380px;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hair);
  background: #0c0e12;
}

/* =====================================================
   SERVICES
   ===================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  overflow: hidden;
}
.svc::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.5), transparent 40%);
  pointer-events: none;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--hair); }
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.svc-ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--azure-tint), #fff);
  border: 1px solid var(--hair-2);
  color: var(--azure-deep); font-size: 24px;
}
.svc-num { font-size: 13px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.1em; }
.svc h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.svc p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; margin-top: 9px; }
.svc-price {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--hair-2);
  display: flex; align-items: baseline; gap: 6px;
}
.svc-price .amt { font-size: 26px; font-weight: 300; letter-spacing: -0.02em; }
.svc-price .from { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.svc-price .per { font-size: 13px; color: var(--ink-faint); }
.svc-price.quote .amt { font-size: 18px; font-weight: 500; color: var(--azure-deep); }
.svc.feature {
  background: var(--ink);
  border-color: var(--ink);
}
.svc.feature::after { background: linear-gradient(160deg, rgba(255,255,255,0.08), transparent 40%); }
.svc.feature h3, .svc.feature .svc-price .amt { color: #fff; }
.svc.feature p { color: rgba(255,255,255,0.66); }
.svc.feature .svc-num { color: rgba(255,255,255,0.45); }
.svc.feature .svc-ic { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.16); color: #fff; }
.svc.feature .svc-price { border-color: rgba(255,255,255,0.14); }
.svc.feature .svc-price .from, .svc.feature .svc-price .per { color: rgba(255,255,255,0.5); }
.svc-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--azure-deep); color: #fff; padding: 5px 11px; border-radius: 999px;
}
.pricing-note { margin-top: 26px; font-size: 13.5px; color: var(--ink-faint); }
.pricing-note a { color: var(--azure-deep); font-weight: 600; }

/* =====================================================
   WHY / PROCESS
   ===================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair-2); border-radius: 20px; overflow: hidden; border: 1px solid var(--hair-2); box-shadow: var(--shadow-sm); }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: rgba(255,255,255,0.7);
  padding: 34px 30px;
  transition: background 0.4s;
}
.why:hover { background: #fff; }
.why i { font-size: 26px; color: var(--azure-deep); }
.why h4 { font-size: 16px; font-weight: 600; margin: 16px 0 8px; letter-spacing: -0.01em; }
.why p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .rev-grid { grid-template-columns: 1fr; } }
.rev {
  padding: 32px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.66);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.rev .stars { color: var(--azure-deep); font-size: 15px; letter-spacing: 2px; }
.rev blockquote { font-size: 17px; font-weight: 300; line-height: 1.6; color: var(--ink); margin: 18px 0 22px; letter-spacing: -0.01em; }
.rev .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.rev .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(150deg, var(--azure-tint), var(--cloud));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--azure-deep); font-size: 15px;
  border: 1px solid var(--hair-2);
}
.rev .name { font-size: 14px; font-weight: 600; }
.rev .car { font-size: 12.5px; color: var(--ink-faint); }

/* =====================================================
   CONTACT / BOOKING
   ===================================================== */
.book {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.book::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 85% -10%, rgba(110,150,230,0.28), transparent 60%),
    radial-gradient(600px 360px at -5% 110%, rgba(110,150,230,0.16), transparent 60%);
}
.book-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 4vw, 60px); padding: clamp(36px, 5vw, 64px); }
@media (max-width: 860px) { .book-inner { grid-template-columns: 1fr; } }
.book .eyebrow { color: #9db4e6; }
.book .eyebrow::before { background: #9db4e6; }
.book h2.display { color: #fff; margin: 20px 0 18px; }
.book .lead { color: rgba(255,255,255,0.66); }
.book-info { margin-top: 30px; display: grid; gap: 14px; }
.book-info .row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.book-info .row i { font-size: 19px; color: #9db4e6; width: 22px; }

.contact-cards { display: grid; gap: 14px; align-content: center; }
.cc {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease), background 0.3s, border-color 0.3s;
}
.cc:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.cc-ic {
  flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(157,180,230,0.18); color: #c3d3f3;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.cc-body { flex: 1; }
.cc-method { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cc-value { font-size: 18px; font-weight: 500; margin-top: 2px; }
.cc i.arr { font-size: 20px; color: rgba(255,255,255,0.4); transition: transform 0.4s var(--ease), color 0.3s; }
.cc:hover i.arr { transform: translateX(4px); color: #fff; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { padding: clamp(56px, 7vw, 88px) 0 36px; border-top: 1px solid var(--hair); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { font-size: 18px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; display: flex; align-items: center; gap: 0.6em; }
.foot-brand .brand-logo { width: 46px; height: 46px; }
.foot-brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--azure-deep); }
.foot-brand span { font-weight: 300; color: var(--ink-soft); }
.foot-tag { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; margin-top: 16px; max-width: 38ch; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--hair); background: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 18px;
  transition: transform 0.4s var(--ease), color 0.3s, border-color 0.3s, background 0.3s;
}
.foot-social a:hover { transform: translateY(-3px); color: var(--azure-deep); border-color: var(--azure); background: #fff; }
.foot-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col li, .foot-col a { font-size: 13.5px; color: var(--ink-soft); }
.foot-col a:hover { color: var(--azure-deep); }
.foot-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-soft); }
.foot-row i { color: var(--azure-deep); font-size: 16px; margin-top: 3px; }
.foot-btm {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hair-2);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--ink-faint);
}
.foot-btm .badge { letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; font-size: 10.5px; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
  .hero-orbs::before, .hero-orbs::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   MOBILE POLISH
   ===================================================== */
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .section { padding: clamp(58px, 13vw, 92px) 0; }
  .section-head { margin-bottom: clamp(32px, 8vw, 48px); }

  /* nav */
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 11px 20px; }
  .brand { font-size: 14px; letter-spacing: 0.14em; gap: 0.5em; }
  .brand-logo { width: 34px; height: 34px; }
  .nav-links .btn { padding: 0.65rem 1.1rem; font-size: 12.5px; }
  .nav-links .btn i { font-size: 16px; }

  /* hero */
  .hero-clean .hero-inner { padding-top: clamp(104px, 22vh, 150px); padding-bottom: 56px; }
  .hero-clean h1.display { font-size: clamp(40px, 12vw, 60px); margin: 18px 0 18px; line-height: 1.04; }
  .hero-clean .lead { font-size: 15.5px; max-width: 90%; }
  .eyebrow { font-size: 10.5px; letter-spacing: 0.26em; }

  /* trust strip — centered and tidy */
  .trust .wrap { justify-content: center; gap: 14px 22px; padding-top: 22px; padding-bottom: 22px; }
  .trust-item { font-size: 12.5px; }
  .trust-item i { font-size: 17px; }

  /* before/after */
  .compare-aside { gap: 20px; }
  .compare-aside .display { font-size: clamp(24px, 7vw, 32px); }

  /* booking */
  .book { border-radius: 22px; }

  /* footer */
  .footer { text-align: left; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }

  /* full-width, easy-to-tap buttons */
  .hero-clean .hero-actions { width: 100%; flex-direction: column; gap: 10px; }
  .hero-clean .hero-actions .btn { width: 100%; justify-content: center; padding: 1rem 1.4rem; }

  /* hero stats: keep the row but soften */
  .hero-stats { border-radius: 18px; }
  .hero-stats .stat { padding: 16px 12px; text-align: center; }
  .stat-num { font-size: clamp(22px, 8vw, 30px); }
  .stat-lbl { font-size: 10px; letter-spacing: 0.1em; }

  /* cards / spacing */
  .svc { padding: 26px 22px 28px; }
  .why { padding: 28px 24px; }
  .rev { padding: 28px 24px; }
  .rev blockquote { font-size: 16px; }

  /* booking contact + modal */
  .book-inner { padding: 34px 24px; }
  .cc { padding: 18px 18px; gap: 14px; }
  .cc-value { font-size: 16px; }
  .modal { padding: 18px; }
  .modal-card { padding: 30px 22px 24px; }

  /* before/after slider sizes itself from the image now — nothing to override */

  /* trust: let it breathe in two tidy rows */
  .trust-item { font-size: 12px; }
}
