/* ============================================================
   ZABO VISUALS — styles.css
   ============================================================ */

/* ---- Self-hosted fonts (latin) ---------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
}

/* ---- Reset & Variables ------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #07080f;
  --surface:   #0c0e17;
  --surface2:  #11141f;
  --border:    #1a1e2e;
  --text:      #e6e8f2;
  --muted:     #8e94aa;
  --error:     #c0392b;
  --error-text:#d65a4a;
  --accent:    #8ba4d4;
  --accent-lt: #a5bcde;
  --accent-dim: rgba(139,164,212,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --nav-h:     72px;
  --pad:       clamp(1.25rem, 5vw, 4rem);
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ---- Focus visibility (keyboard accessibility) ------------ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Inputs already carry a border-color focus state; keep their ring tight */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline-offset: 1px;
}
/* Don't show the ring for mouse users (handled by hover states) */
:focus:not(:focus-visible) { outline: none; }

/* Skip-to-content link for keyboard / screen-reader users */
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 10001;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transform: translateY(-150%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   CUSTOM CURSOR — camera
   ============================================================ */
.cursor-cam { display: none; }

@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }

  .cursor-cam {
    display: block;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    color: var(--accent);
    will-change: transform;
    transform: translate(-999px, -999px);
    transition: opacity 0.3s;
  }

  .cursor-cam svg {
    display: block;
    width: 30px;
    height: 24px;
    transition: transform 0.3s var(--ease-out),
                filter 0.3s,
                color 0.25s;
    filter: drop-shadow(0 0 0px rgba(139,164,212,0));
  }

  .cursor-cam.is-hovering svg {
    transform: scale(1.32);
    filter: drop-shadow(0 0 9px rgba(139,164,212,0.5));
  }

  .cursor-cam.is-clicking svg {
    transform: scale(0.82);
    transition: transform 0.08s ease-out;
    filter: drop-shadow(0 0 14px rgba(139,164,212,0.8));
  }

  body.cursor-hidden .cursor-cam { opacity: 0; }

  /* Form fields keep a usable native caret/pointer instead of the camera */
  input, textarea, select { cursor: auto !important; }
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="url"], input[type="search"], textarea { cursor: text !important; }
  select, .select-wrap select { cursor: pointer !important; }
  body.cursor-native .cursor-cam { opacity: 0; }
}

/* ============================================================
   FLASH OVERLAY
   ============================================================ */
.flash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(139,164,212,0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.logo:hover .logo-img {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,164,212,0.12);
}

/* ---- Utility ---------------------------------------------- */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   GRAIN / NOISE
   ============================================================ */
.noise-svg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.038;
  mix-blend-mode: overlay;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-cam-wrap {
  margin-bottom: 2rem;
}

.loader-cam-svg {
  width: 64px;
  height: auto;
  color: var(--accent);
  animation: cam-breathe 2.2s ease-in-out infinite;
  display: block;
}

#loaderLens {
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes cam-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.07); opacity: 1;   }
}

.loader-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.85rem;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-logo span { color: var(--accent); }

.loader-track {
  width: 160px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 1s var(--ease);
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}


/* ============================================================
   STICKY BOOK CTA
   ============================================================ */
.book-cta {
  position: fixed;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  right: var(--pad);
  z-index: 90;
  height: 46px;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  border-radius: 40px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.25s, visibility 0s linear 0.4s;
}

.book-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.25s, visibility 0s;
}

.book-cta:hover {
  background: var(--accent-lt);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease);
}

.nav.scrolled {
  background: rgba(9, 12, 18, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--border);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  user-select: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.ig-link { color: var(--accent) !important; }

.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.38s var(--ease), opacity 0.22s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 60svh;
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 0% 100%, rgba(139, 164, 212, 0.06) 0%, transparent 60%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 3rem 4rem var(--pad);
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  var(--bg) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(9,12,18,0.55) 0%, transparent 35%);
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile-only hero background — declared empty here so desktop never loads it.
   The actual image + reveal are defined in the mobile media query below. */
.hero-mobile-bg { display: none; }

.hero-eyebrow { margin-bottom: 1.5rem; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 14ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(40px);
  overflow-wrap: break-word;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(130deg, var(--accent) 0%, var(--accent-lt) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.dot-sep { color: var(--border); }

.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.hero-scroll-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Vertical scroll line */
.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: var(--pad);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(139,164,212,0.45), transparent);
  animation: line-breathe 2.4s ease-in-out infinite;
}

@keyframes line-breathe {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

.process-top {
  max-width: 52ch;
  margin-bottom: 5rem;
}

.process-top .eyebrow { margin-bottom: 1.25rem; }

.process-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.process-heading em {
  font-style: italic;
  color: var(--accent);
}

.process-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}

.process-step:last-child { border-right: none; }

.process-step:hover {
  background: var(--surface);
}

.process-n {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 2rem;
  transition: opacity 0.4s;
}

.process-step:hover .process-n { opacity: 0.28; }

.process-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.process-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-top: 1px solid var(--border); }
  .process-step:nth-child(4) { border-right: none; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; padding-right: 0; }
  .process-n { margin-bottom: 0.75rem; }
}

/* ============================================================
   FEATURED IMAGE
   ============================================================ */
.featured {
  padding: 5rem var(--pad) 8rem;
}

.featured-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1.1s var(--ease);
}

.featured-img:hover img { transform: scale(1.03); }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work {
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  flex-shrink: 0;
}

.section-head p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34ch;
  text-align: right;
}

.see-all {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.25s;
  flex-shrink: 0;
}

.see-all:hover { opacity: 0.7; }

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  grid-auto-flow: row dense;
  gap: 10px;
  grid-auto-flow: dense;
}

.gallery figure {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  margin: 0;
  transition: box-shadow 0.4s var(--ease), transform 0.5s var(--ease);
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}

.gallery figure:not(.placeholder) {
  cursor: zoom-in;
}

.gallery figure:not(.placeholder):hover img { transform: scale(1.06); }

.gallery figure:not(.placeholder):hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(139,164,212,0.18);
}

.gallery figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,12,18,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 1;
  pointer-events: none;
}

.gallery figure:not(.placeholder):hover::after { opacity: 1; }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

.about-img {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.about-img:hover img { transform: scale(1.04); }

.about-text .eyebrow { margin-bottom: 1.25rem; }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.85rem;
}

.about-text p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.25s;
}

.about-text a:hover { color: var(--accent); }

/* ============================================================
   FOUNDER'S STORY
   ============================================================ */
.story {
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.story-head { position: sticky; top: 7rem; }

.story-head .eyebrow { margin-bottom: 1.25rem; }

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.story-title em {
  font-style: italic;
  color: var(--accent);
}

.story-body { max-width: 60ch; }

.story-body p {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.story-body p:last-child { margin-bottom: 0; }

.story-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--text) !important;
  margin-bottom: 2rem !important;
}

.story-close {
  color: var(--text) !important;
  border-left: 1px solid var(--accent);
  padding-left: 1.5rem;
  margin-top: 2.2rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
  list-style: none;
}

.service-list li {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  transition: border-color 0.35s;
}

.service-list li:hover { border-color: var(--accent); }

.num {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.35rem;
}

.service-list h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
}

.service-list > li > p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-feats {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.service-feats li {
  position: relative;
  padding: 0 0 0 1.4rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text);
  border: 0;
}

.service-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.service-note {
  margin-top: 1.25rem;
  font-style: italic;
  font-size: 0.8rem !important;
  color: var(--text) !important;
}

.service-soon h3 { color: var(--muted); }

.service-soon > p {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem !important;
  color: var(--accent) !important;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.75rem 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-wrap:hover .marquee-inner,
.marquee-inner.marquee-paused {
  animation-play-state: paused;
}

.marquee-group {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-right: 2rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram {
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

/* Behold Instagram feed widget */
.instagram behold-widget {
  display: block;
  width: 100%;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.ig-post {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
  display: block;
  position: relative;
  transition: opacity 0.25s, transform 0.35s var(--ease);
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 164, 212, 0.22);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.ig-post:hover::after { opacity: 1; }
.ig-post:hover { transform: scale(1.03); opacity: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 60rem;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer {
  padding: 0 0 1.85rem;
  max-width: 52ch;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
}

.faq-answer a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.25s;
}

.faq-answer a:hover { color: var(--accent); }

/* ============================================================
   POLICY  — editorial asymmetric layout
   ============================================================ */
.policy {
  padding: 0 var(--pad);
  border-top: 2px solid var(--accent);
}

/* eyebrow + extending rule */
.policy-top-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 0;
}

.policy-top-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
  display: block;
}

/* two-column body */
.policy-body {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(4rem, 8vw, 9rem);
  padding: 5rem 0 5rem;
  align-items: start;
}

/* ---- Left: display headline -------------------------------- */
.policy-left {
  position: sticky;
  top: calc(var(--nav-h) + 2.5rem);
}

.policy-display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.02em;
  margin-bottom: 2.75rem;
}

.policy-display em {
  font-style: italic;
  color: var(--accent);
}

.policy-lead {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 30ch;
  padding-left: 1.25rem;
  border-left: 1px solid var(--accent);
}

/* ---- Right: policy rows ------------------------------------ */
.policy-right {
  display: flex;
  flex-direction: column;
}

.policy-row {
  display: grid;
  grid-template-columns: 12ch 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.policy-row:first-child { border-top: none; padding-top: 0; }

.policy-tag {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.3em;
  flex-shrink: 0;
}

.policy-content > p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.9;
}

.policy-content strong {
  color: var(--text);
  font-weight: 400;
}

/* reschedule tiers */
.policy-tier {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.policy-tier:first-child { padding-top: 0; }
.policy-tier:last-child  { border-bottom: none; padding-bottom: 0; }

.tier-ord {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  opacity: 0.2;
  line-height: 1;
  user-select: none;
}

.tier-ord sup {
  font-size: 0.38em;
  font-style: normal;
  vertical-align: super;
  opacity: 0.8;
}

.policy-tier p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 0.55rem;
}

.policy-tier p strong {
  color: var(--text);
  font-weight: 400;
}

/* footnote full-width */
.policy-footnote {
  border-top: 1px solid var(--border);
  padding: 2rem 0 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.policy-footnote span {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* responsive */
@media (max-width: 900px) {
  .policy-body {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 0 4rem;
  }
  .policy-left { position: static; }
  .policy-display { font-size: clamp(3rem, 10vw, 5rem); }
}

@media (max-width: 600px) {
  .policy-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .policy-tier {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.9rem;
  }
  .tier-ord { font-size: 2.2rem; }
  .policy-footnote { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  padding: 8rem var(--pad);
  border-top: 1px solid var(--border);
}

.contact-left .eyebrow { margin-bottom: 1.25rem; }

h2.big {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

h2.big em {
  font-style: italic;
  color: var(--accent);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
  display: inline-block;
  padding-bottom: 1px;
}

.contact-links a:hover {
  color: var(--text);
  border-bottom-color: var(--border);
}

/* ---- Form ------------------------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group label .opt {
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}

.form-consent {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.form-consent a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.25s;
}

.form-consent a:hover { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  padding: 0.85rem 1rem;
  min-height: 48px;
  border-radius: 3px;
  outline: none;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--surface2);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
}

/* Per-field error message (hidden until populated by JS) */
.field-error {
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--error-text);
  letter-spacing: 0.02em;
}
.field-error:empty { display: none; }

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 1rem;
  pointer-events: none;
  color: var(--muted);
  flex-shrink: 0;
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow { transform: translate(2px, -2px); }

.form-btn { align-self: flex-start; }

.form-success {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.4s;
}

.form-success.visible { opacity: 1; }

.form-success.error { color: var(--error-text); }

/* Field hints */
.form-hint {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Honeypot spam trap — visually removed, still in the DOM */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Inspo link field */
.link-field {
  position: relative;
  display: flex;
  align-items: center;
}

.link-field-icon {
  position: absolute;
  left: 1rem;
  flex-shrink: 0;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.25s;
}

.link-field input[type="url"] {
  padding-left: 2.7rem;
}

.link-field:focus-within .link-field-icon {
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem var(--pad) 2.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid var(--border);
}

.footer-nav, .footer-social {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav a, .footer-social a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-nav a:hover, .footer-social a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  color: var(--muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: border-color 0.25s;
}

.lightbox-close:hover { border-color: var(--text); }

/* Lightbox prev / next */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 14, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s;
  z-index: 1;
}

.lightbox-nav:hover {
  background: rgba(12, 14, 23, 0.9);
  border-color: var(--accent);
}

.lightbox-prev { left: -1.5rem; }
.lightbox-next { right: -1.5rem; }

@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-nav { background: rgba(12, 14, 23, 0.8); }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .g-wide { grid-column: span 1; }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img {
    max-width: 420px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-head { position: static; }

  .contact {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  h2.big {
    font-size: clamp(2.8rem, 7vw, 5rem);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav-toggle { display: flex; }

  .br-desktop { display: none; }

  .book-cta {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    /* Use the dynamic viewport so the panel always matches what's visible,
       even as the mobile address bar collapses/expands after scrolling. */
    height: 100svh;
    height: 100dvh;
    padding: calc(var(--nav-h) + 1.25rem) 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
  }

  .nav-links.open { transform: translateX(0); }

  /* Centre the links when they fit, but allow scrolling to every item when they
     don't — auto margins collapse to 0 on overflow so nothing gets clipped. */
  .nav-links a:first-child { margin-top: auto; }
  .nav-links a:last-child { margin-bottom: auto; }

  .nav-links a {
    font-size: 0.9rem;
    color: var(--text);
    letter-spacing: 0.12em;
  }

  .nav-links a::after { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-content {
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
    text-align: center;
  }

  /* Center the short hero text + button on mobile (body copy stays left) */
  .hero-title,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  /* Lift text legibility over the photo */
  .hero-title,
  .hero-sub,
  .hero-eyebrow,
  .hero-meta {
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.55);
  }

  .hero-sub { color: rgba(255, 255, 255, 0.82); }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-image { display: none; }

  /* Full-bleed cinematic photo behind the hero text on mobile */
  .hero-mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/19.jpeg');
    background-size: cover;
    background-position: center 25%;
    animation: hero-bg-zoom 14s ease-out forwards;
  }

  .hero-mobile-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(7, 8, 15, 0.45) 0%,
        rgba(7, 8, 15, 0.15) 32%,
        rgba(7, 8, 15, 0.78) 80%,
        rgba(7, 8, 15, 0.94) 100%),
      radial-gradient(ellipse 90% 60% at 50% 100%, rgba(139, 164, 212, 0.16) 0%, transparent 70%);
  }

  @keyframes hero-bg-zoom {
    from { transform: scale(1.12); }
    to   { transform: scale(1); }
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .gallery figure { aspect-ratio: 4 / 5; }

  .g-tall, .g-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .contact { padding: 4.5rem var(--pad); }

  .btn { width: 100%; justify-content: center; }

  .footer-nav a, .footer-social a {
    padding: 0.4rem 0;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .section-head p { text-align: center; max-width: 100%; }

  /* Center the "How It Works" header + short intro on mobile */
  .process-top {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .service-list { grid-template-columns: 1fr; gap: 0; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 2.8rem); }

  .featured-img { aspect-ratio: 3 / 2; }

  .gallery { gap: 10px; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

  h2.big { font-size: clamp(2.1rem, 11vw, 3rem); }

  .contact-links a { font-size: 0.8rem; }

  .form-bottom { flex-direction: column; align-items: flex-start; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Comfortable touch targets for mobile nav links */
@media (max-width: 768px) {
  .nav-links a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal {
  max-width: 50rem;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 5rem) var(--pad) 6rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  transition: opacity 0.25s;
}
.legal-back:hover { opacity: 0.7; }

.legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.legal .updated {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.legal h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  margin: 2.75rem 0 1rem;
}

.legal p,
.legal li {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.5rem; }

.legal a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.25s;
}
.legal a:hover { color: var(--accent); }

.legal strong { color: var(--text); font-weight: 400; }

.legal-note {
  margin-top: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  font-size: 0.8rem !important;
  color: var(--muted) !important;
}

/* ============================================================
   REDUCED MOTION — honor user OS preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Neutralize all animations & transitions site-wide */
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Stop continuously-running ambient motion outright */
  .marquee-inner,
  .loader-cam-svg,
  .loader-logo,
  .loader-label,
  .hero-scroll-line { animation: none !important; }

  /* Ensure content animated in by JS is visible without motion */
  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-meta {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Reveal any clip-path / parallax targets in their final state */
  .featured-img,
  .about-img { clip-path: none !important; }
  .hero-image img { transform: none !important; }

  /* The custom camera cursor is disabled in JS; restore native cursor */
  *, *::before, *::after { cursor: auto !important; }
  .book-cta,
  a, button, [role="button"], label, select { cursor: pointer !important; }
  .gallery figure:not(.placeholder) { cursor: zoom-in !important; }
}
