/* =================================================================
   BEIM SANDY — Pédicure Médicale, Schieren (L)
   Hand-crafted stylesheet. No framework runtime → loads fast on any device.
   Palette: magenta-rose + silver-grey + whisper of rose-gold on warm ivory.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — matched to the flyer: vivid magenta + silver/grey */
  --rose:        #e30a7e;   /* primary magenta from the flyer (buttons, large accents) */
  --rose-600:    #c80a6f;
  --rose-ink:    #c80a6f;   /* AA-safe magenta for SMALL text on light (5.28:1) */
  --rose-700:    #a01060;   /* deeper magenta (gradient edge) */
  --rose-soft:   #f6aed3;
  --rose-tint:   #fdeaf4;
  --plum:        #471d36;   /* deep headings */
  --gold:        #9aa0a6;   /* silver/grey accent (matches the flyer feather) */
  --gold-soft:   #d9dde2;

  /* Neutrals */
  --ivory:       #fcf6f9;   /* page background — soft silver-pink white */
  --ivory-2:     #f4ecf1;
  --surface:     #ffffff;
  --silver:      #8d9298;
  --silver-100:  #edeef1;
  --silver-200:  #e1e4e8;
  --ink:         #38262e;   /* body text */
  --muted:       #6b5560;   /* secondary text (>=4.5:1 on ivory) */

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script:"Parisienne", "Snell Roundhand", cursive;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Elevation (soft UI evolution) */
  --shadow-sm: 0 1px 2px rgba(79,34,56,.06), 0 4px 12px rgba(79,34,56,.05);
  --shadow:    0 6px 18px rgba(79,34,56,.08), 0 18px 40px rgba(79,34,56,.07);
  --shadow-lg: 0 12px 34px rgba(79,34,56,.12), 0 30px 70px rgba(79,34,56,.10);
  --ring: 0 0 0 3px rgba(216,30,123,.28);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .18s;
  --t: .32s;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); color: var(--plum); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p  { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }

.script { font-family: var(--script); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--rose-ink);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.is-center::after { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .7rem; }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--rose); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.7rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  background: var(--bg); color: var(--fg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  overflow: hidden; isolation: isolate;
}
.btn::after { /* soft sheen */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--rose-600); }
.btn:hover::after { transform: translateX(120%); }
.btn:focus-visible { outline: none; box-shadow: var(--ring), var(--shadow); }
.btn--ghost { --bg: transparent; --fg: var(--plum); border: 1px solid var(--silver-200); box-shadow: none; }
.btn--ghost:hover { background: var(--surface); border-color: var(--rose-soft); }
.btn--gold { --bg: linear-gradient(135deg, var(--gold) 0%, #d9b985 100%); --fg: #4a371d; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), backdrop-filter var(--t);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.header.scrolled { background: rgba(252,248,246,.86); backdrop-filter: saturate(150%) blur(14px); box-shadow: 0 1px 0 var(--silver-200), var(--shadow-sm); }

/* Logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { height: 42px; width: auto; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--script); font-size: 1.7rem; color: var(--plum); margin-bottom: 1px; }
.brand__sub { font-family: var(--sans); font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-ink); font-weight: 600; }

/* Primary nav */
.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative; padding: .55rem .85rem; border-radius: 999px;
  font-weight: 500; font-size: .95rem; color: var(--plum);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 1.5px;
  background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.nav__link:hover { color: var(--rose-ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--rose-ink); }

.header__actions { display: flex; align-items: center; gap: .7rem; }

/* Mobile-only extras live inside the nav; hidden on desktop */
.mobile-extra { display: none; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .7rem; border-radius: 999px;
  border: 1px solid var(--silver-200); font-weight: 600; font-size: .82rem; color: var(--plum);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.lang__btn:hover { border-color: var(--rose-soft); background: var(--surface); }
.lang__btn svg { width: 15px; height: 15px; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + .5rem); min-width: 168px;
  background: var(--surface); border: 1px solid var(--silver-200); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .35rem; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transform-origin: top right;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  display: flex; width: 100%; align-items: center; gap: .6rem; padding: .55rem .65rem; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--ink); text-align: left;
}
.lang__opt:hover { background: var(--rose-tint); color: var(--rose-700); }
.lang__opt[aria-selected="true"] { background: var(--rose-tint); color: var(--rose-700); font-weight: 600; }
.lang__code { display: inline-grid; place-items: center; width: 30px; height: 22px; border-radius: 5px; background: var(--ivory-2); border: 1px solid var(--silver-200); font-size: .66rem; font-weight: 700; letter-spacing: .04em; color: var(--plum); flex: none; }
.lang__opt[aria-selected="true"] .lang__code { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Mobile toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--plum); border-radius: 2px; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--plum); border-radius: 2px; transition: transform .3s var(--ease); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5rem)); padding-bottom: clamp(3rem, 8vw, 6rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(60% 50% at 78% 12%, var(--rose-tint) 0%, transparent 60%),
    radial-gradient(50% 45% at 8% 88%, #f4ecf5 0%, transparent 55%),
    var(--ivory);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__content { max-width: 36rem; }
.hero h1 { margin-top: 1.1rem; }
.hero h1 .accent { color: var(--rose); font-style: italic; }
.hero__lead { margin-top: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.4rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--muted); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--rose); flex: none; }

/* Hero visual (image collage placeholder) */
.hero__visual { position: relative; aspect-ratio: 4/5; }
.hero__photo {
  position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: linear-gradient(135deg, #f7d7e6, #efe2e8);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -1.4rem; bottom: 1.8rem; z-index: 3;
  background: var(--surface); border-radius: var(--radius); padding: 1rem 1.2rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .85rem; max-width: 230px;
}
.hero__badge .ring { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--rose-tint); color: var(--rose); flex: none; }
.hero__badge .ring svg { width: 22px; height: 22px; }
.hero__badge b { font-family: var(--serif); color: var(--plum); font-size: 1.25rem; display: block; }
.hero__badge span { font-size: .78rem; color: var(--muted); }
.hero__glow { position: absolute; z-index: 2; right: -1rem; top: -1rem; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(227,10,126,.22), transparent 70%); filter: blur(4px); }

/* Floating petals */
.petals { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.petal { position: absolute; top: -8%; opacity: 0; color: var(--rose-soft); animation: petal-fall linear infinite; }
.petal svg { width: 100%; height: 100%; }
@keyframes petal-fall {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: .9; }
  90%  { opacity: .7; }
  100% { transform: translateY(112vh) translateX(40px) rotate(220deg); opacity: 0; }
}

/* ---------- Image placeholder pattern ---------- */
.ph {
  position: relative; overflow: hidden; background:
    linear-gradient(135deg, var(--rose-tint), var(--ivory-2));
  display: grid; place-items: center;
}
.ph::after { content: attr(data-label); position: absolute; bottom: 10px; right: 12px; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); opacity: .8; }
.ph svg { width: 38%; max-width: 90px; color: var(--rose-soft); opacity: .9; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--silver-200);
  border-radius: var(--radius); padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t);
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--rose-soft); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--rose-tint); color: var(--rose); margin-bottom: 1.1rem; transition: transform var(--t) var(--ease); }
.card:hover .card__icon { transform: scale(1.06) rotate(-3deg); }
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; }
.card__tag { position: absolute; top: 1.2rem; right: 1.2rem; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-700); background: var(--rose-tint); border: 1px solid var(--rose-soft); padding: .25rem .55rem; border-radius: 999px; }
.card--link { cursor: pointer; }
.card__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--rose-ink); font-weight: 600; font-size: .9rem; }
.card__more svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.card--link:hover .card__more svg { transform: translateX(4px); }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: .9rem; }
.feature-list .tick { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--rose-tint); color: var(--rose); margin-top: 2px; }
.feature-list .tick svg { width: 16px; height: 16px; }
.feature-list b { color: var(--plum); font-family: var(--serif); font-weight: 600; }
.feature-list p { font-size: .94rem; margin-top: .1rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--rose); font-weight: 700; line-height: 1; }
.stat__label { margin-top: .5rem; font-size: .86rem; color: var(--muted); letter-spacing: .02em; }

/* ---------- Testimonials ---------- */
.quote { background: var(--surface); border: 1px solid var(--silver-200); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; }
.quote__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.quote__stars svg { width: 18px; height: 18px; }
.quote p { color: var(--ink); font-size: 1.02rem; line-height: 1.7; }
.quote__by { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-soft), var(--gold-soft)); display: grid; place-items: center; font-family: var(--serif); color: var(--plum); font-weight: 600; flex: none; }
.quote__by b { display: block; color: var(--plum); font-size: .95rem; }
.quote__by span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.6rem, 6vw, 4.5rem); text-align: center; color: #fff; background: linear-gradient(135deg, var(--rose-700) 0%, var(--rose) 55%, #e0568f 100%); box-shadow: var(--shadow-lg); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.cta-band::before { width: 320px; height: 320px; background: rgba(255,255,255,.12); top: -120px; right: -80px; }
.cta-band::after { width: 240px; height: 240px; background: rgba(255,255,255,.16); bottom: -120px; left: -60px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); margin: 1rem auto 0; max-width: 52ch; position: relative; }
.cta-band .btn-row { position: relative; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }
.cta-band .btn { background: #fff; color: var(--rose-700); }
.cta-band .btn:hover { background: #fff; color: var(--rose-700); transform: translateY(-2px); }
.cta-band .btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.cta-band .btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: #2b1722; color: #e9dde3; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer a { color: #e9dde3; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer .brand__name { color: #fff; }
.footer__about p { color: #c9b4bf; margin-top: 1rem; font-size: .92rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer__links li { margin-bottom: .65rem; }
.footer__links a { color: #c9b4bf; font-size: .94rem; transition: color var(--t-fast); }
.footer__links a:hover { color: var(--rose-soft); }
.footer__contact li { display: flex; gap: .7rem; color: #c9b4bf; font-size: .94rem; margin-bottom: .85rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--rose-soft); flex: none; margin-top: 3px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); color: #b59aa6; font-size: .84rem; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background var(--t-fast), transform var(--t-fast); }
.footer__social a:hover { background: var(--rose); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 5rem)); padding-bottom: clamp(2.5rem, 6vw, 4rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 60% at 80% -10%, var(--rose-tint) 0%, transparent 60%), var(--ivory); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--rose-ink); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { margin-top: 1.1rem; max-width: 58ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--silver-200); border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1rem; box-shadow: var(--shadow-sm); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; flex: none; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--serif); color: var(--plum); font-size: 1.05rem; margin-bottom: .25rem; }
.info-card p, .info-card a:not(.btn) { font-size: .92rem; color: var(--muted); }
.info-card a:not(.btn):hover { color: var(--rose-ink); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--plum); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--silver-200); background: var(--surface); font: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }

.map-embed { width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .7rem 0; border-bottom: 1px solid var(--silver-100); font-size: .94rem; }
.hours-table td:last-child { text-align: right; color: var(--plum); font-weight: 600; }
.hours-table tr.today td { color: var(--rose); }
.hours-table tr.today td:last-child { color: var(--rose); }

/* ---------- Booking ---------- */
.booking-shell { display: grid; grid-template-columns: 1fr 360px; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.steps { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--muted); }
.step__n { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--silver-200); font-weight: 700; font-size: .85rem; background: var(--surface); transition: all var(--t) var(--ease); }
.step.active .step__n { background: var(--rose); border-color: var(--rose); color: #fff; box-shadow: var(--ring); }
.step.done .step__n { background: var(--rose-tint); border-color: var(--rose-soft); color: var(--rose); }
.step.active { color: var(--plum); font-weight: 600; }
.step__bar { flex: 1; min-width: 18px; height: 1.5px; background: var(--silver-200); }

.panel { display: none; animation: fade-up .4s var(--ease-out) both; }
.panel.active { display: block; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.svc-option { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; width: 100%; text-align: left; padding: 1.1rem 1.3rem; border: 1.5px solid var(--silver-200); border-radius: var(--radius); background: var(--surface); margin-bottom: .9rem; transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast); }
.svc-option:hover { border-color: var(--rose-soft); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.svc-option.selected { border-color: var(--rose); box-shadow: var(--ring); }
.svc-option .so-ic { width: 46px; height: 46px; border-radius: 14px; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; }
.svc-option .so-ic svg { width: 23px; height: 23px; }
.svc-option b { color: var(--plum); font-family: var(--serif); font-size: 1.05rem; }
.svc-option .so-meta { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.svc-option .so-price { font-family: var(--serif); color: var(--rose); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }

.cal { background: var(--surface); border: 1px solid var(--silver-200); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__head b { font-family: var(--serif); color: var(--plum); font-size: 1.15rem; text-transform: capitalize; }
.cal__nav { display: flex; gap: .4rem; }
.cal__nav button { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--silver-200); display: grid; place-items: center; color: var(--plum); transition: background var(--t-fast), border-color var(--t-fast); }
.cal__nav button:hover:not([disabled]) { background: var(--rose-tint); border-color: var(--rose-soft); color: var(--rose); }
.cal__nav button[disabled] { opacity: .35; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal__dow { text-align: center; font-size: .72rem; font-weight: 600; color: var(--silver); padding: .4rem 0; text-transform: uppercase; }
.cal__day { aspect-ratio: 1; border-radius: 10px; display: grid; place-items: center; font-size: .92rem; font-weight: 500; color: var(--ink); border: 1px solid transparent; transition: background var(--t-fast), color var(--t-fast); }
.cal__day:hover:not([disabled]):not(.is-empty) { background: var(--rose-tint); color: var(--rose-700); }
.cal__day[disabled] { color: var(--silver-200); cursor: not-allowed; }
.cal__day.is-empty { pointer-events: none; }
.cal__day.selected { background: var(--rose); color: #fff; }
.cal__day.has-slots::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); position: absolute; transform: translateY(13px); }
.cal__day { position: relative; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px,1fr)); gap: .6rem; margin-top: 1.2rem; }
.slot { padding: .7rem; border-radius: 10px; border: 1.5px solid var(--silver-200); background: var(--surface); font-weight: 600; font-size: .92rem; color: var(--plum); transition: all var(--t-fast); }
.slot:hover { border-color: var(--rose-soft); background: var(--rose-tint); }
.slot.selected { background: var(--rose); border-color: var(--rose); color: #fff; }
.slots-empty { color: var(--muted); font-size: .92rem; padding: 1rem 0; }

/* Booking summary */
.summary { background: var(--surface); border: 1px solid var(--silver-200); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--nav-h) + 1rem); }
.summary h3 { font-size: 1.2rem; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--silver-100); }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: .92rem; }
.summary__row span:first-child { color: var(--muted); }
.summary__row span:last-child { color: var(--plum); font-weight: 600; text-align: right; }
.summary__row.empty span:last-child { color: var(--silver); font-weight: 400; font-style: italic; }
.summary__total { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--silver-100); font-family: var(--serif); }
.summary__total span:first-child { color: var(--plum); font-weight: 600; }
.summary__total span:last-child { color: var(--rose); font-weight: 700; font-size: 1.3rem; }
.summary__note { font-size: .78rem; color: var(--muted); margin-top: 1rem; display: flex; gap: .5rem; }
.summary__note svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 2px; }

.booking-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }

.booking-success { text-align: center; padding: 2rem 1rem; }
.booking-success .check { width: 84px; height: 84px; border-radius: 50%; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; margin: 0 auto 1.5rem; animation: pop .5s var(--ease-out) both; }
.booking-success .check svg { width: 42px; height: 42px; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

.demo-banner { display: flex; gap: .7rem; align-items: flex-start; background: #fff8ec; border: 1px solid var(--gold-soft); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: 1.8rem; font-size: .86rem; color: #8a6b35; }
.demo-banner svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--gold); }

/* ---------- Scroll reveal (hand-tuned: focus-in for text, scale-settle for media) ---------- */
.reveal { opacity: 0; transform: translateY(16px); filter: blur(6px); transition: opacity .75s var(--ease-out), transform .9s var(--ease-out), filter .75s var(--ease-out); will-change: opacity, transform, filter; }
.reveal.in-view { opacity: 1; transform: none; filter: none; }
/* Images settle gently within their frame instead of sliding */
.split__media.reveal, .hero__visual.reveal { transform: none; filter: none; }
.split__media.reveal img, .hero__visual.reveal img { transition: transform 1.3s var(--ease-out); transform: scale(1.12); }
.split__media.reveal.in-view img, .hero__visual.reveal.in-view img { transform: scale(1); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ---------- Decorative divider ---------- */
.bloom-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); margin: 0 auto; }
.bloom-divider::before, .bloom-divider::after { content: ""; height: 1px; width: min(120px, 18vw); background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.bloom-divider::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.bloom-divider svg { width: 24px; height: 24px; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.maxw-prose { max-width: 62ch; }
.skip-link { position: absolute; left: -999px; top: .5rem; z-index: 100; background: var(--rose); color: #fff; padding: .6rem 1rem; border-radius: 8px; }
.skip-link:focus { left: .5rem; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { width: 100%; max-width: 440px; margin-inline: auto; aspect-ratio: 4/3; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .booking-shell { grid-template-columns: 1fr; }
  .summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav, .header__actions .lang, .header__actions .btn { display: none; }
  .nav-toggle { display: flex; }
  /* Mobile menu drawer */
  .nav.mobile {
    display: flex; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0; padding: 1.5rem var(--gutter);
    background: var(--ivory); transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  body.menu-open .nav.mobile { transform: translateX(0); }
  body.menu-open { overflow: hidden; }
  .nav.mobile .nav__link { font-size: 1.15rem; padding: 1rem .2rem; border-bottom: 1px solid var(--silver-100); border-radius: 0; }
  .nav.mobile .nav__link::after { display: none; }
  .nav.mobile .mobile-extra { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
  .nav.mobile .mobile-extra .btn { display: inline-flex; }
  .nav.mobile .lang--mobile { display: block; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
}
.lang--mobile { display: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .split__media.reveal img, .hero__visual.reveal img { transform: none !important; }
  .petals { display: none; }
}
