/* ═══════════════════════════════════════════════════════════════════
   Jenna Wilson Hair — Main Stylesheet
   Design: Luxury cream/gold editorial
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F7F0E8;
  --cream2:   #EFE5D6;
  --warm:     #DDD0BC;
  --gold:     #C2965A;
  --gold2:    #A87C42;
  --blush:    #C9908A;
  --charcoal: #2A2220;
  --dark:     #1A1210;
  --mid:      #5C4B45;
  --light:    #8C7B74;
  --white:    #FDFAF6;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', sans-serif;
  --ff-script:'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── CUSTOM CURSOR ──────────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
  opacity: .7;
}
body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--blush); opacity: 1; }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 6vw; }
section { position: relative; }

/* ── NAVIGATION ─────────────────────────────────────────────────── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 80px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}
nav#mainNav.scrolled {
  background: rgba(247,240,232,.96);
  box-shadow: 0 1px 0 rgba(42,34,32,.08);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 400;
  color: var(--white); display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-text em {
  font-family: var(--ff-script); font-style: normal;
  font-size: .85rem; color: var(--gold); letter-spacing: .1em;
}
nav#mainNav.scrolled .nav-logo-text { color: var(--charcoal); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-link {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); position: relative; transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
nav#mainNav.scrolled .nav-link { color: var(--charcoal); }
.nav-book {
  background: var(--charcoal) !important; color: var(--cream) !important;
  padding: .5rem 1.4rem; font-size: .76rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  transition: background .3s;
}
.nav-book:hover { background: var(--gold) !important; color: var(--white) !important; }
nav:not(.scrolled) .nav-book {
  background: rgba(255,255,255,.15) !important; color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.4) !important;
}
nav:not(.scrolled) .nav-book:hover { background: var(--white) !important; color: var(--charcoal) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all .3s;
}
nav#mainNav.scrolled .nav-hamburger span { background: var(--charcoal); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(26,18,16,.5);
  z-index: 99; opacity: 0; transition: opacity .3s;
}
.nav-overlay.show { opacity: 1; }

/* Float Book Button */
.float-book {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  display: flex; align-items: center; gap: .7rem;
  background: var(--gold); color: var(--white);
  font-family: var(--ff-sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.6rem;
  box-shadow: 0 8px 32px rgba(194,150,90,.45);
  transition: background .3s, transform .3s, opacity .3s;
  opacity: 0; transform: translateY(10px);
}
.float-book.show { opacity: 1; transform: translateY(0); }
.float-book:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── SHARED ELEMENTS ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--ff-sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title { font-family: var(--ff-serif); font-weight: 300; line-height: 1.1; color: var(--charcoal); }
.section-title em { font-style: italic; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--white);
  font-family: var(--ff-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.2rem; transition: background .3s, transform .3s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--white); font-family: var(--ff-sans); font-size: .78rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 3px;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--charcoal); color: var(--cream);
  font-family: var(--ff-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 2rem; transition: background .3s;
}
.btn-dark:hover { background: var(--gold); }
.btn-arrow { font-size: 1.1em; transition: transform .3s; }
.btn-dark:hover .btn-arrow { transform: translateX(4px); }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--gold); color: var(--white);
  font-family: var(--ff-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  border: none; padding: 1rem 2rem; cursor: pointer;
  transition: background .3s;
}
.btn-gold:hover { background: var(--gold2); }
.btn-gold-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--white);
  font-family: var(--ff-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  border: none; padding: 1rem 2rem; cursor: pointer; width: 100%;
  justify-content: center; transition: background .3s;
}
.btn-gold-submit:hover { background: var(--gold2); }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s, transform .8s; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 700px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-slides { position: absolute; inset: 0; background: var(--dark); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s; overflow: hidden; }
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: .78;
  /* Start at normal scale — zooms IN slowly when active (not out, which looks like drifting) */
  transform: scale(1.0);
  transition: transform 0s;
}
.hero-slide.active img {
  transform: scale(1.06);
  transition: transform 6s ease-out;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,18,16,0) 30%, rgba(26,18,16,.55) 70%, rgba(26,18,16,.88) 100%);
}
.hero-dots {
  position: absolute; bottom: 2.5rem; left: 8vw; display: flex; gap: .5rem; z-index: 3;
}
.hero-dot {
  width: 24px; height: 2px; background: rgba(255,255,255,.35);
  border: none; cursor: pointer; transition: background .3s, width .3s; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 40px; }
.hero-content { position: relative; z-index: 2; padding: 0 8vw 8vh; max-width: 1400px; width: 100%; }
.hero-eyebrow {
  font-size: .72rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp .8s .3s forwards;
}
.hero-h1 {
  font-family: var(--ff-serif); font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300; line-height: 1; color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px); animation: fadeUp 1s .5s forwards;
}
.hero-h1 em { font-style: italic; color: var(--cream); }
.hero-sub {
  font-size: .95rem; font-weight: 300; color: rgba(253,250,246,.78);
  max-width: 460px; line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp .8s .8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.8rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp .8s 1s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; right: 8vw; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(253,250,246,.5); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; animation: fadeUp .8s 1.4s forwards;
}
.scroll-line { width: 1px; height: 40px; background: rgba(253,250,246,.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 1px; height: 40px;
  background: var(--gold); animation: scrollDrop 1.8s ease infinite 1.8s;
}

/* ── TICKER ──────────────────────────────────────────────────────── */
.ticker { background: var(--charcoal); color: var(--cream2); padding: .85rem 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  font-family: var(--ff-serif); font-size: 1rem; font-style: italic; letter-spacing: .06em; padding: 0 2rem;
}
.ticker-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── ABOUT (homepage) ────────────────────────────────────────────── */
.about { padding: 9rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s; }
.about-image-frame:hover img { transform: scale(1.04); }
.about-image-accent { position: absolute; bottom: -2rem; right: -2rem; width: 55%; aspect-ratio: 1; background: var(--cream2); z-index: -1; }
.about-tag {
  position: absolute; top: 2rem; left: -1.5rem; z-index: 2;
  background: var(--charcoal); color: var(--cream);
  padding: 1rem 1.4rem; font-family: var(--ff-serif); font-size: 1.1rem; font-style: italic; font-weight: 300; line-height: 1.4; max-width: 200px;
}
.about-tag span { display: block; font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-style: normal; margin-bottom: .4rem; }
.about-text .section-title { font-size: clamp(2.2rem,4vw,3.5rem); margin-bottom: 1.8rem; }
.about-body { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 1.4rem; }
.about-body strong { font-weight: 500; color: var(--charcoal); }
.about-credentials {
  display: flex; gap: 2.5rem; margin: 2.5rem 0; padding: 2rem 0;
  border-top: 1px solid var(--cream2); border-bottom: 1px solid var(--cream2);
}
.cred-num { font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.cred-label { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--light); margin-top: .3rem; }

/* ── SERVICES (homepage) ─────────────────────────────────────────── */
.services { padding: 9rem 0; background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.services-header .section-title { font-size: clamp(2.5rem,5vw,4.5rem); max-width: 480px; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5px; background: var(--warm); }
.service-card {
  background: var(--cream); padding: 3.5rem 3rem;
  display: flex; flex-direction: column; gap: 1.5rem; transition: background .4s; overflow: hidden;
}
.service-card:hover { background: var(--charcoal); }
.service-card-image { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg,#e8e4de,#d8d4cc); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .4s; filter: grayscale(20%); }
.service-card:hover .service-card-image img { transform: scale(1.06); filter: grayscale(0%); }
.service-num { font-family: var(--ff-serif); font-size: .85rem; font-style: italic; color: var(--gold); }
.service-name { font-family: var(--ff-serif); font-size: 1.9rem; font-weight: 400; color: var(--charcoal); line-height: 1.1; transition: color .3s; }
.service-card:hover .service-name { color: var(--cream); }
.service-desc { font-size: .9rem; font-weight: 300; color: var(--mid); line-height: 1.8; flex: 1; transition: color .3s; }
.service-card:hover .service-desc { color: rgba(239,229,214,.7); }
.service-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap .3s; }
.service-link:hover { gap: 1rem; }
.service-card-wide { grid-column: span 2; }
.service-card-wide-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.service-card-wide-inner--reverse { grid-template-columns: 1fr 1.2fr; }
.service-card-wide-text { display: flex; flex-direction: column; gap: 1.2rem; }

/* ── WHY JENNA ───────────────────────────────────────────────────── */
.why { padding: 9rem 0; background: var(--charcoal); overflow: hidden; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.why-image-collage { position: relative; height: 580px; }
.collage-img { position: absolute; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); background: linear-gradient(135deg,#d0cec8,#c4c2bc); }
.collage-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.collage-img:hover img { transform: scale(1.04); }
.collage-1 { top: 0; left: 5%; width: 62%; aspect-ratio: 3/4; }
.collage-2 { bottom: 0; right: 0; width: 52%; aspect-ratio: 4/5; }
.collage-badge {
  position: absolute; top: 50%; left: 52%; transform: translate(-50%,-50%);
  width: 100px; height: 100px; background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10;
  box-shadow: 0 8px 30px rgba(194,150,90,.5);
}
.collage-badge-num { font-family: var(--ff-serif); font-size: 1.9rem; font-weight: 300; color: var(--white); line-height: 1; }
.collage-badge-text { font-size: .6rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); text-align: center; line-height: 1.3; }
.why-text .section-title { font-size: clamp(2rem,3.5vw,3rem); color: var(--cream); margin-bottom: 2.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.6rem; }
.why-item { display: flex; gap: 1.4rem; align-items: flex-start; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(221,208,188,.12); }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(194,150,90,.4); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
.why-item-title { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 400; color: var(--cream); margin-bottom: .3rem; }
.why-item-desc { font-size: .88rem; font-weight: 300; color: rgba(221,208,188,.6); line-height: 1.7; }

/* ── REVIEWS (homepage carousel) ────────────────────────────────── */
.reviews { padding: 9rem 0; background: var(--white); overflow: hidden; }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.reviews-header .section-title { font-size: clamp(2rem,4vw,3.5rem); }
.stars { color: var(--gold); font-size: .9rem; }
.review-track-wrap { overflow: hidden; margin: 0 -6vw; padding: 0 6vw; }
.review-track { display: flex; gap: 1.5rem; overflow-x: auto; scrollbar-width: none; padding-bottom: 2rem; scroll-snap-type: x mandatory; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { flex-shrink: 0; width: 380px; background: var(--cream); padding: 2.5rem; scroll-snap-align: start; transition: transform .3s; }
.review-card:hover { transform: translateY(-4px); }
.review-quote-mark { font-family: var(--ff-serif); font-size: 5rem; font-weight: 300; color: var(--warm); line-height: .6; margin-bottom: 1rem; display: block; }
.review-text { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.8rem; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.review-name { font-size: .85rem; font-weight: 500; color: var(--charcoal); letter-spacing: .04em; }
.review-verified { font-size: .7rem; font-weight: 400; color: var(--light); letter-spacing: .06em; }
.review-nav { display: flex; gap: .8rem; }
.review-btn { width: 48px; height: 48px; border: 1px solid var(--warm); background: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .3s, border-color .3s; }
.review-btn:hover { background: var(--charcoal); border-color: var(--charcoal); }
.review-btn svg { width: 16px; height: 16px; stroke: var(--charcoal); transition: stroke .3s; }
.review-btn:hover svg { stroke: var(--cream); }

/* ── BOOKING CTA ─────────────────────────────────────────────────── */
.booking-cta { padding: 12rem 0; background: var(--cream2); position: relative; overflow: hidden; text-align: center; }
.booking-cta-bg { position: absolute; inset: 0; background: url('https://jennawilsonhair.com/wp-content/uploads/2026/01/IMG_0756.jpg') center/cover; opacity: .08; }
.booking-cta-title { font-family: var(--ff-serif); font-size: clamp(3rem,7vw,7rem); font-weight: 300; color: var(--charcoal); line-height: 1; margin: 1rem 0 1.5rem; }
.booking-cta-title em { font-style: italic; color: var(--gold); }
.booking-cta-sub { font-size: 1rem; font-weight: 300; color: var(--mid); max-width: 480px; margin: 0 auto 3rem; line-height: 1.8; }

/* ── CONTACT (homepage mini) ─────────────────────────────────────── */
.contact { padding: 8rem 0; background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 5rem; align-items: start; }
.contact .section-title { font-size: clamp(2rem,3.5vw,3rem); color: var(--cream); margin-bottom: 1.5rem; }
.contact-intro { font-size: .95rem; font-weight: 300; color: rgba(239,229,214,.6); line-height: 1.9; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-detail a { display: flex; align-items: center; gap: .9rem; color: rgba(239,229,214,.7); font-size: .9rem; font-weight: 300; text-decoration: none; transition: color .3s; }
.contact-detail a:hover { color: var(--gold); }
.contact-col-title { font-family: var(--ff-sans); font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(194,150,90,.25); }
.hours-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.hours-item { display: flex; justify-content: space-between; align-items: center; font-size: .88rem; font-weight: 300; color: rgba(239,229,214,.65); padding-bottom: .9rem; border-bottom: 1px solid rgba(221,208,188,.08); }
.hours-item:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { font-weight: 400; color: rgba(239,229,214,.85); }
.hours-closed { color: rgba(239,229,214,.3); font-style: italic; }
.hours-open { color: rgba(194,150,90,.9); }

/* ── INNER PAGES ─────────────────────────────────────────────────── */
.jw-inner-page { padding-top: 80px; } /* offset for fixed nav */
.inner-hero {
  padding: 6rem 0 4rem;
  background: var(--charcoal);
  position: relative;
}
.inner-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(to right, var(--gold), transparent);
}
.inner-hero-title {
  font-family: var(--ff-serif); font-size: clamp(3rem,6vw,5rem);
  font-weight: 300; color: var(--white); letter-spacing: -.01em;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────── */
.about-page-intro { padding: 6rem 0; background: var(--white); }
.about-page-intro-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.about-page-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; }
.about-page-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-page-bio h2 { font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 300; margin-bottom: 1.5rem; }
.about-page-bio p { font-size: 1rem; line-height: 1.9; color: var(--mid); font-weight: 300; }
.about-page-main { padding: 6rem 0; background: var(--cream); }
.about-page-content h3 { font-family: var(--ff-sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.about-page-content h2 { font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 300; margin-bottom: 2rem; }
.about-page-content p { font-size: 1rem; line-height: 1.9; color: var(--mid); font-weight: 300; margin-bottom: 1.2rem; }
.about-page-cta { padding: 5rem 0; background: var(--charcoal); text-align: center; }
.about-cta-box h2 { font-family: var(--ff-serif); font-size: 2rem; font-weight: 300; color: var(--cream); margin-bottom: 1rem; }
.about-cta-box p { font-size: 1rem; color: rgba(239,229,214,.7); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.about-page-why { padding: 6rem 0; background: var(--white); text-align: center; }
.about-why-title { font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 300; margin-bottom: 1rem; }
.about-why-sub { color: var(--mid); max-width: 600px; margin: 0 auto 4rem; line-height: 1.8; }
.about-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.about-why-item { padding: 2rem; }
.about-why-icon { width: 60px; height: 60px; margin: 0 auto 1.2rem; }
.about-why-icon img { width: 100%; height: 100%; object-fit: contain; }
.about-why-item h4 { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 400; margin-bottom: .8rem; }
.about-why-item p { font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* ── SERVICES PAGE ───────────────────────────────────────────────── */
.services-page { padding: 6rem 0; background: var(--white); }
.services-page-header { text-align: center; margin-bottom: 5rem; }
.services-page-header h2 { font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 300; }
.services-page-grid { display: flex; flex-direction: column; gap: 6rem; }
.services-page-item { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.services-page-item--reverse { direction: rtl; }
.services-page-item--reverse > * { direction: ltr; }
.services-page-item-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream2); }
.services-page-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.services-page-item:hover .services-page-item-img img { transform: scale(1.04); }
.services-page-item-content h3 { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 300; margin-bottom: 1.2rem; }
.services-page-item-content p { font-size: 1rem; color: var(--mid); line-height: 1.9; font-weight: 300; margin-bottom: 2rem; }
.services-page-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--charcoal); color: var(--cream);
  font-family: var(--ff-sans); font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  padding: .8rem 1.8rem; transition: background .3s;
}
.services-page-btn:hover { background: var(--gold); }

/* ── REVIEWS PAGE ────────────────────────────────────────────────── */
.reviews-page { padding: 6rem 0; background: var(--white); }
.reviews-page-note { font-style: italic; color: var(--light); margin-bottom: 3rem; padding: 1rem; background: var(--cream); border-left: 3px solid var(--gold); }
.reviews-page-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.review-card-page { background: var(--cream); padding: 2.5rem; }
.review-card-page-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; }
.review-card-page-text { font-family: var(--ff-serif); font-style: italic; font-size: 1rem; line-height: 1.8; color: var(--charcoal); margin-bottom: 1.5rem; }
.review-card-page-author { display: flex; align-items: center; gap: .8rem; }

/* ── BOOKING PAGE ────────────────────────────────────────────────── */
.booking-section { padding: 4rem 0 6rem; background: var(--white); }
.booking-intro { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.booking-intro a { color: var(--gold); }
.square-widget-wrap { min-height: 600px; }

/* ── CONTACT PAGE ────────────────────────────────────────────────── */
.contact-page-section { padding: 6rem 0; background: var(--white); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.contact-page-heading { font-family: var(--ff-serif); font-size: 2rem; font-weight: 300; margin-bottom: 1rem; }
.contact-page-sub { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .9rem; color: var(--mid); }
.contact-info-list a { color: var(--charcoal); text-decoration: none; transition: color .3s; }
.contact-info-list a:hover { color: var(--gold); }
.contact-hours-title { font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.contact-hours-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.contact-hours-list li { font-size: .88rem; color: var(--mid); }
.contact-hours-list strong { color: var(--charcoal); }
/* WPForms & fallback form styling */
.jw-contact-form, .wpforms-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-note { font-size: .82rem; color: var(--light); font-style: italic; background: var(--cream); padding: 1rem; border-left: 3px solid var(--gold); }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 500; letter-spacing: .08em; color: var(--mid); text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--cream); border: 1px solid var(--warm);
  color: var(--charcoal); font-family: var(--ff-sans); font-size: .9rem;
  padding: .8rem 1rem; width: 100%; outline: none; transition: border-color .3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
/* WPForms overrides to match our design */
.wpforms-form .wpforms-field-label { font-size: .78rem !important; font-weight: 500 !important; letter-spacing: .08em !important; color: var(--mid) !important; text-transform: uppercase !important; }
.wpforms-form input[type=text], .wpforms-form input[type=email], .wpforms-form input[type=tel], .wpforms-form input[type=date], .wpforms-form input[type=time], .wpforms-form textarea, .wpforms-form select {
  background: var(--cream) !important; border: 1px solid var(--warm) !important;
  color: var(--charcoal) !important; font-family: var(--ff-sans) !important; font-size: .9rem !important;
  padding: .8rem 1rem !important; border-radius: 0 !important; box-shadow: none !important;
}
.wpforms-form input:focus, .wpforms-form textarea:focus { border-color: var(--gold) !important; }
.wpforms-form .wpforms-submit {
  background: var(--gold) !important; color: var(--white) !important;
  font-family: var(--ff-sans) !important; font-size: .78rem !important;
  font-weight: 500 !important; letter-spacing: .18em !important; text-transform: uppercase !important;
  border: none !important; padding: 1rem 2rem !important; cursor: pointer !important; border-radius: 0 !important;
  transition: background .3s !important;
}
.wpforms-form .wpforms-submit:hover { background: var(--gold2) !important; }

/* ── FOOTER: INSTAGRAM SECTION ───────────────────────────────────── */
.footer-instagram { background: var(--cream2); padding: 3rem 0 0; }
.footer-instagram .sbi_header { border-bottom: 1px solid var(--warm); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }

/* ── FOOTER MAIN ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--cream2); padding: 5rem 0 0; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 6vw 3rem; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 4rem; }
.footer-col-title { font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(194,150,90,.25); }
.footer-logo-img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 1.5rem; }
.footer-desc { font-size: .85rem; font-weight: 300; color: rgba(239,229,214,.6); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-insta-link { display: flex; align-items: center; gap: .5rem; color: rgba(239,229,214,.5); font-size: .8rem; text-decoration: none; transition: color .3s; }
.footer-insta-link:hover { color: var(--gold); }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-nav a { font-size: .85rem; color: rgba(239,229,214,.6); text-decoration: none; transition: color .3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .82rem; color: rgba(239,229,214,.6); }
.footer-contact-list a { color: rgba(239,229,214,.6); text-decoration: none; transition: color .3s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 3px; fill: var(--gold); }
.footer-hours-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-hours-list li { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(239,229,214,.6); padding-bottom: .7rem; border-bottom: 1px solid rgba(221,208,188,.08); }
.footer-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.footer-hours-list .day { color: rgba(239,229,214,.85); font-weight: 400; }
.footer-hours-list .closed { color: rgba(239,229,214,.3); font-style: italic; }
.footer-hours-list .hours { color: rgba(194,150,90,.9); }
.footer-bottom { border-top: 1px solid rgba(221,208,188,.1); padding: 1.5rem 6vw; max-width: 1320px; margin: 0 auto; }
.footer-bottom p { font-size: .75rem; color: rgba(239,229,214,.3); letter-spacing: .06em; }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollDrop { 0% { top: -40px; opacity: 0; } 30% { opacity: 1; } 70% { opacity: 1; } 100% { top: 40px; opacity: 0; } }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-why-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .services-page-item { gap: 3rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤900px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Base */
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  /* Nav — slide-in drawer */
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; bottom: 0;
    right: -110%; /* off screen — more reliable than transform on mobile Safari */
    width: min(300px, 80vw);
    background: var(--dark); padding: 90px 2rem 2rem;
    z-index: 200;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; gap: .3rem;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-link {
    color: var(--cream) !important; font-size: 1rem !important; letter-spacing: .1em;
    padding: 1rem 0; display: block; border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--gold) !important; }
  .nav-book {
    display: block; text-align: center; margin-top: 1.5rem !important;
    padding: 1rem !important; background: var(--gold) !important; color: var(--white) !important;
    border: none !important;
  }
  .nav-hamburger { display: flex; z-index: 101; }
  .nav-overlay { display: block; }

  /* Float button — smaller on mobile */
  .float-book { font-size: .66rem; padding: .75rem 1.2rem; bottom: 1.2rem; right: 1.2rem; }

  /* Hero */
  .hero { height: 100svh; min-height: 600px; }
  .hero-content { padding: 0 6vw 10vh; }
  .hero-h1 { font-size: clamp(2.8rem, 10vw, 5rem); margin-bottom: 1rem; }
  .hero-sub { font-size: .88rem; max-width: 100%; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .hero-scroll-hint { display: none; }
  .hero-dots { left: 6vw; bottom: 1.8rem; }

  /* Ticker */
  .ticker-item { font-size: .88rem; }

  /* About */
  .about { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-frame { aspect-ratio: 4/3; max-width: 420px; }
  .about-image-accent { display: none; }
  .about-tag { left: 0; top: 1.5rem; }
  .about-text .section-title { font-size: clamp(2rem,6vw,2.8rem); }
  .about-credentials { gap: 1.5rem; }
  .about-credentials .cred-num { font-size: 2rem; }

  /* Services */
  .services { padding: 5rem 0; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; }
  .services-header .section-title { font-size: clamp(2rem,7vw,3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem 2rem; }
  .service-card-wide { grid-column: span 1; }
  .service-card-wide-inner,
  .service-card-wide-inner--reverse { grid-template-columns: 1fr; direction: ltr; gap: 1.5rem; }
  .service-card-wide-inner--reverse .service-card-wide-text { order: -1; }

  /* Why Jenna */
  .why { padding: 5rem 0; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-image-collage { height: 320px; order: -1; }
  .collage-1 { width: 58%; }
  .collage-2 { width: 50%; }
  .why-text .section-title { font-size: clamp(1.8rem,5vw,2.5rem); }

  /* Reviews */
  .reviews { padding: 5rem 0; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 2.5rem; }
  .reviews-header .section-title { font-size: clamp(2rem,6vw,2.8rem); }
  .review-card { width: min(340px, 85vw); }
  .review-nav { margin-top: 0; }

  /* Booking CTA */
  .booking-cta { padding: 6rem 0; }
  .booking-cta-title { font-size: clamp(2.5rem,8vw,4rem); }
  .booking-cta-sub { font-size: .9rem; }

  /* Contact mini (homepage) */
  .contact { padding: 5rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Inner pages */
  .inner-hero { padding: 4rem 0 2.5rem; }
  .inner-hero-title { font-size: clamp(2.2rem,8vw,3.5rem); }

  /* About page */
  .about-page-intro { padding: 4rem 0; }
  .about-page-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-page-photo { max-width: 280px; aspect-ratio: 3/4; }
  .about-page-bio h2 { font-size: 2rem; }
  .about-page-main { padding: 4rem 0; }
  .about-page-content h2 { font-size: 2rem; }
  .about-page-cta { padding: 4rem 0; }
  .about-why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .about-why-item { padding: 1.5rem 1rem; }

  /* Services page */
  .services-page { padding: 4rem 0; }
  .services-page-header h2 { font-size: 2rem; }
  .services-page-grid { gap: 4rem; }
  .services-page-item,
  .services-page-item--reverse { grid-template-columns: 1fr; direction: ltr; gap: 1.5rem; }
  .services-page-item--reverse > * { direction: ltr; }
  .services-page-item-img { aspect-ratio: 16/9; }

  /* Reviews page */
  .reviews-page { padding: 4rem 0; }
  .reviews-page-grid { grid-template-columns: 1fr; }

  /* Booking page */
  .booking-section { padding: 3rem 0 4rem; }

  /* Contact page */
  .contact-page-section { padding: 4rem 0; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-page-heading { font-size: 1.8rem; }

  /* Footer */
  .footer-instagram { padding: 2rem 0 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 0 6vw 2rem; }
  .footer-bottom { padding: 1.2rem 6vw; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤580px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 580px) {
  /* Nav */
  nav#mainNav { height: 68px; padding: 0 4vw; }
  .jw-inner-page { padding-top: 68px; }
  .nav-logo-img { width: 36px; height: 36px; }
  .nav-logo-text { font-size: 1.1rem; }

  /* Hero */
  .hero-content { padding: 0 5vw 12vh; }
  .hero-h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .hero-eyebrow { font-size: .64rem; letter-spacing: .18em; }
  .btn-primary { font-size: .72rem; padding: .9rem 1.6rem; }
  .btn-ghost { font-size: .72rem; }

  /* Sections padding */
  .about, .services, .why, .reviews, .booking-cta, .contact { padding: 4rem 0; }
  .container { padding: 0 5vw; }

  /* About */
  .about-image-frame { aspect-ratio: 3/4; max-width: 100%; }
  .about-credentials { flex-wrap: wrap; gap: 1rem; }

  /* Service cards */
  .service-card { padding: 2rem 1.5rem; }
  .service-name { font-size: 1.6rem; }

  /* Why Jenna collage - hidden on very small screens */
  .why-image-collage { height: 260px; }
  .collage-badge { width: 70px; height: 70px; }
  .collage-badge-num { font-size: 1.3rem; }
  .collage-badge-text { font-size: .5rem; }

  /* Reviews */
  .review-card { width: 85vw; padding: 1.8rem; }
  .review-text { font-size: .95rem; }

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

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo-img { width: 55px; height: 55px; }

  /* About page */
  .about-why-grid { grid-template-columns: 1fr; }
  .about-page-photo { max-width: 220px; }

  /* Inner hero */
  .inner-hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }

  /* Booking CTA */
  .booking-cta-title { font-size: clamp(2rem, 9vw, 3rem); }

  /* Contact page */
  .contact-page-heading { font-size: 1.6rem; }
  .contact-info-list li { font-size: .85rem; }

  /* Float book btn */
  .float-book { font-size: .62rem; padding: .7rem 1rem; bottom: 1rem; right: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   TOUCH DEVICE SAFETY
   ═══════════════════════════════════════════════════════════════════ */
@media (hover: none) {
  /* Ensure tap targets are accessible */
  .nav-link, .nav-book, .footer-nav a { min-height: 44px; display: flex; align-items: center; }
  .review-btn { min-width: 44px; min-height: 44px; }
  .hero-dot { min-width: 32px; min-height: 32px; padding: 8px 0; }
  /* Remove hover-only states that look broken on touch */
  .service-card:hover { background: var(--cream); }
  .service-card:hover .service-name { color: var(--charcoal); }
  .service-card:hover .service-desc { color: var(--mid); }
}


/* ── TRUSTINDEX WIDGET OVERRIDES ─────────────────────────────────── */
.ti-widget { font-family: var(--ff-sans) !important; }
.ti-stars { color: var(--gold) !important; }
.ti-review-item { background: var(--cream) !important; border: none !important; border-radius: 0 !important; }
.ti-review-text { font-family: var(--ff-serif) !important; font-style: italic !important; color: var(--charcoal) !important; line-height: 1.8 !important; }
.ti-reviewer-name { font-weight: 500 !important; color: var(--charcoal) !important; font-family: var(--ff-sans) !important; }

/* ── STANDALONE CONTACT FORM ─────────────────────────────────────── */
.jw-form-hp { position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; opacity:0; pointer-events:none; }
.jw-form { display:flex; flex-direction:column; gap:1.4rem; }
.jw-form-group { display:flex; flex-direction:column; gap:.45rem; }
.jw-form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.jw-form-label { font-family:var(--ff-sans); font-size:.72rem; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--mid); }
.jw-required { color:var(--gold); margin-left:2px; }
.jw-form-input { font-family:var(--ff-sans); font-size:.92rem; color:var(--charcoal); background:var(--cream); border:1px solid var(--warm); padding:.85rem 1rem; width:100%; outline:none; transition:border-color .25s,box-shadow .25s; -webkit-appearance:none; }
.jw-form-input::placeholder { color:rgba(92,75,69,.4); }
.jw-form-input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(194,150,90,.12); }
textarea.jw-form-input { resize:vertical; min-height:130px; line-height:1.6; }
.jw-form-submit { display:inline-flex; align-items:center; justify-content:center; gap:.6rem; background:var(--gold); color:var(--white); font-family:var(--ff-sans); font-size:.78rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; border:none; padding:1.1rem 2rem; cursor:pointer; width:100%; transition:background .25s; margin-top:.3rem; }
.jw-form-submit:hover { background:var(--gold2); }
.jw-form-error { background:#fdf2f2; border:1px solid #f5c6c6; border-left:4px solid #c0392b; color:#922b21; padding:1rem 1.2rem; font-size:.9rem; margin-bottom:.5rem; }
.jw-form-success { text-align:center; padding:3rem 2rem; background:var(--cream); border:1px solid var(--warm); }
.jw-form-success-icon { width:64px; height:64px; background:var(--gold); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin:0 auto 1.5rem; }
.jw-form-success h3 { font-family:var(--ff-serif); font-size:1.8rem; font-weight:300; margin-bottom:.8rem; }
.jw-form-note { font-size:.75rem; color:var(--light); margin:.2rem 0 0; text-align:center; }
.jw-form-again { display:inline-flex; align-items:center; gap:.5rem; font-size:.75rem; font-weight:500; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); text-decoration:none; border-bottom:1px solid var(--gold); }

/* ── BOOKING MOBILE/DESKTOP ──────────────────────────────────────── */
.booking-mobile-cta { display:none; text-align:center; padding:2.5rem 0 1rem; }
.booking-mobile-btn { display:inline-flex; align-items:center; gap:.7rem; background:var(--gold); color:#fff; font-family:var(--ff-sans); font-size:.85rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase; text-decoration:none; padding:1.2rem 2.5rem; width:100%; justify-content:center; }
.square-widget-wrap { display:block; }

/* ── FLOAT BUTTON ────────────────────────────────────────────────── */
.float-book { z-index:500 !important; -webkit-tap-highlight-color:rgba(0,0,0,0); touch-action:manipulation; }
.nav-overlay { pointer-events:none; }
.nav-overlay.show { pointer-events:auto; }

/* ── HERO FLASH / GHOST FIX ──────────────────────────────────────── */
.hero-slides { background:#1A1210; }
.hero { background:#1A1210; }
.hero-slide { z-index:1; }
.hero-slide.active { z-index:2; }
.hero-eyebrow { color:rgba(255,255,255,0.85) !important; }

/* ── ABOUT TAG ───────────────────────────────────────────────────── */
.about-tag { color:#fff !important; background:rgba(26,18,16,0.82) !important; backdrop-filter:blur(4px); }
.about-tag span { color:var(--gold) !important; display:block; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; margin-bottom:2px; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤900px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body { cursor:auto; }
  .cursor-dot, .cursor-ring { display:none; }

  /* NAV — side drawer */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(300px, 80vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: var(--dark) !important;
    padding: 90px 2rem 2rem !important;
    z-index: 500 !important;
    transform: translateX(100%) !important;
    transition: transform .35s cubic-bezier(.4,0,.2,1) !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: .3rem !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }
  .nav-links.open { transform: translateX(0) !important; }
  .nav-links li { width:100%; list-style:none; }

  /* Force all nav links cream on dark panel — regardless of page */
  .nav-links .nav-link,
  nav#mainNav .nav-links .nav-link {
    color: var(--cream) !important;
    font-size: 1.1rem !important;
    padding: .9rem 0 !important;
    display: block !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    letter-spacing: .06em !important;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active { color: var(--gold) !important; }
  .nav-links .nav-book { display:block; text-align:center; margin-top:1.5rem !important; padding:1rem !important; background:var(--gold) !important; color:#fff !important; border:none !important; font-size:.8rem !important; }

  .nav-hamburger { display:flex; z-index:600; }
  .nav-hamburger { display:flex !important; z-index:600; }
  .nav-overlay { z-index:400; }
  .nav-overlay.show { right: min(300px, 80vw); } /* don't cover the nav panel */
  .nav-overlay.show { pointer-events:auto; }

  /* Float button */
  .float-book { font-size:.66rem; padding:.75rem 1.2rem; bottom:1.2rem; right:1.2rem; }

  /* Booking */
  .booking-mobile-cta { display:block; }
  .square-widget-wrap { display:none; }

  /* Form */
  .jw-form-row { grid-template-columns:1fr; }
  .jw-form-input { font-size:1rem; }
}

@media (max-width: 580px) {
  nav#mainNav { height:68px; padding:0 4vw; }
  .jw-inner-page { padding-top:68px; }
  .nav-logo-img { width:36px; height:36px; }
  .hero-content { padding:0 5vw 12vh; }
  .hero-h1 { font-size:clamp(2.4rem,11vw,3.5rem); }
  .footer-inner { grid-template-columns:1fr; }
  .about-why-grid { grid-template-columns:1fr; }
  .review-card { width:85vw; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAV FINAL FIXES
   ═══════════════════════════════════════════════════════════════════ */

/* 1. Inner pages — nav always opaque with dark text, no !important needed
      because we use high specificity selector */
body:not(.jw-home) nav#mainNav,
body:not(.jw-home) nav#mainNav:not(.scrolled) {
  background: rgba(247,240,232,0.97) !important;
  box-shadow: 0 1px 0 rgba(42,34,32,0.10);
}
body:not(.jw-home) nav#mainNav .nav-link,
body:not(.jw-home) nav#mainNav:not(.scrolled) .nav-link {
  color: var(--charcoal) !important;
}
body:not(.jw-home) nav#mainNav .nav-link:hover,
body:not(.jw-home) nav#mainNav .nav-link.active {
  color: var(--gold) !important;
}
body:not(.jw-home) nav#mainNav .nav-logo-text {
  color: var(--charcoal) !important;
}
body:not(.jw-home) nav#mainNav .nav-hamburger span {
  background: var(--charcoal) !important;
}

/* 2. Hamburger — always visible on mobile regardless of any other rule */
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    position: relative !important;
  }
  /* On home page, hamburger bars should be white (over dark hero) */
  body.jw-home nav#mainNav:not(.scrolled) .nav-hamburger span {
    background: #fff !important;
  }
}

/* Mobile nav text — always cream regardless of page type
   Overrides the desktop body:not(.jw-home) charcoal rule */
@media (max-width: 900px) {
  body:not(.jw-home) nav#mainNav .nav-link,
  body:not(.jw-home) nav#mainNav:not(.scrolled) .nav-link {
    color: var(--cream) !important;
  }
  body:not(.jw-home) nav#mainNav .nav-link:hover,
  body:not(.jw-home) nav#mainNav .nav-link.active {
    color: var(--gold) !important;
  }
}

/* ── Services — mobile image always first ────────────────────────────
   On desktop: wide cards show image+text side by side (or reversed).
   On mobile: ALL cards show image on top, text below — consistent.
   The --reverse variant swaps order on desktop via direction:rtl,
   but on mobile we override that so image is always first in view. */
@media (max-width: 900px) {
  .service-card-wide { grid-column: span 1 !important; }

  .service-card-wide-inner,
  .service-card-wide-inner--reverse {
    display: flex !important;
    flex-direction: column !important;     /* image first, text second */
    direction: ltr !important;
    gap: 1.2rem !important;
    width: 100% !important;
  }

  /* Reverse card on desktop puts text first in DOM — flip it back on mobile */
  .service-card-wide-inner--reverse .service-card-image { order: -1 !important; }
  .service-card-wide-inner--reverse .service-card-wide-text { order: 1 !important; }

  .service-card-wide .service-card-image img,
  .service-card-wide-inner .service-card-image img,
  .service-card-wide-inner--reverse .service-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
}

/* Cloudflare Turnstile widget */
.cf-turnstile { margin-bottom: .5rem; }

/* Designed by credit — subtle, unobtrusive */
.footer-credit {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .08em;
  transition: color .2s;
}
.footer-credit:hover { color: rgba(255,255,255,0.6); }

/* Contact form hints + select dropdown */
.jw-form-hint {
  font-size: .7rem;
  color: var(--light);
  margin: .3rem 0 0;
  line-height: 1.5;
}
select.jw-form-input {
  cursor: pointer;
  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='%235C4B45' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
select.jw-form-input:disabled { opacity: .5; cursor: not-allowed; }

/* Book Now button — dark bg when nav is transparent (homepage top) */
body.jw-home nav#mainNav:not(.scrolled) .nav-book {
  background: rgb(42, 34, 32) !important;
  color: var(--cream) !important;
  border-color: rgb(42, 34, 32) !important;
}
body.jw-home nav#mainNav:not(.scrolled) .nav-book:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
