/* ============================================================
   Luxe Permanent Lighting - design tokens
   Dark theme, locked page-wide. Rainbow spectrum reserved for the
   logo + one signature divider; coral is the single functional accent.
   Shape system: pill (buttons/chips/tags), 24px (media panels/cards),
   10px (form inputs). No other radii are used.
   ============================================================ */

:root {
  --color-bg: #0a1b29;
  --color-bg-elevated: #0f2638;
  --color-bg-elevated-2: #132e44;
  --color-text: #f5f6f3;
  --color-text-muted: #9fb2c2;
  --color-text-faint: #6f8496;
  --color-border: rgba(245, 246, 243, 0.1);
  --color-border-strong: rgba(245, 246, 243, 0.18);
  --color-accent: #cf3542;
  --color-accent-hover: #b52c38;
  --color-cyan: #3cc6e8;
  /* Reserved for review star ratings only — the one deliberate exception to
     the coral-only accent rule, since gold stars are the universal convention
     reviewers recognize from Google. */
  --color-star: #f2b544;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-pill: 999px;
  --radius-panel: 24px;
  --radius-input: 10px;

  --nav-height: 92px;
  --container: 1320px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 767px) {
  :root {
    --nav-height: 76px;
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

/* ---------- focus ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.btn:active { transform: scale(0.97) translateY(1px); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 8px 24px -8px rgba(207, 53, 66, 0.55);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 10px 28px -6px rgba(207, 53, 66, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn-ghost:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.btn-sm { padding: 11px 22px; font-size: 14px; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ---------- eyebrow / label ---------- */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: #fbfaf7;
  border-bottom: 1px solid rgba(10, 27, 41, 0.08);
  box-shadow: 0 8px 24px -16px rgba(10, 27, 41, 0.25);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fbfaf7;
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  flex-shrink: 0;
}
.logo-chip img { height: 64px; width: auto; display: block; }
@media (max-width: 767px) {
  .logo-chip img { height: 48px; }
}

.nav .logo-chip {
  box-sizing: border-box;
  height: var(--nav-height);
}
.nav .logo-chip img { height: 100%; }

.nav-links {
  display: none;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(10, 27, 41, 0.62);
  }
  .nav-links a { transition: color 0.2s var(--ease-out); position: relative; }
  .nav-links a:hover, .nav-links a.active { color: var(--color-bg); }
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-accent);
  }
}

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(10, 27, 41, 0.18);
  border-radius: var(--radius-pill);
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--color-bg);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  position: fixed;
  /* Explicit height (not inset auto-resolution): .nav's backdrop-filter
     makes it a containing block for this fixed element, so inset would
     resolve against .nav's own ~64px box instead of the viewport. */
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--nav-height));
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-text);
}
@media (min-width: 1024px) { .nav-mobile { display: none; } }

/* ============================================================
   HERO - pinned scroll-scrubbed image sequence
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh; /* safe default: only grows tall once JS confirms desktop scroll-scrub */
}
html.hero-scrub-ready .hero { height: 360vh; }

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050d15;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-poster,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster.reduced-static {
  animation: heroKenBurns 14s var(--ease-out) forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-poster.reduced-static { animation: none; }
}
.hero-canvas {
  display: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
html.hero-scrub-ready .hero-canvas { display: block; }
.hero-canvas.is-ready { opacity: 1; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 13, 21, 0.92) 0%, rgba(5, 13, 21, 0.35) 42%, rgba(5, 13, 21, 0.05) 62%),
    linear-gradient(180deg, rgba(5, 13, 21, 0.55) 0%, rgba(5, 13, 21, 0) 30%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px calc(56px + env(safe-area-inset-bottom, 0px));
  max-width: 720px;
}
@media (min-width: 768px) {
  .hero-content { padding: 0 40px 88px; max-width: 780px; }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 1.05;
  color: var(--color-text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--color-accent);
}
.hero-content p {
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(245, 246, 243, 0.86);
  max-width: 46ch;
}
.hero-content .hero-cta-row { margin-top: 32px; }
.hero-content .btn { width: fit-content; }

.hero-scroll-hint {
  position: absolute;
  right: 24px;
  bottom: 40px;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(245,246,243,0.5), rgba(245,246,243,0));
  display: none;
}
@media (min-width: 1024px) {
  .hero-scroll-hint { display: block; }
}

/* ============================================================
   SECTION shell
   ============================================================ */
.section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--color-text);
}
.section-head p {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SHOWCASE - asymmetric split photography
   ============================================================ */
.showcase {
  background: var(--color-bg);
}
.showcase-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }
}

.showcase-figure {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--color-bg-elevated);
  min-height: 320px;
}
.showcase-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.showcase-figure.tall { aspect-ratio: 16 / 9; min-height: 0; }
@media (min-width: 900px) {
  .showcase-figure.tall { aspect-ratio: auto; min-height: 100%; }
  .showcase-figure.short { min-height: 100%; }
}

.ba-slider { cursor: ew-resize; touch-action: pan-y; }
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}
.ba-tag {
  position: absolute;
  top: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(10, 27, 41, 0.55);
  backdrop-filter: blur(6px);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--color-accent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(10, 27, 41, 0.25);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px -8px rgba(10, 27, 41, 0.6);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;
}
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 100%;
}
.ba-range::-moz-range-thumb {
  width: 44px;
  height: 100%;
  border: none;
  background: transparent;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 4px 24px;
}
@media (min-width: 900px) {
  .showcase-copy { padding: 24px 8px 24px 40px; }
}
.showcase-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--color-text);
  line-height: 1.08;
}
.showcase-copy p {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 42ch;
}
.showcase-copy .btn { margin-top: 28px; width: fit-content; }

/* ============================================================
   LOW PROFILE - spec tiles + closeup imagery
   ============================================================ */
.profile {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.profile-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .profile-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.profile-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .profile-images {
    grid-template-rows: 1fr 1fr;
    height: 100%;
  }
}
.profile-figure {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-elevated-2);
}
@media (min-width: 900px) {
  .profile-figure { aspect-ratio: auto; height: 100%; }
}
.profile-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.profile-figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(10, 27, 41, 0.55);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.spec-tile {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  padding: 24px;
}
.spec-tile.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(60, 198, 232, 0.14), rgba(207, 53, 66, 0.1)), var(--color-bg);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 560px) and (max-width: 899px) {
  .spec-tile.featured { grid-column: span 2; }
}
.spec-tile .stat {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-text);
  line-height: 1;
}
.spec-tile.featured .stat { font-size: clamp(2.4rem, 4vw, 3.2rem); }
.spec-tile .stat-label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cyan);
}
.spec-tile.featured .stat-label { margin-top: 0; }
.spec-tile p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   PROCESS - four-step how-it-works + trust bar
   ============================================================ */
.section-head.center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.process-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 130%);
  max-width: none;
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 599px) {
  .process-watermark { width: 220%; }
}
.process > .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  padding: 28px 24px;
}
.process-step-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--color-cyan);
  line-height: 1;
}
.process-step h3 {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}
.process-step p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.process-tagline {
  margin-top: 56px;
  text-align: center;
}
.process-tagline p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.35;
  color: var(--color-text-muted);
}
.process-tagline p.accent { color: var(--color-text); }
.process-tagline p.accent span { color: var(--color-cyan); }

.process-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.trust-item .ph { color: var(--color-cyan); font-size: 18px; }

/* ============================================================
   REVIEWS - Google reviews, auto-populated from
   assets/reviews/reviews.json (see build-reviews.js)
   ============================================================ */
.reviews {
  background: var(--color-bg);
}
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.reviews-head .section-head { margin-bottom: 0; }

.reviews-rating {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  flex-shrink: 0;
}
.reviews-rating.is-visible { display: flex; }
.google-mark svg { display: block; width: 26px; height: 26px; }
.reviews-rating-value {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-rating-value strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-text);
}
.reviews-rating-count {
  font-size: 13px;
  color: var(--color-text-muted);
  border-left: 1px solid var(--color-border-strong);
  padding-left: 14px;
}

.stars {
  position: relative;
  display: inline-flex;
  font-size: 15px;
  line-height: 1;
}
.stars-base,
.stars-fill {
  display: flex;
  gap: 2px;
}
.stars-base { color: var(--color-text-faint); }
.stars-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--color-star);
  white-space: nowrap;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.review-text {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex-grow: 1;
}
.review-date {
  font-size: 12.5px;
  color: var(--color-text-faint);
}

.reviews-fallback {
  grid-column: 1 / -1;
  color: var(--color-text-muted);
  font-size: 1rem;
  text-align: center;
  padding: 32px 0;
}
.reviews-fallback a { color: var(--color-cyan); font-weight: 700; }
.reviews-fallback a:hover { text-decoration: underline; }

.reviews-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--color-bg);
}
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--color-text);
  line-height: 1.08;
}
.contact-info > p {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.contact-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item .ph {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-cyan);
  font-size: 18px;
}
.contact-item a,
.contact-item span.value {
  font-weight: 700;
  color: var(--color-text);
}
.contact-item a:hover { color: var(--color-cyan); }
.contact-item small {
  display: block;
  margin-top: 2px;
  color: var(--color-text-faint);
  font-size: 13px;
}

.contact-form {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  padding: 32px;
}
@media (max-width: 480px) {
  .contact-form { padding: 24px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.form-row .form-field { margin-top: 0; }
.form-field:first-child { margin-top: 0; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-input);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  transition: border-color 0.2s var(--ease-out);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--color-text-faint); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-cyan);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

.contact-form .btn { margin-top: 24px; width: 100%; }
.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--color-text-faint);
  text-align: center;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-status.is-success { display: block; color: #4ade80; }
.form-status.is-error { display: block; color: var(--color-accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
  background: var(--color-bg);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.footer-links a:hover { color: var(--color-text); }
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-socials-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.footer-socials-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-socials-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 18px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-socials-links a:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-faint);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.masthead {
  padding: calc(var(--nav-height) + 88px) 0 64px;
  background: var(--color-bg);
}
.masthead h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  color: var(--color-text);
  max-width: 16ch;
}
.masthead p {
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 56ch;
}

.about-story {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.about-story-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-story-grid { grid-template-columns: 0.8fr 1.2fr; gap: 64px; }
}
.story-figure {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.about-story-copy p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 58ch;
}
.about-story-copy p + p { margin-top: 18px; }
.about-story-copy strong { color: var(--color-text); font-weight: 700; }

.legal-content {
  max-width: 70ch;
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-top: 40px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.legal-content p + p,
.legal-content ul { margin-top: 14px; }
.legal-content ul { padding-left: 1.2em; }
.legal-content li + li { margin-top: 6px; }
.legal-content .updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.about-stats {
  background: var(--color-bg);
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
.stat-row-item {
  padding: 28px 4px;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .stat-row-item {
    padding: 32px 32px;
    border-bottom: none;
  }
  .stat-row-item + .stat-row-item { border-left: 1px solid var(--color-border); }
}
.stat-row-item .stat {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--color-text);
  line-height: 1;
}
.stat-row-item .stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-cyan);
}
.stat-row-item p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.about-statement {
  background: var(--color-bg-elevated);
  text-align: center;
}
.about-statement blockquote {
  margin: 0 auto;
  max-width: 42ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  color: var(--color-text);
}
.about-statement cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.cta-band {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-text);
}
.cta-band p {
  margin: 12px auto 0;
  max-width: 52ch;
  color: var(--color-text-muted);
}
.cta-band .btn { margin: 24px auto 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  column-count: 1;
  column-gap: 20px;
}
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 3; } }
@media (min-width: 1440px) { .gallery-grid { column-count: 4; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-panel);
  overflow: hidden;
  position: relative;
  background: var(--color-bg-elevated);
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) {
  .gallery-item img { transition: none; }
  .gallery-item:hover img { transform: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 13, 21, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .lightbox { transition: none; } }

.lightbox-frame {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-frame img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-panel);
}

.lightbox-btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  font-size: 20px;
}
.lightbox-btn:hover { border-color: var(--color-cyan); color: var(--color-cyan); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ============================================================
   SERVICES PAGE - looping hero + occasions grid
   ============================================================ */
.services-hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  max-height: 780px;
  overflow: hidden;
  background: #050d15;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .services-hero {
    height: auto;
    max-height: none;
    min-height: max(66vh, 460px);
    min-height: max(66svh, 460px);
    padding-top: calc(var(--nav-height) + 24px);
  }
  /* iOS Safari doesn't reliably use min-height to position a flex child
     bottom-aligned via align-items when the container's own height is auto,
     so pin it with absolute positioning instead. */
  .services-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.services-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 13, 21, 0.92) 0%, rgba(5, 13, 21, 0.35) 42%, rgba(5, 13, 21, 0.05) 62%),
    linear-gradient(180deg, rgba(5, 13, 21, 0.55) 0%, rgba(5, 13, 21, 0) 30%);
}

.services-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px calc(56px + env(safe-area-inset-bottom, 0px));
  max-width: 720px;
}
@media (min-width: 768px) {
  .services-hero-content { padding: 0 40px 84px; max-width: 780px; }
}
.services-hero-content h1 {
  font-size: clamp(2.2rem, 5.6vw, 3.8rem);
  line-height: 1.05;
  color: var(--color-text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.services-hero-content p {
  margin-top: 18px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(245, 246, 243, 0.86);
  max-width: 46ch;
}
.services-hero-content .hero-cta-row { margin-top: 28px; }
.services-hero-content .btn { width: fit-content; }

.occasions {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.occasions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .occasions-grid { grid-template-columns: repeat(4, 1fr); }
}

.occasion-card {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg);
}
.occasion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.occasion-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 27, 41, 0) 38%, rgba(10, 27, 41, 0.94) 100%);
}
.occasion-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}
.occasion-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
}
.occasion-card-body p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  padding: 22px 26px;
}
.faq-item[open] {
  border-color: var(--color-border-strong);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-faint);
  transition: transform 0.2s var(--ease-out);
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 68ch;
}

/* ============ SERVICE AREA ============ */
.area-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .area-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
.area-map {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
}
.area-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
.area-copy h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
}
.area-copy h3 + .area-tags { margin-top: 14px; }
.area-copy .area-tags + h3 { margin-top: 32px; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
}
