/* =====================================================================
   Bridal Hair by Raya — Shared Styles
   Boho / clean / warm. Edit colors in the :root block below.
   ===================================================================== */

:root {
  /* --- Color palette (change these to re-skin the whole site) ---
     Raya's brand colours: white, dusty green, light grey.
     Bright, inviting, classy, elegant. --- */
  --cream:      #FFFFFF;   /* page background */
  --sand:       #F2F4F1;   /* light grey section background */
  --terracotta: #7F9077;   /* primary accent (buttons, links) - dusty green */
  --terra-dark: #63735C;   /* hover accent - deeper dusty green */
  --sage:       #A9B7A3;   /* secondary accent - pale dusty green */
  --clay:       #E0E5DD;   /* hairline borders / muted */
  --ink:        #2C302C;   /* main text - near-black */
  --muted:      #798177;   /* secondary text */
  --white:      #FFFFFF;

  /* --- Type --- */
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1160px;
  --radius: 2px;
  --shadow: 0 20px 55px rgba(46, 42, 38, 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .4em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); letter-spacing: 1px; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: .6px; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1.1em; }

a { color: var(--terracotta); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terra-dark); }

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: .68rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

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

section { padding: 92px 0; }
.section--sand { background: var(--sand); }

.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
  transition: all .2s ease;
}
.btn:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--terracotta); }
.btn--ghost:hover { background: var(--terracotta); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clay);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .5px;
  color: var(--ink);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)),
              radial-gradient(circle at 30% 30%, #F0F3EE, #D9E0D6 70%);
  background-size: cover;
  background-position: center;
}
.hero h1 { color: var(--ink); }
.hero .eyebrow { color: var(--muted); }
.hero p { color: var(--ink); font-size: 1.2rem; max-width: 560px; margin: 0 auto 2rem; }
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  text-align: center;
  padding: 110px 0 70px;
  background: var(--sand);
}
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--white);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .card-img { aspect-ratio: 4/3; background: linear-gradient(135deg,#d8c3aa,#b5764d); }
.card .card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .98rem; flex: 1; }
.card .btn { align-self: flex-start; margin-top: 14px; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg,#e3d3bd,#a9794f);
  box-shadow: var(--shadow);
}

/* ---------- Carousel ---------- */
.carousel { position: relative; max-width: 980px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.carousel-track { display: flex; transition: transform .5s ease; }
.slide {
  min-width: 100%;
  aspect-ratio: 16/10;
  position: relative;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-size: 1.6rem;
  background: linear-gradient(135deg,#E9EDE7,#BFC9BB);
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--ink);
  font-size: 1.3rem; line-height: 1;
  box-shadow: 0 4px 16px rgba(44,48,44,.10);
}
.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--clay); padding: 0;
}
.carousel-dots button.active { background: var(--terracotta); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 26px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
}
.price-card.featured { border-color: var(--terracotta); box-shadow: var(--shadow); }
.price-card h3 { margin-bottom: .2rem; }
.price-card .price { font-family: var(--font-head); font-size: 2.6rem; color: var(--terracotta); margin: 10px 0 4px; }
.price-card .price small { font-size: .9rem; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; text-align: left; }
.price-card li { padding: 8px 0 8px 26px; position: relative; color: var(--muted); font-size: .96rem; border-bottom: 1px solid var(--sand); }
.price-card li::before { content: "✦"; position: absolute; left: 0; color: var(--sage); }
.price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 20px; }

/* ---------- Booking: calendar + form ---------- */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

.calendar {
  background: var(--white);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  padding: 24px;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head .month { font-family: var(--font-head); font-size: 1.5rem; }
.cal-nav { background: var(--sand); border: 0; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; color: var(--ink); }
.cal-nav:hover { background: var(--clay); color: #fff; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal-weekdays span { text-align: center; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding: 6px 0; }
.cal-day {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: .92rem;
  border: 1px solid transparent;
}
.cal-day.empty { background: transparent; }
.cal-day.available { background: var(--sand); color: var(--ink); cursor: pointer; border-color: rgba(127,144,119,.35); }
.cal-day.available:hover { background: var(--sage); color: #fff; }
.cal-day.selected { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.cal-day.unavailable { color: #c3b6a6; text-decoration: line-through; }
.cal-day.past { color: #d3c9bb; }
.cal-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: .8rem; color: var(--muted); }
.cal-legend i { display: inline-block; width: 13px; height: 13px; border-radius: 3px; margin-right: 6px; vertical-align: -2px; }
.cal-legend .av { background: var(--sand); border: 1px solid rgba(127,144,119,.45); }
.cal-legend .un { background: #efe7db; }

/* ---------- Forms ---------- */
.lead-form { background: var(--white); border: 1px solid var(--clay); border-radius: var(--radius); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--clay); border-radius: var(--radius);
  background: var(--cream); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); }
.field textarea { resize: vertical; min-height: 110px; }
.field .req { color: var(--terracotta); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-msg { display: none; margin-top: 16px; padding: 16px; border-radius: var(--radius); background: var(--sand); border: 1px solid var(--clay); color: var(--ink); }
.form-msg.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9ddcf; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #e9ddcf; }
.site-footer a:hover { color: var(--clay); }
.site-footer .brand { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; font-size: .82rem; color: #A6ADA4; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Helpers ---------- */
.mt-0 { margin-top: 0; }
.narrow { max-width: 760px; }
.center .narrow { margin: 0 auto; }
.tag { display:inline-block; background: var(--sage); color:#fff; font-size:.68rem; letter-spacing:1.5px; text-transform:uppercase; padding:5px 12px; border-radius:20px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .split, .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--clay);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 460px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px; border-top: 1px solid var(--clay); }
  .nav-toggle { display: block; }
  section { padding: 64px 0; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}

/* =====================================================================
   Round 2 additions
   ===================================================================== */

/* Brand handle is longer — keep it tidy */
.brand { font-size: 1.25rem; white-space: nowrap; }
@media (max-width: 420px){ .brand { font-size: 1.05rem; } }

/* ---------- Elegant reveal-on-scroll (unhurried) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.15s cubic-bezier(.2,.7,.2,1), transform 1.15s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Looping video reel (marquee) ---------- */
.reel-section { padding-top: 0; }
.video-marquee { overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.video-track { display: flex; gap: 22px; width: max-content; animation: reelMarquee 60s linear infinite; }
.video-marquee:hover .video-track { animation-play-state: paused; }
@keyframes reelMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reel {
  position: relative; flex: 0 0 auto;
  width: 230px; aspect-ratio: 9/16;
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg,#EFF2ED,#BFC9BB);
}
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel .ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: #fff; font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .5px; text-align: center; padding: 14px;
}
.reel .ph .play { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.reel .ph small { font-family: var(--font-body); font-size: .68rem; letter-spacing: 1px; opacity: .85; text-transform: uppercase; }
@media (max-width: 540px){ .reel { width: 165px; } }

/* ---------- Calendar: booked (cancellation list) state ---------- */
.cal-day.booked { background: #efe2d4; color: var(--terra-dark); cursor: pointer; border: 1px dashed var(--terracotta); position: relative; }
.cal-day.booked:hover { background: var(--terracotta); color: #fff; }
.cal-legend .bk { background: #efe2d4; border: 1px dashed var(--terracotta); }

/* ---------- Inline notice banner inside forms ---------- */
.form-banner { display: none; margin-bottom: 18px; padding: 14px 16px; border-radius: var(--radius); background: #f6ecdf; border: 1px solid var(--terracotta); color: var(--terra-dark); font-size: .92rem; }
.form-banner.show { display: block; }

/* ---------- Minimum / flat-rate callout ---------- */
.note-card { background: var(--white); border: 1px solid var(--clay); border-left: 4px solid var(--sage); border-radius: var(--radius); padding: 22px 26px; margin-top: 26px; text-align: left; }
.note-card strong { color: var(--ink); }
.placeholder-price { color: var(--terracotta); border-bottom: 2px dotted var(--terracotta); }

/* Form error state (Formspree failures) */
.form-msg.error { background: #f7e7e2; border-color: #c98a73; color: #8a4a35; }

/* =====================================================================
   Round 3 — Signature motion & editorial layer
   Cross-page "veil" transitions · editorial hero · look book ·
   film grain · cursor halo · real-photo slots
   ===================================================================== */

/* ---------- Cross-document page transitions (View Transitions API) ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtVeilOut .4s cubic-bezier(.55,0,.55,.2) both; }
::view-transition-new(root) { animation: vtVeilIn .65s cubic-bezier(.16,.8,.3,1) both; }
@keyframes vtVeilOut { to { opacity: 0; transform: translateY(-16px); filter: blur(10px); } }
@keyframes vtVeilIn { from { opacity: 0; transform: translateY(20px); filter: blur(12px); } }
.site-header { view-transition-name: site-header; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* JS fade fallback for browsers without cross-document view transitions */
.js-fade body { animation: pageIn .7s cubic-bezier(.16,.8,.3,1) both; }
.js-fade body.leaving { opacity: 0; transform: translateY(-12px); transition: opacity .38s ease, transform .38s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } }

/* ---------- Film grain (editorial texture) ---------- */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035; animation: grainShift 9s steps(6) infinite;
}
@keyframes grainShift { 0%{transform:translate(0,0)} 50%{transform:translate(4%,-6%)} 100%{transform:translate(0,0)} }
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

/* ---------- Editorial hero (photo triptych) ---------- */
.hero--editorial { overflow: hidden; background: var(--white); }
.hero-panels { position: absolute; inset: -6% 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; z-index: 0; }
.hero-panels .panel { overflow: hidden; }
.hero-panels img { width: 100%; height: 100%; object-fit: cover; }
.hero--editorial::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(255,255,255,.74), rgba(255,255,255,.58) 55%, rgba(255,255,255,.82));
}
.hero--editorial .container { position: relative; z-index: 2; }
.badge-booking {
  display: inline-block; margin-bottom: 22px; padding: 8px 18px;
  border: 1px solid var(--clay); border-radius: 30px;
  font-size: .70rem; letter-spacing: 4px; text-transform: uppercase; color: var(--muted);
  backdrop-filter: blur(3px); background: rgba(255,255,255,.72);
}
.hero .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero .word-inner { display: inline-block; }

/* ---------- Stats strip ---------- */
.stats { display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: var(--terracotta); line-height: 1; }
.stat .lbl { margin-top: 8px; font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }

/* ---------- Look book (horizontal, snap + drag) ---------- */
.lookbook-wrap { -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.lookbook {
  display: flex; gap: 20px; overflow-x: auto; padding: 12px 40px 28px;
  scroll-snap-type: x mandatory; cursor: grab;
  scrollbar-width: none;
}
.lookbook::-webkit-scrollbar { display: none; }
.lookbook.dragging { cursor: grabbing; scroll-snap-type: none; }
.look {
  position: relative; flex: 0 0 min(300px, 72vw); aspect-ratio: 9/15;
  border-radius: 2px; overflow: hidden; scroll-snap-align: center;
  box-shadow: var(--shadow); background: var(--sand);
}
.look img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.look:hover img { transform: scale(1.06); }
.look figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 18px 16px;
  color: #fff; font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .5px;
  background: linear-gradient(transparent, rgba(44,48,44,.68));
  opacity: 0; transform: translateY(10px); transition: opacity .5s, transform .5s;
}
.look:hover figcaption { opacity: 1; transform: none; }

/* ---------- Real photos inside existing slots ---------- */
.split .media { overflow: hidden; position: relative; }
.split .media img, .card .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .card-img { overflow: hidden; }
.card .card-img img { transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-img img { transform: scale(1.05); }
.reel img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Header polish on scroll ---------- */
.site-header { transition: box-shadow .4s; }
.site-header.scrolled { box-shadow: 0 8px 28px rgba(44,48,44,.06); }

/* ---------- Cursor halo (fine pointers only) ---------- */
.cursor-halo {
  position: fixed; left: 0; top: 0; width: 34px; height: 34px; z-index: 2001;
  border: 1px solid rgba(127,144,119,.6); border-radius: 50%;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width .3s, height .3s, opacity .3s, border-color .3s;
  opacity: 0;
}
.cursor-halo.on { opacity: 1; }
.cursor-halo.active { width: 58px; height: 58px; border-color: rgba(44,48,44,.55); }
@media (pointer: coarse) { .cursor-halo { display: none; } }

@media (max-width: 700px) {
  .hero-panels { grid-template-columns: repeat(2, 1fr); }
  .hero-panels .panel:nth-child(3) { display: none; }
  .stats { gap: 26px 34px; }
}

/* =====================================================================
   Round 4 — Mobile flow & touch polish
   ===================================================================== */
html { -webkit-tap-highlight-color: transparent; }
.lookbook img { user-select: none; -webkit-user-select: none; }

/* Use small-viewport units so iOS Safari's address bar doesn't cause jumps */
@supports (height: 100svh) {
  .hero { min-height: 88svh; }
  @media (max-width: 540px) { .hero { min-height: 84svh; } }
}

@media (max-width: 700px) {
  body::after { animation: none; }              /* static grain — battery/perf */
  .hero--editorial .container { padding-top: 40px; padding-bottom: 40px; }
  .badge-booking { font-size: .64rem; padding: 7px 14px; letter-spacing: 2.2px; }
  .hero p { font-size: 1.08rem; }
  .btn-row .btn { padding: 14px 26px; }
  .lookbook { padding: 12px 22px 24px; gap: 14px; }
  .look figcaption { opacity: 1; transform: none; } /* captions visible without hover */
  .stat .num { font-size: 2.3rem; }
  .stat .lbl { font-size: .66rem; letter-spacing: 2px; }
}

/* Comfortable tap targets in the mobile menu */
@media (max-width: 900px) {
  .nav-links .nav-cta { display: inline-block; margin: 14px auto; width: auto; }
}

/* ---------- Editorial neutral refinements (2026-09 re-skin) ----------
   Her photos sit on white backgrounds. On a white page they would bleed
   into it, so every image gets a hairline edge and a touch more air. */

.card img,
.carousel-viewport,
.feature img,
.look img,
.reel img {
  border: 1px solid var(--clay);
  background: var(--sand);
}

section { padding: 104px 0; }

.section--sand { border-top: 1px solid var(--clay); border-bottom: 1px solid var(--clay); }

.card { border: 1px solid var(--clay); }
.card:hover { transform: translateY(-3px); }

/* Hero buttons must stay legible over bright photography */
.hero .btn--ghost {
  background: rgba(255,255,255,.75);
  color: var(--ink);
  border-color: var(--ink);
  backdrop-filter: blur(4px);
}
.hero .btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.hero .btn--light { background: var(--ink); color: var(--white); border-color: var(--ink); }
.hero .btn--light:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

/* ---------- Reviews (2026-09 — replaces the look book and reel) ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  text-align: left;
  margin-top: 44px;
}
.review-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  background: var(--sand);
}
.review-card blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
}
.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .9rem;
  color: var(--muted);
  margin-top: auto;
}
.review-stars { color: var(--terracotta); letter-spacing: 2px; font-size: .95rem; }
.review-name { font-weight: 500; color: var(--ink); letter-spacing: .4px; }
.review-date { font-size: .82rem; }

.review-empty {
  color: var(--muted);
  font-style: italic;
  margin-top: 36px;
}

.review-form-wrap {
  background: var(--sand);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  padding: 34px;
  text-align: left;
}
.review-form label { display: block; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin: 0 0 7px; font-weight: 500; }
.review-form input[type="text"],
.review-form input[type="email"],
.review-form input[type="date"],
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}
.review-form textarea { resize: vertical; }
.review-form input[type="file"] { font-family: var(--font-body); font-size: .95rem; color: var(--muted); }
.review-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
@media (max-width: 640px) {
  .review-form .form-row { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 24px; }
}

/* ---------- Two-photo editorial band (weddings page) ---------- */
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.photo-pair figure { margin: 0; }
.photo-pair img { width: 100%; height: auto; display: block; border: 1px solid var(--clay); }
.photo-pair figcaption { font-size: .85rem; color: var(--muted); padding-top: 10px; letter-spacing: .02em; }
@media (max-width: 760px) { .photo-pair { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Price list (weddings) ---------- */
.price-list { list-style: none; padding: 0; max-width: 560px; margin: 0 auto; text-align: left; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 13px 2px; border-bottom: 1px solid var(--clay); font-size: 1.02rem; }
.price-list li span:last-child { font-family: var(--font-head); font-size: 1.15rem; color: var(--terra-dark); white-space: nowrap; }

/* ---------- Booking form without the calendar ---------- */
.booking-grid--solo { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }

/* ---------- Story: photo beside on desktop, text first on phones ---------- */
@media (max-width: 900px) { .split--story .media { order: 2; } }
