/* =====================================================================
   Dina Beauty 26 — feuille de style
   Charte : rose gold / blush poudré / mauve profond (extraite du logo)
   Type   : Cormorant Garamond (display) · Parisienne (script) · Jost (UI)
   ===================================================================== */

:root {
  /* Palette */
  --cream:      #FBF4F1;
  --blush:      #F5DDD8;
  --blush-2:    #EFCFC9;
  --blush-3:    #E7BEB7;
  --rose:       #C6898A;
  --rose-dk:    #A96C6D;
  --gold-hi:    #DBA9A2;
  --gold-lo:    #B37368;
  --mauve:      #6C424B;
  --ink:        #43302F;
  --muted:      #9A7E7E;
  --line:       rgba(108, 66, 75, .14);
  --line-soft:  rgba(108, 66, 75, .08);
  --white:      #ffffff;

  --rosegold: linear-gradient(118deg, var(--gold-hi) 0%, var(--rose) 42%, var(--gold-lo) 100%);

  /* Type */
  --f-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-script:  "Parisienne", "Segoe Script", cursive;
  --f-body:    "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1140px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 18px 50px -24px rgba(108, 66, 75, .45);
  --shadow-sm: 0 8px 24px -14px rgba(108, 66, 75, .40);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-dk); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--mauve); }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; color: var(--mauve); line-height: 1.1; letter-spacing: .1px; }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--mauve); color: #fff;
  padding: .6rem 1rem; z-index: 999; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* Focus visible partout */
:focus-visible { outline: 2.5px solid var(--rose-dk); outline-offset: 3px; border-radius: 4px; }

/* Utilitaires */
.script { font-family: var(--f-script); font-weight: 400; }
.eyebrow {
  font-family: var(--f-body); font-weight: 500; text-transform: uppercase;
  letter-spacing: .28em; font-size: .72rem; color: var(--rose-dk);
}
.gold-text {
  background: var(--rosegold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--rose);
}

/* Coeur décoratif */
.heart { color: var(--rose); font-style: normal; }

/* ---------- Boutons ---------- */
.btn {
  --btn-pad: .95rem 1.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--f-body); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .16em;
  padding: var(--btn-pad); border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { --btn-pad: .6rem 1.25rem; font-size: .72rem; }
.btn-primary { background: var(--rosegold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(169, 108, 109, .8); }
.btn-outline { background: transparent; color: var(--mauve); border-color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--mauve); border-color: var(--line); }
.btn-ghost:hover { background: #fff; color: var(--mauve); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 244, 241, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px -18px rgba(108,66,75,.6); background: rgba(251,244,241,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--blush-3); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--f-display); font-size: 1.35rem; font-weight: 600; color: var(--mauve); }
.brand-name em { font-style: normal; background: var(--rosegold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand-tag { font-family: var(--f-script); font-size: .95rem; color: var(--rose); margin-top: 2px; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.7rem; }
.nav-menu a { font-family: var(--f-body); font-weight: 400; font-size: .9rem; color: var(--ink); position: relative; }
.nav-menu > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--rosegold); transition: width .3s var(--ease);
}
.nav-menu > li > a:not(.btn):hover::after,
.nav-menu > li > a.is-active::after { width: 100%; }
.nav-menu a.is-active { color: var(--mauve); }

.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(--mauve); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections génériques ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin: .4rem 0 .7rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-title-script { display:block; }

.bg-blush { background: linear-gradient(180deg, var(--blush) 0%, #f7e6e2 100%); }
.bg-cream { background: var(--cream); }
.bg-deep  { background: linear-gradient(155deg, #7a4b54 0%, #5f3941 100%); color: #f7e6e2; }
.bg-deep h2, .bg-deep h3 { color: #fff; }

/* Séparateur cœur (signature) */
.heart-rule { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto; max-width: 220px; }
.heart-rule::before, .heart-rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--rose)); }
.heart-rule::after { background: linear-gradient(90deg, var(--rose), transparent); }
.heart-rule svg { width: 16px; height: 16px; color: var(--rose); }

/* ---------- HERO (signature : arc rose gold) ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero-bg-arc {
  position: absolute; top: -30%; right: -20%; width: 70vw; height: 120%;
  background: radial-gradient(circle at center, rgba(219,169,162,.35), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.hero-copy .eyebrow { display: inline-block; }
.hero-copy .script-accent { font-family: var(--f-script); color: var(--rose); font-size: clamp(1.6rem, 4vw, 2.4rem); display: block; line-height: 1; margin-bottom: -.2rem; }
.hero-copy h1 {
  font-size: clamp(2.7rem, 6.5vw, 4.6rem); font-weight: 600; margin: .3rem 0 1.1rem;
  letter-spacing: -.5px;
}
.hero-copy h1 .gold-text { font-style: italic; font-weight: 500; }
.hero-lead { font-size: 1.12rem; color: #5c4a49; max-width: 34ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.hero-trust li { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--mauve); font-weight: 400; }
.hero-trust svg { width: 18px; height: 18px; color: var(--rose); flex-shrink: 0; }

/* Portrait dans un arc rose gold */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-portrait {
  position: relative; width: min(430px, 82vw); aspect-ratio: 1; border-radius: 50%;
  padding: 14px; background: var(--rosegold);
  box-shadow: var(--shadow);
}
.hero-portrait::before {
  content: ""; position: absolute; inset: 6px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7); z-index: 2; pointer-events: none;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: var(--cream); }
.hero-badge {
  position: absolute; background: #fff; border-radius: 100px; padding: .7rem 1.15rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: .55rem;
  font-family: var(--f-display); color: var(--mauve); font-size: 1rem; font-weight: 600;
}
.hero-badge small { display: block; font-family: var(--f-body); font-weight: 300; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.hero-badge svg { width: 22px; height: 22px; color: var(--rose); }
.hero-badge--tl { top: 6%; left: -4%; }
.hero-badge--br { bottom: 8%; right: -6%; }

/* ---------- Prestations (cards) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.7rem; border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card.is-featured { border-color: var(--blush-3); }
.card.is-featured::before {
  content: "Signature"; position: absolute; top: 14px; right: -34px; transform: rotate(45deg);
  background: var(--rosegold); color: #fff; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem 3rem; font-family: var(--f-body); font-weight: 500;
}
.card-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card-icon svg { width: 28px; height: 28px; color: var(--rose-dk); }
.card h3 { font-size: 1.55rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1.2rem; }
.card-price { font-family: var(--f-display); font-size: 1.7rem; color: var(--mauve); font-weight: 600; }
.card-price small { font-family: var(--f-body); font-size: .78rem; color: var(--muted); font-weight: 300; text-transform: none; letter-spacing: 0; margin-left: .3rem; }

/* ---------- Tarifs (grille) ---------- */
.price-list { max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.7rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.price-row { display: flex; align-items: baseline; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px dashed var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row .pr-main { flex: 1; }
.price-row h3 { font-size: 1.4rem; margin-bottom: .15rem; display: flex; align-items: center; gap: .55rem; }
.price-row .pr-heart { width: 15px; height: 15px; color: var(--rose); flex-shrink: 0; }
.price-row p { color: var(--muted); font-size: .9rem; }
.price-row .pr-dur { font-size: .78rem; color: var(--rose-dk); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.price-row .pr-price { font-family: var(--f-display); font-size: 1.85rem; font-weight: 600; color: var(--mauve); white-space: nowrap; }
.price-note { margin-top: 1.6rem; text-align: center; font-size: .92rem; color: var(--muted); background: var(--blush); border-radius: 14px; padding: 1rem 1.2rem; }
.price-note strong { color: var(--mauve); font-weight: 500; }

/* ---------- Déroulé (étapes numérotées = séquence réelle) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step-num {
  font-family: var(--f-display); font-size: 2.6rem; font-weight: 600; line-height: 1;
  background: var(--rosegold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: .5rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.bg-deep .step h3 { color: #fff; }
.step p { color: inherit; opacity: .85; font-size: .95rem; }

/* ---------- Pourquoi (features) ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.feature { text-align: center; padding: 1rem; }
.feature-ico { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.feature-ico svg { width: 30px; height: 30px; color: var(--rose-dk); }
.feature h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .93rem; }

/* ---------- Zones ---------- */
.zone-chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; max-width: 900px; margin: 0 auto; }
.zone-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.1rem;
  font-size: .86rem; color: var(--mauve); transition: all .2s var(--ease);
}
.zone-chip:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.zone-dept { margin-bottom: 2.4rem; }
.zone-dept h3 { font-size: 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.zone-dept h3 .dept-badge { font-family: var(--f-body); font-size: .8rem; background: var(--blush); color: var(--rose-dk); padding: .2rem .7rem; border-radius: 100px; font-weight: 500; }
.zone-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .7rem; }
.zone-grid a { background: #fff; border: 1px solid var(--line-soft); border-radius: 12px; padding: .8rem 1rem; color: var(--ink); font-size: .92rem; display: flex; align-items: center; gap: .5rem; transition: all .2s var(--ease); }
.zone-grid a:hover { border-color: var(--rose); color: var(--mauve); transform: translateX(3px); }
.zone-grid a svg { width: 14px; height: 14px; color: var(--rose); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.3rem 2.5rem 1.3rem 0; position: relative; font-family: var(--f-display); font-size: 1.25rem; color: var(--mauve); font-weight: 600; }
.faq-q::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--f-body); font-weight: 300; font-size: 1.6rem; color: var(--rose); transition: transform .3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 1.3rem; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6rem; }
.cta-band p { max-width: 520px; margin: 0 auto 1.8rem; opacity: .92; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.bg-deep .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.bg-deep .btn-outline:hover { background: #fff; color: var(--mauve); }

/* ---------- Formulaire contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { padding-top: .5rem; }
.contact-info h2 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1rem; }
.contact-methods { margin: 1.8rem 0; display: grid; gap: 1rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 14px; padding: 1rem 1.2rem; box-shadow: var(--shadow-sm); }
.contact-method .cm-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; flex-shrink: 0; }
.contact-method .cm-ico svg { width: 22px; height: 22px; color: var(--rose-dk); }
.contact-method b { display: block; color: var(--mauve); font-weight: 500; }
.contact-method span { font-size: .85rem; color: var(--muted); }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--rose-dk); margin-bottom: .45rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(198,137,138,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.alert { padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.4rem; font-size: .95rem; }
.alert-ok { background: #eaf6ec; color: #2f6b3a; border: 1px solid #bfe0c6; }
.alert-err { background: #fdeaea; color: #a3383a; border: 1px solid #f2c2c2; }

/* Note patch test */
.patch-note { background: var(--blush); border-radius: 14px; padding: 1.1rem 1.3rem; margin-top: 1.4rem; font-size: .9rem; color: var(--mauve); display: flex; gap: .8rem; align-items: flex-start; }
.patch-note svg { width: 22px; height: 22px; color: var(--rose-dk); flex-shrink: 0; margin-top: 2px; }

/* ---------- Ville (landing) ---------- */
.city-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem,5vw,3.5rem); }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--rose-dk); }
.city-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 1rem; }
.city-hero h1 .gold-text { font-style: italic; }
.city-intro { max-width: 62ch; color: #5c4a49; font-size: 1.08rem; }
.city-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.nearby { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(160deg, #6c424b, #4f2f36); color: #ecd6d2; padding: clamp(3rem,6vw,4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); margin-bottom: .8rem; }
.footer-sign { font-size: 1.5rem; color: var(--gold-hi); }
.footer-note { font-size: .9rem; opacity: .8; margin-top: .3rem; max-width: 30ch; }
.footer-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
.footer-col a { color: #ecd6d2; font-size: .92rem; opacity: .85; line-height: 2.1; }
.footer-col a:hover { color: #fff; opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; opacity: .7; }
.footer-legal { max-width: 50ch; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; z-index: 90;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.7); transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Réservation ---------- */
.booking-form { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.bk-step { padding-bottom: 1.6rem; margin-bottom: 1.6rem; border-bottom: 1px dashed var(--line); }
.bk-step:last-of-type { border-bottom: 0; }
.bk-step-h { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.bk-num { width: 30px; height: 30px; border-radius: 50%; background: var(--rosegold); color: #fff; display: grid; place-items: center; font-family: var(--f-display); font-weight: 600; flex-shrink: 0; }
.bk-step-h h3 { font-size: 1.4rem; margin: 0; }

.svc-choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .7rem; }
.svc-choice { position: relative; cursor: pointer; }
.svc-choice input { position: absolute; opacity: 0; }
.svc-choice-body { display: block; border: 1.5px solid var(--line); border-radius: 14px; padding: .9rem 1rem; transition: all .2s var(--ease); background: var(--cream); }
.svc-choice-body b { display: block; font-family: var(--f-display); font-size: 1.15rem; color: var(--mauve); }
.svc-choice-body small { color: var(--muted); font-size: .85rem; }
.svc-choice input:checked + .svc-choice-body { border-color: var(--rose); background: var(--blush); box-shadow: 0 0 0 3px rgba(198,137,138,.15); }
.svc-choice input:focus-visible + .svc-choice-body { outline: 2.5px solid var(--rose-dk); outline-offset: 2px; }

.bk-addons { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: center; }
.bk-addons-lab { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--rose-dk); width: 100%; }
.addon-choice { display: flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--ink); cursor: pointer; }
.addon-choice b { color: var(--mauve); }
.addon-choice small { color: var(--muted); }

.bk-calendar { min-height: 120px; }
.bk-loading, .bk-empty { text-align: center; color: var(--muted); padding: 2rem 1rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-title { font-family: var(--f-display); font-size: 1.3rem; color: var(--mauve); font-weight: 600; text-transform: capitalize; }
.cal-nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--mauve); font-size: 1.4rem; cursor: pointer; transition: all .2s var(--ease); line-height: 1; }
.cal-nav:hover:not(:disabled) { background: var(--rose); color: #fff; border-color: var(--rose); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-wd { text-align: center; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding-bottom: .4rem; }
.cal-cell { aspect-ratio: 1; display: grid; place-items: center; font-size: .92rem; border-radius: 10px; }
.cal-cell.empty { visibility: hidden; }
.cal-day { border: 1px solid transparent; background: var(--cream); color: var(--ink); cursor: pointer; font-family: var(--f-body); transition: all .18s var(--ease); }
.cal-day:hover:not(.off) { background: var(--blush); border-color: var(--rose); }
.cal-day.off { color: #d3bdba; background: transparent; cursor: default; }
.cal-day.is-sel { background: var(--rosegold); color: #fff; border-color: transparent; }

.bk-slots { margin-top: 1.4rem; }
.slots-title { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rose-dk); margin-bottom: .7rem; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: .5rem; }
.slot-btn { padding: .6rem .5rem; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--mauve); font-family: var(--f-body); font-size: .95rem; cursor: pointer; transition: all .18s var(--ease); }
.slot-btn:hover { border-color: var(--rose); background: var(--blush); }
.slot-btn.is-sel { background: var(--rosegold); color: #fff; border-color: transparent; }
.bk-selected { margin-top: 1rem; color: var(--rose-dk); font-weight: 500; }

/* Confirmation */
.booking-confirm { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 5vw, 3rem); box-shadow: var(--shadow); text-align: center; border: 1px solid var(--line-soft); }
.confirm-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; margin: 0 auto 1rem; }
.confirm-ico svg { width: 38px; height: 38px; color: var(--rose-dk); }
.booking-confirm h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin: .2rem 0 .8rem; }
.confirm-lead { color: var(--muted); max-width: 44ch; margin: 0 auto 1.6rem; }
.confirm-recap { text-align: left; background: var(--cream); border-radius: 16px; padding: 1.2rem 1.4rem; margin: 0 auto 1.6rem; max-width: 460px; }
.recap-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.recap-row:last-child { border-bottom: 0; }
.recap-row span { color: var(--muted); }
.recap-row b { color: var(--mauve); text-align: right; }
.recap-total b { font-family: var(--f-display); font-size: 1.3rem; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-trust { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; align-items: stretch;
    background: var(--cream); gap: 0; padding: .5rem 6vw 1.2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform-origin: top; max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .35s var(--ease), opacity .3s var(--ease);
  }
  .nav-menu.open { max-height: 460px; opacity: 1; }
  .nav-menu li { border-bottom: 1px solid var(--line-soft); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a { display: block; padding: .9rem 0; }
  .nav-cta { padding-top: .7rem; }
  .nav-cta a { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-row { flex-wrap: wrap; }
  .price-row .pr-price { margin-left: auto; }
  .hero-badge--tl { left: 0; }
  .hero-badge--br { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
