/* ============================================
   Sensational Spa Lawrenceville — Stylesheet
   Palette: sage / eucalyptus / cream / soft sand
   ============================================ */

:root {
  --sage: #6b8068;
  --sage-dark: #4f614d;
  --sage-light: #8aa587;
  --eucalyptus: #c7d8c4;
  --eucalyptus-soft: #dde9da;
  --cream: #f7f3ec;
  --cream-2: #efe9de;
  --sand: #e6dcc9;
  --sand-dark: #cdbfa3;
  --ink: #2c2f2a;
  --ink-soft: #4a4e44;
  --muted: #827f73;
  --white: #ffffff;
  --clay: #b98a6e;
  --line: rgba(44,47,42,0.10);
  --line-soft: rgba(44,47,42,0.06);
  --shadow: 0 24px 60px rgba(44,47,42,0.12);
  --shadow-sm: 0 10px 28px rgba(44,47,42,0.10);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --font-display: 'Marcellus', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--sage); color: var(--cream); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ===================== Top Bar ===================== */
.topbar {
  background: var(--sage-dark);
  color: var(--cream);
  font-size: 13px;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 16px; flex-wrap: wrap; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar i { color: var(--eucalyptus); margin-right: 7px; }
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--eucalyptus); }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { color: var(--cream); }
.hide-mobile { display: inline; }

/* ===================== Navigation ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled { background: rgba(247,243,236,0.98); box-shadow: 0 10px 30px rgba(44,47,42,0.08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--sage);
  color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(107,128,104,0.15);
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 20px; letter-spacing: 1.5px; color: var(--ink); }
.brand__sub { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sage); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative; padding: 6px 0;
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--sage);
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--sage-dark); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.active { color: var(--sage-dark); }
.nav__links a.active::after { width: 100%; }
.nav__cta {
  background: var(--sage);
  color: var(--cream) !important;
  padding: 12px 24px !important;
  border-radius: 50px;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__cta:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(107,128,104,0.3); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.nav__toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 500; font-size: 15px; letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--primary { background: var(--sage); color: var(--cream); box-shadow: 0 12px 28px rgba(107,128,104,0.28); }
.btn--primary:hover { background: var(--sage-dark); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(107,128,104,0.36); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(44,47,42,0.2); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage-dark); transform: translateY(-3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--sage-dark); font-weight: 500; letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.link-arrow i { transition: transform 0.3s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }

/* ===================== Hero ===================== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(247,243,236,0.78) 0%, rgba(247,243,236,0.30) 45%, rgba(247,243,236,0.65) 100%),
    url('https://images.unsplash.com/photo-1540555700478-4be289cae4d2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.14); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 70%, rgba(199,216,196,0.35) 0%, transparent 55%);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 24px;
}
.hero__eyebrow i { color: var(--sage); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 108px);
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 26px;
  letter-spacing: 0.5px;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--sage);
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.hero__stars { color: var(--clay); display: inline-flex; gap: 2px; }
.hero__rating-text { color: var(--ink-soft); }
.hero__rating-text strong { color: var(--ink); }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
  z-index: 2;
}
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--sage), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== Welcome ===================== */
.welcome { padding: 120px 0; }
.welcome__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.welcome__media { position: relative; }
.welcome__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(247,243,236,0.10), rgba(247,243,236,0.35)),
    url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.welcome__quote {
  position: absolute; bottom: -28px; left: -16px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  padding: 22px 26px;
  border-radius: var(--radius);
  max-width: 260px;
  box-shadow: var(--shadow-sm);
}
.welcome__quote i { color: var(--sage-light); font-size: 20px; margin-bottom: 10px; display: block; }
.welcome__quote p { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.4; color: var(--ink-soft); }
.welcome__content h2 { margin: 8px 0 22px; }
.welcome__content p { color: var(--ink-soft); margin-bottom: 18px; font-weight: 300; }
.welcome__badges { display: flex; gap: 28px; margin: 30px 0 28px; flex-wrap: wrap; }
.welcome__badges div { display: flex; align-items: center; gap: 12px; }
.welcome__badges i {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--eucalyptus-soft);
  color: var(--sage-dark);
  font-size: 16px;
}
.welcome__badges span { font-size: 13px; line-height: 1.3; color: var(--ink-soft); display: block; }

/* ===================== Stats ===================== */
.stats { padding: 56px 0; background: var(--eucalyptus-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 12px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: var(--line); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(40px, 6vw, 62px); color: var(--sage-dark); line-height: 1; }
.stat__label { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ===================== Section Head ===================== */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 16px; position: relative; padding-left: 32px;
}
.section-head--center .section-head__eyebrow { padding-left: 0; }
.section-head__eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 22px; height: 1px; background: var(--sage); transform: translateY(-50%); }
.section-head--center .section-head__eyebrow::before { display: none; }
.section-head__title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); line-height: 1.05; color: var(--ink); margin-bottom: 20px; letter-spacing: 0.5px; }
.section-head__sub { font-size: 16px; color: var(--ink-soft); max-width: 560px; font-weight: 300; }
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

/* ===================== Services ===================== */
.services { padding: 120px 0; }
.services__tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.services__tab {
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 14px; letter-spacing: 0.04em; font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease);
}
.services__tab:hover { color: var(--sage-dark); border-color: var(--sage); }
.services__tab.active { background: var(--sage); color: var(--cream); border-color: var(--sage); box-shadow: 0 10px 22px rgba(107,128,104,0.25); }

.services__panel { display: none; animation: fadeIn 0.5s var(--ease); }
.services__panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(199,216,196,0.18), transparent 55%); opacity: 0; transition: opacity 0.35s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(107,128,104,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--eucalyptus-soft);
  color: var(--sage-dark);
  border-radius: 16px;
  font-size: 22px;
  margin-bottom: 22px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--sage); color: var(--cream); }
.service-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 12px; letter-spacing: 0.3px; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; font-weight: 300; }
.service-card__meta { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.service-card__meta span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.service-card__price { font-family: var(--font-serif); font-weight: 600; color: var(--sage-dark); font-size: 18px; }
.service-card--featured { background: linear-gradient(160deg, var(--eucalyptus-soft), var(--white)); border-color: rgba(107,128,104,0.25); }
.service-card__badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--sage-dark); color: var(--cream);
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 50px;
}
.services__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 40px; }

/* ===================== About ===================== */
.about { padding: 120px 0; background: var(--eucalyptus-soft); }
.about__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.about__content h2 { margin: 8px 0 24px; }
.about__content p { color: var(--ink-soft); margin-bottom: 18px; font-weight: 300; }
.about__list { margin: 28px 0 32px; }
.about__list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--ink); font-size: 15px; }
.about__list i { color: var(--sage-dark); }
.about__media { position: relative; }
.about__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(247,243,236,0.10), rgba(247,243,236,0.30)),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; bottom: -26px; right: -16px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  padding: 20px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about__badge-num { display: block; font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--sage-dark); }
.about__badge-stars { color: var(--clay); display: block; margin: 6px 0 4px; font-size: 13px; }
.about__badge-text { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ===================== Rituals ===================== */
.rituals { padding: 120px 0; }
.rituals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ritual {
  text-align: center;
  padding: 42px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.ritual:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: rgba(107,128,104,0.3); }
.ritual__icon {
  width: 66px; height: 66px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--eucalyptus-soft);
  color: var(--sage-dark);
  font-size: 24px;
  border: 1px solid var(--line-soft);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.ritual:hover .ritual__icon { background: var(--sage); color: var(--cream); }
.ritual h3 { font-family: var(--font-display); font-size: 21px; color: var(--ink); margin-bottom: 10px; letter-spacing: 0.3px; }
.ritual p { color: var(--ink-soft); font-size: 14px; font-weight: 300; }

/* ===================== Gallery ===================== */
.gallery { padding: 120px 0; background: var(--eucalyptus-soft); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item {
  position: relative; border-radius: var(--radius);
  overflow: hidden;
  background-size: cover; background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(44,47,42,0.65)); transition: opacity 0.35s var(--ease); }
.gallery__item:hover { transform: scale(1.02); }
.gallery__tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); font-weight: 500;
  padding: 5px 12px; background: rgba(44,47,42,0.45); border-radius: 50px; backdrop-filter: blur(6px);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__grid .gallery__item:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db8c7?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1591343395082-e120087004b4?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289cae4d2?auto=format&fit=crop&w=1100&q=80'); }
.gallery__grid .gallery__item:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(6) { background-image: url('https://images.unsplash.com/photo-1596707327822-dfe1f0a6f0d3?auto=format&fit=crop&w=700&q=80'); }

/* ===================== Reviews ===================== */
.reviews { padding: 120px 0; overflow: hidden; }
.reviews__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.reviews__rating-stars { color: var(--clay); font-size: 18px; }
.reviews__rating-text { color: var(--ink-soft); font-size: 15px; }
.reviews__rating-text strong { color: var(--ink); }

.reviews__track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  scroll-snap-align: start;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); border-color: rgba(107,128,104,0.3); }
.review-card__stars { color: var(--clay); margin-bottom: 18px; font-size: 14px; }
.review-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 26px; font-family: var(--font-serif); font-style: italic; font-size: 17px; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; font-weight: 600; font-size: 18px; }
.review-card__author strong { display: block; font-size: 15px; color: var(--ink); }
.review-card__source { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }

.reviews__nav { display: flex; gap: 12px; justify-content: center; margin-top: 14px; }
.reviews__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); display: grid; place-items: center; background: var(--white); transition: all 0.25s var(--ease); }
.reviews__btn:hover { background: var(--sage); border-color: var(--sage); color: var(--cream); }

/* ===================== Visit ===================== */
.visit { padding: 120px 0; background: var(--eucalyptus-soft); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.visit__info { display: flex; flex-direction: column; gap: 20px; }
.visit__card { display: flex; gap: 20px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.visit__card:hover { box-shadow: var(--shadow-sm); border-color: rgba(107,128,104,0.3); }
.visit__card-icon { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--eucalyptus-soft); color: var(--sage-dark); font-size: 20px; }
.visit__card h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.3px; }
.visit__card p { color: var(--ink-soft); font-size: 15px; font-weight: 300; }
.visit__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--sage-dark); font-weight: 500; font-size: 14px; letter-spacing: 0.04em; }
.visit__link i { transition: transform 0.25s var(--ease); }
.visit__link:hover i { transform: translateX(5px); }

.hours { width: 100%; margin-top: 6px; }
.hours li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--ink-soft); }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--ink); }

.visit__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); min-height: 460px; box-shadow: var(--shadow); }
.visit__map iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

/* ===================== Book CTA ===================== */
.book { padding: 100px 0; background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%); position: relative; overflow: hidden; }
.book::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1583416750470-965b2707e355?auto=format&fit=crop&w=1600&q=80') center/cover; opacity: 0.12; mix-blend-mode: overlay; }
.book__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.book__content .section-head__eyebrow { color: var(--eucalyptus); }
.book__content .section-head__eyebrow::before { background: var(--eucalyptus); }
.book__title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 80px); line-height: 1.05; color: var(--cream); margin: 10px 0 20px; letter-spacing: 0.5px; }
.book__sub { color: rgba(247,243,236,0.85); font-size: 17px; max-width: 460px; margin-bottom: 32px; font-weight: 300; }
.book__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.book__cta .btn--primary { background: var(--cream); color: var(--sage-dark); }
.book__cta .btn--primary:hover { background: var(--white); }
.book__cta .btn--ghost { color: var(--cream); border-color: rgba(247,243,236,0.4); }
.book__cta .btn--ghost:hover { border-color: var(--cream); color: var(--cream); }
.book__seal { display: grid; place-items: center; }
.book__seal-inner {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(247,243,236,0.4);
  display: grid; place-items: center; text-align: center;
  position: relative;
  animation: spin 28s linear infinite;
}
.book__seal-inner::before { content: ''; position: absolute; inset: -14px; border-radius: 50%; border: 1px dashed rgba(247,243,236,0.25); }
.book__seal-inner i { color: var(--eucalyptus); font-size: 26px; margin-bottom: 4px; grid-row: 1; }
.book__seal-inner span { display: block; }
.book__seal-inner span:nth-of-type(1) { font-family: var(--font-display); font-size: 18px; color: var(--cream); letter-spacing: 1px; grid-row: 2; }
.book__seal-inner span:nth-of-type(2) { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--eucalyptus); grid-row: 3; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== Footer ===================== */
.footer { background: var(--ink); color: var(--cream); padding-top: 70px; }
.brand--footer .brand__name { color: var(--cream); }
.brand--footer .brand__mark { background: var(--sage); box-shadow: 0 0 0 5px rgba(138,165,135,0.18); }
.footer__tag { color: rgba(247,243,236,0.65); font-size: 14px; margin: 18px 0; max-width: 300px; font-weight: 300; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,243,236,0.18); display: grid; place-items: center; color: var(--cream); transition: all 0.25s var(--ease); }
.footer__social a:hover { background: var(--sage); border-color: var(--sage); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__col h4 { font-family: var(--font-display); font-size: 18px; color: var(--cream); margin-bottom: 18px; letter-spacing: 1px; }
.footer__col a, .footer__col p { display: block; color: rgba(247,243,236,0.65); font-size: 14px; padding: 6px 0; font-weight: 300; }
.footer__col a:hover { color: var(--eucalyptus); }
.footer__col p i, .footer__col a i { color: var(--eucalyptus); margin-right: 8px; }
.footer__bottom { border-top: 1px solid rgba(247,243,236,0.12); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; font-size: 13px; color: rgba(247,243,236,0.55); flex-wrap: wrap; gap: 8px; }

/* ===================== Back to top ===================== */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s var(--ease); z-index: 40; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--sage-dark); transform: translateY(-3px); }

/* ===================== Reveal ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .services__grid, .rituals__grid { grid-template-columns: repeat(2, 1fr); }
  .welcome__inner, .about__inner, .visit__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__badge { right: 16px; }
  .welcome__quote { left: 16px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex-basis: calc(50% - 11px); }
  .book__inner { grid-template-columns: 1fr; text-align: center; }
  .book__content { text-align: center; }
  .book__cta { justify-content: center; }
}

@media (max-width: 768px) {
  .topbar { font-size: 12px; }
  .topbar__inner { height: auto; padding: 8px 24px; gap: 8px; }
  .hide-mobile { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100vh;
    background: var(--cream); border-left: 1px solid var(--line);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    z-index: 55; padding: 40px;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 18px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat:not(:last-child)::after { display: none; }
  .welcome, .stats, .services, .about, .rituals, .gallery, .reviews, .visit, .book { padding: 80px 0; }
  .services__grid, .rituals__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .review-card { flex-basis: 85%; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .welcome__quote { position: static; margin-top: -20px; max-width: none; }
}

@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; }
  .hero__bg { animation: none; }
  .book__seal-inner { animation: none; }
  .reveal { opacity: 1; transform: none; }
}