/* ============================================================
   LYDIA'S BRAIDING & WEAVING — styles.css v4
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --dark:       #111111;
  --dark-2:     #181818;
  --dark-mid:   #2E2E2E;
  --gold:       #C9A227;
  --gold-hi:    #E2B93B;
  --gold-pale:  #F5E7B2;
  --cream:      #FAF7F2;
  --ink:        #1A1A1A;
  --ink-soft:   #4A4A4A;
  --mid:        #888888;
  --white:      #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --max:        1200px;
  --nav-h:      72px;
  --radius:     8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ────────────────────────────────────────────── */
.section__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section__eyebrow.light { color: var(--gold-hi); }

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
.section__title em { font-style: italic; color: #8C6A00; }
.section__title.light { color: var(--white); }
.section__title.light em { color: var(--gold-hi); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold  { background: var(--gold); color: var(--dark); }
.btn--gold:hover { background: var(--gold-hi); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn--outline-dark {
  background: transparent;
  border: 1.5px solid var(--ink-soft);
  color: var(--ink);
}
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--mid);
  color: var(--ink-soft);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--ink); }

.btn--lg { padding: .9rem 2.25rem; font-size: .95rem; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.stuck { background: var(--dark); box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.nav__brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.nav__brand-sub  { font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color var(--transition); }
.nav__links a:hover { color: var(--gold); }

.nav__actions { display: flex; align-items: center; gap: 1.25rem; }
.nav__phone { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.7); transition: color var(--transition); }
.nav__phone:hover { color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.25rem; }
  .nav__phone { display: none; }
  .burger { display: flex; }
}

/* ════════════════════════════════════════════════════════
   HERO CAROUSEL
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}
.hero__track { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.hero__track.ready .hero__slide { transition: clip-path 1.15s cubic-bezier(.76,0,.24,1); }
.hero__slide.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); z-index: 2; }

.hero__slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}
.hero__slide.active .hero__slide-img { animation: kenBurns 12s ease-out forwards; }
@keyframes kenBurns {
  from { transform: scale(1.1); }
  to   { transform: scale(1) translate(1%, -.5%); }
}
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.08) 100%);
}

.hero__particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleDrift var(--dur, 8s) var(--delay, 0s) infinite;
}
@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  15%  { opacity: .7; }
  100% { opacity: 0; transform: translateY(-130px) scale(.4); }
}

.hero__copy {
  position: absolute;
  z-index: 10;
  left: 6%; bottom: 17%;
  max-width: 580px;
}
.hero__eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .75rem;
  transition: opacity .4s ease;
}
.hero__title.changing { opacity: 0; }
.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 420px;
  transition: opacity .4s ease;
}
.hero__sub.changing { opacity: 0; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__thumbs {
  position: absolute;
  z-index: 10;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.hero__thumb {
  width: 50px; height: 50px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  opacity: .45;
  border: 2px solid transparent;
  transition: all .3s ease;
}
.hero__thumb.active, .hero__thumb:hover { opacity: 1; border-color: var(--gold); }

.hero__bar {
  position: absolute;
  z-index: 10;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 6%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  gap: 1rem;
}
.hero__bar-left { display: flex; align-items: baseline; gap: .6rem; min-width: 80px; }
.hero__ghost { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: rgba(255,255,255,.06); line-height: 1; transition: opacity .35s; user-select: none; }
.hero__ghost.flip { opacity: 0; }
.hero__count { display: flex; align-items: baseline; gap: .2rem; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); }
#heroCur { font-size: 1.1rem; color: var(--gold); transition: opacity .35s; }
#heroCur.tick { opacity: 0; }
.hero__count-sep { color: rgba(255,255,255,.3); }

.hero__progress-wrap { flex: 1; height: 2px; background: rgba(255,255,255,.15); border-radius: 1px; overflow: hidden; }
.hero__progress-fill { height: 100%; width: 0; background: var(--gold); }

.hero__bar-right { display: flex; gap: .5rem; }
.hero__arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hero__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.hero__scroll-hint { position: absolute; z-index: 10; bottom: 70px; right: 2rem; display: flex; flex-direction: column; align-items: center; }
.hero__scroll-line { display: block; width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

@media (max-width: 768px) {
  .hero__thumbs { display: none; }
  .hero__copy { left: 5%; right: 5%; bottom: 14%; }
  .hero__scroll-hint { display: none; }
}

/* ════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════ */
.stats { background: var(--dark-2); padding: 1.5rem 2rem; }
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stats__item {
  flex: 1; min-width: 130px;
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: 1rem 1.5rem;
}
.stats__num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stats__num span { font-size: 1.4rem; }
.stats__label { font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.stats__divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

@media (max-width: 600px) {
  .stats__divider { display: none; }
  .stats__item { flex: 0 0 50%; }
}

/* ════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════ */
.about { background: var(--cream); padding: 6rem 2rem; }
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}
.about__photo {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

.about__body { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1rem; }
.about__pillars { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .6rem; }
.about__pillars li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--ink-soft); }
.pillar__icon { color: var(--gold); font-size: .7rem; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo { height: 300px; }
}

/* ════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════ */
.services { background: var(--dark); padding: 6rem 2rem; }
.services__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
  text-align: center;
}
.services__intro { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: .75rem; }

/* Tabs */
.svc__tabs {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 0;
}
.svc__tab {
  padding: .65rem 1.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.svc__tab:hover { color: rgba(255,255,255,.85); }
.svc__tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Panels */
.svc__panels { max-width: var(--max); margin: 0 auto; }
.svc__panel { display: none; }
.svc__panel.active { display: block; }

.svc__panel-body {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Small square thumbnail — fixed size, never large */
.svc__thumb {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.08);
}
.svc__thumb img { width: 100%; height: 100%; object-fit: cover; }

.svc__info { flex: 1; }
.svc__name {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}
.svc__desc { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; max-width: 520px; }

.svc__pricing { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.svc__price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.svc__size { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--gold); }
.svc__size-note { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .06em; }
.svc__note { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }

@media (max-width: 600px) {
  .svc__panel-body { flex-direction: column; gap: 1.5rem; }
  .svc__thumb { width: 100%; height: 200px; }
}

/* ════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════ */
.gallery { background: var(--cream); padding: 6rem 2rem; }
.gallery__head { max-width: var(--max); margin: 0 auto 2.5rem; text-align: center; }

.gallery__grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
}
.gallery__item { aspect-ratio: 1; overflow: hidden; border-radius: 6px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; pointer-events: none; }
.gallery__item:hover img { transform: scale(1.08); }

.gallery__cta { text-align: center; }

@media (max-width: 900px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════ */
.testimonials { background: var(--dark-2); padding: 6rem 2rem; overflow: hidden; }
.testimonials__head { max-width: var(--max); margin: 0 auto 3rem; text-align: center; }

.testi__track-wrap { max-width: var(--max); margin: 0 auto; overflow: hidden; }
.testi__track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi__card {
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi__stars { color: var(--gold); letter-spacing: .1em; }
.testi__quote { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.7; flex: 1; }
.testi__author { display: flex; flex-direction: column; gap: .15rem; }
.testi__author strong { color: var(--white); font-size: .9rem; }
.testi__author span { font-size: .78rem; color: var(--mid); }

.testi__nav {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.testi__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.testi__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.testi__dots { display: flex; gap: .5rem; }
.testi__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); transition: background var(--transition); }
.testi__dot.active { background: var(--gold); }

@media (max-width: 900px) { .testi__card { flex: 0 0 calc(50% - .75rem); } }
@media (max-width: 600px) { .testi__card { flex: 0 0 88%; } }

/* ════════════════════════════════════════════════════════
   INSTAGRAM
   ════════════════════════════════════════════════════════ */
.instagram { background: var(--cream); padding: 5rem 2rem; }
.instagram__head { max-width: var(--max); margin: 0 auto 2.5rem; text-align: center; }

.ig__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
}
.ig__item { aspect-ratio: 1; border-radius: 6px; overflow: hidden; position: relative; display: block; }
.ig__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig__item:hover img { transform: scale(1.08); }
.ig__item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  opacity: 0; transition: opacity var(--transition);
}
.ig__item:hover .ig__item-overlay { opacity: 1; }

.instagram__cta { text-align: center; margin-top: 2rem; }

@media (max-width: 900px) { .ig__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════
   BOOKING
   ════════════════════════════════════════════════════════ */
.book { background: var(--dark); padding: 6rem 2rem; }
.book__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.book__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin: .5rem 0 1rem;
}
.book__title em { font-style: italic; color: var(--gold-hi); }
.book__blurb { font-size: .95rem; color: rgba(255,255,255,.55); margin-bottom: 2rem; }

.book__contact-list { display: flex; flex-direction: column; gap: .9rem; }
.book__contact-item { display: flex; align-items: center; gap: .85rem; font-size: .9rem; color: rgba(255,255,255,.6); }
.book__contact-item span:first-child { color: var(--gold); font-size: 1rem; }
.book__contact-item a { color: var(--gold); }
.book__contact-item a:hover { color: var(--gold-hi); }

/* Steps indicator */
.book__steps {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.bstep {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bstep__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.bstep.active .bstep__dot { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.bstep.done .bstep__dot { background: rgba(201,162,39,.2); border-color: var(--gold); color: var(--gold); }
.bstep__label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); transition: color var(--transition); }
.bstep.active .bstep__label { color: var(--gold-hi); }
.bstep.done .bstep__label { color: rgba(255,255,255,.4); }
.bstep__line { flex: 1; height: 1px; background: rgba(255,255,255,.12); min-width: 24px; }

/* Form */
.book__form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 2.5rem;
}
.fstep { display: none; }
.fstep.active { display: block; }
.fstep__title { font-family: var(--ff-display); font-size: 1.6rem; color: var(--white); margin-bottom: 1.5rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.25); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input.error, .field select.error { border-color: #f08080; }
.field__err { font-size: .75rem; color: #f08080; min-height: 1rem; }
.field select option { background: var(--dark); color: var(--white); }
.field select optgroup { background: var(--dark-mid); color: var(--mid); font-size: .75rem; font-style: normal; }
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 90px; }

/* Service radio */
.svc__radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.25rem; }
.svc__radio {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.svc__radio:hover { border-color: rgba(201,162,39,.4); }
.svc__radio input { accent-color: var(--gold); }
.svc__radio:has(input:checked) { border-color: var(--gold); background: rgba(201,162,39,.08); color: var(--white); }

/* Step nav */
.step-nav { display: flex; justify-content: flex-end; margin-top: 1.5rem; }
.step-nav--split { justify-content: space-between; }

/* Summary card */
.summary-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.summary-card__label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.summary-card__row { display: flex; justify-content: space-between; font-size: .88rem; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.55); }
.summary-card__row:last-child { border-bottom: none; }
.summary-card__row strong { color: var(--white); }

/* Success state */
#fSuccess { text-align: center; padding: 2rem 0; }
.success__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--dark); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-weight: 700; }
.success__title { font-family: var(--ff-display); font-size: 1.8rem; color: var(--white); margin-bottom: .5rem; }
.success__body { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; }
.success__detail { font-size: .85rem; color: var(--gold); margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .book__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form__row { grid-template-columns: 1fr; }
  .svc__radio-group { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer { background: #0A0A0A; padding: 4rem 2rem 0; }
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo-name { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: .4rem; }
.footer__tagline { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; letter-spacing: .04em; }
.footer__social { display: flex; gap: .75rem; }
.footer__social a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__social a:hover { color: var(--gold); }

.footer__links h4, .footer__contact h4 { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__contact address { font-style: normal; font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: .6rem; }
.footer__phone { font-size: .95rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: 1rem; }
.footer__phone:hover { color: var(--gold-hi); }
.footer__hours p { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: .3rem; }
.footer__hours strong { color: rgba(255,255,255,.65); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Date constraints (JS sets min/max) ─────────────────── */
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.4); }

/* ════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.lightbox.open { display: flex; }

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  display: block;
}

.lightbox__caption {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  letter-spacing: .04em;
  text-align: center;
  min-height: 1.2em;
}

.lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,.7);
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
  z-index: 9001;
}
.lightbox__close:hover { color: var(--white); transform: rotate(90deg); }

.lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 9001;
}
.lightbox__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.lightbox__arrow--prev { left: 1.25rem; }
.lightbox__arrow--next { right: 1.25rem; }

.gallery__item { cursor: zoom-in; }

/* ════════════════════════════════════════════════════════
   MOBILE OPTIMISATION
   ════════════════════════════════════════════════════════ */

/* Snappy tap response — eliminates 300 ms click delay on mobile */
a, button, [role="tab"] { touch-action: manipulation; }

/* Comfortable touch targets */
.btn         { min-height: 44px; }
.svc__tab    { min-height: 44px; }
.hero__arrow { min-width: 44px; min-height: 44px; }
.testi__btn  { min-width: 44px; min-height: 44px; }
.burger      { min-width: 44px; min-height: 44px; }

@media (max-width: 600px) {
  /* Tighter section padding on phones */
  .about, .gallery, .testimonials, .instagram, .book { padding: 4rem 1.25rem; }
  .services { padding: 4rem 1.25rem; }

  /* Booking form: smaller padding so it breathes on small screens */
  .book__form-wrap { padding: 1.5rem 1.25rem; }

  /* Single-column form rows on phones */
  .form__row { grid-template-columns: 1fr; }

  /* Kill expensive blur on mobile — major perf win */
  .hero__bar  { backdrop-filter: none; background: rgba(0,0,0,.7); }
  .lightbox   { backdrop-filter: none; }

  /* Disable floating particles on mobile — not worth the CPU */
  .hero__particles { display: none; }

  /* Hero copy: give it more breathing room at the bottom */
  .hero__copy { bottom: 16%; left: 5%; right: 5%; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  /* Gallery: 2 columns on very small phones */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
  .book__form-wrap { padding: 1.25rem 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__slide          { transition: none !important; }
  .hero__slide-img      { animation: none !important; transform: scale(1) !important; }
  .hero-particle        { animation: none !important; display: none; }
  .hero__scroll-line    { animation: none !important; }
  .reveal               { opacity: 1 !important; transform: none !important; transition: none !important; }
  .testi__track         { transition: none !important; }
}
