 /* ============================================================
   ZEE'S WIGOLOGY — PREMIUM STYLESHEET
   Luxury minimalism · Brown / Beige / Black palette
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --brown:       #5C4033;
  --brown-light: #8B6347;
  --brown-dark:  #3D2B1F;
  --beige:       #F5F5DC;
  --beige-dark:  #EDE8C8;
  --black:       #0D0D0D;
  --grey:        #808080;
  --grey-light:  #C8C8C8;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-alt:    'Cormorant Garamond', serif;
  --font-body:   'Jost', sans-serif;

  --nav-h:       72px;
  --radius:      4px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 3px; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(92,64,51,0.35);
}
.btn-primary:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92,64,51,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-wide { width: 100%; margin-top: 8px; }

/* ── Section Shared ─────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal-up,
.reveal-fade,
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-fade {
  transform: none;
}
.reveal-up.visible,
.reveal-fade.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
}

.logo-z {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--black);
  opacity: 0.85;
}

.navbar.scrolled .logo-text { color: var(--black); }
.navbar:not(.scrolled) .logo-text { color: var(--white); }
.navbar:not(.scrolled) .logo-z { color: var(--beige); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
  color: var(--white);
}

.navbar.scrolled .nav-link { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--brown);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--brown); }
.navbar:not(.scrolled) .nav-link:hover { color: var(--beige); }
.navbar:not(.scrolled) .nav-link::after { background: var(--beige); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg { position: absolute; inset: 0; }

.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,245,220,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,245,220,0.04) 0%, transparent 40%);
  /* Subtle geometric texture */
  background-size: 60px 60px, 80px 80px;
}

/* Animated grain texture */
.hero-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(61,43,31,0.92) 0%,
    rgba(92,64,51,0.75) 40%,
    rgba(61,43,31,0.88) 100%
  );
}

/* Decorative diagonal line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%; right: 15%;
  width: 1px;
  height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(245,245,220,0.12), transparent);
  transform: rotate(-12deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,245,220,0.65);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-line.italic {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--beige);
  opacity: 0.9;
}

.hero-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,220,0.75);
  margin-bottom: 32px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(245,245,220,0.4);
  margin: 0 auto 36px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,220,0.45);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,245,220,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(92,64,51,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(92,64,51,0.22);
}

/* Thin colour accent bar at top of each card */
.card-accent {
  height: 4px;
  background: var(--accent, var(--brown-light));
  flex-shrink: 0;
  transition: height var(--transition);
}
.service-card:hover .card-accent { height: 6px; }

.card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.72;
  flex: 1;
}

.price-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--beige);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 20px;
  border: 1px solid rgba(92,64,51,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Stagger reveal animation per card */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.40s; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--beige); }

.review-form-wrap {
  max-width: 620px;
  margin: 0 auto 64px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--beige-dark);
}

/* Shared form styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-group label,
.star-picker label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid rgba(92,64,51,0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C4033' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(92,64,51,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.star-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 6px;
}

.star {
  font-size: 1.6rem;
  color: var(--grey-light);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  user-select: none;
  line-height: 1;
}

.star:hover,
.star.active { color: #c9952a; }
.star:hover { transform: scale(1.15); }

.review-form .form-group { margin-bottom: 20px; }

.form-error {
  font-size: 0.82rem;
  color: #b94040;
  margin-top: 8px;
  min-height: 18px;
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* ── Review Card ─────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92,64,51,0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  animation: cardIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review-card:hover { box-shadow: var(--shadow-md); }

/* Card enter animation (new submissions) */
.review-card.card-entering {
  animation: none;
  opacity: 0;
  transform: translateY(-12px) scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Exit animation on delete */
@keyframes cardExit {
  from { opacity: 1; transform: scale(1);    max-height: 400px; margin-bottom: 0; }
  60%  { opacity: 0; transform: scale(0.94) translateY(-6px); }
  to   { opacity: 0; transform: scale(0.94); max-height: 0;   margin-bottom: -24px; padding: 0; }
}
.review-card.removing {
  animation: cardExit 0.38s cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
  overflow: hidden;
}

/* ── Card Header (stars + delete button row) ─────────────────── */
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.review-card-stars {
  color: #c9952a;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Delete Button ────────────────────────────────────────────── */
.review-delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  color: var(--grey-light);
  background: transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition),
              background var(--transition), transform var(--transition);
  flex-shrink: 0;
  opacity: 0;   /* hidden until card is hovered */
}

.review-delete-btn svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

/* Reveal delete button on card hover */
.review-card:hover .review-delete-btn { opacity: 1; }

.review-delete-btn:hover {
  color: #b94040;
  border-color: rgba(185,64,64,0.25);
  background: rgba(185,64,64,0.07);
  transform: scale(1.1);
}

/* When confirm bar is open, keep button visible + tinted */
.review-card.confirming .review-delete-btn {
  opacity: 1;
  color: #b94040;
  border-color: rgba(185,64,64,0.25);
  background: rgba(185,64,64,0.07);
}

/* ── Review Card Body ─────────────────────────────────────────── */
.review-card-text {
  font-size: 0.93rem;
  color: var(--black);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 16px;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.review-card-name {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}

.review-card-date {
  font-size: 0.72rem;
  color: var(--grey-light);
  letter-spacing: 0.04em;
}

/* ── Inline Delete Confirmation Bar ──────────────────────────── */
.delete-confirm-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid rgba(185,64,64,0.18);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  backdrop-filter: blur(4px);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
}

.delete-confirm-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.delete-confirm-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #b94040;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.delete-confirm-actions {
  display: flex;
  gap: 8px;
}

.delete-confirm-yes,
.delete-confirm-no {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1.5px solid transparent;
}

.delete-confirm-yes {
  background: #b94040;
  color: var(--white);
  border-color: #b94040;
}
.delete-confirm-yes:hover {
  background: #9e2f2f;
  border-color: #9e2f2f;
  transform: translateY(-1px);
}
.delete-confirm-yes:active { transform: translateY(0); }

.delete-confirm-no {
  background: transparent;
  color: var(--grey);
  border-color: rgba(128,128,128,0.3);
}
.delete-confirm-no:hover {
  background: var(--beige);
  color: var(--black);
  border-color: rgba(92,64,51,0.2);
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
  padding: 40px;
  border: 1px dashed rgba(92,64,51,0.15);
  border-radius: var(--radius-lg);
  background: rgba(245,245,220,0.3);
}


/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--white); }

.booking-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(92,64,51,0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.booking-form .form-group { margin-bottom: 24px; }

/* Calendar */
.calendar-wrap {
  border: 1px solid rgba(92,64,51,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  user-select: none;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--brown);
  color: var(--white);
}

.cal-month-year {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cal-nav {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  border-radius: 50%;
  transition: background var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.cal-nav:hover { background: rgba(255,255,255,0.2); }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 0 4px;
  background: rgba(92,64,51,0.06);
}

.cal-days-header span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brown);
  text-transform: uppercase;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 6px;
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  color: var(--black);
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--beige);
  color: var(--brown);
}

.cal-day.today {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--brown) !important;
  color: var(--white) !important;
}

.cal-day.disabled {
  color: var(--grey-light);
  cursor: not-allowed;
  opacity: 0.5;
}

.cal-day.empty { cursor: default; }

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 9px 6px;
  border: 1.5px solid rgba(92,64,51,0.2);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.time-slot:hover {
  background: var(--beige);
  border-color: var(--brown);
}

.time-slot.selected {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Booking Confirmation */
.booking-confirm {
  text-align: center;
  padding: 48px 24px;
  animation: cardIn 0.5s ease both;
}

.confirm-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(92,64,51,0.4);
}

.booking-confirm h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.confirm-details {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 32px;
  display: inline-block;
  min-width: 280px;
  text-align: left;
}

.confirm-details p {
  font-size: 0.9rem;
  color: var(--black);
  padding: 6px 0;
  border-bottom: 1px solid rgba(92,64,51,0.1);
  display: flex;
  gap: 8px;
}

.confirm-details p:last-child { border-bottom: none; }
.confirm-details strong { color: var(--brown); min-width: 80px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--beige); }

.contact-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
  color: var(--white);
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-number {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--grey);
}

/* ============================================================
   POLICY COMPLIANCE GATE (in booking form)
   ============================================================ */

/* Outer card */
.policy-gate {
  position: relative;
  background: var(--white);
  border: 1.5px solid rgba(92,64,51,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

/* Left accent stripe */
.policy-gate::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brown-light), var(--brown-dark));
  border-radius: 4px 0 0 4px;
}

.policy-gate.shake-active {
  border-color: rgba(185,64,64,0.5);
  box-shadow: 0 0 0 3px rgba(185,64,64,0.1);
}

/* Top row — shield icon + heading/instruction */
.policy-gate-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.policy-gate-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--beige);
  border: 1px solid rgba(92,64,51,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-gate-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brown);
}

.policy-gate-copy { flex: 1; }

.policy-gate-heading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.policy-gate-instruction {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── Premium Download Button ────────────────────────────────── */
.policy-download-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--brown-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font-body);
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(61,43,31,0.3);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
  position: relative;
}

/* Ripple effect on click */
.policy-download-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.15s ease;
}
.policy-download-btn:active::after { background: rgba(255,255,255,0.08); }

.policy-download-btn:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,43,31,0.38);
}
.policy-download-btn:active { transform: translateY(0); }

/* Download icon segment */
.pdb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: rgba(0,0,0,0.18);
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.pdb-icon svg {
  width: 18px;
  height: 18px;
  animation: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.policy-download-btn:hover .pdb-icon svg { transform: translateY(3px); }

/* Label segment */
.pdb-label {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* File type badge */
.pdb-badge {
  padding: 0 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-left: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* Download success state */
.policy-download-btn.downloaded .pdb-label::after {
  content: ' ✓';
  opacity: 0.75;
}
.policy-download-btn.downloaded { background: #2d7a3a; box-shadow: 0 4px 16px rgba(45,122,58,0.35); }

/* ── Consent block ───────────────────────────────────────────── */
.policy-consent-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(92,64,51,0.1);
}

/* Custom checkbox */
.policy-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  cursor: pointer;
  user-select: none;
}

.policy-checkbox-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.policy-checkbox-box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(92,64,51,0.3);
  border-radius: 5px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.2s ease;
}
.policy-checkbox-box svg {
  width: 13px;
  height: 11px;
  opacity: 0;
  transform: scale(0.4) rotate(-10deg);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

/* Checked state */
.policy-checkbox-wrap input:checked ~ .policy-checkbox-box,
.policy-checkbox-wrap input:checked + .policy-checkbox-box {
  background: var(--brown);
  border-color: var(--brown);
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(92,64,51,0.3);
}
.policy-checkbox-wrap input:checked ~ .policy-checkbox-box svg,
.policy-checkbox-wrap input:checked + .policy-checkbox-box svg {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Hover state */
.policy-checkbox-wrap:hover .policy-checkbox-box {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(92,64,51,0.08);
}

.policy-checkbox-label {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
  flex: 1;
}

/* Microcopy */
.policy-microcopy {
  font-size: 0.74rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  padding-left: 35px; /* aligns under checkbox label */
  font-style: italic;
  transition: color 0.3s ease;
}

/* When agreed — turn microcopy green */
.policy-gate.agreed .policy-microcopy {
  color: #2d7a3a;
}
.policy-gate.agreed .policy-microcopy::before {
  content: '✓ ';
}

/* Shake animation when booking attempted without agreement */
@keyframes policyShake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-7px); }
  30%       { transform: translateX(7px); }
  45%       { transform: translateX(-5px); }
  60%       { transform: translateX(5px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}
.policy-gate.shake { animation: policyShake 0.5s ease; }

/* Checkbox error highlight */
.policy-checkbox-box.shake-box {
  border-color: #b94040 !important;
  box-shadow: 0 0 0 3px rgba(185,64,64,0.18) !important;
}

/* ============================================================
   POLICIES SECTION
   ============================================================ */
.policies { background: var(--white); }

.policies-content {
  max-width: 740px;
  margin: 0 auto;
}

/* Download banner */
.policy-download-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--beige);
  border: 1px solid rgba(92,64,51,0.18);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
}

.policy-download-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.policy-download-text svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--brown);
}

.policy-download-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 3px;
}

.policy-download-text span {
  font-size: 0.82rem;
  color: var(--grey);
}

.btn-download-lg {
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-download-lg svg { width: 16px; height: 16px; }

/* Policy list */
.policy-list-wrap {
  background: var(--white);
  border: 1px solid rgba(92,64,51,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(92,64,51,0.07);
  transition: background var(--transition);
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li:hover { background: rgba(245,245,220,0.4); }

.policy-bullet {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.08em;
  opacity: 0.6;
  min-width: 24px;
  margin-top: 3px;
  flex-shrink: 0;
}

.policy-list li div {
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.68;
}

.policy-list li strong {
  display: block;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* Proceed to booking CTA below policy gate */
.policy-proceed-cta {
  text-align: center;
  padding-top: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown-dark);
  padding: 56px 20px;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 0.03em;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,220,0.45);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.3);
  letter-spacing: 0.05em;
}

.label-opt {
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.7rem;
}

/* WhatsApp booking button */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.32);
  gap: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
  color: var(--white);
}
.btn-whatsapp:active { transform: translateY(0); }

.btn-wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* WhatsApp redirect notice */
.wa-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.wa-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #1ebe5d;
  margin-top: 1px;
}
.wa-notice span {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.55;
}

/* Confirmation screen updates */
.confirm-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.confirm-icon svg {
  width: 36px;
  height: 36px;
}
.confirm-subtitle {
  font-size: 0.93rem;
  color: var(--grey);
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.confirm-subtitle strong { color: var(--black); }
.confirm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}


/* ============================================================
   RESPONSIVE SYSTEM
   ─────────────────────────────────────────────────────────────
   Breakpoint strategy (mobile-first, then scaled up):
     xs  : < 480px     — small phones (iPhone SE, Galaxy A series)
     sm  : 480–767px   — large phones (iPhone Pro Max, Pixel)
     md  : 768–1023px  — tablets (iPad, Galaxy Tab)
     lg  : 1024–1279px — small laptops (MacBook Air 13", Surface)
     xl  : 1280–1535px — desktops (1080p monitors)
     2xl : 1536–1919px — large desktops / 1440p
     tv  : 1920px+     — full HD monitors, TVs, large displays
   ============================================================ */

/* ── Base fluid type scale (applied globally, not per-breakpoint) ── */
html {
  font-size: clamp(14px, 1.1vw, 18px);
}

/* ── Container — fluid with per-tier max-width ──────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ── Section padding — fluid via clamp ──────────────────────── */
.section {
  padding: clamp(56px, 8vw, 120px) 0;
}

/* ============================================================
   TV / LARGE DISPLAYS  ≥ 1920px
   ============================================================ */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }

  .section-title {
    font-size: 3.4rem;
  }

  .hero-content {
    max-width: 900px;
  }

  .title-line        { font-size: 9rem; }
  .title-line.italic { font-size: 8rem; }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .card-body      { padding: 32px 30px 34px; }
  .card-title     { font-size: 1.25rem; }
  .card-desc      { font-size: 0.95rem; }

  .booking-wrap   { max-width: 960px; padding: 56px; }
  .policies-content { max-width: 860px; }

  .btn            { padding: 16px 44px; font-size: 0.9rem; }
  .policy-gate    { padding: 36px 36px 30px; }
  .pdb-label      { font-size: 0.9rem; }
}

/* ============================================================
   LARGE DESKTOP  1536–1919px
   ============================================================ */
@media (min-width: 1536px) and (max-width: 1919px) {
  .container      { max-width: 1320px; }
  .title-line        { font-size: 8rem; }
  .title-line.italic { font-size: 7rem; }
  .services-grid  { grid-template-columns: repeat(4, 1fr); }
  .booking-wrap   { max-width: 900px; }
}

/* ============================================================
   DESKTOP  1280–1535px
   ============================================================ */
@media (min-width: 1280px) and (max-width: 1535px) {
  .services-grid  { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   LAPTOP  1024–1279px
   ============================================================ */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container      { max-width: 980px; }
  .services-grid  { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .booking-wrap   { padding: 40px 36px; }
}

/* ============================================================
   TABLET  768–1023px
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --nav-h: 64px; }

  .container      { width: 94%; }

  /* Services — two column */
  .services-grid  {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Booking */
  .booking-wrap   { padding: 36px 32px; }
  .form-row       { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Calendar + time side by side still works on tablet */
  .time-slots     { grid-template-columns: repeat(5, 1fr); }

  /* Policy */
  .policies-content { max-width: 680px; }
  .policy-gate    { padding: 26px 28px 22px; }

  /* Hero */
  .title-line        { font-size: clamp(3.8rem, 9vw, 5.5rem); }
  .title-line.italic { font-size: clamp(3.2rem, 8vw, 4.8rem); }
  .hero-subtitle  { font-size: 1.05rem; }

  /* Contact */
  .whatsapp-btn   { padding: 16px 36px; }

  /* Footer */
  .footer         { padding: 44px 20px; }
}

/* ============================================================
   TABLET + BELOW (shared adjustments)  max-width: 1023px
   ============================================================ */
@media (max-width: 1023px) {
  /* Hamburger menu */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 6%;
    gap: 22px;
    border-top: 1px solid var(--beige-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                opacity  0.38s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links .nav-link {
    color: var(--black) !important;
    font-size: 1rem;
    letter-spacing: 0.12em;
    padding: 4px 0;
  }

  /* Increase touch target on all interactive elements */
  .btn,
  .time-slot,
  .cal-nav,
  .policy-download-btn,
  .btn-whatsapp {
    min-height: 44px;
  }

  .time-slot { padding: 10px 4px; font-size: 0.8rem; }

  /* Policy gate full-width download button */
  .policy-download-btn { width: 100%; }
  .pdb-label           { text-align: center; }

  /* Booking confirmation actions stack on smaller screens */
  .confirm-actions { flex-direction: column; align-items: stretch; }
  .confirm-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   MOBILE LARGE  480–767px
   ============================================================ */
@media (min-width: 480px) and (max-width: 767px) {
  :root { --nav-h: 60px; }

  .container      { width: 94%; }

  /* Hero */
  .title-line        { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .title-line.italic { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-subtitle  { font-size: 0.95rem; letter-spacing: 0.18em; }
  .hero-eyebrow   { font-size: 0.68rem; }
  .btn.reveal-up  { padding: 13px 28px; }

  /* Services — single column on large phone */
  .services-grid  {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .card-body      { padding: 20px 18px 22px; }
  .card-title     { font-size: 1rem; }
  .card-desc      { font-size: 0.84rem; }

  /* Booking */
  .booking-wrap   { padding: 28px 22px; }
  .form-row       { grid-template-columns: 1fr; gap: 16px; }
  .time-slots     { grid-template-columns: repeat(5, 1fr); gap: 6px; }

  /* Policy */
  .policy-gate            { padding: 22px 20px 18px; }
  .policy-gate-heading    { font-size: 0.95rem; }
  .policy-gate-instruction{ font-size: 0.82rem; }
  .pdb-badge              { display: none; }  /* hide file-type badge on phones */

  /* Contact */
  .whatsapp-btn   { padding: 14px 28px; font-size: 0.9rem; }

  /* Section headers */
  .section-title  { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-sub    { font-size: 0.88rem; }
}

/* ============================================================
   MOBILE SMALL  < 480px  (iPhone SE, Galaxy A14, etc.)
   ============================================================ */
@media (max-width: 479px) {
  :root { --nav-h: 56px; }

  html { font-size: 15px; }

  .container  { width: 95%; }
  .section    { padding: 52px 0; }

  /* Logo — tighten on tiny screens */
  .logo-z     { font-size: 1.6rem; }
  .logo-text  { font-size: 0.78rem; }

  /* Hero — stack everything comfortably */
  .title-line        { font-size: clamp(2.4rem, 13vw, 3.2rem); letter-spacing: -0.01em; }
  .title-line.italic { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-subtitle  { font-size: 0.82rem; letter-spacing: 0.15em; }
  .hero-eyebrow   { font-size: 0.65rem; letter-spacing: 0.28em; }
  .hero-content   { padding: 0 16px; }
  .btn.reveal-up  { padding: 13px 24px; font-size: 0.8rem; letter-spacing: 0.14em; }
  .hero-scroll-hint { display: none; } /* remove hint on tiny screens */

  /* Section headers */
  .section-title  { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-sub    { font-size: 0.85rem; }
  .section-header { margin-bottom: 40px; }

  /* Services — single column */
  .services-grid  {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-body      { padding: 18px 16px 20px; }
  .card-title     { font-size: 1rem; }
  .card-desc      { font-size: 0.84rem; }
  .price-badge    { font-size: 0.76rem; padding: 4px 11px; }

  /* Booking form */
  .booking-wrap   { padding: 22px 16px; }
  .form-row       { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }

  .form-group label { font-size: 0.7rem; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 13px;
    font-size: 1rem; /* 16px prevents iOS auto-zoom on focus */
  }

  /* Calendar — compact */
  .cal-month-year { font-size: 0.88rem; }
  .cal-days-header span { font-size: 0.65rem; }
  .cal-day        { font-size: 0.78rem; }
  .cal-nav        { width: 32px; height: 32px; font-size: 1.2rem; }

  /* Time slots — 4-up grid */
  .time-slots     { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .time-slot      { padding: 10px 2px; font-size: 0.75rem; }

  /* Policy gate */
  .policy-gate         { padding: 18px 16px 16px; gap: 16px; }
  .policy-gate-top     { gap: 12px; }
  .policy-gate-icon    { width: 38px; height: 38px; flex-shrink: 0; }
  .policy-gate-icon svg{ width: 17px; height: 17px; }
  .policy-gate-heading { font-size: 0.9rem; }
  .policy-gate-instruction { font-size: 0.8rem; }
  .pdb-icon        { padding: 12px 14px; }
  .pdb-icon svg    { width: 16px; height: 16px; }
  .pdb-label       { font-size: 0.78rem; letter-spacing: 0.14em; padding: 12px 10px; }
  .pdb-badge       { display: none; }
  .policy-checkbox-label { font-size: 0.82rem; }
  .policy-microcopy      { font-size: 0.71rem; padding-left: 32px; }

  /* Proceed CTA */
  .policy-proceed-cta .btn { width: 100%; padding: 14px 20px; font-size: 0.8rem; }

  /* WhatsApp booking button */
  .btn-whatsapp   { padding: 14px 16px; font-size: 0.82rem; }
  .btn-wa-icon    { width: 16px; height: 16px; }

  /* Confirmation screen */
  .booking-confirm  { padding: 32px 12px; }
  .confirm-icon     { width: 60px; height: 60px; margin-bottom: 16px; }
  .confirm-icon svg { width: 28px; height: 28px; }
  .booking-confirm h3 { font-size: 1.4rem; }
  .confirm-subtitle   { font-size: 0.85rem; }
  .confirm-details    { min-width: unset; width: 100%; padding: 16px 18px; }
  .confirm-details p  { font-size: 0.83rem; flex-direction: column; gap: 2px; }
  .confirm-actions    { flex-direction: column; gap: 10px; }
  .confirm-actions .btn { width: 100%; }

  /* Contact */
  .whatsapp-btn { padding: 14px 24px; font-size: 0.88rem; gap: 10px; }
  .wa-icon      { width: 20px; height: 20px; }
  .contact-number { font-size: 0.95rem; }

  /* Footer */
  .footer       { padding: 40px 16px; }
  .footer-logo  { font-size: 1.3rem; }
  .footer-tagline { font-size: 0.68rem; }
  .footer-copy  { font-size: 0.72rem; }
}

/* ============================================================
   TOUCH DEVICE OPTIMISATIONS (pointer: coarse)
   Applied to all phones + tablets regardless of px width
   ============================================================ */
@media (pointer: coarse) {
  /* Ensure all tappable elements meet 44×44px minimum */
  .btn,
  .time-slot,
  .cal-day,
  .cal-nav,
  .policy-download-btn,
  .whatsapp-btn,
  .policy-checkbox-wrap {
    min-height: 44px;
  }

  .cal-day {
    min-width: 36px;
    min-height: 36px;
  }

  /* Remove hover-only states that don't apply to touch */
  .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .review-delete-btn  { opacity: 1; } /* always show delete on touch */

  /* Larger checkbox tap area */
  .policy-checkbox-wrap { padding: 4px 0; }
  .policy-checkbox-box  { width: 24px; height: 24px; }
}

/* ============================================================
   LANDSCAPE PHONE  (short viewport, wide)
   ============================================================ */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 100px 0 60px;
  }

  .title-line        { font-size: clamp(2rem, 7vw, 3rem); }
  .title-line.italic { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .hero-content   { padding: 0 24px; }
  .hero-scroll-hint { display: none; }

  .section        { padding: 48px 0; }
}

/* ============================================================
   REDUCED MOTION PREFERENCE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-line { animation: none; }
  .pdb-icon svg { transition: none; }
}