/* =====================================================================
   style.css — Sarah Hayes Massage Therapy  (light theme)
   ===================================================================== */

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(150deg, #c4c9d8 0%, #d2d6e6 50%, #cbc8d6 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
button { cursor: pointer; }
img { display: block; }

/* ── Liquid Glass ─────────────────────────────────────────────────── */
.liquid-glass {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 20%,
    rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.1) 55%,
    rgba(255,255,255,0.5) 80%, rgba(255,255,255,0.9) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass-strong {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.9);
}
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 20%,
    rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.1) 55%,
    rgba(255,255,255,0.6) 80%, rgba(255,255,255,0.95) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── BlurText Animation ───────────────────────────────────────────── */
.blur-word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
  transition: opacity .65s ease, filter .65s ease, transform .65s ease;
}
.blur-word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ── Badge ────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.3rem 1rem;
}
.badge span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(26,26,46,0.5);
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Stars ────────────────────────────────────────────────────────── */
.stars {
  display: flex;
  gap: 0.15rem;
}

/* ── Navbar ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}
.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo span {
  color: #9a7030;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.1rem;
}
.nav-pill {
  border-radius: 9999px;
  padding: 0.25rem 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-pill a {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  border-radius: 9999px;
  transition: color 0.2s;
  color: rgba(26,26,46,0.58);
  font-weight: 400;
}
.nav-pill a.active {
  color: #1a1a2e;
  font-weight: 500;
  background: rgba(26,26,46,0.07);
}
.nav-pill a:hover { color: #1a1a2e; }
.nav-pill-book {
  padding: 0.45rem 1rem !important;
  font-size: 0.82rem !important;
  background: #c9a97a !important;
  color: #1a1a2e !important;
  border-radius: 9999px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-book-mobile {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  background: #c9a97a;
  color: #1a1a2e;
  border-radius: 9999px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  text-decoration: none;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: rgba(26,26,46,0.7);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
}

/* ── Mobile Drawer ────────────────────────────────────────────────── */
#mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 49;
  background: rgba(216,220,232,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobile-drawer.open { display: flex; }
#mobile-drawer a {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: #1a1a2e;
  text-decoration: none;
  letter-spacing: -1px;
}
#mobile-drawer a.active { color: #9a7030; }
#mobile-drawer .drawer-book {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: #c9a97a;
  color: #1a1a2e;
  border-radius: 9999px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
  text-decoration: none;
}

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
  background: rgba(210,214,228,0.92);
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo span {
  color: #9a7030;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.25rem;
}
.footer-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(26,26,46,0.68);
  max-width: 24rem;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(26,26,46,0.70);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(26,26,46,0.8); }
.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: rgba(26,26,46,0.58);
}

/* ── Sections ─────────────────────────────────────────────────────── */
.section-pad { padding: 5rem 2rem; }

/* ── Hero (Homepage) ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,7,4,0.45);
  z-index: 1;
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #fff4ef);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 1.25rem;
  padding-top: 90px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 3.5rem;
  gap: 1rem;
  width: 100%;
}
.hero-heading {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.9rem, 5.5vw, 4.5rem);
  color: #fff;
  line-height: 0.9;
  letter-spacing: -2.5px;
  max-width: 34rem;
}
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: rgba(255,255,255,0.55);
  max-width: 22rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-btn-primary {
  border-radius: 9999px;
  padding: 0.7rem 1.4rem;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform .2s;
}
.hero-btn-primary:hover, .hero-btn-secondary:hover { transform: scale(1.03); }
.hero-btn-primary .btn-icon, .hero-btn-secondary .btn-icon {
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-btn-secondary .btn-icon { background: rgba(255,255,255,0.1); }
.hero-btn-secondary {
  border-radius: 9999px;
  padding: 0.7rem 1.4rem;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform .2s;
}
.hero-tagline-pill {
  border-radius: 9999px;
  padding: 0.45rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-tagline-pill span {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}
.hero-tagline-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── Stat Cards (Hero desktop) ───────────────────────────────────── */
.stat-cards {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stat-card {
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  min-width: 140px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stat-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card-val {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
.stat-card-val span {
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  margin-left: 0.2rem;
}
.stat-card-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* Social Proof card */
.social-proof {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  z-index: 20;
}
.social-proof-inner {
  border-radius: 1rem;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.social-proof-val {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}
.social-proof-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}
.social-avatars { display: flex; }
.social-avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: cover;
}
.social-avatars img:not(:first-child) { margin-left: -7px; }

/* ── Booking Widget ───────────────────────────────────────────────── */
.booking-widget {
  width: 100%;
  max-width: 620px;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
  transition: opacity .7s ease 150ms, filter .7s ease 150ms, transform .7s ease 150ms;
}
.booking-widget.mounted {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.widget-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.widget-card {
  border-radius: 1.1rem;
  overflow: hidden;
}
.widget-header {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-header-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: #fff;
}
.widget-header-link {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: rgba(201,169,122,0.9);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
}
.widget-picker {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.widget-picker-label {
  font-size: 0.57rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow', sans-serif;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.widget-select {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  outline: none;
  width: 100%;
}
.widget-select option { background: #3a2c18; }
.widget-info {
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.widget-pill {
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.widget-pill-duration {
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.8);
}
.widget-pill-price {
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  color: #c9a97a;
  font-weight: 600;
}
.widget-book-btn {
  margin-left: auto;
  background: #c9a97a;
  color: #1a1a2e;
  border: none;
  border-radius: 0.65rem;
  padding: 0.5rem 1.1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  transition: opacity .2s;
}
.widget-book-btn:hover { opacity: 0.85; }

/* ── Photo Mosaic ─────────────────────────────────────────────────── */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 130px;
  gap: 2px;
  padding: 2px;
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Spacer between widget & hero text ───────────────────────────── */
.hero-spacer { flex: 1; min-height: 40px; }

/* ── About Snippet ────────────────────────────────────────────────── */
.about-snippet { background: transparent; padding: 5rem 1.5rem; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.section-heading {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #1a1a2e;
  line-height: 0.9;
  letter-spacing: -1.5px;
  font-size: clamp(1.75rem, 4vw, 3rem);
}
.section-heading-lg {
  font-size: clamp(2.25rem, 6vw, 5rem);
  letter-spacing: -3px;
  line-height: 0.87;
}
.section-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  line-height: 1.7;
  font-size: 0.9rem;
  max-width: 30rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.benefit-card {
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.benefit-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.benefit-card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.95rem;
}
.benefit-card-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  font-size: 0.82rem;
  line-height: 1.65;
}
.section-more-link {
  text-align: center;
  margin-top: 2rem;
}
.section-more-link a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: #9a7030;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Services Preview (Homepage) ─────────────────────────────────── */
.services-preview { background: transparent; padding: 5rem 1.5rem; }
.service-preview-card {
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-preview-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.service-preview-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.service-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-preview-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.88rem;
}
.service-preview-price {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #9a7030;
  font-size: 0.82rem;
}
.service-preview-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  font-size: 0.78rem;
  line-height: 1.65;
  flex: 1;
}
.service-preview-duration {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: rgba(26,26,46,0.76);
}

/* ── Stats Strip ──────────────────────────────────────────────────── */
.stats-strip { background: transparent; padding: 4rem 1.5rem; }
.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-val {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #9a7030;
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.70);
  font-size: 0.78rem;
  margin-top: 0.4rem;
}

/* ── Testimonials Preview ─────────────────────────────────────────── */
.testimonials-preview { background: transparent; padding: 5rem 1.5rem; }
.testimonial-card {
  border-radius: 1.1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-quote {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: rgba(26,26,46,0.68);
  font-size: 0.85rem;
  line-height: 1.75;
  flex: 1;
}
.testimonial-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #9a7030;
  font-size: 0.82rem;
}
.testimonial-role {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

/* ── CTA Banner ───────────────────────────────────────────────────── */
.cta-banner {
  background: transparent;
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(26,26,46,0.07);
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-heading {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: #1a1a2e;
  line-height: 0.87;
  letter-spacing: -2.5px;
}
.cta-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  max-width: 24rem;
  line-height: 1.7;
  font-size: 0.875rem;
}
.cta-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-gold {
  border-radius: 9999px;
  padding: 0.8rem 1.75rem;
  background: #c9a97a;
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity .2s;
}
.btn-gold:hover { opacity: 0.88; }
.btn-glass {
  border-radius: 9999px;
  padding: 0.8rem 1.75rem;
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Pricing Section ──────────────────────────────────────────────── */
.pricing-section { background: transparent; padding: 5rem 1.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: start;
}
.pricing-card {
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(26,26,46,0.09);
  box-shadow: 0 4px 24px rgba(120,80,180,0.07), 0 1px 4px rgba(26,26,46,0.05);
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(201,169,122,0.18) 0%, rgba(180,130,70,0.1) 50%, rgba(255,255,255,0.8) 100%);
  border: 1px solid rgba(201,169,122,0.45);
  box-shadow: 0 0 48px rgba(201,169,122,0.14), 0 2px 20px rgba(26,26,46,0.06);
  transform: scale(1.02);
  z-index: 2;
}
.pricing-popular-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: #c9a97a;
  color: #1a1a2e;
  border-radius: 9999px;
  padding: 0.2rem 0.7rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: rgba(26,26,46,0.8);
  font-size: 0.95rem;
}
.pricing-card.featured .pricing-name { color: #1a1a2e; }
.pricing-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.68);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.pricing-card.featured .pricing-tagline { color: rgba(26,26,46,0.58); }
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  line-height: 1;
}
.pricing-amount {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #1a1a2e;
  line-height: 1;
}
.pricing-card.featured .pricing-amount { color: #9a7030; }
.pricing-unit {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.68);
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}
.pricing-divider {
  height: 1px;
  background: rgba(26,26,46,0.07);
}
.pricing-card.featured .pricing-divider { background: rgba(201,169,122,0.25); }
.pricing-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.pricing-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(26,26,46,0.72);
  line-height: 1.5;
}
.pricing-card.featured .pricing-bullets li { color: rgba(26,26,46,0.78); }
.pricing-bullets li .bullet-icon { color: rgba(154,112,48,0.65); flex-shrink: 0; margin-top: 0.1rem; }
.pricing-card.featured .pricing-bullets li .bullet-icon { color: #9a7030; }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 9999px;
  padding: 0.75rem;
  background: rgba(26,26,46,0.06);
  color: rgba(26,26,46,0.72);
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(26,26,46,0.1);
}
.pricing-card.featured .pricing-cta {
  background: #c9a97a;
  color: #1a1a2e;
  font-weight: 700;
  border: none;
}
.pricing-cta:hover { opacity: 0.82; }

/* Premium Card */
.premium-card {
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(120deg, rgba(201,169,122,0.12) 0%, rgba(255,255,255,0.75) 60%);
  border: 1px solid rgba(26,26,46,0.09);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 0.5rem;
  box-shadow: 0 2px 16px rgba(26,26,46,0.04);
}
.premium-left { flex: 1 1 200px; display: flex; flex-direction: column; gap: 0.5rem; }
.premium-badge-pill {
  display: inline-block;
  background: rgba(154,112,48,0.1);
  border: 1px solid rgba(154,112,48,0.25);
  border-radius: 9999px;
  padding: 0.2rem 0.75rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #9a7030;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premium-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 1.1rem;
}
.premium-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.68);
  font-size: 0.8rem;
}
.premium-price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.premium-amount {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  color: #9a7030;
  line-height: 1;
}
.premium-unit {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.68);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}
.premium-middle { flex: 2 1 280px; }
.premium-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem 1.5rem;
}
.premium-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(26,26,46,0.76);
  line-height: 1.5;
}
.premium-bullet .bullet-icon { color: #9a7030; flex-shrink: 0; margin-top: 0.1rem; }
.premium-right { flex: 0 0 auto; display: flex; align-items: center; }
.premium-cta {
  border-radius: 9999px;
  padding: 0.8rem 1.75rem;
  background: rgba(26,26,46,0.06);
  border: 1px solid rgba(26,26,46,0.12);
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.premium-cta:hover { background: rgba(154,112,48,0.1); }
.pricing-fine {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(26,26,46,0.72);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ── Hero Banner (inner pages) ────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,7,4,0.62);
}
.page-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #fff4ef);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

/* ── Services Page ────────────────────────────────────────────────── */
.services-list { padding: 2rem 1.5rem 5rem; max-width: 920px; margin: 0 auto; }
.service-row {
  display: flex;
  gap: 3rem;
  padding: 3.5rem 0;
  align-items: center;
  flex-wrap: wrap;
}
.service-row.reverse { flex-direction: row-reverse; }
.service-img-wrap { flex: 1 1 260px; }
.service-img-wrap img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  height: 280px;
  box-shadow: 0 8px 40px rgba(26,26,46,0.12);
}
.service-content { flex: 1 1 260px; display: flex; flex-direction: column; gap: 1rem; }
.service-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.service-name {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #1a1a2e;
  letter-spacing: -0.5px;
}
.service-tags { display: flex; gap: 0.5rem; }
.service-tag-duration {
  border-radius: 9999px;
  padding: 0.22rem 0.7rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: rgba(26,26,46,0.76);
}
.service-tag-price {
  border-radius: 9999px;
  padding: 0.22rem 0.7rem;
  background: rgba(154,112,48,0.1);
  border: 1px solid rgba(154,112,48,0.25);
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: #9a7030;
  font-weight: 500;
}
.service-tagline {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-weight: 300;
  color: rgba(26,26,46,0.72);
  font-size: 0.85rem;
  line-height: 1.6;
}
.service-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.78);
  font-size: 0.85rem;
  line-height: 1.7;
}
.service-bullets {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(26,26,46,0.5);
  line-height: 1.5;
}
.service-bullets li .bullet-icon { color: #9a7030; flex-shrink: 0; margin-top: 0.1rem; }
.service-book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: #9a7030;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: gap 0.2s;
}
.service-book-link:hover { gap: 0.6rem; }
.service-divider { height: 1px; background: rgba(26,26,46,0.07); }

/* ── About Page ───────────────────────────────────────────────────── */
.pillars-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  padding: 5rem 1.5rem;
}
.pillar-card {
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar-card img { width: 100%; height: 210px; object-fit: cover; }
.pillar-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pillar-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.95rem;
}
.pillar-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  font-size: 0.82rem;
  line-height: 1.65;
}
.expect-section {
  padding: 1rem 1.5rem 5rem;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.expect-img { flex: 1 1 300px; }
.expect-img img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  height: 380px;
}
.expect-content { flex: 1 1 280px; display: flex; flex-direction: column; gap: 1.25rem; }
.expect-heading {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #1a1a2e;
  line-height: 0.92;
  letter-spacing: -1px;
}
.expect-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 0.6rem;
  background: rgba(154,112,48,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: #9a7030;
}
.step-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}
.step-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.76);
  font-size: 0.8rem;
  line-height: 1.6;
}
.modalities-section {
  padding: 1rem 1.5rem 5rem;
  border-top: 1px solid rgba(26,26,46,0.07);
}
.modalities-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.modality-card {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.modality-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}
.modality-body {
  padding: 0.85rem 0.85rem 0.85rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.modality-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.85rem;
}
.modality-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.72);
  font-size: 0.75rem;
  line-height: 1.55;
}
.credentials-section {
  padding: 3rem 1.5rem;
  background: rgba(26,26,46,0.025);
  border-top: 1px solid rgba(26,26,46,0.07);
}
.credentials-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.65rem;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,46,0.6);
}
.credential-item .bullet-icon { color: #9a7030; flex-shrink: 0; }

/* ── Reviews Page ─────────────────────────────────────────────────── */
.reviews-stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}
.review-stat-val {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.75rem;
  color: #c9a97a;
  line-height: 1;
}
.review-stat-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  margin-top: 0.2rem;
}
.filter-chips {
  padding: 1.5rem 1.5rem 0.5rem;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-chip {
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(26,26,46,0.1);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  background: rgba(255,255,255,0.7);
  color: rgba(26,26,46,0.6);
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(26,26,46,0.06);
}
.filter-chip.active {
  background: #c9a97a;
  color: #1a1a2e;
  font-weight: 500;
  border-color: transparent;
  box-shadow: none;
}
.reviews-grid {
  padding: 1.5rem 1.5rem 5rem;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.1rem;
}
.review-card {
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-card[data-service] { transition: opacity 0.2s; }
.review-card.hidden { display: none; }
.review-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(26,26,46,0.07);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(154,112,48,0.25);
  flex-shrink: 0;
}
.review-name-wrap { flex: 1; min-width: 0; }
.review-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-role {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.4);
  font-size: 0.72rem;
  margin-top: 0.1rem;
}
.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}
.review-service-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.62rem;
  color: rgba(26,26,46,0.76);
  background: rgba(26,26,46,0.05);
  border-radius: 9999px;
  padding: 0.15rem 0.5rem;
}
.review-body {
  padding: 1.1rem 1.25rem;
  flex: 1;
}
.review-quote {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: rgba(26,26,46,0.78);
  font-size: 0.84rem;
  line-height: 1.75;
}

/* ── Booking Page ─────────────────────────────────────────────────── */
.book-hero {
  padding: 7rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.book-heading {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #1a1a2e;
  line-height: 0.9;
  letter-spacing: -2px;
}
.step-indicator {
  padding: 0 1.5rem 2rem;
  display: flex;
  justify-content: center;
}
.step-indicator-inner {
  display: flex;
  align-items: center;
  max-width: 480px;
  width: 100%;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
}
.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  background: rgba(26,26,46,0.07);
  color: rgba(26,26,46,0.72);
  transition: all 0.3s;
}
.step-dot.active {
  background: rgba(154,112,48,0.15);
  color: #9a7030;
  border: 1px solid rgba(154,112,48,0.35);
}
.step-dot.done {
  background: #c9a97a;
  color: #1a1a2e;
}
.step-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6rem;
  color: rgba(26,26,46,0.74);
  font-weight: 300;
}
.step-label.active { color: #9a7030; font-weight: 500; }
.step-connector {
  height: 1px;
  flex: 1;
  margin-bottom: 1rem;
  background: rgba(26,26,46,0.1);
  transition: background 0.3s;
}
.step-connector.done { background: rgba(154,112,48,0.35); }
.book-form-wrap { padding: 0 1.5rem 5rem; max-width: 640px; margin: 0 auto; }
.book-step { display: none; flex-direction: column; gap: 0.75rem; }
.book-step.active { display: flex; }

/* Service picker */
.service-option {
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  border: 1px solid rgba(26,26,46,0.09);
  background: rgba(255,255,255,0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.15s;
  box-shadow: 0 1px 4px rgba(26,26,46,0.05);
}
.service-option:hover { border-color: rgba(154,112,48,0.3); }
.service-option.selected {
  border-color: rgba(154,112,48,0.5);
  background: rgba(201,169,122,0.08);
}
.service-opt-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.88rem;
  margin-right: 0.5rem;
}
.service-opt-dur {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(26,26,46,0.76);
}
.service-opt-price {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #9a7030;
  font-size: 0.9rem;
}
.service-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(26,26,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.service-option.selected .service-radio {
  border-color: #c9a97a;
  background: #c9a97a;
}
.service-radio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a2e;
  display: none;
}
.service-option.selected .service-radio-dot { display: block; }

/* Date / time picker */
.date-btn {
  border-radius: 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(26,26,46,0.1);
  cursor: pointer;
  background: rgba(255,255,255,0.75);
  color: rgba(26,26,46,0.74);
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.15s;
  min-width: 56px;
  box-shadow: 0 1px 4px rgba(26,26,46,0.05);
}
.date-btn.selected { background: #c9a97a; color: #1a1a2e; border-color: transparent; }
.date-btn-day { font-weight: 700; }
.date-btn-date { font-weight: 300; font-size: 0.65rem; margin-top: 0.1rem; }
.time-btn {
  border-radius: 0.65rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(26,26,46,0.1);
  cursor: pointer;
  background: rgba(255,255,255,0.75);
  color: rgba(26,26,46,0.74);
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  transition: all 0.15s;
  box-shadow: 0 1px 4px rgba(26,26,46,0.05);
}
.time-btn.selected { background: #c9a97a; color: #1a1a2e; border-color: transparent; font-weight: 600; }

/* Form inputs */
.form-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: rgba(26,26,46,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(26,26,46,0.14);
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(26,26,46,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(26,26,46,0.72); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(154,112,48,0.55);
  box-shadow: 0 0 0 3px rgba(154,112,48,0.09);
}
.form-textarea { resize: vertical; min-height: 80px; }

/* Payment tabs */
.payment-tabs { display: flex; gap: 0.5rem; }
.payment-tab {
  flex: 1;
  border-radius: 0.75rem;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid rgba(26,26,46,0.1);
  cursor: pointer;
  background: #ffffff;
  color: rgba(26,26,46,0.78);
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(26,26,46,0.05);
}
.payment-tab:hover { border-color: rgba(154,112,48,0.3); color: rgba(26,26,46,0.75); }
.payment-tab.active {
  background: rgba(154,112,48,0.08);
  color: #9a7030;
  font-weight: 600;
  border-color: rgba(154,112,48,0.4);
  box-shadow: 0 2px 8px rgba(154,112,48,0.1);
}
.payment-panel { display: none; flex-direction: column; gap: 1rem; }
.payment-panel.active { display: flex; }
.payment-panel-inner {
  border-radius: 1.1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff !important;
  border: 1.5px solid rgba(26,26,46,0.1);
  box-shadow: 0 4px 24px rgba(26,26,46,0.07), 0 1px 4px rgba(26,26,46,0.04);
}
.pay-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.pay-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.9rem;
}
.pay-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.72);
  font-size: 0.75rem;
}
.pay-address-row {
  background: rgba(26,26,46,0.04);
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pay-address {
  font-family: monospace;
  font-size: 1.1rem;
  color: #9a7030;
  flex: 1;
  letter-spacing: 0.02em;
}
.pay-check-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(26,26,46,0.72);
}
.copy-btn {
  background: rgba(154,112,48,0.1);
  border: 1px solid rgba(154,112,48,0.25);
  border-radius: 0.5rem;
  padding: 0.3rem 0.75rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #9a7030;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.copy-btn.copied {
  background: rgba(60,160,100,0.12);
  border-color: rgba(60,160,100,0.3);
  color: #2e8a58;
}
.cashapp-open-btn {
  border-radius: 9999px;
  padding: 0.7rem;
  background: rgba(0,180,80,0.1);
  border: 1px solid rgba(0,180,80,0.25);
  color: #1a7a45;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.btc-qr {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
.btc-qr img {
  width: 150px;
  height: 150px;
  border-radius: 0.75rem;
  border: 1px solid rgba(26,26,46,0.1);
}
.btc-addr {
  font-family: monospace;
  font-size: 0.72rem;
  color: rgba(26,26,46,0.78);
  flex: 1;
  word-break: break-all;
  line-height: 1.5;
}

/* Booking nav buttons */
.book-nav { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.book-back-btn {
  flex: 1;
  border-radius: 9999px;
  padding: 0.75rem;
  border: none;
  color: rgba(26,26,46,0.78);
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  background: rgba(26,26,46,0.05);
}
.book-next-btn {
  flex: 2;
  border-radius: 9999px;
  padding: 0.75rem;
  border: none;
  background: #c9a97a;
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.book-next-btn:disabled {
  background: rgba(26,26,46,0.08);
  color: rgba(26,26,46,0.3);
  cursor: not-allowed;
}
.book-next-btn:hover:not(:disabled) { opacity: 0.88; }
.book-confirm-btn {
  flex: 2;
  border-radius: 9999px;
  padding: 0.75rem;
  border: none;
  background: #c9a97a;
  color: #1a1a2e;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.book-confirm-btn:hover { opacity: 0.88; }

/* Booking confirmation summary */
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26,26,46,0.07);
}
.summary-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.4);
  font-size: 0.78rem;
}
.summary-val {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.82rem;
  text-align: right;
  max-width: 60%;
}
.book-fine {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.73rem;
  color: rgba(26,26,46,0.74);
  text-align: center;
  line-height: 1.6;
}

/* Booking success */
.book-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 82vh;
  padding: 2rem;
  text-align: center;
  gap: 1.5rem;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a7030;
}
.success-heading {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #1a1a2e;
  line-height: 0.9;
  letter-spacing: -2px;
}
.success-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.78);
  max-width: 28rem;
  line-height: 1.7;
}

/* Booking info strip */
.book-info-strip {
  border-top: 1px solid rgba(26,26,46,0.07);
  padding: 3rem 1.5rem;
}
.book-info-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.book-info-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.book-info-icon { color: #9a7030; flex-shrink: 0; margin-top: 0.1rem; }
.book-info-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 0.82rem;
}
.book-info-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(26,26,46,0.68);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/* ── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  html { font-size: 15px; }

  .nav-pill        { display: none !important; }
  .nav-book-mobile { display: flex !important; }
  .nav-hamburger   { display: flex !important; }

  .stat-cards      { display: none !important; }
  .social-proof    { display: none !important; }

  .photo-mosaic {
    grid-template-columns: repeat(3, 1fr) !important;
    height: 95px !important;
  }
  .photo-mosaic img:nth-child(4),
  .photo-mosaic img:nth-child(5) { display: none !important; }

  .section-pad { padding: 3rem 1.25rem !important; }

  .service-row { flex-direction: column !important; gap: 1.5rem; }
  .service-row.reverse { flex-direction: column !important; }
  .expect-section { flex-direction: column; gap: 2rem; }

  .premium-card { flex-direction: column; }
  .service-bullets { grid-template-columns: 1fr; }

  /* ── Hero mobile ─────────────────────────────────────── */
  .hero { min-height: 100svh; }

  .hero-content {
    padding-top: 72px;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
  }

  /* Stop spacer from stretching and pushing text off screen */
  .hero-spacer {
    flex: 0 0 auto;
    min-height: 1.25rem;
  }

  .booking-widget { max-width: 100%; }

  .hero-text {
    padding-bottom: 2rem;
    gap: 0.85rem;
  }

  .hero-heading {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
    letter-spacing: -1px;
    line-height: 1;
  }

  .hero-sub { font-size: 0.8rem; max-width: 100%; }

  .hero-btns {
    flex-direction: row;
    width: 100%;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
  }

  .hero-tagline-pill { font-size: 0.65rem; padding: 0.4rem 0.85rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .hero-content { padding-top: 68px; }

  .hero-spacer { min-height: 0.75rem; }

  .hero-btns { flex-direction: column; }
  .hero-btn-primary,
  .hero-btn-secondary { width: 100%; }

  .widget-book-btn { padding: 0.45rem 0.85rem; font-size: 0.72rem; }
}
