/* ================================================================
   TARA Thai Massage & Spa — taramassage.ge
   style.css
   ================================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────────── */
:root {
  --gold:         #C5A355;
  --gold-light:   #D4B976;
  --gold-pale:    #EDD89A;
  --brown-dark:   #2C1810;
  --brown:        #5D4037;
  --brown-light:  #7D5C52;
  --cream:        #FFF8F0;
  --cream-dark:   #F5EDE0;
  --cream-deeper: #EDE0CE;
  --text:         #2C2118;
  --text-muted:   #7D6B5D;
  --gold-accessible: #7A5C1A;  /* #7A5C1A on white = 6.1:1 — passes WCAG AA/AAA */
  --white:        #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --nav-h:        70px;
  --max-w:        1200px;
  --radius:       3px;
  --transition:   0.3s ease;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── ACCESSIBILITY UTILITIES ─────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  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: 0.5rem;
  z-index: 9999;
  padding: 0.5rem 1.25rem;
  background: var(--brown-dark);
  color: var(--gold-pale);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.5rem;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  min-height: 1em;
  line-height: 1.4;
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}
.section--cream { background: var(--cream-dark); }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────────── */
.section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accessible);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--brown-dark);
}
.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--brown-dark);
}
.btn--white:hover { background: var(--cream); }

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--solid {
  background: var(--brown-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
  overflow: visible;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 20px;
  transition: padding-top var(--transition);
}
.nav--solid .nav__logo {
  align-self: center;
  padding-top: 0;
}
.nav__logo-img {
  height: 150px;
  width: auto;
  transition: height var(--transition);
}
.nav--solid .nav__logo-img {
  height: 44px;
}
.nav__logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__phone-icon {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav__phone-icon:hover { color: var(--gold); }

.nav__cta { display: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 2px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}
.nav__overlay.visible { display: block; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  filter: blur(6px);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.09); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 15, 5, 0.55) 0%,
    rgba(30, 15, 5, 0.45) 50%,
    rgba(30, 15, 5, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: var(--nav-h);
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 248, 235, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__br { display: none; }

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__body {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-deeper);
}

.about__pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__pillar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.about__pillar strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.1rem;
}
.about__pillar span,
.about__pillar a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about__pillar a:hover { color: var(--gold); }

.about__visual {
  position: relative;
}
.about__visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: left center;
  border-radius: 2px;
}
.about__visual::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  opacity: 0.35;
  border-radius: 2px;
  pointer-events: none;
}

/* ── SERVICES GRID ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
}

.service-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.service-card__img--portrait  { object-position: center 20%; }
.service-card__img--top       { object-position: center top; }
.service-card__img--top-left  { object-position: 20% 10%; }

.service-card:hover .service-card__img { transform: scale(1.05); }

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__link {
  margin-top: auto;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.3rem;
}
.service-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-accessible);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--gold); }

/* ── PRICE TABLE ─────────────────────────────────────────────────── */
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.price-table th {
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--cream-deeper);
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--cream-deeper);
  color: var(--brown);
}
.price-table td:nth-child(2) {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--brown-dark);
  white-space: nowrap;
}
.price-table__highlight td {
  color: var(--gold-accessible);
  font-weight: 600;
}
.price-table__highlight td:last-child { color: var(--gold-accessible); }
.price-table tbody tr:hover td { background: rgba(197, 163, 85, 0.05); }

.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}
.price-note a { color: var(--gold-accessible); text-decoration: underline; text-underline-offset: 3px; }

/* ── CAROUSEL ────────────────────────────────────────────────────── */
.carousel {
  position: relative;
  margin-top: 3rem;
}

/* Reel: clips the sliding track, provides positioning context for buttons */
.carousel__reel {
  position: relative;
  overflow: hidden;
}

/* Sliding track — flex row */
.carousel__track {
  display: flex;
  gap: 8px;
  width: 100%;          /* explicit width so % slide widths resolve correctly */
  transition: transform 0.5s ease;
  will-change: transform;
}

/* 4 slides visible on desktop */
.carousel__slide {
  flex: none;           /* use explicit width, not flex-basis percentage */
  width: calc(25% - 6px); /* (100% - 3×8px) / 4 */
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.carousel__slide:hover img { transform: scale(1.04); }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(30, 15, 5, 0.55);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
  opacity: 0.85;
}
.carousel__btn:hover  { background: rgba(197, 163, 85, 0.85); opacity: 1; }
.carousel__btn svg    { width: 20px; height: 20px; }
.carousel__btn--prev  { left: 0.6rem; }
.carousel__btn--next  { right: 0.6rem; }

/* Dots below the strip */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream-deeper);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.carousel__dot.active {
  background: var(--gold-accessible);
  transform: scale(1.4);
}

/* 2 slides on tablet */
@media (max-width: 900px) {
  .carousel__slide { width: calc(50% - 4px); } /* (100% - 1×8px) / 2 */
}
/* 1 slide on mobile */
@media (max-width: 500px) {
  .carousel__track { gap: 0; }
  .carousel__slide { width: 100%; }
}

/* ── PROMO BANNER ────────────────────────────────────────────────── */
.promo {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3A1C0C 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '✦';
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  color: rgba(197, 163, 85, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.promo__content { flex: 1; min-width: 260px; }
.promo__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.promo__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.promo__body {
  font-size: 0.95rem;
  color: rgba(255, 248, 240, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0.65rem;
}
.promo__offer {
  font-size: 0.95rem;
  color: rgba(255, 248, 240, 0.65);
  line-height: 1.7;
}
.promo__price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold);
  vertical-align: baseline;
}
.promo__was {
  font-size: 1.1rem;
  color: rgba(255, 248, 240, 0.4);
  text-decoration: line-through;
  margin-left: 0.3rem;
  vertical-align: baseline;
}
.promo__cta { flex-shrink: 0; white-space: nowrap; }

/* ── BOOKING ─────────────────────────────────────────────────────── */
.booking {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

/* Calendar */
.booking__calendar {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
  overflow: hidden;
  user-select: none;
}
.cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--brown-dark);
}
.cal__month-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}
.cal__nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.cal__nav:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
.cal__nav svg { width: 16px; height: 16px; }

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 0.5rem 0.75rem;
}
.cal__day-name {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.875rem 0 0.5rem;
}
.cal__day {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--brown);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal__day:hover:not(.cal__day--past):not(.cal__day--empty) {
  background: var(--cream-deeper);
  color: var(--brown-dark);
}
.cal__day--past    { color: var(--cream-deeper); cursor: default; }
.cal__day--empty   { cursor: default; }
.cal__day--today   { font-weight: 700; color: var(--gold-accessible); }
.cal__day--selected {
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
}
.cal__day--selected:hover { background: var(--gold-light); }

.booking__cal-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* Form */
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
}
.form-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 163, 85, 0.15);
}
.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='%237D6B5D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 70px; }

.booking__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: -0.5rem;
}

/* ── MAP ─────────────────────────────────────────────────────────── */
.map-intro {
  background: var(--cream);
  padding: 4rem 0 2.5rem;
}
.map-eyebrow { color: var(--gold-accessible); }
.map-title   { color: var(--brown-dark); }
.map-intro__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}
.map-intro__sub a {
  color: var(--gold-accessible);
  transition: color var(--transition);
}
.map-intro__sub a:hover { color: var(--brown); }

.map-wrap {
  height: 440px;
  position: relative;
}
#siteMap {
  width: 100%;
  height: 100%;
}
/* Warm beige/cream tint on light-gray ESRI canvas tiles */

/* Custom marker — no Leaflet default styles */
.map-pin {
  background: none !important;
  border: none !important;
}
/* Popup */
#siteMap .leaflet-popup-content-wrapper {
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(44, 24, 16, 0.25);
  padding: 0;
  border: 1px solid var(--cream-deeper);
}
#siteMap .leaflet-popup-content {
  margin: 1rem 1.25rem;
}
.map-popup__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
}
.map-popup__info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.map-popup__hours {
  font-size: 0.8rem;
  color: var(--gold-accessible);
  font-weight: 600;
  margin-bottom: 0;
}
#siteMap .leaflet-popup-tip { background: var(--white); }

.map-directions-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2rem;
  background: var(--brown-dark);
  color: var(--gold-light, #EDD89A);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.35);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.map-directions-btn:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-1px);
}
.map-directions-btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .map-wrap { height: 320px; }
  .map-intro { padding: 3rem 0 2rem; }
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--brown-dark);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.footer__logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold); }

.footer__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.footer__text--muted { font-size: 0.8rem; }

.footer__hours {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-pale);
  line-height: 1;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer__social svg { width: 17px; height: 17px; }
.footer__social:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(197, 163, 85, 0.1);
}

.footer__bottom {
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── FLOATING VOICE BOT (positioned above WhatsApp) ─────────────── */
/* Styles live in voice-bot.css; only z-index context here */

/* ── FLOATING WHATSAPP ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 50;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

/* Desktop: show nav CTA */
@media (min-width: 900px) {
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}

/* Large screens: bigger fonts */
@media (min-width: 1200px) {
  html { font-size: 18px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { order: -1; }
  .about__visual img { height: 400px; }
  .about__visual::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .booking { grid-template-columns: 1fr; }
  .booking__cal-col { max-width: 340px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Nav mobile */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80vw, 300px);
    height: 100vh;
    background: var(--brown-dark);
    flex-direction: column;
    gap: 0;
    padding: calc(var(--nav-h) + 1rem) 2rem 2rem;
    transition: right var(--transition);
    z-index: 101;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav__links.open { right: 0; }
  .nav__links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hero__title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero__br { display: inline; }
  .hero__subtitle { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }

  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .promo__inner { flex-direction: column; text-align: center; }

  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .booking__cal-col { max-width: 100%; }
  .price-table th:nth-child(2),
  .price-table td:nth-child(2) { display: none; }
}

/* ── CAROUSEL FOCUS ──────────────────────────────────────────────── */
/* Show buttons on keyboard focus too */
.carousel__track:focus-visible ~ .carousel__btn,
.carousel__btn:focus-visible {
  opacity: 1;
}

/* ── REDUCED MOTION ──────────────────────────────────────────────── */
@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;
  }
  html { scroll-behavior: auto; }
  .carousel__track { transition: none; }
  .carousel__slide img { transition: none; }
  .hero__bg { transition: none; transform: scale(1); }
  .hero:hover .hero__bg { transform: scale(1); }
  .hero__scroll-hint span { animation: none; opacity: 0.5; transform: none; }
}
