/* ============================================================
   Jennynailedit — styles
   ============================================================ */
:root{
  /* ===== Burgundy & Blush — Jenny's chosen palette (2026-07-15) =====
     Fashion-led, expressive, polished. Her five colours:
       #5A1F2C burgundy · #D08C7A blush · #F8F0ED bg · #FFFAF7 white · #21191B ink
     Token names are semantic (--brand, not --green) so the next person
     isn't reading "--green: #5A1F2C". */
  --brand:#5A1F2C;          /* primary. On --bg = 11.20:1 (AAA) */
  --brand-deep:#43151F;     /* hovers / deeper panels */
  --brand-soft:#7A3140;
  --bg:#F8F0ED;             /* page background (blush) */
  --bg-2:#F0E2DC;
  --blush:#EACFC6;
  --blush-2:#F7E8E2;

  /* ⚠️ Her blush accent is only 2.42:1 on --bg — that FAILS even the
     large-text minimum (3.0). It is beautiful but it cannot carry text.
     So: --accent is DECORATIVE (rules, icons, borders, hovers) and
     --accent-text is the same hue darkened to 4.56:1 for anything readable
     (eyebrows, prices, links). She keeps her colour; it just stays legible. */
  --accent:#D08C7A;         /* her exact blush — decorative only */
  --accent-text:#946153;    /* same hue, 4.56:1 (AA) — text only */

  --ink:#21191B;            /* on --bg = 15.32:1 (AAA) */
  --muted:#6E5F5F;
  --line:#E7D6CF;
  --white:#FFFAF7;          /* on --brand = 12.16:1 (AAA) */
  --gold:#B0763A;
  --radius:18px;
  --radius-lg:28px;
  --shadow:0 24px 64px -34px rgba(90,31,44,.40);
  --shadow-sm:0 12px 30px -22px rgba(90,31,44,.36);
  --maxw:1240px;
  --font-serif:"Cormorant Garamond",Georgia,serif;
  --font-sans:"Poppins",system-ui,-apple-system,sans-serif;
}

/* ============================================================
   MOTION — transform-only, .js-gated.
   RULE (learned the hard way on Kildare): never opacity:0-then-reveal.
   If JS never runs, the .js class is never added and NOTHING here applies,
   so content is always visible. Opacity is never touched — content
   physically cannot get stuck invisible.
   ============================================================ */
:root{
  --ease-out:cubic-bezier(.22,.8,.28,1);
  --rise:26px;
}
.js .reveal{
  transition:transform .78s var(--ease-out);
  transition-delay:var(--d,0ms);
  will-change:transform;
}
.js .reveal:not(.in){transform:translateY(var(--rise))}
/* side-entrances for editorial rows */
.js .reveal-l:not(.in){transform:translateX(-26px)}
.js .reveal-r:not(.in){transform:translateX(26px)}
.js .reveal-l,.js .reveal-r{transition:transform .85s var(--ease-out);transition-delay:var(--d,0ms)}
/* image cards settle in with a whisper of scale */
.js .reveal-zoom{transition:transform .9s var(--ease-out);transition-delay:var(--d,0ms)}
.js .reveal-zoom:not(.in){transform:scale(.965)}
/* nav gains weight once you leave the hero */
.site-header{transition:box-shadow .3s ease,background .3s ease}
.site-header.stuck{box-shadow:0 10px 30px -22px rgba(90,31,44,.5)}
/* respect the OS setting — no motion, no delays, nothing displaced */
@media (prefers-reduced-motion:reduce){
  .js .reveal,.js .reveal-l,.js .reveal-r,.js .reveal-zoom{transition:none!important;transition-delay:0ms!important}
  .js .reveal:not(.in),.js .reveal-l:not(.in),.js .reveal-r:not(.in),.js .reveal-zoom:not(.in){transform:none!important}
  html{scroll-behavior:auto}
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:88px;overflow-x:clip}
body{
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* ---- typography ---- */
h1,h2,h3,h4{font-family:var(--font-serif);font-weight:600;color:var(--brand);line-height:1.08}
h1{font-size:clamp(3rem,5.8vw,4.85rem);letter-spacing:-.02em}
h2{font-size:clamp(2rem,4vw,3rem)}
h3{font-size:1.4rem}
.section{padding:84px 0}
.section-tight{padding:52px 0}
.center{text-align:center}
.eyebrow{
  text-transform:uppercase;letter-spacing:.22em;font-size:.72rem;
  font-weight:600;color:var(--accent-text);margin-bottom:14px;
}
.eyebrow.center{margin-left:auto;margin-right:auto}
.section-sub{color:var(--muted);max-width:620px;margin:14px auto 0;font-size:1rem}
.muted{color:var(--muted)}
.small{font-size:.82rem}

/* ---- icons ---- */
.ic{width:20px;height:20px;flex:0 0 auto;color:currentColor}

/* ---- buttons ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-sans);font-weight:500;font-size:.95rem;
  padding:14px 26px;border-radius:12px;cursor:pointer;border:1.5px solid transparent;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
  white-space:nowrap;
}
.btn .ic{width:18px;height:18px}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--brand);color:#fff;box-shadow:var(--shadow-sm)}
.btn-dark:hover{background:var(--brand-deep)}
.btn-outline{background:transparent;color:var(--brand);border-color:var(--brand)}
.btn-outline:hover{background:var(--brand);color:#fff}
.btn-light{background:#fff;color:var(--brand)}
.btn-light:hover{background:var(--bg-2)}
.btn-pill{background:#fff;color:var(--brand);border:1.5px solid var(--line);border-radius:999px;box-shadow:var(--shadow-sm)}
.btn-pill:hover{border-color:var(--brand)}
.btn-lg{padding:17px 32px;font-size:1rem}
.btn-sm{padding:10px 18px;font-size:.85rem}
.btn-block{width:100%}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(248,240,237,.92);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;height:78px}
.brand{display:flex;flex-direction:column;line-height:1}
.brand-name{font-family:var(--font-serif);font-size:1.7rem;font-weight:700;color:var(--brand)}
.brand-sub{font-size:.6rem;letter-spacing:.24em;text-transform:uppercase;color:var(--accent-text);margin-top:3px}
.main-nav{display:flex;gap:34px}
.main-nav a{font-size:.95rem;font-weight:400;color:var(--ink);position:relative;padding:4px 0}
.main-nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--brand);transition:width .22s ease}
.main-nav a:hover::after{width:100%}
.btn-book-header{padding:12px 22px}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{width:24px;height:2px;background:var(--brand);border-radius:2px;transition:.25s}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(760px 520px at 4% 54%, rgba(208,140,122,.11), transparent 62%),
    linear-gradient(180deg,var(--bg) 0%,#F1E4DE 100%);
}
.hero::before{
  content:"";position:absolute;width:380px;height:520px;left:-250px;top:80px;
  border:1px solid rgba(208,140,122,.22);border-radius:50%;transform:rotate(-18deg);
}
.hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,.88fr) minmax(500px,1.12fr);gap:clamp(42px,6vw,84px);align-items:center;min-height:calc(100vh - 78px);padding:42px 24px 54px}
.hero-copy{max-width:610px;padding:28px 0}
.hero h1{margin:8px 0 24px;color:var(--brand-deep)}
.hero-lead{font-size:1.05rem;color:#554d47;margin-bottom:34px;max-width:580px}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:34px}
.hero-badges{list-style:none;display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid var(--line);padding-top:22px}
.hero-badges li{display:flex;align-items:flex-start;gap:10px;font-size:.78rem;color:#4d443e;line-height:1.25;padding:0 18px;border-right:1px solid var(--line)}
.hero-badges li:first-child{padding-left:0}
.hero-badges li:last-child{border-right:0;padding-right:0}
.hero-badges .ic{color:var(--brand)}
.hero-badges span{display:flex;flex-direction:column;gap:3px}
.hero-badges strong{font-weight:600;color:var(--ink)}
.hero-badges small{font-size:.68rem;color:var(--muted)}
.hero-media{position:relative;min-height:620px}
.hero-portrait{width:100%;height:620px;object-fit:cover;object-position:center 12%;border-radius:52px 18px 52px 18px;box-shadow:var(--shadow);border:1px solid rgba(23,61,50,.1)}
.hero-detail{position:absolute;width:48%;height:auto;aspect-ratio:1.28/1;left:-54px;bottom:28px;object-fit:cover;object-position:center 48%;border:8px solid var(--white);border-radius:24px;box-shadow:0 22px 50px -24px rgba(15,45,37,.65)}

/* ============================================================
   SERVICES
   ============================================================ */
.services{background:var(--white)}
.services-heading{display:grid;grid-template-columns:1fr .75fr;gap:48px;align-items:end;margin-bottom:42px}
.services-heading h2{color:var(--brand-deep)}
.services-heading>p{color:var(--muted);max-width:500px;padding-bottom:5px}
.service-featured-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.service-feature{position:relative;min-height:390px;border-radius:var(--radius-lg);overflow:hidden;background:var(--brand);box-shadow:var(--shadow-sm);isolation:isolate}
.service-feature img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.service-feature:nth-child(1) img{object-position:center 48%}
.service-feature:nth-child(2) img{object-position:center 53%}
.service-feature:nth-child(3) img{object-position:center 44%}
.service-feature-shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 36%,rgba(9,27,23,.82) 100%);z-index:1}
.service-feature-copy{position:absolute;z-index:2;left:26px;right:58px;bottom:24px;color:#fff;display:flex;flex-direction:column;gap:4px}
.service-feature-copy strong{font-family:var(--font-serif);font-size:1.8rem;line-height:1.05}
.service-feature-copy small{color:#EDB9A8;font-size:.9rem;font-weight:500}
.service-arrow{position:absolute;z-index:2;right:24px;bottom:25px;color:#fff;font-size:1.9rem;line-height:1}
.service-feature:hover img{transform:scale(1.035)}
.service-feature:focus-visible{outline:3px solid var(--accent);outline-offset:4px}
.service-quick-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin-top:22px}
.service-quick-grid a{display:flex;flex-direction:column;justify-content:space-between;gap:18px;padding:22px;border-right:1px solid var(--line);transition:background .2s ease}
.service-quick-grid a:last-child{border-right:0}
.service-quick-grid a:hover{background:var(--bg)}
.service-quick-grid span{display:flex;flex-direction:column;gap:5px}
.service-quick-grid strong{font-family:var(--font-serif);font-size:1.25rem;color:var(--brand)}
.service-quick-grid small{font-size:.76rem;color:var(--muted);line-height:1.4}
.service-quick-grid b{font-size:.78rem;color:var(--accent-text);font-weight:600}
.menu-toggle-wrap{margin-top:40px}

/* ============================================================
   FULL MENU
   ============================================================ */
.menu{background:linear-gradient(180deg,var(--bg-2),var(--bg))}
.menu-disclosure{max-width:1100px;margin:34px auto 0}
.menu-disclosure>summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:20px;background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:20px 24px;color:var(--brand);font-weight:500;cursor:pointer;box-shadow:var(--shadow-sm)}
.menu-disclosure>summary::-webkit-details-marker{display:none}
.menu-summary-icon{font-family:var(--font-serif);font-size:1.8rem;line-height:1;color:var(--accent-text);transition:transform .2s ease}
.menu-disclosure[open] .menu-summary-icon{transform:rotate(45deg)}
.menu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:24px}
.menu-block{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:24px 24px 8px;margin-bottom:24px;box-shadow:var(--shadow-sm);
}
.menu-block h3{
  font-size:1.35rem;padding-bottom:12px;margin-bottom:8px;border-bottom:2px solid var(--blush);
  display:flex;flex-wrap:wrap;align-items:baseline;gap:8px;
}
.menu-block h3 .note{font-family:var(--font-sans);font-size:.65rem;font-weight:400;color:var(--accent-text);text-transform:uppercase;letter-spacing:.12em}
.menu-list{list-style:none}
.menu-list li{
  display:flex;justify-content:space-between;align-items:baseline;gap:14px;
  padding:11px 0;border-bottom:1px dashed var(--line);
}
.menu-list li:last-child{border-bottom:0}
.mi-name{font-size:.92rem;color:var(--ink)}
.mi-name em{color:var(--muted);font-style:italic;font-size:.85em}
.mi-name small{display:inline-block;color:var(--accent-text);font-size:.72rem;margin-left:6px;letter-spacing:.03em}
.mi-price{font-family:var(--font-serif);font-weight:700;font-size:1.15rem;color:var(--brand);white-space:nowrap}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-grid{display:grid;grid-template-columns:1.1fr 1fr 1fr;gap:22px}
.stat-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow-sm);
}
.stat-rating{font-family:var(--font-serif);font-size:2.4rem;font-weight:700;color:var(--brand);display:flex;align-items:center;gap:12px}
.stars{color:var(--gold);letter-spacing:2px}
.stars-gold{color:var(--gold)}
.stat-rating .stars{font-size:1.2rem}
.stat-label{color:var(--muted);font-size:.85rem;margin-bottom:14px}
.stat-card blockquote{font-family:var(--font-serif);font-size:1.2rem;color:var(--ink);font-style:italic;line-height:1.4;margin-bottom:8px}
.stat-card cite{color:var(--muted);font-size:.85rem;font-style:normal}
.stat-link{display:inline-block;margin-top:16px;color:var(--accent-text);font-weight:500;font-size:.88rem}
.stat-ig{display:flex;align-items:center;gap:12px;color:var(--brand)}
.stat-ig .ic{width:30px;height:30px}
.stat-ig-count{font-family:var(--font-serif);font-size:2rem;font-weight:700}
.stat-text{font-size:.9rem;color:#5b5049;margin-top:6px}
.stat-card--dark{background:var(--brand);color:#F7E8E2;border-color:var(--brand)}
.stat-card--dark h3{color:#fff;margin:10px 0}
.stat-card--dark p{font-size:.9rem;opacity:.9}
.ic-heart{width:26px;height:26px;color:#fff}
.stat-card--dark .stars-gold{font-size:1.3rem;margin-top:14px}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why{background:var(--bg)}
.why-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:22px;margin-top:36px}
.why-item{text-align:center;padding:10px}
.why-item .ic{width:32px;height:32px;color:var(--brand);margin-bottom:14px;stroke-width:1.4}
.why-item h4{font-family:var(--font-sans);font-weight:600;font-size:.95rem;color:var(--ink);margin-bottom:8px}
.why-item p{font-size:.82rem;color:var(--muted)}

/* ============================================================
   FEATURED GALLERY BAND
   ============================================================ */
.featured{background:var(--brand);color:#F7E8E2;padding:0}
.featured-inner{display:grid;grid-template-columns:.9fr 2.4fr;align-items:stretch;gap:0}
.featured-copy{padding:56px 40px 56px 24px;display:flex;flex-direction:column;justify-content:center;gap:16px}
.featured-copy h2{color:#fff}
.featured-copy p{opacity:.85;font-size:.95rem}
.featured-copy .btn{align-self:flex-start;margin-top:6px}
.featured-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:0}
.featured-strip img{
  width:100%;height:340px;object-fit:cover;
  background:linear-gradient(135deg,var(--brand-soft),var(--brand-deep));
  border-left:2px solid var(--brand-deep);
}
.featured-strip img:nth-child(2),.featured-strip img:nth-child(4){object-position:center 62%}

/* ============================================================
   BOOKING
   ============================================================ */
.booking{background:linear-gradient(180deg,var(--bg),var(--bg-2))}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin:44px 0 54px;position:relative}
.step{text-align:center;padding:0 12px}
.step-ic{
  width:70px;height:70px;border-radius:50%;margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
  background:var(--blush-2);color:var(--brand);border:1px solid var(--blush);
}
.step-ic .ic{width:28px;height:28px}
.step h4{font-family:var(--font-sans);font-weight:600;font-size:1rem;color:var(--ink);margin-bottom:6px}
.step p{font-size:.86rem;color:var(--muted)}

.booking-card{
  display:grid;grid-template-columns:.85fr 1.15fr;gap:0;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow);
}
.booking-intro{background:var(--brand);color:#F7E8E2;padding:44px 38px;display:flex;flex-direction:column;justify-content:center}
.booking-intro h3{color:#fff;font-size:2rem;margin-bottom:14px}
.booking-intro p{font-size:.95rem;opacity:.9;margin-bottom:24px}
.booking-perks{list-style:none;display:flex;flex-direction:column;gap:14px}
.booking-perks li{display:flex;align-items:center;gap:12px;font-size:.9rem}
.booking-perks .ic{width:20px;height:20px;color:var(--blush);flex:0 0 auto}

/* honest caption under a photo — says what it actually shows.
   Sits BELOW the image, not over it: the training inset overlaps the
   bottom-right corner and the two collided. */
.media-cap{
  margin:12px 2px 0;
  max-width:56%;                 /* clears the .training-detail inset, which overhangs bottom-right */
  font-size:.74rem;line-height:1.5;color:var(--muted);font-style:italic;
}
@media (max-width:900px){.media-cap{max-width:100%}}

/* real, checkable proof — replaces the invented testimonial grid */
.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:34px}
.proof{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:30px 22px;text-align:center;box-shadow:var(--shadow-sm);
  transition:transform .22s var(--ease-out),border-color .22s ease;
}
a.proof:hover{transform:translateY(-3px);border-color:var(--accent-text)}
.proof strong{display:block;font-family:var(--font-serif);font-size:2.1rem;color:var(--brand);line-height:1}
.proof span{display:block;margin-top:8px;font-size:.85rem;color:var(--muted)}
@media (max-width:700px){.proof-grid{grid-template-columns:1fr;gap:12px}.proof{padding:22px}}

.booking-form{padding:40px 38px}
/* [hidden] must beat .btn{display:inline-flex} — class selectors outrank the UA sheet */
[hidden]{display:none!important}
/* DoTreat CTA cell — replaces the old booking form */
.booking-actions{padding:40px 38px;display:flex;flex-direction:column;justify-content:center}
.booking-actions .btn{width:100%}
.booking-actions .btn + .btn{margin-top:10px}
.booking-alt{text-align:center;font-size:.85rem;color:var(--muted);margin:22px 0 12px}
.field{margin-bottom:18px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field label{display:block;font-size:.82rem;font-weight:500;color:var(--ink);margin-bottom:7px}
.field .opt{color:var(--muted);font-weight:300}
.field input,.field select,.field textarea{
  width:100%;font-family:var(--font-sans);font-size:.92rem;font-weight:300;color:var(--ink);
  padding:12px 14px;border:1.5px solid var(--line);border-radius:10px;background:var(--bg);
  transition:border-color .18s ease,box-shadow .18s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--brand);box-shadow:0 0 0 3px rgba(34,61,48,.1);background:#fff;
}
.field textarea{resize:vertical}
.booking-form .btn-block{margin-top:6px}
.hp{position:absolute;left:-9999px;opacity:0}
.form-status{margin-top:14px;font-size:.9rem;text-align:center;min-height:1.2em}
.form-status.ok{color:var(--brand);font-weight:500}
.form-status.err{color:#b3402f;font-weight:500}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid{columns:4;column-gap:14px;margin-top:44px}
.gallery-grid img{
  width:100%;height:auto;object-fit:cover;border-radius:var(--radius);margin:0 0 14px;break-inside:avoid;
  background:linear-gradient(135deg,var(--blush),var(--bg-2));box-shadow:var(--shadow-sm);
  transition:transform .25s ease;
}
.gallery-grid img:hover{transform:scale(1.03)}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{background:var(--bg-2)}
.review-rating{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:16px}
.review-rating .stars{font-size:1.4rem}
.review-score{font-weight:500;color:var(--ink)}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:40px}
.review{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow-sm);
}
.review .stars{font-size:1.05rem;margin-bottom:12px;display:block}
.review p{font-family:var(--font-serif);font-size:1.2rem;font-style:italic;color:var(--ink);line-height:1.45;margin-bottom:14px}
.review cite{color:var(--muted);font-style:normal;font-weight:500}

/* ============================================================
   TRAINING
   ============================================================ */
.training-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.training-media{position:relative;padding:0 40px 42px 0}
.training-media>img:first-child{width:100%;height:500px;object-fit:cover;object-position:center 14%;border-radius:48px 16px 48px 16px;box-shadow:var(--shadow);background:linear-gradient(135deg,var(--blush),var(--bg-2))}
.training-media .training-detail{position:absolute;width:42%;height:auto;aspect-ratio:1/1;right:0;bottom:0;object-fit:cover;object-position:center 58%;border:7px solid var(--white);border-radius:20px;box-shadow:var(--shadow)}
.training-copy h2{margin:6px 0 18px}
.training-copy p{color:#5b5049;margin-bottom:20px}
.training-list{list-style:none;display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.training-list li{display:flex;align-items:center;gap:12px;font-size:.95rem}
.training-list .ic{color:var(--brand)}

/* ============================================================
   FAQ
   ============================================================ */
.faq{background:linear-gradient(180deg,var(--bg),var(--blush-2))}
.faq-list{max-width:760px;margin:40px auto 0;display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:var(--white);border:1px solid var(--line);border-radius:12px;overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.faq-item summary{
  list-style:none;cursor:pointer;padding:18px 22px;font-weight:500;font-size:.98rem;color:var(--ink);
  display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-plus{font-size:1.5rem;color:var(--accent-text);transition:transform .2s ease;line-height:1}
.faq-item[open] .faq-plus{transform:rotate(45deg)}
.faq-body{padding:0 22px 20px}
.faq-body p{color:var(--muted);font-size:.92rem}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{background:var(--bg)}
.contact-grid{display:grid;grid-template-columns:1.1fr 1fr 1fr;gap:26px;align-items:start}
.contact-col h3{font-size:1.35rem;margin-bottom:14px;display:flex;align-items:center;gap:10px}
.contact-col h3 .ic{color:var(--accent-text)}
.contact-col p{color:#5b5049;font-size:.92rem;margin-bottom:8px}
.contact-list{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:8px}
.contact-list li{display:flex;align-items:center;gap:12px;font-size:.92rem}
.contact-list .ic{color:var(--brand)}
.contact-list a:hover{color:var(--accent-text)}
.treat-card{background:var(--blush-2);border:1px solid var(--blush);border-radius:var(--radius-lg);padding:30px;text-align:center}
.treat-card h3{justify-content:center}
.treat-card .btn{margin:14px 0 10px}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--brand-deep);color:#E3CFC8}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.3fr;gap:36px;padding:56px 24px 40px}
.footer-brand .brand-name{color:#fff;font-size:1.6rem}
.footer-brand .brand-sub{color:var(--blush)}
.footer-brand .muted{color:#C9AAA2;margin-top:12px;font-size:.88rem;max-width:260px}
.socials{display:flex;gap:12px;margin-top:18px}
.socials a{
  width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;color:#EACFC6;transition:.2s;
}
.socials a:hover{background:var(--accent);border-color:var(--accent-text);color:#fff}
.footer-col h4{color:#fff;font-family:var(--font-sans);font-weight:600;font-size:.95rem;margin-bottom:16px;letter-spacing:.02em}
.footer-col a,.footer-col p{display:flex;align-items:center;gap:8px;color:#b8c4bb;font-size:.88rem;margin-bottom:10px}
.footer-col a:hover{color:#fff}
.footer-col .ic{width:16px;height:16px;color:var(--blush);flex:0 0 auto}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1)}
.footer-bottom .container{display:flex;justify-content:space-between;align-items:center;padding-top:18px;padding-bottom:18px;flex-wrap:wrap;gap:8px}
.footer-bottom p{font-size:.82rem;color:#C9AAA2}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:minmax(0,.9fr) minmax(430px,1.1fr);gap:44px}
  .hero-media,.hero-portrait{min-height:560px;height:560px}
  .service-quick-grid{grid-template-columns:repeat(2,1fr)}
  .service-quick-grid a:nth-child(2){border-right:0}
  .service-quick-grid a:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .menu-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(3,1fr);gap:28px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
}
@media (max-width:820px){
  .main-nav,.btn-book-header{display:none}
  .nav-toggle{display:flex}
  .main-nav.open{
    display:flex;flex-direction:column;position:absolute;top:78px;left:0;right:0;
    background:var(--bg);border-bottom:1px solid var(--line);padding:18px 24px;gap:6px;box-shadow:var(--shadow);
  }
  .main-nav.open a{padding:12px 0;border-bottom:1px solid var(--line)}
  .hero-grid{grid-template-columns:1fr;min-height:auto;padding:56px 24px 72px}
  .hero-copy{max-width:none;text-align:center}
  .eyebrow{margin-left:auto;margin-right:auto}
  .hero-cta{justify-content:center}
  .hero-badges{grid-template-columns:repeat(3,1fr);max-width:620px;margin:0 auto}
  .hero-badges li{justify-content:center}
  .hero-media{min-height:520px;margin-top:16px}
  .hero-portrait{height:520px;min-height:0}
  .hero-detail{left:18px;width:42%;bottom:-22px}
  .services-heading{grid-template-columns:1fr;gap:16px}
  .service-featured-grid{grid-template-columns:1fr}
  .service-feature{min-height:360px}
  .stats-grid{grid-template-columns:1fr}
  .featured-inner{grid-template-columns:1fr}
  .featured-copy{text-align:center;align-items:center;padding:44px 24px}
  .featured-copy .btn{align-self:center}
  .featured-strip{grid-template-columns:repeat(3,1fr)}
  .featured-strip img{height:180px}
  .booking-card{grid-template-columns:1fr}
  .training-grid{grid-template-columns:1fr;gap:30px}
  .training-media>img:first-child{height:440px}
  .contact-grid{grid-template-columns:1fr}
  .gallery-grid{columns:3}
}
@media (max-width:560px){
  .section{padding:60px 0}
  .hero-grid{padding-top:42px}
  .hero h1{font-size:clamp(2.75rem,14vw,3.65rem)}
  .hero-media{min-height:450px}
  .hero-portrait{height:450px}
  .hero-detail{width:50%;left:10px;bottom:-18px;border-width:5px}
  .hero-badges{grid-template-columns:1fr;gap:14px;text-align:left}
  .hero-badges li,.hero-badges li:first-child,.hero-badges li:last-child{justify-content:flex-start;padding:0 0 14px;border-right:0;border-bottom:1px solid var(--line)}
  .hero-badges li:last-child{border-bottom:0;padding-bottom:0}
  .service-feature{min-height:320px}
  .service-quick-grid{grid-template-columns:1fr}
  .service-quick-grid a,.service-quick-grid a:nth-child(2){border-right:0;border-bottom:1px solid var(--line)}
  .service-quick-grid a:last-child{border-bottom:0}
  .menu-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:1fr;gap:30px}
  .review-grid{grid-template-columns:1fr}
  .gallery-grid{columns:2}
  .field-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:26px}
  .booking-intro,.booking-form{padding:30px 24px}
  .hero-copy{text-align:left}
  .eyebrow{margin-left:0;margin-right:0}
  .hero-cta{justify-content:flex-start}
  .btn-lg{width:100%}
  .training-media{padding:0 24px 30px 0}
  .training-media>img:first-child{height:380px;border-radius:32px 14px 32px 14px}
}

/* ═══════════ motion pack (marquee · icon anims · swash · gallery deck) ═══════════ */

/* velocity marquee — light band, serif brand words */
.jmq{overflow:hidden;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:14px 0;background:var(--bg-2)}
.jmq-track{display:flex;width:max-content;will-change:transform}
.jmq-set{display:flex;align-items:center;gap:30px;padding-right:30px}
.jmq-set span{white-space:nowrap;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:21px;letter-spacing:.12em;text-transform:uppercase;color:var(--brand)}
.jmq-set i{color:var(--accent);font-style:normal;font-size:13px}
@media (prefers-reduced-motion: reduce){.jmq-track{transform:none !important}}

/* icon micro-animations (why cards + booking steps) */
.why-item .ic,.step-ic .ic{overflow:visible;transform-origin:center}
@keyframes jPop{0%,100%{transform:scale(1)}35%{transform:scale(.86)}65%{transform:scale(1.15)}}
@keyframes jTilt{0%,100%{transform:rotate(0)}25%{transform:rotate(-9deg)}60%{transform:rotate(7deg)}85%{transform:rotate(-2deg)}}
@keyframes jBob{0%,100%{transform:translateY(0)}30%{transform:translateY(-3.5px)}55%{transform:translateY(0)}75%{transform:translateY(-1.5px)}}
@keyframes jBeat{0%,100%{transform:scale(1)}25%{transform:scale(1.16)}45%{transform:scale(1)}60%{transform:scale(1.1)}}
@keyframes jSpin{0%,100%{transform:rotate(0)}50%{transform:rotate(14deg)}}
@media (prefers-reduced-motion: no-preference){
  .why-item.anim:nth-child(1) .ic{animation:jPop .7s cubic-bezier(.34,1.56,.64,1)}
  .why-item.anim:nth-child(2) .ic{animation:jSpin .8s cubic-bezier(.34,1.56,.64,1)}
  .why-item.anim:nth-child(3) .ic{animation:jPop .7s cubic-bezier(.34,1.56,.64,1)}
  .why-item.anim:nth-child(4) .ic{animation:jTilt .85s cubic-bezier(.34,1.56,.64,1)}
  .why-item.anim:nth-child(5) .ic{animation:jBob .8s ease}
  .step.anim:nth-child(1) .step-ic .ic{animation:jBob .8s ease}
  .step.anim:nth-child(2) .step-ic .ic{animation:jSpin .8s cubic-bezier(.34,1.56,.64,1)}
  .step.anim:nth-child(3) .step-ic .ic{animation:jBeat .8s ease}
}

/* self-drawing swash under the booking heading */
.jsw{display:block;width:min(250px,60%);margin:4px auto 14px;overflow:visible}
.jsw path{fill:none;stroke:var(--accent);stroke-width:3.2;stroke-linecap:round;stroke-dasharray:1;stroke-dashoffset:1}
.jsw.in path{animation:jswDraw .9s cubic-bezier(.65,0,.35,1) .3s forwards}
@keyframes jswDraw{to{stroke-dashoffset:0}}
@media (prefers-reduced-motion: reduce){.jsw path{stroke-dashoffset:0;animation:none}}

/* layered-stack gallery deck */
.jstack{position:fixed;inset:0;z-index:220;background:radial-gradient(120% 90% at 50% 0%,#3a1720 0%,#2A1118 55%,#1d0b10 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;overscroll-behavior:contain;touch-action:none}
.jstack[hidden]{display:none}
.jst-title{position:absolute;top:calc(22px + env(safe-area-inset-top));left:0;right:0;text-align:center;pointer-events:none}
.jst-title .eyebrow{color:var(--accent)}
.jst-close{position:absolute;top:calc(14px + env(safe-area-inset-top));right:16px;z-index:5;width:44px;height:44px;border-radius:50%;background:rgba(255,250,247,.07);border:1px solid rgba(255,250,247,.2);color:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .3s,transform .3s}
.jst-close:hover{background:rgba(255,250,247,.16);transform:rotate(90deg)}
.jst-close svg,.jst-nav svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.jst-stage{position:relative;width:min(76vw,380px);aspect-ratio:3/4;max-height:60vh;touch-action:none}
.jst-card{position:absolute;inset:0;border-radius:12px;overflow:hidden;border:1px solid rgba(208,140,122,.45);box-shadow:0 24px 60px -18px rgba(0,0,0,.8);background:#241014;will-change:transform;transition:transform .55s cubic-bezier(.34,1.35,.64,1)}
.jst-card img{width:100%;height:100%;object-fit:cover;pointer-events:none;-webkit-user-drag:none;user-select:none}
.jst-card.top{cursor:grab}.jst-card.top:active{cursor:grabbing}
.jst-card.dragging{transition:none}
.jst-card.fly{transition:transform .42s cubic-bezier(.5,.05,.65,1)}
.jst-card.snap{transition:none}
.jst-meta{margin-top:24px;text-align:center;min-height:64px;padding:0 24px}
.jst-cap{font-family:"Cormorant Garamond",Georgia,serif;font-size:1.15rem;color:var(--white);max-width:34ch}
.jst-count{margin-top:6px;color:var(--accent);font-size:.74rem;letter-spacing:.16em;font-weight:700}
.jst-hint{margin-top:4px;color:rgba(255,250,247,.45);font-size:.72rem;letter-spacing:.08em}
.jst-nav{position:absolute;inset:0;display:flex;align-items:center;justify-content:space-between;padding:0 14px;pointer-events:none}
.jst-nav button{pointer-events:auto;width:46px;height:46px;border-radius:50%;background:rgba(255,250,247,.07);border:1px solid rgba(255,250,247,.2);color:var(--accent);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .3s,border-color .3s,color .3s}
.jst-nav button:hover{background:var(--accent);border-color:var(--accent);color:#2A1118}
@media (max-width:700px){.jst-nav{display:none}.jst-stage{width:78vw}}
@media (prefers-reduced-motion: reduce){.jst-card,.jst-card.fly{transition:none !important}}

/* footer links */
.jft-link{color:inherit;text-decoration:none}
.jft-link:hover{text-decoration:underline}
.jft-credit strong{color:var(--accent-text);font-weight:700}

/* ═══ QA round: single gallery band, uniform grid, deck shadow clearance, training CTA ═══ */
.featured-one{display:flex;flex-direction:column;gap:26px;padding:56px 24px}
.featured-one .featured-copy{padding:0;text-align:center;align-items:center}
.featured-ig{color:#F7E8E2;text-decoration:underline}
.jgal-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.jgal-grid img{width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:12px;background:var(--brand-deep);display:block}
.featured-actions{text-align:center}
.featured-actions .btn{margin:0 auto}
@media(max-width:700px){.jgal-grid{grid-template-columns:repeat(2,1fr);gap:8px}.featured-one{padding:44px 18px}}
/* deck: keep card shadows off the caption text */
.jst-card{box-shadow:0 16px 34px -20px rgba(0,0,0,.7)}
.jst-meta{margin-top:46px;position:relative;z-index:6}
/* training CTA */
.training-note{font-size:.92rem;color:var(--muted);max-width:46ch}
.training-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:4px}

/* ═══ hero mini-stack (matches the gallery deck) ═══ */
.hero-media{min-height:0}
.jhero-stack{position:relative;width:min(100%,430px);aspect-ratio:3/4;margin:0 auto;cursor:pointer;touch-action:manipulation;outline-offset:6px}
.jh-card{position:absolute;inset:0;border-radius:28px;overflow:hidden;border:6px solid var(--white);box-shadow:0 18px 40px -20px rgba(33,25,27,.5);background:var(--brand-deep);will-change:transform;transition:transform .55s cubic-bezier(.34,1.35,.64,1)}
.jh-card img{width:100%;height:100%;object-fit:cover}
.jh-card.fly{transition:transform .42s cubic-bezier(.5,.05,.65,1)}
.jh-card.snap{transition:none}
@media(max-width:700px){.jhero-stack{width:min(84vw,360px)}}
@media (prefers-reduced-motion: reduce){.jh-card{transition:none !important}}

/* ═══ reviews (real Google reviews) ═══ */
.jrev{background:var(--white)}
.jrev-stars{color:var(--gold);letter-spacing:.14em;font-size:.95rem}
.jrev-row{display:flex;gap:16px;overflow-x:auto;padding:26px 4px 16px;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:var(--accent) var(--blush-2)}
.jrev-row::-webkit-scrollbar{height:6px}
.jrev-row::-webkit-scrollbar-track{background:var(--blush-2);border-radius:3px}
.jrev-row::-webkit-scrollbar-thumb{background:var(--accent);border-radius:3px}
.jrev-card{flex:0 0 auto;scroll-snap-align:center;width:min(78vw,330px);margin:0;background:var(--blush-2);border:1px solid var(--line);border-radius:16px;padding:22px 22px 18px;display:flex;flex-direction:column;gap:10px}
.jrev-card p{font-size:.93rem;color:var(--ink);margin:0;line-height:1.6}
.jrev-card footer{font-size:.8rem;color:var(--accent-text);font-weight:600}
.training-review{margin:0 0 4px;background:var(--blush-2);border-left:3px solid var(--accent);border-radius:0 12px 12px 0;padding:14px 16px;font-size:.92rem;color:var(--ink);line-height:1.6}
.training-review small{color:var(--accent-text);font-weight:600}
.stat-rating .jrev-stars{font-size:1.15rem}

/* hero badges: now 4 items — even 4-up on desktop, 2x2 on tablet */
.hero-badges{grid-template-columns:repeat(4,1fr)}
.hero-badges li{padding:0 14px}
@media(max-width:1100px){.hero-badges{grid-template-columns:repeat(2,1fr);gap:16px 0}
  .hero-badges li:nth-child(2n){border-right:0;padding-right:0}
  .hero-badges li:nth-child(2n+1){padding-left:0}}
@media(max-width:900px){.hero-badges{max-width:620px;margin:0 auto}}

/* ═══ featured gallery: show the best four, rest live in the deck ═══ */
.jgal-grid{grid-template-columns:repeat(4,1fr)}
.jgal-grid img:nth-child(n+5){display:none}
.jgal-grid img{aspect-ratio:1/1}          /* square crops less of her work than 3:4 */
@media(max-width:700px){.jgal-grid{grid-template-columns:repeat(2,1fr)}}
/* deck stage square too — her photos are square, so nothing gets cropped */
.jst-stage{aspect-ratio:1/1;max-height:56vh}
.jst-card img{object-position:50% 65%}

/* deck: never crop her work — show the whole photo */
.jst-card img{object-fit:contain;object-position:center;background:#241014}
