/* =============================================================
   ILUH SALON BALI — STYLESHEET
   -------------------------------------------------------------
   Sections in this file:
     1.  Design tokens        7.  Gallery
     2.  Reset & base         8.  How it works
     3.  Layout helpers       9.  Booking
     4.  Header & nav        10.  Reviews
     5.  Hero                11.  Footer & floating WhatsApp
     6.  About & services    12.  Motion & print
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------------------------------- */

:root {
  /* Brand palette */
  --color-primary:      #C9A96E;   /* warm Balinese gold */
  --color-primary-dark: #A98B52;
  --color-primary-soft: #F2E9D8;
  --color-secondary:    #2D5016;   /* deep tropical green */
  --color-secondary-soft:#EAF0E3;
  --color-accent:       #C1440E;   /* terracotta */
  --color-background:   #FAF7F2;   /* soft warm cream */
  --color-surface:      #FFFFFF;
  --color-text:         #1A1A1A;
  --color-text-muted:   #6B6B6B;

  /* Functional */
  --color-border:       #E8E0D3;
  --color-success:      #2D7D46;
  --color-success-soft: #E6F2EA;
  --color-error:        #B3261E;

  /* Typography */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale — mobile first, grows with viewport */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl:  clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
  --text-3xl:  clamp(2.1rem, 1.6rem + 2.4vw, 3.25rem);
  --text-4xl:  clamp(2.6rem, 1.7rem + 4.2vw, 4.75rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;   --space-6: 2rem;
  --space-7: 3rem;     --space-8: 4rem;     --space-9: 6rem;

  /* Shape & depth */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06);
  --shadow:    0 4px 20px rgba(26, 26, 26, 0.07);
  --shadow-lg: 0 14px 44px rgba(26, 26, 26, 0.13);

  --container: 1120px;
  --header-h: 68px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. RESET & BASE ----------------------------------- */

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

/* The browser hides [hidden] elements with display:none, but that is a
   default — any class of ours that sets `display` silently beats it, and
   the element stays on screen while the code believes it is hidden.
   This bug hid itself twice: the male-waxing checkbox showed on services
   that have no male price, and the admin sign-in screen stayed on top of
   the app after signing in. Make `hidden` mean hidden. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-4));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.015em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: var(--space-4);
  z-index: 200;
  background: var(--color-secondary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--space-3); }

/* ---------- 3. LAYOUT HELPERS -------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section {
  padding-block: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-9); }
}

.section--surface { background: var(--color-surface); }

.section__head {
  max-width: 46rem;
  margin-bottom: var(--space-7);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
  display: block;
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 42rem;
}

/* Frangipani divider — the signature botanical motif */
.divider {
  display: block;
  width: min(240px, 60%);
  height: auto;
  margin: var(--space-7) auto;
  color: var(--color-primary);
  opacity: 0.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: #24400f; box-shadow: var(--shadow-lg); }

.btn--gold {
  background: var(--color-primary);
  color: #26200f;
  box-shadow: var(--shadow);
}
.btn--gold:hover { background: var(--color-primary-dark); color: #fff; }

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn--outline {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn--outline:hover { border-color: var(--color-primary); }

.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding-inline: var(--space-7); font-size: var(--text-lg); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- 4. HEADER & NAV ---------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(250, 247, 242, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__mark { width: 34px; height: 34px; flex: none; color: var(--color-primary); }
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.nav {
  display: none;
  gap: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav a { position: relative; padding-block: var(--space-2); color: var(--color-text-muted); transition: color 0.2s var(--ease); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1.5px;
  background: var(--color-primary);
  transition: right 0.25s var(--ease);
}
.nav a:hover { color: var(--color-text); }
.nav a:hover::after { right: 0; }

@media (min-width: 940px) { .nav { display: flex; } }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Language switcher */
.lang {
  position: relative;
}
.lang__toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 42px;
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}
.lang__toggle:hover { border-color: var(--color-primary); }
.lang__flag { font-size: 1.05rem; line-height: 1; }
.lang__code { text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--text-xs); font-weight: 600; }
.lang__chev { width: 12px; height: 12px; opacity: 0.5; transition: transform 0.2s var(--ease); }
.lang__toggle[aria-expanded="true"] .lang__chev { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  padding: var(--space-2);
  margin: 0;
  list-style: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.lang__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.lang__option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-3);
  background: none;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  text-align: left;
}
.lang__option:hover { background: var(--color-primary-soft); }
.lang__option[aria-current="true"] { font-weight: 600; background: var(--color-secondary-soft); }

/* Mobile menu */
.menu-btn {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}
@media (min-width: 940px) { .menu-btn { display: none; } }
.menu-btn svg { width: 18px; height: 18px; }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  display: grid;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5) var(--space-6);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%);
  transition: transform 0.3s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-lg);
  font-family: var(--font-display);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
@media (min-width: 940px) { .mobile-nav { display: none; } }

/* ---------- 5. HERO ------------------------------------------ */

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding-top: var(--header-h);
  padding-bottom: var(--space-7);
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 20% 15%, #3E6B22 0%, transparent 55%),
    radial-gradient(110% 80% at 85% 80%, #C1440E 0%, transparent 52%),
    linear-gradient(155deg, #2D5016 0%, #1E3810 45%, #38240F 100%);
}

/* Layered botanical silhouettes for depth */
.hero__leaves {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(201, 169, 110, 0.16);
  pointer-events: none;
}
.hero__leaves svg { position: absolute; }
.hero__leaves svg:nth-child(1) { top: -6%;  left: -14%; width: 60%; transform: rotate(-14deg); }
.hero__leaves svg:nth-child(2) { bottom: -12%; right: -12%; width: 66%; transform: rotate(160deg); color: rgba(201, 169, 110, 0.12); }

.hero__content {
  max-width: 44rem;
  padding-inline: var(--space-5);
  animation: rise 0.9s var(--ease) both;
}

.hero .eyebrow { color: var(--color-primary); }

.hero__title {
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero__title span {
  display: block;
  font-size: 0.42em;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: var(--space-4);
}

.hero__tagline {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.hero__note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 22px; height: 22px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- 6. ABOUT & SERVICES ------------------------------ */

.about__grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 860px) {
  .about__grid { grid-template-columns: 0.85fr 1fr; gap: var(--space-8); }
}

.about__portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--color-primary-soft), var(--color-secondary-soft));
  box-shadow: var(--shadow);
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Shown until Iluh's own photo is added */
.about__portrait--placeholder {
  display: grid;
  place-content: center;
  gap: var(--space-3);
  text-align: center;
  padding: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.about__portrait--placeholder svg { width: 64px; height: 64px; margin-inline: auto; color: var(--color-primary); }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: 0;
  list-style: none;
}
.badges li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-secondary-soft);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-secondary);
}
.badges svg { width: 15px; height: 15px; flex: none; }

/* Service tabs */
.tabs {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2);
  margin-bottom: var(--space-6);
  background: var(--color-primary-soft);
  border-radius: var(--radius-full);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex: 1 0 auto;
  min-height: 46px;
  padding: var(--space-2) var(--space-5);
  background: transparent;
  border: 0;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.tab[aria-selected="true"] {
  background: var(--color-surface);
  color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.price-list {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 760px) {
  .price-list { grid-template-columns: 1fr 1fr; gap: var(--space-2) var(--space-5); }
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.price-row__name { font-weight: 500; }
.price-row__mins {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-border);
  transform: translateY(-4px);
  min-width: var(--space-4);
}
.price-row__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-secondary);
}
.price-row__price small {
  font-family: var(--font-body);
  font-size: 0.62em;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-right: 2px;
}

.note {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: var(--color-primary-soft);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: #5A4A2C;
}
.note svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }

/* ---------- 7. GALLERY --------------------------------------- */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-primary-soft);
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* First tile gets a wider crop on large screens */
@media (min-width: 900px) {
  .gallery__item:first-child { grid-column: span 2; aspect-ratio: 8 / 5; }
}

.gallery__cta { text-align: center; margin-top: var(--space-6); }

/* ---------- 8. HOW IT WORKS ---------------------------------- */

.steps {
  display: grid;
  gap: var(--space-5);
  counter-reset: step;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); } }

.step {
  position: relative;
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: var(--space-4);
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.step h3 { margin-bottom: var(--space-2); }
.step p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ---------- 9. BOOKING --------------------------------------- */

.booking {
  background:
    linear-gradient(180deg, var(--color-background) 0%, var(--color-primary-soft) 100%);
}

.booking__card {
  max-width: 760px;
  margin-inline: auto;
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .booking__card { padding: var(--space-7); } }

.field { margin-bottom: var(--space-6); }
.field:last-of-type { margin-bottom: var(--space-5); }

.field__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
}
.field__num {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  flex: none;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
}

.label-sm {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.input, .select, .textarea {
  width: 100%;
  min-height: 52px;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: #A9A399; }

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236B6B6B' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 12px;
  padding-right: var(--space-7);
}

.textarea { min-height: 96px; resize: vertical; line-height: 1.6; }

.help {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.error {
  display: none;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-error);
}
.error.is-visible { display: block; }

.input.is-invalid, .select.is-invalid {
  border-color: var(--color-error);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-background);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  cursor: pointer;
}
.checkbox input { width: 20px; height: 20px; accent-color: var(--color-secondary); flex: none; }

.grid-2 { display: grid; gap: var(--space-4); }
@media (min-width: 560px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* --- Week strip calendar --- */

.cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.cal__month {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
}
.cal__btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.cal__btn:hover:not([disabled]) { border-color: var(--color-primary); }
.cal__btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.cal__btn svg { width: 14px; height: 14px; }

.cal__week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--space-2);
}

.day {
  display: grid;
  gap: 2px;
  place-items: center;
  padding: var(--space-3) var(--space-1);
  min-height: 66px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
              transform 0.18s var(--ease);
}
.day:hover:not([disabled]) { border-color: var(--color-primary); transform: translateY(-2px); }

.day__name {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.day__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.1;
}
.day__dot {
  width: 5px; height: 5px;
  border-radius: var(--radius-full);
  background: var(--color-success);
}

.day[aria-pressed="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}
.day[aria-pressed="true"] .day__name { color: rgba(255, 255, 255, 0.75); }
.day[aria-pressed="true"] .day__dot { background: var(--color-primary); }

.day[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--color-background);
}
.day[disabled] .day__dot { background: var(--color-text-muted); }

.day.is-today .day__num { text-decoration: underline; text-underline-offset: 3px; }

/* --- Time slots --- */

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.slot {
  min-height: 48px;
  padding: var(--space-2);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
              color 0.18s var(--ease), transform 0.18s var(--ease);
}
.slot:hover:not([disabled]) { border-color: var(--color-primary); transform: translateY(-2px); }
.slot[aria-pressed="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}
.slot[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--color-background);
  text-decoration: line-through;
}
.slot--travel[disabled] {
  background: #FBF0E4;
  border-color: #EED9BF;
  color: #8A5A22;
  text-decoration: none;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.legend span { display: inline-flex; align-items: center; gap: var(--space-2); }
.legend i {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.legend i.is-free    { background: var(--color-success); }
.legend i.is-booked  { background: #B9B4AC; }
.legend i.is-travel  { background: #E0A45C; }

.slots__empty {
  padding: var(--space-5);
  margin-top: var(--space-4);
  background: var(--color-background);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

/* --- Summary --- */

.summary {
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  background: var(--color-secondary-soft);
  border-radius: var(--radius);
}
.summary h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
}
.summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-5);
  margin: 0;
  font-size: var(--text-sm);
}
.summary dt { color: var(--color-text-muted); }
.summary dd { margin: 0; font-weight: 600; text-align: right; }
.summary .is-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-secondary);
}
.summary__empty { margin: 0; font-size: var(--text-sm); color: var(--color-text-muted); }

.submit-hint {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
}

.tz-note {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --- Confirmation dialog --- */

.modal {
  width: min(440px, calc(100vw - 2rem));
  padding: var(--space-7) var(--space-6);
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.modal::backdrop { background: rgba(26, 26, 26, 0.55); backdrop-filter: blur(3px); }
.modal svg { width: 56px; height: 56px; color: var(--color-success); margin-bottom: var(--space-4); }
.modal p { color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-5); }
.modal__close {
  margin-top: var(--space-3);
  background: none;
  border: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ---------- 10. REVIEWS -------------------------------------- */

.reviews__grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 820px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); } }

.review {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.review__stars { color: var(--color-primary); letter-spacing: 0.14em; font-size: var(--text-sm); }
.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.5;
}
.review figcaption {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.review figcaption strong { color: var(--color-text); font-weight: 600; }
.review__flag { font-size: 1.1rem; margin-right: var(--space-2); }

/* ---------- 11. FOOTER & FLOATING WHATSAPP ------------------- */

.footer {
  padding-block: var(--space-8) calc(var(--space-8) + 60px);
  background: var(--color-secondary);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}
.footer h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.footer__grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-7); } }

.footer a { text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--color-primary); }

.footer__contact {
  display: grid;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}
.footer__contact li { display: flex; align-items: center; gap: var(--space-3); }
.footer__contact svg { width: 16px; height: 16px; flex: none; color: var(--color-primary); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
}

.wa-float {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  height: 56px;
  padding-inline: var(--space-4);
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.22s var(--ease);
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float span { display: none; }
@media (min-width: 600px) { .wa-float span { display: inline; } }

/* ---------- 12. MOTION & PRINT ------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .mobile-nav, .wa-float, .hero__scroll, .booking, .modal { display: none !important; }
  body { background: #fff; }
  .section { padding-block: var(--space-5); }
}
