/* ============================================================
   PULIH Beauty & Wellness Spa — "Quiet Sanctuary" design system
   ============================================================ */

:root {
  /* Brand palette (from Pulih Brand Guideline) */
  --ivory: #FBF7F4;
  --ivory-deep: #F7F1EC;
  --blush: #FFE9F7;
  --blush-soft: #FFF3FA;
  --rose: #EAD1CF;
  --dusty-pink: #D8A7B1;
  --gold: #C9A14A;
  --gold-soft: #E2AE4A;
  --gold-pale: #EDD9AC;
  --lavender: #D3C7DF;
  --ink: #5B4A50;
  --ink-soft: #8A757B;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --radius: 24px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 50px -22px rgba(91, 74, 80, 0.28);
  --shadow-card: 0 10px 34px -18px rgba(91, 74, 80, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); font-weight: 500; }

.italic { font-style: italic; }
.gold-text { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- Layout helpers ---------- */

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--blush { background: linear-gradient(180deg, var(--blush-soft), var(--blush)); }
.section--ivory-deep { background: var(--ivory-deep); }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }

.gold-divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: 0;
  margin: 1.5rem auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.3rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: var(--white);
  box-shadow: 0 12px 28px -14px rgba(201, 161, 74, 0.75);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(201, 161, 74, 0.85); }

.btn--outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--white); }

.btn--pink {
  background: var(--dusty-pink);
  color: var(--white);
  box-shadow: 0 12px 28px -14px rgba(216, 167, 177, 0.9);
}
.btn--pink:hover { background: #cf97a3; transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(216, 167, 177, 1); }

.btn--soft {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.btn--soft:hover { transform: translateY(-2px); }

.btn--whatsapp {
  background: #4FBE64;
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(79, 190, 100, 0.6);
}
.btn--whatsapp:hover { transform: translateY(-2px); }

.btn[disabled] { opacity: 0.45; pointer-events: none; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 161, 74, 0.16);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__img { height: 56px; width: auto; display: block; }
.logo__sprig { color: var(--gold); margin-bottom: 0.3rem; }
.logo__sprig .icon-svg { width: 18px; height: 18px; }
.logo__word {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.logo__word .leaf { color: var(--dusty-pink); }
.logo__sub {
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a:not(.btn) {
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.nav a:not(.btn):hover, .nav a.active { color: var(--gold); }
.nav a:not(.btn):hover::after, .nav a.active::after { right: 0; }
.nav .btn { padding: 0.7rem 1.6rem; font-size: 0.78rem; }

.soon-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  background: var(--dusty-pink);
  color: var(--white);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  vertical-align: 2px;
}

/* ---------- Inline SVG icons ---------- */

.icon-svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ---------- Mobile app bar (bottom navigation) ---------- */

.app-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 65;
  background: rgba(251, 247, 244, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(201, 161, 74, 0.28);
  box-shadow: 0 -12px 32px -18px rgba(91, 74, 80, 0.35);
  padding: 0.45rem 0.4rem calc(0.55rem + env(safe-area-inset-bottom));
}

.app-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease);
  position: relative;
}
.app-bar__item .icon-svg { width: 22px; height: 22px; }
.app-bar__item.active { color: var(--gold); }
.app-bar__item.active::after {
  content: '';
  position: absolute;
  top: -0.45rem;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

/* Raised gold booking orb in the centre */
.app-bar__item--book { color: var(--gold); }
.app-bar__item--book.active::after { display: none; }
.book-orb {
  width: 52px; height: 52px;
  margin-top: -26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 3px solid var(--ivory);
  box-shadow: 0 10px 22px -8px rgba(201, 161, 74, 0.8);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.3s var(--ease);
}
.app-bar__item--book:active .book-orb { transform: scale(0.94); }
.book-orb .icon-svg { width: 24px; height: 24px; }

/* "More" bottom sheet */
.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 66;
  background: rgba(91, 74, 80, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.sheet-overlay.open { opacity: 1; }

.app-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 67;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 26px 26px 0 0;
  border-top: 1px solid rgba(201, 161, 74, 0.3);
  box-shadow: 0 -18px 50px -20px rgba(91, 74, 80, 0.4);
  padding: 0.9rem 1.4rem calc(1.6rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
.app-sheet.open { transform: none; }

.app-sheet__handle {
  display: block;
  width: 42px; height: 4px;
  border-radius: 4px;
  background: rgba(138, 117, 123, 0.3);
  margin: 0 auto 1rem;
}
.app-sheet__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  text-align: center;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.app-sheet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.app-sheet__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 0.3rem;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  border: 1px solid rgba(201, 161, 74, 0.18);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.app-sheet__item .icon-svg { width: 24px; height: 24px; color: var(--gold); }
.app-sheet__item.active,
.app-sheet__item:active {
  background: var(--blush);
  border-color: rgba(201, 161, 74, 0.4);
  color: var(--ink);
}

/* ---------- Hero (full-bleed, wide & clear) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(calc(100vh - 88px), 880px);
  background: var(--ivory);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 247, 244, 0.97) 0%,
    rgba(251, 247, 244, 0.9) 28%,
    rgba(251, 247, 244, 0.55) 52%,
    rgba(251, 247, 244, 0) 74%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 9vh, 7rem);
  padding-bottom: clamp(4rem, 9vh, 7rem);
  max-width: none;
}
.hero__content > * { max-width: 40rem; }

.hero h1 { font-size: clamp(2.9rem, 7.2vw, 5.2rem); font-weight: 400; }
.hero h1 .accent {
  display: block;
  color: var(--dusty-pink);
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  margin: 1.6rem 0 1.7rem;
}
.hero-ornament .icon-svg { width: 30px; height: 30px; }
.hero-ornament::after {
  content: '';
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 161, 74, 0.15));
}

.hero p.lead { margin: 0 0 2.4rem; max-width: 30rem; color: var(--ink); }

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Over the photo, the outline button needs its own surface — there is no hover on touch */
.hero .btn--outline {
  background: rgba(251, 247, 244, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer .icon-svg { width: 18px; height: 18px; }

/* ---------- Cards & grids ---------- */

.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.card__media { position: relative; overflow: hidden; }
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body { padding: 1.6rem 1.7rem 1.9rem; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { font-size: 0.95rem; color: var(--ink-soft); }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__link::after { content: '→'; transition: transform 0.35s var(--ease); }
.card__link:hover::after { transform: translateX(5px); }

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.8rem;
  text-align: center;
}
.value-card .icon {
  width: 62px; height: 62px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: grid;
  place-items: center;
  color: var(--gold);
}
.value-card .icon .icon-svg { width: 27px; height: 27px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.92rem; color: var(--ink-soft); }

.tag {
  display: inline-block;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--ink-soft);
}
.tag--gold { background: rgba(201, 161, 74, 0.12); color: var(--gold); }
.tag--lavender { background: rgba(211, 199, 223, 0.4); }

/* ---------- Split feature (service detail) ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.feature--flip .feature__media { order: 2; }

.feature__media .arch {
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.feature__media img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }

.feature__body h2 { margin-bottom: 1rem; }
.feature__body > p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; list-style: none; }
.pill-list li {
  padding: 0.45rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.check-list { list-style: none; margin-bottom: 1.8rem; }
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---------- Price list ---------- */

.price-group { margin-bottom: 3rem; }
.price-group h3 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.price-group h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 161, 74, 0.5), transparent);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(138, 117, 123, 0.25);
}
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-weight: 400; }
.price-row__meta { font-size: 0.82rem; color: var(--ink-soft); }
.price-row__dots { flex: 1; }
.price-row__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.price-row__desc {
  flex-basis: 100%;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* ---------- Steps (products ritual) ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.5rem 1.8rem;
  position: relative;
  text-align: center;
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.step h3 { margin: 0.5rem 0 0.8rem; }
.step .pill-list { justify-content: center; margin-bottom: 0; }

/* ---------- Coming Soon image treatment ---------- */

.img-soon { position: relative; overflow: hidden; }
.img-soon img {
  filter: blur(9px) saturate(0.9);
  transform: scale(1.08);
}
.img-soon .soon-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 233, 247, 0.35), rgba(251, 247, 244, 0.4));
}
.soon-overlay .soon-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(201, 161, 74, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}
.soon-overlay .soon-tag .script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--gold);
}
.soon-overlay .soon-tag .caption {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Reviews (Google) ---------- */

.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.4rem;
}
.stars { display: inline-flex; gap: 0.2rem; color: var(--gold); }
.stars svg { width: 20px; height: 20px; }
.reviews-head .score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
}
.reviews-head .source { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.06em; }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.9rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card .stars svg { width: 15px; height: 15px; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  border: 0;
  margin: 0;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}
.review-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.review-card .who { font-size: 0.92rem; color: var(--ink); }
.review-card .via { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.08em; }

.reviews-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(ellipse 70% 90% at 20% 0%, rgba(255, 233, 247, 0.85), transparent 55%),
    linear-gradient(120deg, #f5e4ee, var(--blush));
  border-radius: calc(var(--radius) * 1.4);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { margin-bottom: 0.8rem; }
.cta-band p { color: var(--ink-soft); max-width: 40rem; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: #4E3F45;
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  font-size: 0.93rem;
}
.site-footer a:hover { color: var(--gold-pale); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer .logo__word { color: var(--gold-pale); }
.site-footer .logo__sub { color: rgba(255, 255, 255, 0.5); }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.2rem 0 0.8rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Emotional pause section (About) ---------- */

.pause-lines { max-width: 560px; }
.pause-lines p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.pause-lines p.strong { color: var(--ink); font-style: italic; }

/* ---------- Journal / article ---------- */

.article-body { max-width: 680px; margin-inline: auto; }
.article-body p { margin-bottom: 1.5rem; font-size: 1.08rem; }
.article-hero { text-align: center; max-width: 720px; margin-inline: auto; }

/* ---------- Booking ---------- */

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.booking-steps .bstep {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  transition: opacity 0.4s var(--ease);
}
.booking-steps .bstep.active { opacity: 1; color: var(--gold); }
.booking-steps .bstep .n {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
}
.booking-steps .bstep + .bstep::before {
  content: '';
  width: clamp(24px, 6vw, 70px);
  height: 1px;
  background: rgba(138, 117, 123, 0.35);
  margin: 0 0.9rem;
}

.booking-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 780px;
  margin-inline: auto;
}

.svc-cat-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.svc-cat-tabs button {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 74, 0.4);
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.svc-cat-tabs button.active {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  border-color: transparent;
  color: #fff;
}

.svc-option {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(138, 117, 123, 0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 0.7rem;
  transition: all 0.3s var(--ease);
}
.svc-option:hover { border-color: var(--gold); }
.svc-option.selected {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.07);
  box-shadow: 0 0 0 1px var(--gold);
}
.svc-option .meta { font-size: 0.8rem; color: var(--ink-soft); }
.svc-option .price { margin-left: auto; font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); white-space: nowrap; }

/* Calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-head h3 { font-size: 1.3rem; }
.cal-nav {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 74, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cal-nav:hover { background: var(--gold); color: #fff; }
.cal-nav[disabled] { opacity: 0.3; pointer-events: none; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-grid .dow {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 0;
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: grid;
  place-items: center;
}
.cal-day:hover:not([disabled]) { background: var(--blush); }
.cal-day.selected { background: linear-gradient(120deg, var(--gold), var(--gold-soft)); color: #fff; font-weight: 500; }
.cal-day[disabled] { color: rgba(138, 117, 123, 0.35); cursor: not-allowed; background: transparent; }
.cal-day.full { background: rgba(216, 167, 177, 0.25); color: rgba(138, 117, 123, 0.6); cursor: not-allowed; }
.cal-day.closed { background: transparent; color: rgba(138, 117, 123, 0.3); cursor: not-allowed; }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.cal-legend i {
  width: 14px; height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.cal-legend .i-avail { background: var(--ivory); border: 1px solid rgba(138,117,123,0.3); }
.cal-legend .i-full { background: rgba(216, 167, 177, 0.4); }
.cal-legend .i-closed { background: repeating-linear-gradient(45deg, #eee, #eee 3px, #fff 3px, #fff 6px); }

/* Time slots */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.7rem;
}
.slot {
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(138, 117, 123, 0.25);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: all 0.25s var(--ease);
}
.slot:hover:not([disabled]) { border-color: var(--gold); }
.slot.selected { background: linear-gradient(120deg, var(--gold), var(--gold-soft)); border-color: transparent; color: #fff; }
.slot[disabled] {
  background: var(--ivory-deep);
  color: rgba(138, 117, 123, 0.45);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Forms */
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(138, 117, 123, 0.3);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.15);
}

.booking-summary {
  background: var(--blush-soft);
  border: 1px solid rgba(216, 167, 177, 0.4);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.booking-summary strong { font-weight: 500; }

.form-error {
  background: rgba(216, 100, 100, 0.08);
  border: 1px solid rgba(216, 100, 100, 0.35);
  color: #a05252;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  display: none;
}
.form-error.show { display: block; }

.booking-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Coming soon ---------- */

.coming-soon {
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.coming-soon .inner { max-width: 560px; padding: 2rem 0; }
.coming-soon .script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dusty-pink);
  letter-spacing: 0.1em;
}

/* ============================================================
   Responsive — mobile portrait first concerns
   ============================================================ */

@media (max-width: 900px) {
  .nav { display: none; }
  .app-bar { display: flex; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .site-header__inner { justify-content: center; }

  .hero { min-height: min(calc(100svh - 150px), 720px); }
  .hero__bg { object-position: 68% center; }
  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(251, 247, 244, 0.96) 0%,
      rgba(251, 247, 244, 0.82) 45%,
      rgba(251, 247, 244, 0.35) 75%,
      rgba(251, 247, 244, 0.1) 100%
    );
  }
  .hero__content { align-self: flex-start; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature, .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
  .feature__media { max-width: 420px; margin-inline: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero .lead br { display: none; }
  .logo__img { height: 46px; }
  /* Long button labels must wrap, not overflow — otherwise they look off-centre */
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-steps .bstep .label { display: none; }
  .booking-steps .bstep.active .label { display: inline; }
  .price-row { flex-wrap: wrap; }
  .price-row__dots { display: none; }
  .price-row__price { margin-left: auto; }
  .cal-grid { gap: 4px; }
  .booking-nav { flex-direction: column-reverse; }
  .booking-nav .btn { width: 100%; }
}
