/* ==========================================================================
   Lexitidream — Design tokens
   ========================================================================== */
:root {
  /* Default palette: "Amethyst" — deep purple with soft lilac,
     a timeless photography-brand look. Swappable via the palette
     switcher (js/theme-init.js). */
  --ink: #2A2435;
  --ink-soft: #3D3548;
  --ink-softer: #50485C;
  --cream: #F5F2F8;
  --cream-deep: #E8E1F0;
  --gold: #6B4C9A;
  --gold-soft: #A78BC4;
  --dream: #8E6BA8;
  --dream-soft: #C4AED8;
  --aurora-1: #6B4C9A;
  --aurora-2: #A78BC4;
  --text: #2A2435;
  --text-muted: #5A5266;
  --text-inverse: #F5F2F8;
  --text-inverse-muted: rgba(245, 242, 248, 0.86);
  --border: rgba(42, 36, 53, 0.1);
  --border-light: rgba(245, 242, 248, 0.16);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 24px 60px -24px rgba(14, 14, 16, 0.28);
  --shadow-card: 0 12px 30px -14px rgba(14, 14, 16, 0.22);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, blockquote, p, dl, figure { margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--text-inverse);
  padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

@media (min-width: 640px) { .container { padding: 0 40px; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 17px 34px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; text-decoration: none; letter-spacing: -0.1px;
  border: 1.5px solid transparent; transition: transform var(--ease) 150ms, box-shadow var(--ease) 150ms, background var(--ease) 150ms, color var(--ease) 150ms, border-color var(--ease) 150ms;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--dream));
  color: #1A1018;
  box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--gold) 65%, transparent);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -10px color-mix(in srgb, var(--gold) 75%, transparent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.55); }

.btn-outline-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(245, 242, 236, 0.4);
}
.btn-outline-light:hover { background: var(--text-inverse); color: var(--ink); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--text-inverse);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--ink);
  color: var(--gold-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 72%, transparent);
  backdrop-filter: blur(10px);
  transition: background var(--ease) 250ms, box-shadow var(--ease) 250ms, backdrop-filter var(--ease) 250ms;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--ink) 8%, transparent);
}

.nav {
  max-width: var(--container); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .nav { padding: 18px 40px; } }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo {
  width: 48px; height: 48px; flex-shrink: 0;
  object-fit: contain; border-radius: 8px;
  background: #fff;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-soft), var(--dream));
  color: #1A1018; font-size: 17px;
}
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--text); letter-spacing: -0.3px; line-height: 1;
  transition: color var(--ease) 200ms;
}
.brand-name-accent {
  color: var(--gold-soft); font-style: italic; font-weight: 500;
  margin-left: 2px;
}

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

.palette-switcher { position: relative; display: flex; align-items: center; }
.palette-toggle {
  width: 34px; height: 34px; flex: none; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--border);
  background: conic-gradient(from 180deg, var(--gold), var(--dream), var(--gold-soft), var(--gold));
  transition: transform var(--ease) 200ms, box-shadow var(--ease) 200ms;
}
.palette-toggle:hover { transform: scale(1.08); }
.palette-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.palette-menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 120;
  min-width: 190px; display: grid; gap: 2px; padding: 10px;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--ease) 180ms, transform var(--ease) 180ms, visibility var(--ease) 180ms;
}
.palette-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.palette-menu-label {
  margin: 0; padding: 4px 8px 6px; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted);
}

.palette-option {
  display: flex; align-items: center; gap: 10px; width: 100%;
  border: none; background: transparent; cursor: pointer; text-align: left;
  padding: 8px; border-radius: var(--radius-sm);
  font: inherit; font-size: 0.86rem; color: var(--text);
}
.palette-option:hover, .palette-option:focus-visible { background: var(--cream-deep); }
.palette-option.is-active { background: var(--cream-deep); font-weight: 600; }
.palette-option.is-active::after { content: "\2713"; margin-left: auto; color: var(--gold); }

.palette-swatch { width: 20px; height: 20px; border-radius: 50%; flex: none; border: 1px solid var(--border); }
.palette-swatch--amethyst { background: conic-gradient(#6B4C9A, #8E6BA8, #A78BC4, #6B4C9A); }
.palette-swatch--blossom { background: conic-gradient(#C6598B, #8B6BAE, #E39CBE, #C6598B); }
.palette-swatch--golden-hour { background: conic-gradient(#C2703D, #6B7F5E, #E0A868, #C2703D); }
.palette-swatch--meadow { background: conic-gradient(#7C9070, #D98E63, #A3B497, #7C9070); }
.palette-swatch--clay { background: conic-gradient(#B5603A, #8A7256, #D89268, #B5603A); }
.palette-swatch--dusty-blue { background: conic-gradient(#6E8CA0, #D9A566, #9BB4C2, #6E8CA0); }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 12px; margin: -12px -8px -12px 0;
  min-width: 48px; min-height: 48px; z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform var(--ease) 200ms, opacity var(--ease) 200ms, background var(--ease) 200ms;
}
.nav-menu.is-open ~ .nav-toggle span,
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-active span { background: var(--text) !important; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 14.5px; font-weight: 500;
}
.nav-links a {
  text-decoration: none; color: var(--text); position: relative; padding: 4px 0;
  transition: color var(--ease) 200ms;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: currentColor; transition: right var(--ease) 220ms;
}
.nav-links a:hover::after { right: 0; }

.nav-cta-group { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 14px; font-weight: 600; text-decoration: none; color: var(--text);
  transition: color var(--ease) 200ms;
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 99;
    background: color-mix(in srgb, var(--ink) 55%, transparent);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--ease) 280ms, visibility var(--ease) 280ms;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  .nav-backdrop.is-visible {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 100vw); height: 100dvh;
    background: var(--ink); padding: calc(88px + env(safe-area-inset-top, 0px)) 28px calc(32px + env(safe-area-inset-bottom, 0px));
    display: flex; flex-direction: column; gap: 32px;
    transform: translateX(100%); transition: transform var(--ease) 320ms;
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
    z-index: 105; overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; font-size: 18px; }
  .nav-links a {
    color: var(--text-inverse); padding: 14px 4px; min-height: 48px;
    display: flex; align-items: center;
  }
  .nav-links a::after { display: none; }
  .nav-cta-group { flex-direction: column; align-items: stretch; gap: 14px; margin-top: auto; }
  .nav-phone {
    color: var(--gold-soft); font-size: 17px; padding: 14px 0; min-height: 48px;
    display: flex; align-items: center;
  }
  .nav-cta-group .btn { width: 100%; min-height: 48px; justify-content: center; }
}
@media (min-width: 900px) {
  .nav-menu { display: flex; align-items: center; gap: 44px; }
}

/* ==========================================================================
   Hero — cinematic 4D stage (crossfade + depth + parallax)
   ========================================================================== */
.hero {
  --hero-rx: 0deg;
  --hero-ry: 0deg;
  --hero-tx: 0px;
  --hero-ty: 0px;
  --hero-scroll: 0px;
  position: relative;
  background: #120e14;
  color: var(--text-inverse);
}

.hero-stage {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Subtle parallax only — no scale (scale softens detail) */
  transform: translate3d(
    calc(var(--hero-tx) * -8px),
    calc(var(--hero-ty) * -6px + var(--hero-scroll) * 0.12),
    0
  );
}
.hero-stage.is-parallaxing .hero-slides {
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.1s;
  overflow: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* Oversized frame for pan room — keep at 1:1 sharpness, move via translate only */
.hero-bg-img {
  display: block;
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero-slide.is-active.hero-slide--pan-right .hero-bg-img {
  animation: heroCamPanRight 7s linear forwards;
}
.hero-slide.is-active.hero-slide--pan-left .hero-bg-img {
  animation: heroCamPanLeft 7s linear forwards;
}
.hero-slide.is-active.hero-slide--pan-up .hero-bg-img {
  animation: heroCamPanUp 7s linear forwards;
}
.hero-slide.is-active.hero-slide--pan-diag .hero-bg-img {
  animation: heroCamPanDiag 7s linear forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(12, 9, 16, 0.48) 0%, rgba(12, 9, 16, 0.18) 46%, rgba(12, 9, 16, 0.06) 70%, rgba(12, 9, 16, 0.28) 100%),
    linear-gradient(to top, rgba(12, 9, 16, 0.62) 0%, rgba(12, 9, 16, 0.12) 42%, transparent 68%);
}

.hero-glow {
  position: absolute;
  inset: -20%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 18% 70%, color-mix(in srgb, var(--dream) 18%, transparent), transparent 60%),
    radial-gradient(ellipse 40% 50% at 82% 28%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.35;
  animation: heroGlowDrift 14s ease-in-out infinite alternate;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  perspective: 1600px;
  perspective-origin: 72% 42%;
  pointer-events: none;
  transform:
    translate3d(0, calc(var(--hero-scroll) * 0.12), 0)
    rotateX(var(--hero-rx))
    rotateY(var(--hero-ry));
  transform-style: preserve-3d;
}
.hero-stage.is-parallaxing .hero-scene {
  will-change: transform;
}

.hero-plane {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 40px 90px -24px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.16);
  backface-visibility: hidden;
}
.hero-stage.is-parallaxing .hero-plane {
  will-change: transform;
}

.hero-plane-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
}

.hero-plane--mid {
  top: 14%;
  right: clamp(20px, 7vw, 110px);
  width: min(26vw, 240px);
  aspect-ratio: 4 / 5;
  transform:
    translate3d(calc(var(--hero-tx) * 1.15), calc(var(--hero-ty) * 0.95), 40px)
    rotateY(-11deg) rotateX(3deg);
  animation: heroPlaneFloatA 10s ease-in-out infinite;
}
.hero-plane--mid .hero-plane-img { object-position: center 30%; }

.hero-plane--front {
  bottom: 16%;
  right: clamp(150px, 24vw, 340px);
  width: min(20vw, 190px);
  aspect-ratio: 4 / 5;
  transform:
    translate3d(calc(var(--hero-tx) * 1.9), calc(var(--hero-ty) * 1.45), 90px)
    rotateY(-15deg) rotateX(5deg);
  animation: heroPlaneFloatB 12s ease-in-out infinite;
}
.hero-plane--front .hero-plane-img { object-position: center 12%; }

.hero-plane--near {
  top: 42%;
  right: clamp(280px, 36vw, 480px);
  width: min(16vw, 150px);
  aspect-ratio: 3 / 4;
  opacity: 0.92;
  transform:
    translate3d(calc(var(--hero-tx) * 2.4), calc(var(--hero-ty) * 1.8), 140px)
    rotateY(-18deg) rotateX(6deg);
  animation: heroPlaneFloatC 13s ease-in-out infinite;
}
.hero-plane--near .hero-plane-img { object-position: center 18%; }

.hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(100px, 14vh, 150px) 0 clamp(88px, 12vh, 120px);
  transform: translate3d(0, calc(var(--hero-scroll) * -0.18), 0);
}

.hero-copy {
  max-width: 580px;
}

.hero-in {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 1s var(--ease) forwards;
}
.hero-in--0 { animation-delay: 0.12s; }
.hero-in--1 { animation-delay: 0.26s; }
.hero-in--2 { animation-delay: 0.4s; }
.hero-in--3 { animation-delay: 0.54s; }

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  color: var(--text-inverse);
  line-height: 1.1;
}
.hero-brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
  margin-left: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -2.2px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.7;
  color: var(--text-inverse-muted);
  max-width: 460px;
  margin: 0 0 32px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 clamp(20px, 4vw, 48px) max(22px, env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}
.hero-progress {
  height: 2px;
  width: min(220px, 40vw);
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  border-radius: 999px;
}
.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-soft), var(--dream-soft));
  transform-origin: left center;
}
.hero-stage.is-playing .hero-progress-bar {
  animation: heroProgress 7s linear forwards;
}
.hero-dots {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}
.hero-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hero-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}
.hero-dot.is-active::after {
  background: var(--gold-soft);
  transform: translate(-50%, -50%) scale(1.35);
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  -webkit-tap-highlight-color: transparent;
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
/* Video-like camera moves — translate only (no scale = stays sharp) */
@keyframes heroCamPanRight {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-9%, -1.5%, 0); }
}
@keyframes heroCamPanLeft {
  from { transform: translate3d(-9%, 0, 0); }
  to { transform: translate3d(0, -2%, 0); }
}
@keyframes heroCamPanUp {
  from { transform: translate3d(-3%, 0, 0); }
  to { transform: translate3d(-5%, -8%, 0); }
}
@keyframes heroCamPanDiag {
  from { transform: translate3d(0, -6%, 0); }
  to { transform: translate3d(-8%, 0, 0); }
}
@keyframes heroPlaneFloatA {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px 12px; }
}
@keyframes heroPlaneFloatB {
  0%, 100% { translate: 0 0; }
  50% { translate: 10px -10px; }
}
@keyframes heroPlaneFloatC {
  0%, 100% { translate: 0 0; }
  50% { translate: -6px -14px; }
}
@keyframes heroGlowDrift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); }
  to { transform: translate3d(3%, -2%, 0) scale(1.06); }
}
@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 959px) {
  .hero-scene { display: none; }
  .hero-glow { opacity: 0.4; }
  .hero-veil {
    background:
      linear-gradient(to top, rgba(12, 9, 16, 0.72) 0%, rgba(12, 9, 16, 0.28) 48%, rgba(12, 9, 16, 0.16) 100%),
      linear-gradient(105deg, rgba(12, 9, 16, 0.35) 0%, transparent 62%);
  }
  .hero-bg-img {
    width: 118%;
    height: 118%;
  }
  .hero-inner {
    align-items: flex-end;
    padding: 88px 0 96px;
  }
  .hero-copy {
    max-width: none;
    padding: 0;
  }
  .hero-brand {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: clamp(38px, 9.5vw, 52px);
    letter-spacing: -1.2px;
    margin-bottom: 12px;
  }
  .hero-sub {
    margin: 0 0 20px;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 36ch;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }
  .hero-in {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slides,
  .hero-scene,
  .hero-inner {
    transform: none !important;
  }
  .hero-plane--mid,
  .hero-plane--front,
  .hero-plane--near,
  .hero-glow,
  .hero-scroll-line,
  .hero-progress-bar,
  .hero-bg-img {
    animation: none !important;
  }
  .hero-plane--mid { transform: rotateY(-10deg) rotateX(2deg); }
  .hero-plane--front { transform: rotateY(-14deg) rotateX(4deg); }
  .hero-plane--near { transform: rotateY(-16deg) rotateX(5deg); }
  .hero-bg-img {
    width: 100%;
    height: 100%;
    transform: none;
  }
  .hero-plane-img {
    animation: none !important;
    transform: none;
  }
  .hero-slide {
    transition: none;
  }
  .hero-in { opacity: 1; transform: none; animation: none; }
  .testimonial {
    transition: none;
  }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { padding: 34px 24px; border-bottom: 1px solid var(--border); background: var(--cream-deep); }
.trust-strip-label {
  text-align: center; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px;
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px;
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  color: var(--ink-soft); font-size: 14px; letter-spacing: 0.04em;
}
.trust-logos li {
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.65); border: 1px solid var(--border);
}

/* Proof metrics under hero */
.proof-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}
@media (min-width: 800px) {
  .proof-strip-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}
.proof-item {
  text-align: center;
  padding: 4px 8px;
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.proof-item span {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-from {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px !important;
}

/* Signature stories */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 12px;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (min-width: 700px) and (max-width: 899px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}
.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.story-card-media { aspect-ratio: 4 / 5; overflow: hidden; }
.story-card-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transition: transform 700ms var(--ease);
}
.story-card:hover .story-card-media img { transform: scale(1.04); }
.story-card-body { padding: 28px 26px 30px; }
.story-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dream); margin-bottom: 10px;
}
.story-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.story-card-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Simple inner pages (privacy / wardrobe guide) */
.page-shell { padding: 48px 0 96px; }
.page-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  margin: 0 0 18px;
}
.page-shell .page-lead {
  font-size: 18px; line-height: 1.7; color: var(--text-muted);
  max-width: 640px; margin-bottom: 36px;
}
.page-shell h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 36px 0 12px;
}
.page-shell p, .page-shell li {
  font-size: 16px; line-height: 1.75; color: var(--text-muted);
  max-width: 720px;
}
.page-shell ul { padding-left: 1.2rem; margin: 0 0 16px; }
.page-shell li { margin-bottom: 8px; }
.page-shell a { color: var(--dream); font-weight: 600; }

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 96px 0; }
.section-dark { background: var(--ink); color: var(--text-inverse); }
.section-tint { background: var(--cream-deep); }

.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 5.2vw, 58px); letter-spacing: -1.2px;
  max-width: 640px; margin-bottom: 18px;
}
.section-title-light { color: var(--text-inverse); }
.section-sub {
  font-size: 17px; line-height: 1.7; color: var(--text-muted);
  max-width: 560px; margin-bottom: 56px;
}
.section-sub-light { color: var(--text-inverse-muted); }

.eyebrow {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--dream); margin-bottom: 16px;
}
.eyebrow-light { color: var(--gold-soft); }
.container > .eyebrow { display: block; }

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform var(--ease) 250ms, box-shadow var(--ease) 250ms;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform 500ms var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-body { padding: 26px 26px 30px; }
.service-card-body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--dream);
  text-decoration: none; margin: 0 !important;
  transition: gap var(--ease) 200ms, color var(--ease) 200ms;
}
.service-link:hover { gap: 10px; color: var(--ink); }

/* ==========================================================================
   Portfolio — clean touch-friendly uniform grid
   ========================================================================== */
.portfolio-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.portfolio-head .section-title { margin-bottom: 12px; }
.portfolio-head .section-sub { margin-bottom: 0; }

.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 720px) {
  .gallery-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (min-width: 1100px) {
  .gallery-editorial { gap: 14px; }
}

.gallery-item {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  aspect-ratio: 4 / 5;
  background: #0c0a0d;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  border-radius: 2px;
}
.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms var(--ease), filter 400ms var(--ease);
}
.gallery-item--faces img { object-position: center 18%; }
.gallery-item--wide-src img { object-position: center 35%; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 6, 10, 0.78) 100%);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.gallery-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  color: #fff;
  pointer-events: none;
}
@media (min-width: 720px) {
  .gallery-meta { left: 16px; right: 16px; bottom: 16px; gap: 4px; }
}
.gallery-meta-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.gallery-meta-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.8vw, 24px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: scale(1.035);
    filter: brightness(1.04);
  }
}
.gallery-item:active img { transform: scale(0.985); }
.gallery-item.is-hidden { display: none; }

.portfolio-cta { text-align: center; margin-top: clamp(28px, 4vw, 48px); }

@media (prefers-reduced-motion: reduce) {
  .gallery-item img { transition: none; }
  .gallery-item:hover img,
  .gallery-item:focus-visible img,
  .gallery-item:active img { transform: none; }
}

/* ==========================================================================
   About — artistic atelier portrait
   ========================================================================== */
.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 12% 20%, color-mix(in srgb, var(--dream) 22%, transparent), transparent 60%),
    radial-gradient(ellipse 50% 60% at 88% 85%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 55%),
    linear-gradient(118deg, #120f16 0%, #1a1520 46%, var(--cream-deep) 46.12%, var(--cream) 100%);
  padding-block: clamp(80px, 11vw, 132px);
}
@media (max-width: 899px) {
  .about {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, color-mix(in srgb, var(--dream) 18%, transparent), transparent 55%),
      linear-gradient(180deg, #120f16 0%, #1a1520 58%, var(--cream-deep) 58.15%, var(--cream) 100%);
    padding-block: clamp(64px, 12vw, 96px);
  }
}
.about-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 70%, color-mix(in srgb, var(--cream) 8%, transparent) 100%);
  opacity: 0.9;
}
.about-container { position: relative; z-index: 1; }

.about-editorial {
  display: grid;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .about-editorial {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(48px, 6vw, 88px);
  }
}

.about-visual {
  position: relative;
  margin: 0 auto;
  width: min(100%, 520px);
}
.about-watermark {
  position: absolute;
  z-index: 0;
  top: -4%;
  left: -8%;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 16vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--gold-soft) 28%, transparent);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .about-watermark {
    left: -18%;
    top: -6%;
    color: color-mix(in srgb, #fff 14%, transparent);
  }
}

.about-media {
  margin: 0;
  position: relative;
  z-index: 1;
}
.about-media-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a080a;
  box-shadow:
    0 48px 90px -36px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.about-media-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  z-index: 2;
  pointer-events: none;
}
.about-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(10, 8, 10, 0.62) 100%),
    linear-gradient(115deg, rgba(107, 76, 154, 0.18), transparent 42%);
}
.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: contrast(1.05) brightness(0.97);
  transform: scale(1.02);
  transition: transform 1.35s var(--ease);
}
.about-media:hover .about-media-frame img {
  transform: scale(1.055);
}

.about-media-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: rgba(245, 242, 248, 0.9);
}
.about-media-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.about-media-sep {
  flex: 0 0 32px;
  height: 1px;
  background: color-mix(in srgb, var(--gold) 75%, #fff);
}
.about-media-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-accent {
  position: absolute;
  z-index: 2;
  margin: 0;
  right: -4%;
  bottom: 12%;
  width: min(38%, 168px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow:
    0 22px 48px -18px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: rotate(3.5deg);
  background: #120f16;
}
.about-accent picture,
.about-accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about-accent-label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  margin: 0;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(18, 15, 22, 0.55);
  backdrop-filter: blur(6px);
  text-align: center;
}
@media (max-width: 520px) {
  .about-accent {
    width: min(34%, 120px);
    bottom: 18%;
    right: 0;
  }
  .about-accent-label { display: none; }
}

.about-panel {
  position: relative;
  max-width: 540px;
  margin: 0;
  text-align: left;
}
.about-panel .eyebrow {
  color: var(--gold);
}
.about-panel .section-title {
  text-align: left;
  max-width: 16ch;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.about-panel .section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--dream);
}
.about-lead {
  color: var(--text) !important;
  font-size: clamp(16.5px, 2.2vw, 18.5px) !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
  font-weight: 500;
}
.about-panel > p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-quote {
  margin: 28px 0 28px;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--gold);
  background: transparent;
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}
.about-signature {
  margin: 0 0 28px !important;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--ink-soft) !important;
  line-height: 1.5 !important;
}
.about-panel .btn {
  min-height: 48px;
}

@media (prefers-reduced-motion: reduce) {
  .about-media-frame img { transition: none; }
  .about-media:hover .about-media-frame img { transform: none; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-note { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.testimonial-carousel { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-track { position: relative; min-height: 220px; }
.testimonial {
  position: absolute; inset: 0; opacity: 0; transform: translateY(12px);
  transition: opacity 450ms var(--ease), transform 450ms var(--ease); pointer-events: none;
}
.testimonial.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.stars { color: var(--gold-soft); font-size: 18px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial p {
  font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 25px); font-style: italic;
  line-height: 1.55; margin-bottom: 22px; color: var(--text-inverse);
}
.testimonial cite { font-style: normal; font-size: 13.5px; color: var(--gold-soft); font-weight: 600; letter-spacing: 0.03em; }

.testimonial-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; padding: 0;
  transition: background var(--ease) 200ms, transform var(--ease) 200ms;
}
.testimonial-dots button.is-active { background: var(--gold); transform: scale(1.3); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner-media { position: absolute; inset: 0; }
.cta-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 45%, transparent) 0%, color-mix(in srgb, var(--ink) 68%, transparent) 55%, color-mix(in srgb, var(--ink) 78%, transparent) 100%);
}
.cta-banner-content {
  position: relative; z-index: 1; padding: 110px 24px; text-align: center; color: var(--text-inverse);
}
.cta-banner-content h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5.4vw, 54px); margin-bottom: 18px;
  text-shadow: 0 2px 20px color-mix(in srgb, var(--ink) 45%, transparent);
}
.cta-banner-content p {
  font-size: 17px; color: var(--text-inverse); max-width: 480px; margin: 0 auto 36px;
  text-shadow: 0 1px 12px color-mix(in srgb, var(--ink) 55%, transparent);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.8fr 1.1fr; } }

.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.contact-details a { text-decoration: none; color: var(--text); font-weight: 600; }
.contact-details em { font-style: normal; color: var(--text-muted); font-size: 12px; }
.contact-icon { font-size: 18px; margin-top: 2px; }

.social-row { display: flex; gap: 12px; }
.social-row a[hidden] { display: none !important; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
  text-decoration: none; color: var(--text); transition: all var(--ease) 200ms;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #1A1404; }

.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font: inherit; font-size: 14.5px; color: var(--text); background: var(--cream);
  transition: border-color var(--ease) 180ms, box-shadow var(--ease) 180ms;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 18%, transparent);
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #C23434;
  box-shadow: 0 0 0 3px rgba(194, 52, 52, 0.12);
}
.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #C23434;
}
.field:not(:last-child) { margin-bottom: 0; }
.contact-form .field { margin-bottom: 18px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-turnstile-wrap {
  margin: 4px 0 18px;
  min-height: 65px;
}
.cf-turnstile-wrap.is-invalid {
  outline: 2px solid #C23434;
  outline-offset: 4px;
  border-radius: 8px;
}
.cf-turnstile-wrap[hidden] { display: none; }

.form-note { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.is-success { color: #1E7A44; }
.form-status.is-error { color: #C23434; }

/* Responsive <picture> wrappers — img keeps existing object-fit rules */
.hero-slide picture,
.hero-plane picture,
.service-card-media picture,
.cta-banner-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item picture,
.footer-shots picture,
.brand picture {
  display: contents;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--dream), var(--gold-soft), var(--gold), var(--dream-soft));
}

.footer-cta-band {
  padding: clamp(48px, 7vw, 72px) 0;
  background:
    radial-gradient(ellipse 80% 120% at 20% 0%, color-mix(in srgb, var(--dream) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 100%, color-mix(in srgb, var(--gold) 15%, transparent), transparent 50%),
    var(--ink-soft);
  border-bottom: 1px solid var(--border-light);
}
.footer-cta-inner {
  display: flex; flex-direction: column; gap: 28px; align-items: flex-start;
}
@media (min-width: 820px) {
  .footer-cta-inner {
    flex-direction: row; align-items: center; justify-content: space-between; gap: 48px;
  }
}
.footer-cta-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-soft); margin-bottom: 10px;
}
.footer-cta-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 10px;
}
.footer-cta-sub { font-size: 15px; color: var(--text-inverse-muted); line-height: 1.65; max-width: 480px; }
.footer-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }
.footer-cta-phone {
  font-size: 15px; font-weight: 600; color: var(--gold-soft); text-decoration: none;
  transition: color var(--ease) 200ms;
}
.footer-cta-phone:hover { color: var(--text-inverse); }

.footer-shots {
  overflow: hidden; border-bottom: 1px solid var(--border-light);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.footer-shots-track {
  display: flex; gap: 3px; width: max-content;
  animation: footerShotsScroll 40s linear infinite;
}
.footer-shots-track img {
  width: clamp(180px, 22vw, 280px); height: clamp(110px, 14vw, 180px);
  object-fit: cover; flex-shrink: 0; opacity: 0.85;
  transition: opacity var(--ease) 300ms;
}
.footer-shots-track img:hover { opacity: 1; }

@keyframes footerShotsScroll {
  to { transform: translateX(-50%); }
}

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 44px;
  padding: clamp(56px, 8vw, 80px) 0 clamp(48px, 6vw, 64px);
  border-bottom: 1px solid var(--border-light);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; } }

.footer-brand-link { margin-bottom: 4px; }
.brand-logo--footer { width: 56px; height: 56px; }
.brand-name--footer { font-size: 26px; color: var(--text-inverse) !important; }

.footer-tagline {
  color: var(--text-inverse-muted); font-size: 14.5px; line-height: 1.75;
  margin: 16px 0 20px; max-width: 340px;
}
.footer-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.footer-pills span {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border-light); color: var(--text-inverse-muted);
  background: rgba(255,255,255,0.04);
}

.footer-col h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  margin-bottom: 20px; color: var(--gold-soft); letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  text-decoration: none; color: var(--text-inverse-muted); font-size: 14.5px;
  transition: color var(--ease) 200ms, transform var(--ease) 200ms;
  display: inline-block;
}
.footer-col a:hover { color: var(--text-inverse); transform: translateX(3px); }
.footer-col li { color: var(--text-inverse-muted); font-size: 14.5px; line-height: 1.65; }

.footer-contact-list li { display: flex; flex-direction: column; gap: 3px; }
.footer-contact-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-soft); opacity: 0.85;
}
.footer-contact-list a { font-weight: 600; color: var(--text-inverse); }
.footer-contact-list a:hover { color: var(--gold-soft); transform: none; }

.social-row--footer a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.05);
  color: var(--text-inverse-muted);
}
.social-row--footer a:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--dream));
  border-color: transparent; color: #1A1018; transform: translateY(-2px);
}

.footer-bottom-inner {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  padding: 24px 0 32px; font-size: 12.5px; color: var(--text-inverse-muted);
}
@media (min-width: 720px) {
  .footer-bottom-inner { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .footer-placeholder-note { text-align: right; }
}
.footer-bottom-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-bottom-links a {
  color: var(--text-inverse-muted); text-decoration: none; font-size: 12.5px;
  transition: color var(--ease) 200ms;
}
.footer-bottom-links a:hover { color: var(--gold-soft); }
.footer-back-top { font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .footer-shots-track { animation: none; }
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  gap: 8px;
  transition: opacity var(--ease) 220ms, transform var(--ease) 220ms;
}
.sticky-cta {
  flex: 1;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1A1404;
  text-align: center;
  padding: 14px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 14px 34px -10px color-mix(in srgb, var(--gold) 60%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.sticky-cta--call {
  flex: 0 0 auto;
  min-width: 96px;
  background: var(--ink);
  color: var(--text-inverse);
  box-shadow: 0 14px 34px -12px rgba(14, 14, 16, 0.45);
}
@media (max-width: 899px) {
  .sticky-cta-bar { display: flex; }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(9,9,11,0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: min(1100px, 94vw); max-height: 90vh; text-align: center; }
.lightbox-figure img {
  max-height: 82vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-figure figcaption {
  color: var(--text-inverse-muted);
  margin-top: 16px;
  font-size: clamp(15px, 2.4vw, 18px);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.02em;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background var(--ease) 200ms;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close {
  top: max(16px, env(safe-area-inset-top, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 2;
}
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 28px; }
@media (max-width: 640px) {
  .lightbox-close, .lightbox-nav {
    width: 56px;
    height: 56px;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    transform: none;
  }
  .lightbox-prev { left: max(20px, env(safe-area-inset-left, 0px)); }
  .lightbox-next { right: max(20px, env(safe-area-inset-right, 0px)); }
  .lightbox-figure {
    max-width: 100vw;
    max-height: calc(100dvh - 140px);
    padding: 0 12px;
  }
  .lightbox-figure img {
    max-height: calc(100dvh - 160px);
  }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Mobile experience
   ========================================================================== */
@media (max-width: 899px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .announce { font-size: 12px; padding: 8px 14px; line-height: 1.45; }
  .nav { padding: 14px 20px; }
  .palette-toggle { width: 40px; height: 40px; }

  .section { padding: 64px 0; }
  .section-sub { margin-bottom: 36px; font-size: 16px; }
  .container { padding: 0 20px; }

  .trust-strip { padding: 28px 0; }
  .trust-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 20px 6px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .trust-logos::-webkit-scrollbar { display: none; }
  .trust-logos li { flex-shrink: 0; scroll-snap-align: start; font-size: 13px; padding: 10px 16px; }

  .service-grid { gap: 18px; }
  .service-card-body { padding: 22px 20px 24px; }


  .testimonial-track { min-height: 200px; }
  .testimonial p { font-size: 19px; }
  .testimonial-dots { gap: 6px; margin-top: 24px; }
  .testimonial-dots button {
    width: 36px; height: 36px; border-radius: 50%;
    background: transparent; position: relative;
  }
  .testimonial-dots button::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: translate(-50%, -50%);
    transition: background var(--ease) 200ms, transform var(--ease) 200ms;
  }
  .testimonial-dots button.is-active {
    background: transparent;
    transform: none;
  }
  .testimonial-dots button.is-active::after {
    background: var(--gold); transform: translate(-50%, -50%) scale(1.35);
  }

  .cta-banner-content { padding: 72px 20px; }
  .cta-banner-content p { font-size: 16px; margin-bottom: 28px; }

  .contact-grid { gap: 40px; }
  .contact-form { padding: 24px 20px; }
  .field input, .field select, .field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 14px 14px;
  }
  .field textarea { min-height: 120px; }

  .footer-cta-inner { gap: 24px; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { width: 100%; min-height: 48px; justify-content: center; }
  .footer-cta-phone { align-self: center; min-height: 44px; display: flex; align-items: center; }

  .social-row a {
    min-width: 44px;
    min-height: 44px;
  }

  .btn { white-space: normal; text-align: center; }

  .sticky-cta-bar {
    left: 16px; right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta {
    min-height: 48px;
    padding: 12px 16px;
    -webkit-tap-highlight-color: transparent;
  }
  .sticky-cta-bar.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }

  .lightbox-close, .lightbox-nav {
    width: 52px; height: 52px;
  }

  .service-card:nth-child(2) .service-card-media img {
    object-position: center 22%;
  }
  .service-card:nth-child(3) .service-card-media img {
    object-position: center 28%;
  }
}

@media (max-width: 640px) {
  .sticky-cta-bar {
    left: 12px;
    right: 12px;
  }
  .hero-inner {
    padding: 80px 0 24px;
  }
}
