/* =====================================================================
   Grosics Hajszalon — public design system
   Hand-written. No framework. Mobile-first.
   ===================================================================== */

:root {
  --ivory: #fbf7f4;
  --ivory-2: #f6efe9;
  --blush: #f3e3dd;
  --blush-strong: #e8c8bd;
  --rose: #b06e5b;
  --rose-deep: #8c4c3d;
  --gold: #b39a6b;
  --ink: #241f1d;
  --ink-soft: #5b524d;
  --ink-faint: #8a807a;
  --line: rgba(36, 31, 29, .12);
  --line-soft: rgba(36, 31, 29, .07);
  --white: #fff;

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 74rem;
  --wrap-narrow: 44rem;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(36, 31, 29, .06), 0 4px 16px rgba(36, 31, 29, .05);
  --shadow-md: 0 8px 40px rgba(36, 31, 29, .12);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --tap: 44px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--rose); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }

.visually-hidden, .skip-link:not(:focus):not(:focus-within) {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: .5rem; left: .5rem; z-index: 200; background: var(--ink); color: #fff;
  padding: .6rem 1rem; border-radius: var(--radius);
}

:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section--tint { background: var(--ivory-2); }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--dark h2 { color: var(--ivory); }

.eyebrow {
  font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose); margin: 0 0 .8rem;
}
.section-head { max-width: 40rem; margin-bottom: 2.5rem; }
.section-head__lead { color: var(--ink-soft); font-size: 1.05rem; }
.section-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--rose); --btn-fg: #fff; --btn-bd: var(--rose);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: var(--tap); padding: .8rem 1.5rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  color: var(--btn-fg); background: var(--btn-bg); border: 1px solid var(--btn-bd);
  border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { color: var(--btn-fg); background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--rose); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--outline:hover { --btn-fg: #fff; background: var(--ink); border-color: var(--ink); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-soft); --btn-bd: transparent; }
.btn--ghost:hover { background: var(--line-soft); color: var(--ink); border-color: transparent; }
.btn--danger { --btn-bg: #a23b2c; --btn-bd: #a23b2c; }
.btn--danger:hover { background: #8a3125; border-color: #8a3125; }
.btn--sm { min-height: 38px; padding: .55rem 1.05rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem;
  text-decoration: none; color: var(--rose-deep);
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); background: color-mix(in srgb, var(--ivory) 96%, transparent); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__logo { display: block; width: auto; height: 52px; flex: none; }
@media (min-width: 60rem) { .brand__logo { height: 64px; } }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; white-space: nowrap; }
.brand__tag { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
@media (max-width: 24rem) { .brand__tag { display: none; } }
@media (min-width: 60rem) { .brand__name { font-size: 1.12rem; } .brand__tag { font-size: .68rem; letter-spacing: .12em; } }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-desktop a {
  font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  padding-block: .4rem; position: relative;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--rose); transition: right .3s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { right: 0; }
.nav-desktop a[aria-current="page"] { color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: .75rem; }
.nav-desktop-cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap); height: var(--tap); background: transparent; border: 1px solid var(--line);
  border-radius: 50%; cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile {
  border-top: 1px solid var(--line); background: var(--ivory);
  padding: 1rem 1.25rem 1.5rem; display: grid; gap: 1rem;
  animation: slideDown .3s var(--ease);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; display: grid; }
.nav-mobile a { display: block; padding: .85rem 0; font-size: 1.05rem; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.nav-mobile a[aria-current="page"] { color: var(--rose-deep); }
.nav-mobile__social { font-size: .9rem; color: var(--ink-soft); text-decoration: none; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 46rem); display: flex; align-items: flex-end; overflow: hidden; background: var(--blush); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,31,29,.12) 0%, rgba(36,31,29,.05) 40%, rgba(36,31,29,.55) 100%); }
.hero--placeholder { background:
  radial-gradient(120% 80% at 15% 15%, var(--blush-strong) 0%, transparent 55%),
  radial-gradient(120% 90% at 90% 100%, var(--ivory-2) 0%, transparent 60%),
  var(--blush); }
.hero--placeholder .hero__overlay { background: linear-gradient(180deg, transparent 45%, rgba(36,31,29,.28) 100%); }
.hero__inner { position: relative; padding-block: 3.5rem; max-width: 42rem; color: #fff; }
.hero--placeholder .hero__inner { color: var(--ink); }
.hero__eyebrow { font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem; }
.hero__title { font-size: clamp(2.6rem, 7vw, 4.4rem); margin-bottom: 1rem; color: inherit; }
.hero__text { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 34rem; margin-bottom: 2rem; color: inherit; opacity: .95; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero--placeholder .hero__actions .btn--outline { --btn-fg: var(--ink); --btn-bd: var(--ink); }

/* ---------- Intro ---------- */
.intro__grid { display: grid; gap: 2.5rem; }
.intro__text p { color: var(--ink-soft); }
.intro__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; align-content: start; }
.intro__list li { padding-left: 1.5rem; position: relative; color: var(--ink-soft); }
.intro__list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; background: var(--rose); border-radius: 50%; }
.intro__list strong { color: var(--ink); font-weight: 600; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card__desc { color: var(--ink-soft); font-size: .93rem; }
.service-card__price { font-family: var(--serif); font-size: 1.15rem; color: var(--rose-deep); margin: .75rem 0 1rem; }

/* ---------- Page hero ---------- */
.page-hero { background: var(--blush); padding-block: clamp(3rem, 9vw, 6rem); }
.page-hero--slim { padding-block: clamp(2.5rem, 6vw, 4rem); }
.page-hero__lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 42rem; }
.page-hero__note { font-size: .95rem; color: var(--ink-soft); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ---------- Services listing ---------- */
.service-cat { padding-block: 2.5rem; border-bottom: 1px solid var(--line); }
.service-cat:last-child { border-bottom: 0; }
.service-cat__head { max-width: 40rem; margin-bottom: 1.5rem; }
.service-cat__head p { color: var(--ink-soft); }
.service-cat__list { display: grid; gap: 1rem; }
.service-row {
  display: grid; gap: 1rem; padding: 1.5rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.service-row__main h3 { margin-bottom: .35rem; }
.service-row__desc { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.service-row__meta { font-size: .82rem; color: var(--ink-faint); margin: .5rem 0 0; }
.service-row__pricing { display: grid; gap: 1rem; align-content: start; }

/* ---------- Price rendering ---------- */
.price-lengths { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.price-lengths li {
  display: flex; flex-direction: column; gap: .1rem; padding: .6rem .75rem;
  background: var(--ivory-2); border-radius: var(--radius);
}
.price-lengths__label { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.price-lengths__value { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); }
.price-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px dashed var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list__label { color: var(--ink-soft); font-size: .93rem; }
.price-list__meta { color: var(--ink-faint); font-size: .8rem; margin-left: .4rem; }
.price-list__value { font-family: var(--serif); color: var(--ink); white-space: nowrap; }
.price-note { font-size: .85rem; color: var(--ink-faint); margin: 0; font-style: italic; }

.price-sheet { display: grid; gap: 2.5rem; }
.price-cat h2 { padding-bottom: .6rem; border-bottom: 2px solid var(--rose); display: inline-block; }
.price-cat__items { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.price-entry { padding: 1.4rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.price-entry__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.price-entry__head h3 { margin: 0; }
.price-entry__book { font-size: .82rem; font-weight: 600; white-space: nowrap; }
.price-sheet__disclaimer { text-align: center; color: var(--ink-faint); font-size: .85rem; }

/* ---------- Booking band ---------- */
.booking-band__inner { display: grid; gap: 1.5rem; align-items: center; }
.booking-band p { color: rgba(251, 247, 244, .8); margin: 0; }

/* ---------- Contact strip ---------- */
.contact-strip { border-top: 1px solid var(--line); }
.contact-strip__grid { display: grid; gap: 1.5rem; }
.contact-strip__item .eyebrow { margin-bottom: .4rem; }
.contact-strip__value { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); text-decoration: none; }
a.contact-strip__value:hover { color: var(--rose); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.gallery-grid--preview { grid-template-columns: repeat(2, 1fr); }
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--blush); position: relative; }
.gallery-item.is-hidden { display: none; }
.gallery-item a { display: block; overflow: hidden; }
.gallery-item img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { font-size: .8rem; color: var(--ink-faint); padding: .5rem .25rem 0; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.gallery-filter__btn {
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  padding: .45rem 1rem; border-radius: 999px; font: inherit; font-size: .85rem; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.gallery-filter__btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.empty-state { padding: 3rem 1.5rem; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-lg); color: var(--ink-soft); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: rgba(28, 24, 22, .92); padding: 1.5rem; }
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; max-width: min(90vw, 60rem); max-height: 86vh; display: flex; flex-direction: column; gap: .5rem; }
.lightbox__figure img { max-height: 80vh; width: auto; margin-inline: auto; border-radius: 2px; }
.lightbox__figure figcaption { color: rgba(255,255,255,.8); text-align: center; font-size: .9rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer;
  width: 3rem; height: 3rem; border-radius: 50%; font-size: 1.6rem; line-height: 1; display: grid; place-items: center;
  transition: background-color .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- About ---------- */
.about__grid { display: grid; gap: 2.5rem; }
.about__media { border-radius: var(--radius-lg); overflow: hidden; background: var(--blush); }
.about__media--placeholder { aspect-ratio: 4 / 5; display: grid; place-items: center; font-family: var(--serif); font-size: 3rem; color: var(--rose); }
.prose { max-width: 38rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--rose-deep); }
.prose .btn { color: #fff; margin-top: 1rem; }
.prose__updated { font-size: .82rem; color: var(--ink-faint); margin-top: 2rem; }

/* ---------- Contact page ---------- */
.contact__grid { display: grid; gap: 2.5rem; }
.contact__list { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.5rem; margin: 1rem 0 2rem; }
.contact__list dt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); align-self: center; }
.contact__list dd { margin: 0; font-size: 1.02rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .65rem 0; border-bottom: 1px solid var(--line-soft); }
.hours-table th { font-weight: 500; color: var(--ink-soft); }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--rose-deep); font-weight: 600; }
.hours-table__closed { color: var(--ink-faint); }
.hours-table__note { font-size: .85rem; color: var(--ink-faint); margin-top: .75rem; }
.map-wrap { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--blush); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { width: 100%; height: 100%; display: grid; place-items: center; text-align: center; color: var(--ink-soft); padding: 2rem; }

.notice { padding: 1rem 1.25rem; border-radius: var(--radius); background: var(--blush); border: 1px solid var(--blush-strong); font-size: .95rem; }
.notice--soft { background: var(--ivory-2); border-color: var(--line); color: var(--ink-soft); }
.notice--ok { background: #e8f1e8; border-color: #c3ddc3; color: #2f5233; }

/* ---------- Booking wizard ---------- */
.booking { --gap: 1.5rem; }
.booking__steps { display: flex; list-style: none; margin: 0 0 2rem; padding: 0; gap: .5rem; counter-reset: s; overflow-x: auto; }
.booking__steps li {
  display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--ink-faint); white-space: nowrap; flex: none;
}
.booking__steps li span {
  display: grid; place-items: center; width: 1.7rem; height: 1.7rem; border-radius: 50%;
  border: 1px solid var(--line); font-weight: 600; font-size: .8rem;
}
.booking__steps li.is-active { color: var(--ink); }
.booking__steps li.is-active span { background: var(--rose); border-color: var(--rose); color: #fff; }
.booking__steps li.is-done span { background: var(--ink); border-color: var(--ink); color: #fff; }

.booking__step { border: 0; padding: 0; margin: 0; display: none; }
.booking__step.is-active { display: block; animation: fadeUp .35s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.booking__q { font-family: var(--serif); font-size: 1.5rem; padding: 0; margin-bottom: 1.25rem; }
.booking__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.booking__chosen-date { font-weight: 600; }
.booking__policy { font-size: .85rem; color: var(--ink-faint); background: var(--ivory-2); padding: .9rem 1rem; border-radius: var(--radius); }

.service-picker { display: grid; gap: 1.5rem; }
.service-picker__group h3 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); margin-bottom: .6rem; }
.service-option {
  display: flex; align-items: flex-start; gap: .9rem; padding: 1rem; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  margin-bottom: .5rem;
}
.service-option:hover { border-color: var(--blush-strong); }
.service-option input { margin-top: .2rem; accent-color: var(--rose); width: 1.1rem; height: 1.1rem; flex: none; }
.service-option:has(input:checked) { border-color: var(--rose); box-shadow: 0 0 0 1px var(--rose); background: color-mix(in srgb, var(--blush) 35%, var(--white)); }
.service-option__body { flex: 1; display: grid; gap: .15rem; }
.service-option__name { font-weight: 600; }
.service-option__desc { font-size: .85rem; color: var(--ink-soft); }
.service-option__price { font-family: var(--serif); color: var(--rose-deep); font-size: .95rem; white-space: nowrap; }

.datepicker { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1rem; background: var(--white); max-width: 24rem; }
.datepicker__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.datepicker__head strong { font-family: var(--serif); font-size: 1.05rem; }
.datepicker__arrow { width: 2.2rem; height: 2.2rem; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.datepicker__arrow:disabled { opacity: .3; cursor: not-allowed; }
.datepicker__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.datepicker__dow { text-align: center; font-size: .7rem; color: var(--ink-faint); padding: .35rem 0; text-transform: uppercase; }
.datepicker__day {
  aspect-ratio: 1; border: 0; background: transparent; border-radius: 50%; cursor: pointer;
  font: inherit; font-size: .9rem; color: var(--ink); transition: background-color .15s var(--ease);
}
.datepicker__day:hover:not(:disabled) { background: var(--blush); }
.datepicker__day:disabled { color: var(--line); cursor: not-allowed; }
.datepicker__day.is-selected { background: var(--rose); color: #fff; }
.datepicker__day.is-empty { visibility: hidden; }
.datepicker__hint { font-size: .78rem; color: var(--ink-faint); margin: .75rem 0 0; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr)); gap: .5rem; min-height: 3rem; }
.slots__loading, .slots__empty { grid-column: 1 / -1; color: var(--ink-soft); font-size: .92rem; }
.slot {
  min-height: var(--tap); border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
  cursor: pointer; font: inherit; font-variant-numeric: tabular-nums; transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.slot:hover { border-color: var(--rose); }
.slot.is-selected { background: var(--rose); color: #fff; border-color: var(--rose); }

.booking__summary { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.25rem; margin: 0 0 1.5rem; }
.booking__summary dt { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); align-self: center; }
.booking__summary dd { margin: 0; font-weight: 500; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: .4rem; }
.field__opt { font-weight: 400; color: var(--ink-faint); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field input[type="password"], .field input[type="date"], .field input[type="time"],
.field input[type="number"], .field select, .field textarea {
  width: 100%; min-height: var(--tap); padding: .7rem .9rem; font: inherit;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px color-mix(in srgb, var(--rose) 18%, transparent); outline: none; }
.field textarea { resize: vertical; min-height: 5rem; }
.field__hint { font-size: .8rem; color: var(--ink-faint); margin: .35rem 0 0; }
.field__error { font-size: .82rem; color: #a23b2c; margin: .35rem 0 0; min-height: 0; }
.field__error--form { margin-bottom: 1rem; }
.field--check label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .92rem; }
.field--check input { margin-top: .2rem; accent-color: var(--rose); width: 1.05rem; height: 1.05rem; flex: none; }
.field.has-error input, .field.has-error textarea { border-color: #a23b2c; }

/* ---------- Confirmation ---------- */
.confirm__inner { text-align: center; }
.confirm__badge { display: grid; place-items: center; width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--blush); color: var(--rose-deep); }
.confirm__lead { color: var(--ink-soft); max-width: 34rem; margin-inline: auto; }
.confirm__details { display: grid; gap: .75rem; text-align: left; max-width: 26rem; margin: 2rem auto; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.confirm__details div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line-soft); padding-bottom: .6rem; }
.confirm__details div:last-child { border-bottom: 0; padding-bottom: 0; }
.confirm__details dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); }
.confirm__details dd { margin: 0; font-weight: 600; text-align: right; }
.confirm__ref { font-family: var(--serif); color: var(--rose-deep); letter-spacing: .02em; }
.confirm__note { font-size: .9rem; color: var(--ink-soft); max-width: 32rem; margin-inline: auto; }
.confirm__note--muted { color: var(--ink-faint); font-size: .84rem; }
.confirm__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.error-page { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251, 247, 244, .72); padding-top: clamp(3rem, 7vw, 4.5rem); font-size: .92rem; }
.site-footer__grid { display: grid; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer h2 { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(251,247,244,.5); margin-bottom: .9rem; }
.site-footer .brand__name { color: var(--ivory); font-size: 1.2rem; }
.site-footer__tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,247,244,.5); margin: .4rem 0 0; }
.site-footer__owner { margin-top: .75rem; font-size: .85rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(251, 247, 244, .78); text-decoration: none; }
.site-footer a:hover { color: var(--ivory); }
.site-footer__social { display: inline-block; margin-top: 1rem; border-bottom: 1px solid rgba(251,247,244,.3); padding-bottom: 2px; }
.site-footer__bottom { display: flex; flex-direction: column; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid rgba(251, 247, 244, .12); font-size: .82rem; }
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Mobile CTA + cookie note ---------- */
.mobile-cta {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  display: flex; align-items: center; justify-content: center; min-height: 52px;
  background: var(--rose); color: #fff; text-decoration: none; font-weight: 600;
  border-radius: 999px; box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease);
}
.js .mobile-cta { transform: translateY(150%); }
.js .mobile-cta.is-visible { transform: none; }
body:has(.booking) .mobile-cta { display: none; }

.cookie-note {
  position: fixed; left: 1rem; right: 1rem; bottom: 5.25rem; z-index: 95;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .75rem;
  font-size: .85rem;
}
.cookie-note[hidden] { display: none; }
.cookie-note p { margin: 0; color: var(--ink-soft); }

/* ---------- Reveal animation ----------
   Only hides content when JS is active (html.js). Without JS, or if the
   script fails, everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   Responsive — tablet & up
   ===================================================================== */
@media (min-width: 40rem) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .service-row { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .booking-band__inner { grid-template-columns: 1fr auto; }
  .contact-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .price-lengths { grid-template-columns: repeat(4, 1fr); }
  .confirm__actions { flex-wrap: nowrap; }
}

@media (min-width: 60rem) {
  .nav-desktop { display: block; }
  .nav-desktop-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-cta { display: none !important; }
  .intro__grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1.3fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid--preview { grid-template-columns: repeat(3, 1fr); }
  .cookie-note { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 24rem; flex-direction: row; align-items: center; }
}

@media (min-width: 75rem) {
  .price-cat__items { grid-template-columns: repeat(2, 1fr); }
  .price-cat--wide .price-cat__items { grid-template-columns: 1fr; }
}
