/* ============================================================
   LUSTREMAR · Luxury Real Estate Media
   Design system: midnight ink · champagne gold · warm ivory
   Type: Cormorant Garamond (display) · Inter (body)
   ============================================================ */

:root {
  --ink: #090d13;
  --ink-2: #0c111a;
  --surface: #111823;
  --surface-2: #151d2b;
  --gold: #c6a15b;
  --gold-bright: #e8cd9a;
  --gold-dim: rgba(198, 161, 91, 0.55);
  --ivory: #f7f3ea;
  --muted: #b4bcc8;
  --line: rgba(198, 161, 91, 0.16);
  --line-soft: rgba(243, 237, 226, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a3242; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

em, .gold-italic {
  font-style: italic;
  color: var(--gold);
}

h1 em, h2 em {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(198, 161, 91, 0.25);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-dim);
}

.lead { font-size: 1.06rem; color: var(--muted); max-width: 58ch; }

/* ---------- Layout ---------- */

.container { width: min(1240px, 92vw); margin: 0 auto; }
.container-wide { width: min(1440px, 94vw); margin: 0 auto; }

.section { padding: clamp(90px, 11vw, 150px) 0; position: relative; }
.section-tight { padding: clamp(60px, 7vw, 90px) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { margin-top: 18px; }

.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  border: 0;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 40px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); }

.btn-solid {
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  border: 1px solid transparent;
}
.btn-solid::before { background: var(--ivory); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(243, 237, 226, 0.28);
}
.btn-ghost::before { background: var(--gold); }
.btn-ghost:hover { color: var(--ink); border-color: var(--gold); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-dim);
  transition: gap 0.4s var(--ease), color 0.4s var(--ease);
}
.btn-line:hover { gap: 20px; color: var(--gold-bright); }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 13, 19, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  width: min(1360px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }

.logo-word {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--ivory);
}
.logo-word span { color: var(--gold); }

.logo-sub {
  margin-top: 7px;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.nav-links { display: flex; align-items: center; gap: 44px; list-style: none; }

.nav-links a:not(.btn) {
  position: relative;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.35s;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--ivory); }

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { transform: scaleX(1); transform-origin: left; }

.nav-links .btn { padding: 13px 28px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
  z-index: 102;
}
.nav-toggle span {
  width: 30px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(9, 13, 19, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  padding: 10px;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu .menu-contact {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition-delay: 0.3s;
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; width: 100%; }

/* z-index:0 makes this a stacking context, so the slides' internal layering
   (0/1/2, used for the dissolve) stays CONTAINED here and can't rise above the
   .hero-scrim that darkens them, without this the photos paint over the scrim
   and the headline loses its contrast. */
.hero-slides { position: absolute; inset: 0; z-index: 0; isolation: isolate; }

/* Slideshow model, ONE animation per slide (`heroCycle`, generated in main.js
   from the slide count) drives opacity, stacking order and the Ken Burns zoom
   together. Because all three live on a single timeline they cannot drift
   apart, so the zoom can never snap back while the image is still on screen:
   the failure you get when a JS timer resets a transform independently of a
   CSS transition. The incoming slide fades in ON TOP while the outgoing one
   holds full opacity underneath, giving a true dissolve with no brightness dip. */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
}

/* Never strobe: reduced-motion gets a single still frame, not a fast loop. */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none !important; opacity: 0 !important; }
  .hero-slide:first-child { opacity: 1 !important; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.78) 0%, rgba(9, 13, 19, 0.58) 45%, rgba(9, 13, 19, 0.96) 100%),
    radial-gradient(ellipse at 22% 60%, rgba(9, 13, 19, 0.72), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding-top: 90px;
}

.hero-content h1 { max-width: 15ch; text-wrap: balance; }

.hero-content .lead { margin: 28px 0 42px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
  width: min(1240px, 92vw);
  margin: 64px auto 0;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line-soft);
}

.hero-stat .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--gold-bright);
}
.hero-stat .num sup { font-size: 1.1rem; color: var(--gold); }
.hero-stat .label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: clamp(170px, 22vw, 250px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
}

.page-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.26;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 19, 0.84), rgba(9, 13, 19, 0.72) 55%, var(--ink) 100%);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 18ch; text-wrap: balance; }
.page-hero .lead { margin-top: 22px; }

.crumb {
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 30px;
}
.crumb a { color: var(--gold); }
.crumb span { margin: 0 10px; color: var(--gold-dim); }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee-track span::after { content: "✦"; font-style: normal; color: var(--gold); font-size: 0.8rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Split / philosophy ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.split-media { position: relative; }

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--line);
  z-index: -1;
}

.split-media .badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 30px;
  box-shadow: var(--shadow);
}
.split-media .badge .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-bright);
  line-height: 1;
}
.split-media .badge .label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.split-body h2 { margin-bottom: 24px; }
.split-body p { color: var(--muted); margin-bottom: 18px; }

.check-list { list-style: none; margin: 28px 0 36px; }
.check-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ivory);
  font-size: 0.95rem;
}
.check-list li::before { content: "✦"; color: var(--gold); font-size: 0.7rem; }

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.svc-card {
  background: var(--ink);
  padding: clamp(34px, 3.4vw, 52px);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.svc-card:hover { background: var(--surface); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.svc-card h3 { margin: 16px 0 14px; }
.svc-card p { font-size: 0.92rem; color: var(--muted); }
.svc-card .btn-line { margin-top: 24px; font-size: 0.62rem; }

/* ---------- Work / featured gallery ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.work-item.w2 { grid-column: span 2; }
.work-item.h2 { grid-row: span 2; }

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.7s;
  filter: saturate(0.9);
}

.work-item:hover img { transform: scale(1.06); filter: saturate(1.05); }

.work-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 13, 19, 0.88));
  opacity: 0;
  transition: opacity 0.55s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}
.work-item:hover .overlay { opacity: 1; }

.work-item .overlay .cat {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.work-item .overlay .name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ivory);
}

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 44px);
  counter-reset: step;
}

.process-step { position: relative; padding-top: 34px; }

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line-soft);
}
.process-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dim);
  line-height: 1;
}

.process-step h3 { font-size: 1.25rem; margin: 18px 0 10px; }
.process-step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}
.stat .num sup { font-size: 55%; color: var(--gold); }
.stat .label {
  margin-top: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Testimonials ---------- */

.testimonials { position: relative; }

.t-viewport { overflow: hidden; max-width: 860px; margin: 0 auto; text-align: center; }

.t-slide { display: none; animation: tIn 0.9s var(--ease); }
.t-slide.active { display: block; }

@keyframes tIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.t-stars { color: var(--gold); letter-spacing: 0.4em; font-size: 0.85rem; margin-bottom: 26px; }

.t-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
}

.t-who { margin-top: 28px; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.t-role { margin-top: 6px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.t-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.t-dots button {
  width: 28px;
  height: 2px;
  border: 0;
  background: var(--line-soft);
  cursor: pointer;
  transition: background 0.4s;
}
.t-dots button.active { background: var(--gold); }

/* ---------- Pricing / collections ---------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: clamp(36px, 3.6vw, 52px) clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s;
}

.tier:hover { transform: translateY(-6px); border-color: var(--line); }

.tier.featured {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border-color: var(--gold-dim);
}

.tier-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 18px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ivory);
}

.tier-tag { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.tier-price {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold-bright);
  margin: 26px 0 4px;
  line-height: 1;
}
.tier-price .from { font-size: 0.9rem; font-style: italic; color: var(--muted); margin-right: 6px; }

.tier-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 26px; }

.tier-list { list-style: none; margin-bottom: 34px; flex: 1; }
.tier-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--ivory);
}
.tier-list li::before { content: "·"; color: var(--gold); }
.tier-list li.dim { color: var(--muted); }

.tier .btn { width: 100%; }

.tiers-note { text-align: center; margin-top: 34px; font-size: 0.82rem; color: var(--muted); }
.tiers-note a { color: var(--gold); border-bottom: 1px solid var(--gold-dim); }

/* ---------- À la carte table ---------- */

.alacarte { max-width: 860px; margin: 0 auto; }

.alacarte-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.35s, padding 0.35s;
}
.alacarte-row:first-child { border-top: 1px solid var(--line-soft); }
.alacarte-row:hover { background: rgba(198, 161, 91, 0.04); padding-left: 14px; }

.alacarte-row .item {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ivory);
  white-space: nowrap;
}

.alacarte-row .desc { font-size: 0.82rem; color: var(--muted); flex: 1; }

.alacarte-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(180, 188, 200, 0.45);
  min-width: 30px;
}

.alacarte-row .price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-bright);
  white-space: nowrap;
}

/* ---------- Service rows (services page) ---------- */

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(50px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.svc-row:last-of-type { border-bottom: 0; }

.svc-row:nth-child(even) .svc-row-media { order: 2; }

.svc-row-media { position: relative; overflow: hidden; }
.svc-row-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1.2s var(--ease);
}
.svc-row:hover .svc-row-media img { transform: scale(1.05); }

.svc-row-media .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(9, 13, 19, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.svc-row-body .svc-num { font-size: 1.05rem; }
.svc-row-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 16px; }
.svc-row-body p { color: var(--muted); margin-bottom: 14px; }

.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin: 22px 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.svc-meta div { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.svc-meta strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; letter-spacing: 0.02em; text-transform: none; color: var(--gold-bright); margin-top: 4px; }

/* ---------- Portfolio filters + gallery ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.pill {
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 12px 26px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.pill:hover { border-color: var(--gold-dim); color: var(--ivory); }

.pill.active {
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  border-color: transparent;
  color: var(--ink);
}

.gallery { columns: 3; column-gap: 16px; }

.g-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  break-inside: avoid;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.g-item.hide { display: none; }

.g-item img {
  width: 100%;
  filter: saturate(0.9);
  transition: transform 1.1s var(--ease), filter 0.6s;
}

.g-item:hover img { transform: scale(1.05); filter: saturate(1.05); }

.g-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 13, 19, 0.88));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.g-item:hover .overlay { opacity: 1; }
.g-item .overlay .cat { font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.g-item .overlay .name { font-family: var(--serif); font-size: 1.2rem; color: var(--ivory); }

/* ---------- Lightbox ---------- */

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 9, 14, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lb.open { opacity: 1; visibility: visible; }

.lb-figure { max-width: min(1100px, 88vw); text-align: center; }

.lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.lb-cap { margin-top: 20px; }
.lb-cap .cat { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
.lb-cap .name { font-family: var(--serif); font-size: 1.4rem; color: var(--ivory); margin-top: 6px; }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--ivory);
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.lb-close { top: 28px; right: 28px; }
.lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  transition: color 0.35s;
}
.faq-q:hover { color: var(--gold-bright); }

.faq-q .faq-icon {
  flex-shrink: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.45s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.faq-a p { padding: 0 4px 28px; color: var(--muted); font-size: 0.94rem; max-width: 62ch; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(100px, 13vw, 170px) 0;
  overflow: hidden;
}

.cta-band .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198, 161, 91, 0.1), transparent 65%);
}

.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { max-width: 20ch; margin: 0 auto 20px; text-wrap: balance; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 40px; }

.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }

.cta-phone {
  margin-top: 34px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-phone a { color: var(--gold-bright); border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.35s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold-dim); }

.form-field textarea { resize: vertical; min-height: 130px; }

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c6a15b' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }

.svc-checks label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0;
  cursor: pointer;
  font-weight: 300;
}

.svc-checks input[type="checkbox"] {
  appearance: none;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  background: transparent;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  padding: 0;
  transition: background 0.3s;
}
.svc-checks input[type="checkbox"]::before {
  content: "✓";
  font-size: 11px;
  color: var(--ink);
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}
.svc-checks input[type="checkbox"]:checked { background: var(--gold); }
.svc-checks input[type="checkbox"]:checked::before { transform: scale(1); }

.form-success {
  display: none;
  text-align: center;
  padding: 70px 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.form-success.show { display: block; animation: tIn 0.7s var(--ease); }
.form-success h3 { color: var(--gold-bright); margin-bottom: 14px; }
.form-success p { color: var(--muted); max-width: 44ch; margin: 0 auto; }

.contact-rail { display: flex; flex-direction: column; gap: 0; }

.rail-block { padding: 30px 0; border-bottom: 1px solid var(--line-soft); }
.rail-block:first-child { padding-top: 0; }

.rail-block .rail-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.rail-block .rail-big {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  transition: color 0.3s;
}
a.rail-big:hover, .rail-block a:hover { color: var(--gold-bright); }

.rail-block p { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }

/* ---------- About page ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.value-card { background: var(--ink); padding: clamp(34px, 3.4vw, 50px); }
.value-card .v-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dim);
  line-height: 1;
}
.value-card h3 { font-size: 1.3rem; margin: 20px 0 12px; }
.value-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 100px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  padding-bottom: 64px;
}

.footer-brand .logo-word { font-size: 1.3rem; }
.footer-brand p { margin-top: 20px; font-size: 0.88rem; color: var(--muted); max-width: 34ch; }

.footer h4 {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a, .footer ul li { font-size: 0.88rem; color: var(--muted); transition: color 0.3s, padding-left 0.3s; }
.footer ul a:hover { color: var(--gold-bright); padding-left: 6px; }

.footer-contact li { display: flex; flex-direction: column; gap: 2px; }
.footer-contact .fc-label { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dim); }
.footer-contact a { font-size: 0.95rem; color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-bottom p { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--muted); }
.footer-bottom .socials { display: flex; gap: 26px; }
.footer-bottom .socials a {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-bottom .socials a:hover { color: var(--gold); }

/* ---------- Sticky mobile book bar ---------- */

.book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1.5fr;
  background: rgba(9, 13, 19, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(102%);
  transition: transform 0.5s var(--ease);
}

.book-bar.show { transform: translateY(0); }

.book-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 8px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}

.book-bar a + a { border-left: 1px solid var(--line-soft); }

.book-bar .bb-book {
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 768px) {
  .book-bar { display: grid; }
  /* reserve room so the fixed book-bar never covers the footer */
  body { padding-bottom: 52px; }
}

/* ---------- Package comparison matrix ---------- */

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-hint {
  display: none;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .compare-hint { display: block; }
}

.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.compare th, .compare td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ivory);
}

.compare th {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  padding-top: 0;
}

.compare th .th-price {
  display: block;
  font-size: 0.85rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-top: 6px;
}

.compare th:first-child, .compare td:first-child {
  text-align: left;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.compare .yes { color: var(--gold); font-size: 1rem; }
.compare .no { color: rgba(180, 188, 200, 0.45); }

.compare .col-featured { background: rgba(198, 161, 91, 0.06); }

.compare tfoot td { border-bottom: 0; padding-top: 26px; }
.compare tfoot .btn { padding: 13px 22px; font-size: 0.62rem; }

/* ---------- ROI stats strip ---------- */

.roi-note {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 34px;
}
.roi-note a { color: var(--gold-dim); }

/* ---------- Booking calendar ---------- */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.cal-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: clamp(22px, 2.6vw, 34px);
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ivory);
}

.cal-nav {
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--ivory);
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.cal-nav:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-dow span {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 6px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cal-day.is-empty { cursor: default; }
.cal-day:disabled { color: rgba(180, 188, 200, 0.4); cursor: default; }
.cal-day:not(:disabled):not(.is-empty):hover { border-color: var(--gold-dim); }
.cal-day.is-today { border-color: var(--line); }
.cal-day.is-selected {
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  font-weight: 600;
}

.slots-panel { min-height: 320px; }

.slots-hint, .slots-none {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 18px 0;
}

.slots-date {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-bottom: 16px;
  outline: none;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}

.slot {
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 13px 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.slot:hover { border-color: var(--gold-dim); }
.slot.is-selected {
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  border-color: transparent;
  color: var(--ink);
  font-weight: 600;
}

#bookingForm { display: grid; gap: 18px; }
#bookingForm[hidden] { display: none; }

.when-line {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 14px 16px;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--line);
}
.when-line strong { color: var(--gold-bright); font-weight: 500; }

.form-note { min-height: 1em; font-size: 0.82rem; color: var(--muted); margin: 0; }
.form-note.err { color: #e08585; }
.field-err { border-color: rgba(224, 133, 133, 0.6) !important; }

.bk-actions { display: flex; gap: 12px; }
.bk-actions .btn { flex: 1; padding: 15px 18px; }

.bk-success {
  text-align: center;
  padding: 44px 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.bk-success h3 { color: var(--gold-bright); margin-bottom: 10px; }
.bk-success .bk-when { font-family: var(--serif); font-size: 1.2rem; color: var(--ivory); margin-bottom: 10px; }
.bk-success p { font-size: 0.88rem; color: var(--muted); }
.bk-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 24px;
}
.bk-success-actions .btn-line { background: none; border-top: 0; border-left: 0; border-right: 0; cursor: pointer; }

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .slots-panel { min-height: 0; }
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 560px; }
  .split-media::after { display: none; }

  .services-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .tiers { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .gallery { columns: 2; }
  .svc-row { grid-template-columns: 1fr; gap: 30px; }
  .svc-row:nth-child(even) .svc-row-media { order: 0; }
}

@media (max-width: 640px) {
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .work-item.w2 { grid-column: span 1; }
  .work-item.h2 { grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-checks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px 40px; }
  .scroll-cue { display: none; }
  .split-media .badge { left: 0; bottom: -20px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-close { top: 14px; right: 14px; }
  .btn { padding: 16px 30px; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}
