/* ═══════════════════════════════════════════════════════════════
   Jathusana Makeupartistry — style.css
   Dark Editorial Luxury · Vogue India meets Harper's Bazaar
═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Section backgrounds are slightly translucent so the fixed 3D canvas
     reads through faintly. The opaque base sits on <html>. */
  --bg:          rgba(8, 6, 4, 0.88);
  --bg-2:        rgba(15, 11, 8, 0.86);
  --bg-3:        rgba(23, 18, 9, 0.90);
  --surface:     rgba(255,255,255,0.03);
  --border:      rgba(201,164,101,0.15);
  --border-2:    rgba(201,164,101,0.25);
  --gold:        #c9a465;
  --gold-bright: #e8c48a;
  --gold-dim:    rgba(201,164,101,0.12);
  --cream:       #f5ede0;
  --white:       #faf8f5;
  --text:        #f5ede0;
  --text-2:      #9a8a78;
  --text-3:      #857869;
  --blush:       rgba(212,165,165,0.08);
  --rose:        #c4847a;

  --font-hero:   clamp(5rem, 14vw, 14rem);
  --font-h1:     clamp(3rem, 7vw, 7rem);
  --font-h2:     clamp(2rem, 4vw, 4rem);
  --font-h3:     clamp(1.3rem, 2vw, 1.8rem);
  --font-body:   1rem;
  --font-sm:     0.875rem;
  --font-xs:     0.6875rem;

  --radius:      4px;
  --transition:  0.3s ease;
  --shadow-gold: 0 8px 40px rgba(201,164,101,0.18);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  /* bg overridden below to transparent so the 3D canvas shows through */
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

::selection {
  background: rgba(201,164,101,0.25);
  color: var(--cream);
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1), height 0.3s cubic-bezier(0.16,1,0.3,1), background 0.3s ease;
  will-change: left, top;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201,164,101,0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1), height 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease;
  will-change: left, top;
}

body.cursor-hover .cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--gold-bright);
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
  .moodboard-item {
    cursor: pointer;
  }
  button {
    cursor: pointer;
  }
}

/* Loader removed — hero is the LCP. */

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

#nav.scrolled {
  padding: 18px 48px;
  background: rgba(8,6,4,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 1px;
}

.nav-logo-name {
  display: block;
}

.nav-logo-j {
  color: var(--gold);
}

.nav-logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nav-links {
  display: flex;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-2);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 1;
}

.nav-book:hover {
  background: var(--gold-bright);
  transform: scale(1.02);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 12px 8px;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  width: 100%;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 100px 24px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 380px) {
  .mobile-nav a { font-size: 1.5rem; }
  .mobile-nav { gap: 16px; }
}

.mobile-nav a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-book {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #nav {
    padding: 24px 28px;
  }

  #nav.scrolled {
    padding: 16px 28px;
  }
}

/* ── SITE-WIDE 3D BACKGROUND CANVAS ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}

/* The opaque base sits on <html> so first paint isn't white if canvas
   fails. Body is transparent so the fixed 3D canvas shows through. */
html { background: #080604; scroll-padding-top: 80px; }
body { background: transparent; overflow-x: clip; }

/* Sticky-nav clearance for in-page anchor links */
section[id] { scroll-margin-top: 80px; }

/* Each section is its own stacking + layout context — prevents
   any sibling section content from bleeding over (defensive
   guard against iOS Safari sticky-nav / scroll-render glitches). */
section, footer {
  position: relative;
  isolation: isolate;
  z-index: auto;
}

/* Clip any horizontal overflow from a section's children
   (gallery's wide track, marquee rows). overflow-x: clip is
   stronger than hidden — does NOT create a scroll container,
   so position: sticky inside still works. */
section { overflow-x: clip; }

/* Gallery is the only section that intentionally needs
   horizontal scroll on mobile. */
#gallery { overflow-x: visible; }

/* ════════════════════════════════════════════════════════════
   PERF: content-visibility skips layout + paint of
   off-screen sections until they scroll near the viewport.
   Only applied at >=769px — on mobile it caused visual
   overlap during scroll (intrinsic-size mismatch) on some
   iOS Safari versions, per user report.
════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  #about,
  #services,
  #pricing,
  #before-after,
  #testimonials,
  #featured,
  #instagram,
  #reels,
  #booking,
  #faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1500px;
  }
}

/* Belt-and-suspenders: on mobile, every section flows as
   normal block layout. Defeats any iOS Safari grid/flex
   render quirk that could let siblings overlap. */
@media (max-width: 768px) {
  section > div,
  section > article {
    position: relative;
    z-index: 1;
  }
  /* Ensure no negative margins on direct children of sections */
  section > * {
    margin-top: 0;
  }

  /* Perf: solid section backgrounds. Three.js pauses after
     hero so translucency reveals nothing — removing alpha
     blend saves real GPU work on every scroll frame. */
  :root {
    --bg:   rgb(8, 6, 4);
    --bg-2: rgb(15, 11, 8);
    --bg-3: rgb(23, 18, 9);
  }
}

/* ── HERO SECTION ──
   Transparent so the 3D canvas reads through; overlay handles vignette. */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 30%, rgba(8,6,4,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: var(--font-hero);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 16px;
  overflow: hidden;
}

.hero-name .char {
  display: inline-block;
  opacity: 0;
}

.hero-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--text-2);
  margin-bottom: 48px;
  opacity: 0;
}

.hero-title span {
  color: var(--gold);
  border-left: 1px solid rgba(201,164,101,0.5);
  border-right: 1px solid rgba(201,164,101,0.5);
  padding: 0 12px;
  margin: 0 8px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bg);
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
  background: var(--gold-bright);
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(201,164,101,0.3);
}

.btn-hero-ghost {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid var(--border-2);
  padding: 16px 32px;
  border-radius: 2px;
  display: inline-block;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201,164,101,0.04);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0;
  pointer-events: none;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ── STATEMENT / QUOTE SECTION ── */
.statement-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.statement-section::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  line-height: 1;
  color: rgba(201,164,101,0.025);
  pointer-events: none;
  user-select: none;
}

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.statement-text em {
  color: var(--gold);
  font-style: italic;
}

.statement-attr {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
  position: relative;
  z-index: 1;
}

/* ── AUTO-SCROLL IMAGE STRIP ── */
.strip-wrap {
  overflow: hidden;
  padding: 0;
  background: var(--bg);
  /* fade edges left and right */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.strip-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strip-row {
  display: flex;
  gap: 12px;
  width: max-content;
}

/* Row 1 scrolls left */
.strip-row--left {
  animation: stripLeft 35s linear infinite;
}
/* Row 2 scrolls right */
.strip-row--right {
  animation: stripRight 40s linear infinite;
}

/* Pause on hover */
.strip-wrap:hover .strip-row--left,
.strip-wrap:hover .strip-row--right {
  animation-play-state: paused;
}

@keyframes stripLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes stripRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.strip-item {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.strip-item:hover {
  transform: scale(1.04);
  border-color: var(--border-2);
}

.strip-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.strip-item:hover .strip-img,
.strip-item:hover img {
  transform: scale(1.06);
}

/* Placeholder gradients (replaced by real photos once uploaded) */
.si-1 { background: linear-gradient(145deg, #1a0f0a, #2e1810, #1a0f0a); }
.si-2 { background: linear-gradient(145deg, #0e1218, #1a2030, #0e1218); }
.si-3 { background: linear-gradient(145deg, #180e10, #2e1820, #180e10); }
.si-4 { background: linear-gradient(145deg, #14100a, #221a0e, #14100a); }
.si-5 { background: linear-gradient(145deg, #0c1418, #162028, #0c1418); }
.si-6 { background: linear-gradient(145deg, #160e14, #281422, #160e14); }
.si-7 { background: linear-gradient(145deg, #1a1208, #2c1e0c, #1a1208); }
.si-8 { background: linear-gradient(145deg, #100e14, #1c1a28, #100e14); }

/* Mobile: smaller items */
@media (max-width: 768px) {
  .strip-item { width: 140px; height: 180px; }
}

/* ── HORIZONTAL SCROLL GALLERY ── */
#gallery {
  position: relative;
  margin-top: 0;
}

.gallery-pin-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 56px;
  box-sizing: border-box;
}

.gallery-track {
  display: flex;
  gap: 24px;
  padding: 0 80px;
  will-change: transform;
}

.gallery-card {
  flex-shrink: 0;
  width: 340px;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.gallery-card-img {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.gallery-card:hover .gallery-card-img img {
  transform: scale(1.04);
}

.gallery-card-overlay {
  flex-shrink: 0;
  padding: 18px 24px 20px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.gallery-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 5px;
}

.gallery-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.gallery-section-header {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
}

.gallery-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: rgba(201,164,101,0.15);
  z-index: 5;
}

.gallery-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  #gallery {
    height: auto !important;
  }

  .gallery-pin-wrap {
    position: relative;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-pin-wrap::-webkit-scrollbar {
    display: none;
  }

  .gallery-track {
    padding: 40px 24px 48px;
    transform: none !important;
  }

  .gallery-card {
    width: 300px;
    height: 420px;
  }

  .gallery-section-header {
    display: none;
  }

  .gallery-progress {
    display: none;
  }
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  align-items: center;
}

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

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1208 0%, #2a1f14 40%, #1f1810 60%, #1a1208 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(201,164,101,0.15);
  font-family: 'Cormorant Garamond', serif;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.45;
  z-index: 3;
}

.about-corner.tl {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.about-corner.tr {
  top: 12px;
  right: 12px;
  border-width: 1px 1px 0 0;
}

.about-corner.bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 1px 1px;
}

.about-corner.br {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.about-heading em {
  color: var(--gold);
  font-style: italic;
}

.about-body {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 8px;
}

.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
}

@media (max-width: 900px) {
  .about-section {
    /* Force block flow on mobile to defeat any grid-overlap quirk
       seen on iOS Safari — image stacks above text, period. */
    display: block !important;
    grid-template-columns: 1fr;
    padding: 80px 28px;
  }
  .about-section > .about-img-frame {
    display: block;
    margin: 0 auto 48px;
    max-width: 100%;
  }
  .about-section > .about-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
  }

  .about-img-frame {
    aspect-ratio: 3/4;
    max-height: 480px;
  }

  .about-img-frame img {
    object-position: center top;
  }
}

/* ── SERVICES SECTION ── */
.services-section {
  padding: 120px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 72px;
}

.section-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}

.section-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.service-card:last-child {
  border-right: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dim);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: rgba(201,164,101,0.03);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,164,101,0.08);
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.service-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-link {
  gap: 14px;
  color: var(--gold-bright);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-card:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .services-section {
    padding: 80px 28px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .services-section {
    padding: 60px 20px;
  }
}

/* ── INSTAGRAM SECTION ── */
.instagram-section {
  padding: 120px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── MOODBOARD / POLAROID GRID ── */
.moodboard-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  margin-top: 64px;
  padding: 20px 10px 40px;
}

.moodboard-item {
  position: relative;
  background: #f2e9da;
  padding: 10px 10px 44px;
  box-shadow:
    0 6px 28px rgba(0,0,0,0.72),
    0 1px 0 rgba(255,255,255,0.06);
  transition:
    transform 0.55s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.55s ease;
  cursor: pointer;
  z-index: 1;
}

/* Subtle random tilts per position */
.moodboard-item:nth-child(1)  { transform: rotate(-3.2deg) translateY(6px);  }
.moodboard-item:nth-child(2)  { transform: rotate(2.1deg)  translateY(-4px); }
.moodboard-item:nth-child(3)  { transform: rotate(-1.4deg) translateY(10px); }
.moodboard-item:nth-child(4)  { transform: rotate(2.8deg)  translateY(2px);  }
.moodboard-item:nth-child(5)  { transform: rotate(-0.9deg) translateY(-8px); }
.moodboard-item:nth-child(6)  { transform: rotate(3.3deg)  translateY(4px);  }
.moodboard-item:nth-child(7)  { transform: rotate(-2.5deg) translateY(-2px); }
.moodboard-item:nth-child(8)  { transform: rotate(1.7deg)  translateY(8px);  }
.moodboard-item:nth-child(9)  { transform: rotate(-2.0deg) translateY(-6px); }

/* Hover: straighten, lift, gold glow */
.moodboard-item:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05) !important;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.85),
    0 0 0 1px rgba(201,164,101,0.35),
    0 0 40px rgba(201,164,101,0.18);
  z-index: 10;
}

/* Gold pin dot at top centre */
.moodboard-item::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8c48a, #c9a465 60%, #9a7a45);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
}

.moodboard-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.moodboard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.moodboard-item:hover .moodboard-photo img {
  transform: scale(1.06);
}

.moodboard-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: #5a4533;
  text-align: center;
  padding-top: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Mobile moodboard */
@media (max-width: 768px) {
  .moodboard-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 14px;
    padding: 10px 4px 30px;
  }
  .moodboard-item {
    padding: 6px 6px 28px;
  }
  .moodboard-item::before {
    width: 9px;
    height: 9px;
    top: -5px;
  }
  .moodboard-caption {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    padding-top: 6px;
  }
}

@media (max-width: 480px) {
  .moodboard-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
  }
}

.instagram-cta {
  margin-top: 52px;
  text-align: center;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  border: 1px solid var(--border-2);
  padding: 14px 32px;
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-instagram:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(201,164,101,0.08);
  background: rgba(201,164,101,0.04);
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 80px 28px;
  }
}

/* ── BOOKING SECTION ── */
.booking-section {
  padding: 120px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.booking-intro {
  text-align: center;
  margin-bottom: 80px;
}

.booking-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.booking-intro h2 em {
  color: var(--gold);
  font-style: italic;
}

.booking-intro p {
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.btn-wa-quick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 26px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-wa-quick:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.booking-or {
  margin: 28px auto 0;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.booking-or::before,
.booking-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.booking-form {
  display: grid;
  gap: 28px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-2);
  padding: 14px 0;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field select {
  cursor: pointer;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a4f45' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-field select option {
  background: var(--bg-3);
  color: var(--cream);
}

.form-field textarea {
  resize: none;
  height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(0.5);
  opacity: 0.5;
  cursor: pointer;
}

.btn-book {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 400;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  border: none;
}

.btn-book:hover {
  background: var(--gold-bright);
  transform: scale(1.01);
  box-shadow: 0 12px 50px rgba(201,164,101,0.25);
}

@media (max-width: 768px) {
  .booking-section {
    padding: 80px 28px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-intro {
    margin-bottom: 56px;
  }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 72px 80px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.footer-brand .logo-name span {
  color: var(--gold);
}

.footer-brand .logo-name em {
  font-style: italic;
  color: var(--text-2);
  font-size: 1.3rem;
}

.footer-brand .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 260px;
}

.footer-col-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a {
  color: var(--text-2);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 28px 80px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
}


@media (max-width: 900px) {
  footer {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 28px 40px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 24px 28px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ── ANIMATION CLASSES ──
   Progressive enhancement: hide-then-animate ONLY when JS is ready.
   If JS fails or the user prefers reduced motion, content stays visible. */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.js-ready .fade-in {
  opacity: 0;
}

.js-ready .fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.js-ready .fade-right {
  opacity: 0;
  transform: translateX(40px);
}

.line-reveal {
  overflow: hidden;
}

.js-ready .line-reveal span {
  display: block;
  transform: translateY(100%);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .fade-up,
  .js-ready .fade-in,
  .js-ready .fade-left,
  .js-ready .fade-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .js-ready .line-reveal span {
    transform: none !important;
  }
}

/* ── DIVIDERS & ORNAMENTS ── */
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px auto;
  transform-origin: center;
}

.dot-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 12px;
  vertical-align: middle;
  opacity: 0.5;
}

/* ── MISC UTILITY ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── HOVER GLOW EFFECT ON GALLERY CARDS ── */
.gallery-card:hover .gallery-card-overlay {
  background: var(--bg-3);
}

/* ── SECTION BG VARIATIONS ── */
#services {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#instagram {
  background: var(--bg);
}

/* Performance note: previously used `content-visibility: auto` here, but
   it caused those sections to render blank in fullpage screenshots,
   reader views, and during fast-scroll/print. The page is not large
   enough to justify the trade-off, so it was removed. */

/* ── ORNAMENTAL SPARKLE ── */
.sparkle {
  display: inline-block;
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.7em;
  margin: 0 6px;
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 600px) {
  .hero-title {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
  }

  .hero-title span {
    padding: 0 6px;
    margin: 0 4px;
  }

  .btn-hero,
  .btn-hero-ghost {
    padding: 14px 24px;
    font-size: 0.625rem;
  }

  .hero-cta {
    gap: 10px;
  }

  .statement-section {
    padding: 80px 0;
  }

  .statement-section::before {
    font-size: 20rem;
  }
}

/* ── BOOKING SUCCESS STATE ── */
.booking-success {
  text-align: center;
  padding: 60px 0;
}

.booking-success .success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.booking-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── SMOOTH IMAGE REVEAL ── */
.img-reveal {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 1s ease;
}

.img-reveal.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── SECTION PADDING RESPONSIVE ── */
@media (max-width: 768px) {
  .instagram-section {
    padding: 60px 24px;
  }
}

/* ── PREVENT LAYOUT SHIFT ── */
#hero-canvas {
  display: block;
}

/* ── ABOUT STAT SUB-TEXT ── */
.about-stat-sub {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 5px;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── REELS SECTION ── */
#reels {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reels-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 80px;
  text-align: center;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 64px 0 56px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  cursor: pointer;
}

.reel-card-img {
  width: 100%;
  height: 100%;
}

.reel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}

.reel-card:hover .reel-card-img img {
  transform: scale(1.05);
}

.reel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.85) 0%, rgba(8,6,4,0.3) 50%, rgba(8,6,4,0.15) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.4s ease;
}

.reel-card:hover .reel-card-overlay {
  background: linear-gradient(to top, rgba(8,6,4,0.9) 0%, rgba(8,6,4,0.5) 50%, rgba(8,6,4,0.25) 100%);
}

.reel-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,101,0.5);
  background: rgba(201,164,101,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.reel-card:hover .reel-play-btn {
  background: rgba(201,164,101,0.22);
  border-color: var(--gold);
  transform: scale(1.08);
}

.reel-card-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.75;
}

.reels-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .reels-section {
    padding: 80px 24px;
  }
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .reel-card {
    aspect-ratio: 4/5;
  }
}

/* ── FAQ SECTION ── */
#faq {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 80px;
}

.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--border);
}

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

.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.3s ease;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
}

.faq-a {
  padding: 0 0 28px;
  overflow: hidden;
}

.faq-a p {
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 680px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 24px;
  }
  .faq-q {
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════ */
#waFloat {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}
#waFloat.visible {
  opacity: 1;
  transform: scale(1);
}
#waFloat:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
#waFloat::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0;   }
}

/* ══════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════ */
#backTop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: rgba(8,6,4,0.85);
  backdrop-filter: blur(10px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
#backTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#backTop:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* ══════════════════════════════════════════════════════
   BEFORE & AFTER SLIDER
══════════════════════════════════════════════════════ */
#before-after {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ba-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 80px;
  text-align: center;
}

.ba-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 64px auto 0;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  user-select: none;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  inset: 0;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}

.ba-img--after {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream);
  background: rgba(8,6,4,0.6);
  padding: 5px 10px;
  border-radius: 2px;
  pointer-events: none;
}
.ba-img--before .ba-label { left: 20px; }
.ba-img--after  .ba-label { right: 20px; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  box-shadow: 0 2px 16px rgba(201,164,101,0.4);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}

@media (max-width: 768px) {
  .ba-section { padding: 80px 24px; }
  .ba-wrap { aspect-ratio: 2/3; }
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
#testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonials-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 80px;
  text-align: center;
}

.testimonials-carousel {
  margin-top: 64px;
  position: relative;
}

.testimonials-track {
  overflow: hidden;
}

.testimonial-card {
  padding: 56px 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  position: relative;
  display: none;
}
.testimonial-card.active {
  display: block;
}

.t-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
  display: block;
}

.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 36px;
}

.t-author {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bg-3);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(201,164,101,0.25);
}

.t-author > div:nth-child(2) { flex: 1 1 auto; }

.t-stars {
  flex: 0 0 auto;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.t-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.t-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-3);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.t-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.t-arrow:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.t-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials-section { padding: 80px 24px; }
  .testimonial-card { padding: 36px 28px; }
  .t-quote { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════════════
   PRICING / INVESTMENT
══════════════════════════════════════════════════════ */
#pricing { background: var(--bg-3); border-top: 1px solid var(--border); }

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 80px;
}

.pricing-intro {
  max-width: 540px;
  margin: 22px auto 0;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: rgba(8,6,4,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}

.pricing-card--featured {
  background: linear-gradient(160deg, rgba(201,164,101,0.10), rgba(8,6,4,0.6));
  border-color: var(--gold-dim);
  transform: translateY(-12px);
}
.pricing-card--featured:hover { transform: translateY(-18px); }

.pricing-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.6rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pricing-currency {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  align-self: flex-start;
  margin-top: 6px;
}
.pricing-suffix {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
  flex: 1;
}
.pricing-features li {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.pricing-cta {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--cream);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.pricing-cta:hover { color: var(--gold); border-color: var(--gold); }
.pricing-cta--gold { color: var(--gold); border-color: var(--gold); }

.pricing-footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.pricing-footnote a { color: var(--gold); border-bottom: 1px solid var(--gold-dim); }

@media (max-width: 900px) {
  .pricing-section { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════════════════
   FEATURED BRIDES
══════════════════════════════════════════════════════ */
#featured { background: var(--bg-2); border-top: 1px solid var(--border); }

.featured-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 80px;
}

.featured-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-card--reverse { direction: rtl; }
.featured-card--reverse > * { direction: ltr; }

.featured-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.featured-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.6rem;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.featured-name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 32px;
  padding-left: 18px;
  border-left: 2px solid var(--gold-dim);
}

.featured-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.featured-meta li {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: var(--text-2);
}
.featured-meta li span {
  display: inline-block;
  width: 60px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-right: 18px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .featured-section { padding: 80px 24px; }
  .featured-list { gap: 60px; margin-top: 48px; }
  .featured-card,
  .featured-card--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .featured-name { font-size: 2rem; }
}

/* ══════════════════════════════════════════════════════
   GALLERY FILTER TABS
══════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0 0;
}

.filter-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-2);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.filter-tab:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.filter-tab.active {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.moodboard-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.moodboard-item.hidden {
  display: none;
}

/* ══════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,0.95);
  cursor: pointer;
}

.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(85vw, 700px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lbImg {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  font-size: 2rem;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s ease;
  background: none;
  border: none;
}
.lb-close:hover { color: var(--gold); }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 3rem;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0 20px;
  transition: color 0.25s ease;
}
.lb-nav:hover { color: var(--gold); }
.lb-prev { left: 0; }
.lb-next { right: 0; }

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* Make gallery cards & moodboard items look clickable */
.gallery-card,
.moodboard-item {
  cursor: pointer;
}
.gallery-card:hover,
.moodboard-item:hover {
  border-color: var(--border-2);
}

/* ══════════════════════════════════════════════════════
   MOBILE FIXES
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Floating buttons — safe area + smaller */
  #waFloat {
    bottom: max(24px, env(safe-area-inset-bottom, 24px));
    right: 20px;
    width: 50px;
    height: 50px;
  }

  #backTop {
    bottom: max(24px, env(safe-area-inset-bottom, 24px));
    left: 20px;
    width: 40px;
    height: 40px;
  }

  /* Filter tabs — bigger tap targets */
  .filter-tab {
    padding: 10px 18px;
    font-size: 0.6rem;
    cursor: pointer;
  }

  /* Lightbox — full-width image, bigger tap targets */
  .lb-img-wrap {
    max-width: 95vw;
    max-height: 80vh;
  }
  #lbImg {
    max-height: 80vh;
  }
  .lb-close {
    top: 16px;
    right: 16px;
    font-size: 2.4rem;
    padding: 8px;
  }
  .lb-nav {
    font-size: 2.4rem;
    padding: 0 12px;
  }
  .lb-counter {
    bottom: 16px;
  }

  /* Testimonial arrows — pointer cursor on touch */
  .t-arrow,
  .t-dot {
    cursor: pointer;
  }
}

/* ══════════════════════════════════════════════════════
   BOOKING POPUP (fires 2.5s after load)
══════════════════════════════════════════════════════ */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.booking-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-inner {
  background: linear-gradient(135deg, #0f0b08 0%, #1a1208 100%);
  border: 1px solid rgba(201, 164, 101, 0.35);
  border-radius: 14px;
  padding: 44px 32px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 164, 101, 0.08) inset;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.booking-modal.visible .booking-modal-inner {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
}

.booking-modal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
}

.booking-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 12px;
}
.booking-modal-title em {
  color: var(--gold);
  font-style: italic;
}

.booking-modal-sub {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 24px;
}

.booking-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.booking-modal-form input {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 164, 101, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  min-height: 48px;
}
.booking-modal-form input::placeholder {
  color: var(--text-3);
}
.booking-modal-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
}

.booking-modal-submit {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  transition: background 0.2s, transform 0.15s;
}
.booking-modal-submit:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}
.booking-modal-submit:active {
  transform: translateY(0);
}

.booking-modal-skip {
  display: block;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
  padding: 8px;
  transition: color 0.2s;
}
.booking-modal-skip:hover {
  color: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .booking-modal-inner {
    padding: 36px 24px 28px;
  }
  .booking-modal-title {
    font-size: 1.65rem;
  }
}
