/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  --color-cream: #FEFCF8;
  --color-sand: #F5EFE6;
  --color-sand-dark: #EDE0CE;
  --color-warm-brown: #8B6E4E;
  --color-warm-brown-dark: #6D5540;
  --color-teal: #4A7C6F;
  --color-teal-dark: #3A6259;
  --color-dark: #2A2420;
  --color-dark-green: #1E3D37;
  --color-gold: #C9A96E;
  --color-gold-light: #EDD9A3;
  --color-text-muted: #7A6857;
  --color-white: #FFFFFF;
  --color-border: #E2D5C3;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 4px rgba(42, 36, 32, 0.07);
  --shadow-md: 0 4px 20px rgba(42, 36, 32, 0.10);
  --shadow-lg: 0 8px 40px rgba(42, 36, 32, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.25s ease;
  --max-width: 1160px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 68px;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ==========================================
   SKIP LINK
   ========================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-warm-brown);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 600;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section { padding: 5rem 0; }

@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 0.9375rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }

.btn-call {
  background: var(--color-warm-brown);
  color: var(--color-white);
  border-color: var(--color-warm-brown);
}
.btn-call:hover {
  background: var(--color-warm-brown-dark);
  border-color: var(--color-warm-brown-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-book {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn-book:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-warm-brown);
  border-color: var(--color-warm-brown);
}
.btn-outline:hover {
  background: var(--color-warm-brown);
  color: var(--color-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--color-white);
}

.btn-call-schedule {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--color-warm-brown);
  border: 1.5px solid var(--color-warm-brown);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  margin-top: auto;
}
.btn-call-schedule:hover {
  background: var(--color-warm-brown);
  color: var(--color-white);
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow var(--transition);
}
.site-header.header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-primary {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  transition: color var(--transition);
}
.logo-secondary {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.site-header .logo-primary { color: var(--color-dark); }
.site-header .logo-secondary { color: var(--color-text-muted); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 0.125rem; }
.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}
.main-nav a[aria-current="page"] { color: var(--color-gold); }
.site-header .main-nav a { color: var(--color-dark); }
.site-header .main-nav a:hover {
  color: var(--color-warm-brown);
  background: var(--color-sand);
}
.site-header .main-nav a[aria-current="page"] { color: var(--color-warm-brown); }

.header-cta { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.header-cta-book { padding: 0.5rem 1.125rem; font-size: 0.875rem; }

/* Menu CTA button in header */
.btn-menu-cta {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: none;
  border: 1.5px solid currentColor;
  color: var(--clr-primary, #4a8b7f);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-menu-cta:hover {
  background: var(--clr-primary, #4a8b7f);
  color: #fff;
}
body.svc-page .btn-menu-cta {
  color: var(--color-warm-brown, #7a6248);
  border-color: var(--color-warm-brown, #7a6248);
}
body.svc-page .btn-menu-cta:hover {
  background: var(--color-warm-brown, #7a6248);
  color: #fff;
}
/* Menu btn also hidden on mobile (hamburger takes over) */
.header-cta-menu { }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header .hamburger span { background: var(--color-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .header-cta-book { display: none; }
  .btn-menu-cta { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================
   MOBILE NAV
   ========================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-dark-green);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mobile-nav ul li { margin-bottom: 0.25rem; }
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  display: block;
  padding: 0.5rem 2rem;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--color-gold); }
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a3d35 0%,
    #1e3d37 35%,
    #263028 70%,
    #1c2420 100%
  );
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(74, 124, 111, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(30, 61, 55, 0.5) 0%, transparent 40%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 9rem;
  padding-bottom: 6rem;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-gold);
}

.hero-heading {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.75rem;
}

.hero-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .hero-content {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section { background: var(--color-cream); }

.service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--color-warm-brown);
  color: var(--color-warm-brown);
}
.filter-btn.active {
  background: var(--color-warm-brown);
  border-color: var(--color-warm-brown);
  color: var(--color-white);
}

.service-category { margin-bottom: 4rem; }
.service-category:last-child { margin-bottom: 0; }
.service-category.hidden { display: none; }

.category-title {
  font-size: 1.4375rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-sand-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.category-title::before {
  content: '';
  width: 4px;
  height: 1.2em;
  background: var(--color-teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.category-desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.services-grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: var(--color-teal);
  border-width: 1.5px;
}
.service-card-body { flex: 1; }

.service-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-sand);
  padding: 0.4rem 0.625rem;
  border-radius: var(--radius-sm);
}

.duration {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-warm-brown);
  font-family: var(--font-heading);
}

.price-single {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.875rem;
  flex-wrap: wrap;
}

.price-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.price-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-warm-brown);
  font-family: var(--font-heading);
}

.duration-inline {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background: var(--color-sand);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.price-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.price-badge--free {
  background: rgba(74, 124, 111, 0.12);
  color: var(--color-teal-dark);
}

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: var(--color-dark-green);
  padding: 4.5rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-band-text { flex: 1; min-width: 240px; }
.cta-band-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.cta-band-text p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.0625rem;
}

.cta-band-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-band-btns { width: 100%; }
  .cta-band-btns .btn { flex: 1; justify-content: center; }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
/* ==========================================
   HOURS + ABOUT SPLIT
   ========================================== */
.hours-about-split {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}

/* LEFT — hours panel (55%) */
.hours-panel {
  flex: 0 0 55%;
  background: var(--color-white);
  color: var(--color-dark);
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* 上半：图片，约占左侧 50% 高度 */
.hours-photo {
  flex: 1 1 50%;
  overflow: hidden;
  min-height: 0;
}

.hours-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* 下半：深色背景营业时间，约占左侧 50% 高度 */
.hours-content {
  flex: 1 1 50%;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.4rem, 0.8vw, 0.75rem);
  background: var(--color-dark-green);
  color: var(--color-white);
}

.hours-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.4rem, 0.7vw, 0.65rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  white-space: nowrap;
}
.hours-row:first-child { border-top: 1px solid rgba(255,255,255,0.12); }

.hours-day {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.hours-time {
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hours-book-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
  background: var(--color-warm-brown);
  color: #fff;
  border-radius: 6px;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition);
  align-self: flex-start;
  white-space: nowrap;
}
.hours-book-btn:hover { background: var(--color-warm-brown-dark); }

/* RIGHT — about panel (45%), white background */
.about-panel {
  flex: 0 0 45%;
  background: var(--color-white);
  display: flex;
  align-items: center;
}

.about-inner-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
  width: 100%;
}

/* 小屏幕：整体竖排 */
@media (max-width: 820px) {
  .hours-about-split { flex-direction: column; min-height: 0; }
  .hours-panel, .about-panel { flex: none; width: 100%; }
  .hours-photo { flex: none; height: 240px; }
  .hours-content { padding: 1.5rem; gap: 0.5rem; }
  .hours-row { font-size: 0.95rem; padding: 0.45rem 0; }
  .hours-eyebrow { font-size: 0.75rem; }
  .about-inner-wrap { padding: 2rem 1.5rem; }
}

/* keep old .about-section for any legacy reference */
.about-section { background: var(--color-sand); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.78;
}
.about-text .btn { margin-top: 0.75rem; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-teal);
  box-shadow: var(--shadow-sm);
}

.highlight-item h4 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.highlight-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-section { background: var(--color-cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-teal);
}

.why-card h3 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.625rem;
  font-family: var(--font-heading);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================
   LOCATION SECTION
   ========================================== */
.location-section { background: var(--color-dark-green); }

.section-eyebrow--light { color: var(--color-gold-light); }
.section-title--light { color: var(--color-white); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold-light);
}

.location-detail h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}
.location-detail p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.location-detail a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.location-detail a:hover { color: var(--color-white); }

.location-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-col { display: flex; flex-direction: column; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex: 1;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

@media (max-width: 767px) {
  .location-inner { grid-template-columns: 1fr; gap: 2rem; }
  .location-ctas { flex-direction: column; }
  .location-ctas .btn { width: 100%; justify-content: center; }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section { background: var(--color-sand); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.contact-card h3 {
  font-size: 1.1875rem;
  color: var(--color-dark);
}
.contact-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.contact-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-warm-brown);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--color-warm-brown-dark); }

@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section { background: var(--color-cream); }

.testimonials-placeholder {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-white);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 0 auto;
}
.testimonials-note {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-dark);
}

.testimonial-service {
  font-size: 0.8125rem;
  color: var(--color-teal);
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: var(--color-dark); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-logo .logo-primary {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
.footer-logo .logo-secondary {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.footer-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links ul li,
.footer-services ul li { margin-bottom: 0.5rem; }

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--color-white); }

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}

/* ==========================================
   MOBILE STICKY BAR
   ========================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(42, 36, 32, 0.12);
}

@media (max-width: 767px) {
  .mobile-sticky-bar { display: flex; }
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
}
.sticky-btn--call {
  background: var(--color-warm-brown);
  color: var(--color-white);
}
.sticky-btn--call:hover { background: var(--color-warm-brown-dark); }
.sticky-btn--book {
  background: var(--color-teal);
  color: var(--color-white);
}
.sticky-btn--book:hover { background: var(--color-teal-dark); }
.sticky-btn--directions {
  background: var(--color-sand);
  color: var(--color-dark);
}
.sticky-btn--directions:hover { background: var(--color-sand-dark); }

/* ==========================================
   CATEGORY CARDS GRID
   ========================================== */
/* ==========================================
   CATEGORY CAROUSEL (H&S-style)
   ========================================== */
.services-section { padding-bottom: 0; }

.services-section > .container {
  margin-left: clamp(1.5rem, 10vw, 12rem);
  margin-right: 0;
  max-width: none;
}

/* ── Two-column section header ── */
.cat-section-hdr {
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: start;
  gap: 3rem;
  text-align: left;
}
.cat-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0.4rem 0 0;
}
/* Align description with top of heading (offset by eyebrow height) */
.cat-section-hdr__right {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 300px;
  padding-top: calc(0.7rem * 1.5 + 0.75rem + 0.4rem);
  position: static;
}
@media (max-width: 680px) {
  .cat-section-hdr { grid-template-columns: 1fr; gap: 0.75rem; }
  .cat-section-hdr__right { max-width: 100%; padding-top: 0; }
}

.cat-carousel-wrap {
  overflow: hidden;
  padding-left: clamp(1.5rem, 10vw, 12rem);
  padding-right: 0;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .services-section > .container { margin-left: 1.25rem; }
  .cat-carousel-wrap { padding-left: 1.25rem; }
}

.cat-carousel {
  display: flex;
  gap: 1.125rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.cat-carousel::-webkit-scrollbar { display: none; }

/* ── Card — large, ~3-4 at 100% zoom ── */
.cat-card {
  flex: 0 0 clamp(240px, 29vw, 400px);
  scroll-snap-align: start;
  aspect-ratio: 9 / 13;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* ── Background image ── */
.cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card__bg { transform: scale(1.06); }

/* ── Bottom-heavy gradient overlay ── */
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

/* ── Body: pinned to bottom ── */
.cat-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.375rem;
  gap: 0.6rem;
}

.cat-card__info { display: flex; flex-direction: column; gap: 0.3rem; }

.cat-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.cat-card__desc {
  font-size: clamp(0.8rem, 1.25vw, 0.9rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
}

/* ── Circle arrow button ── */
.cat-card__btn {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.cat-card:hover .cat-card__btn {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ── Footer: CTA + nav arrows ── */
.cat-carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 3rem;
}

.cat-carousel-nav { display: flex; gap: 0.625rem; }

.cat-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cat-nav-btn:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}
.cat-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--color-white);
  color: var(--color-text-muted);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .cat-card { flex: 0 0 calc(50% - 0.6rem); }
}
@media (max-width: 600px) {
  .cat-carousel-wrap { padding-left: 1rem; padding-right: 1rem; }
  .cat-card { flex: 0 0 80vw; aspect-ratio: 4 / 5; }
  .cat-carousel-footer { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
}

/* ==========================================
   SERVICE PANEL
   ========================================== */
.service-panel {
  display: none;
}
.service-panel.active {
  display: block;
  animation: panelIn 0.28s ease forwards;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service-panel-nav { margin-bottom: 1.5rem; }

.back-to-cats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.back-to-cats:hover {
  border-color: var(--color-warm-brown);
  color: var(--color-warm-brown);
}

.service-panel-intro {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-sand-dark);
}

.panel-intro-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}
.panel-intro-icon.cat--massage    { background: linear-gradient(145deg, #7A5C3F, #C9A96E); }
.panel-intro-icon.cat--reflexology { background: linear-gradient(145deg, #2E5E55, #6BA898); }
.panel-intro-icon.cat--specialized { background: linear-gradient(145deg, #1A3530, #2D5048); }
.panel-intro-icon.cat--mobile     { background: linear-gradient(145deg, #5C4A35, #C9A96E); }
.panel-intro-icon.cat--addons     { background: linear-gradient(145deg, #3D3028, #8B6E4E); }

.panel-intro-title {
  font-size: 1.5rem;
  color: var(--color-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.2rem;
}
.panel-intro-count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Service items list */
.service-items {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.service-panel-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  background: var(--color-sand);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { background: var(--color-cream); }

.service-item-info { flex: 1; min-width: 0; }
.service-item-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}
.service-item-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 560px) {
  .service-item { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
}

/* ==========================================
   PRICE MODAL
   ========================================== */
.price-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 22, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.price-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.price-modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.25s ease;
}
.price-modal-overlay.open .price-modal {
  transform: scale(1) translateY(0);
}

.price-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  background: var(--color-sand);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: background var(--transition);
}
.price-modal-close:hover { background: var(--color-sand-dark); }

.price-modal-name {
  font-size: 1.3125rem;
  color: var(--color-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  padding-right: 2.5rem;
  line-height: 1.3;
}
.price-modal-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.price-modal-table {
  background: var(--color-sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.125rem;
  border-bottom: 1px solid var(--color-border);
}
.price-row:last-child { border-bottom: none; }

.price-row-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-dark);
  min-width: 90px;
}
.price-row-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(122, 104, 87, 0.3);
  margin-bottom: 2px;
}
.price-row-price {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-warm-brown);
  font-family: var(--font-heading);
}

.price-row--free { justify-content: center; padding: 1rem; }
.price-row-badge-free {
  background: rgba(74, 124, 111, 0.14);
  color: var(--color-teal-dark);
  padding: 0.4rem 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
}

/* ==========================================
   SERVICE PAGE — SOLID HEADER (no hero)
   ========================================== */
body.svc-page .site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 0.875rem 0;
}
body.svc-page .site-header .logo-primary  { color: var(--color-dark); }
body.svc-page .site-header .logo-secondary { color: var(--color-text-muted); }
body.svc-page .site-header .main-nav a    { color: var(--color-dark); }
body.svc-page .site-header .main-nav a:hover { color: var(--color-warm-brown); background: var(--color-sand); }
body.svc-page .site-header .main-nav a[aria-current="page"] { color: var(--color-warm-brown); }
body.svc-page .site-header .header-cta   { background: var(--color-warm-brown); border-color: var(--color-warm-brown); color: #fff; }
body.svc-page .site-header .hamburger span { background: var(--color-dark); }

/* ==========================================
   SERVICE PAGE — BANNER
   ========================================== */
.svc-banner {
  padding-top: 6rem; /* clear fixed header */
  padding-bottom: 3rem;
}
.svc-banner-inner { position: relative; }

.svc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.svc-breadcrumb:hover { color: var(--color-white); }

.svc-banner-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.svc-banner-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  color: var(--color-white);
}

.svc-banner-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.375rem;
}
.svc-banner-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
}

/* Banner uses same gradients as cards */
.svc-banner.cat--massage    { background: linear-gradient(145deg, #7A5C3F 0%, #9B7250 45%, #C9A96E 100%); }
.svc-banner.cat--reflexology { background: linear-gradient(145deg, #2E5E55 0%, #4A7C6F 50%, #6BA898 100%); }
.svc-banner.cat--specialized { background: linear-gradient(145deg, #1A3530 0%, #1E3D37 55%, #2D5048 100%); }
.svc-banner.cat--mobile     { background: linear-gradient(145deg, #5C4A35 0%, #7A6045 50%, #C9A96E 100%); }
.svc-banner.cat--addons     { background: linear-gradient(145deg, #3D3028 0%, #5C4A38 55%, #8B6E4E 100%); }

/* ==========================================
   SERVICE PAGE — CONTENT
   ========================================== */
.svc-list-section {
  background: var(--color-white);
  padding: 0;
}

.svc-list-cta {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding: 0 1rem;
}
.svc-list-cta a {
  color: var(--color-warm-brown);
  font-weight: 600;
  transition: color var(--transition);
}
.svc-list-cta a:hover { color: var(--color-warm-brown-dark); }

/* ==========================================
   SERVICE SHOWCASE (H&S-style 60/40 layout)
   ========================================== */
.service-showcase {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
}

.svc-cat-note {
  background: var(--color-sand);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ── Base card — flex row matching H&S layout ── */
.svc-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 4rem 7rem;
  background: var(--color-white);
}
.svc-card:first-child { padding-top: 3rem; }
.svc-card:last-child  { padding-bottom: 3rem; }

/* ── Image column — takes remaining space ── */
.svc-card__image {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--color-sand-dark);
  box-shadow: var(--shadow-md);
}
.svc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.svc-card:hover .svc-card__image img { transform: scale(1.04); }

/* ── Text column — fixed width matching H&S w-80/w-107.5 ── */
.svc-card__content {
  width: 21rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* ── Flipped card: image LEFT, text RIGHT ── */
.svc-card--flip .svc-card__image   { order: 1; }
.svc-card--flip .svc-card__content { order: 2; }

/* ── Service name — large serif like H&S ── */
.svc-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

/* ── Description ── */
.svc-card__desc {
  font-size: 0.9625rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Button row ── */
.svc-card__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Tablet ── */
@media (max-width: 1100px) {
  .svc-card { padding: 3rem 3rem; gap: 2.5rem; }
  .svc-card__content { width: 18rem; }
}

/* ── Mobile ── */
@media (max-width: 820px) {
  .service-showcase { padding: 0.5rem 0 2rem; }
  .svc-card,
  .svc-card--flip {
    flex-direction: column;
    gap: 0;
    padding: 0 0 2.5rem;
  }
  .svc-card:first-child { padding-top: 0; }
  /* On mobile, always image on top, text below — regardless of flip */
  .svc-card__image,
  .svc-card--flip .svc-card__image {
    order: -1;
    width: 100%;
    flex: none;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: 3 / 2;
  }
  .svc-card__content,
  .svc-card--flip .svc-card__content {
    order: 0;
    width: 100%;
    padding: 1.75rem 1.25rem 2rem;
  }
  .svc-card__name { font-size: clamp(1.5rem, 6vw, 2rem); }
}
@media (max-width: 480px) {
  .svc-card__btns { flex-direction: column; }
  .svc-card__btns .btn,
  .svc-card__btns .btn-check-price,
  .svc-card__btns .btn-call-inline { width: 100%; justify-content: center; }
  .btn-call-inline--wide {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

/* ==========================================
   SERVICE PAGE — WHY SECTION
   ========================================== */
.svc-why-section {
  background: var(--color-sand);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.svc-why-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4.5rem;
  padding: 5rem 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
/* ── WHY section image (left column) ── */
.svc-why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  position: relative;
  box-shadow: var(--shadow-md);
}
.svc-why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-why-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-warm-brown);
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.svc-why-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-dark);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.svc-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-why-cta { margin-top: 2rem; align-self: flex-start; }

.svc-why-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
}
.svc-why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.svc-why-check {
  width: 30px;
  height: 30px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-why-ptitle {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}
.svc-why-pdesc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .svc-why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem;
  }
  .svc-why-img { max-height: 300px; }
}

/* ==========================================
   SERVICE PAGE — TREATMENTS HEADER
   ========================================== */
.svc-treatments-hdr {
  text-align: center;
  padding: 4.5rem 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-treatments-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-dark);
  font-family: var(--font-heading);
  margin-top: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ==========================================
   SERVICE CARD — BENEFIT TAGS (H&S bordered pills)
   ========================================== */
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  color: var(--color-dark);
  font-weight: 600;
  font-family: var(--font-body);
  background: #dde8e5;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.svc-tag::before {
  content: '';
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.293 5.293a1 1 0 011.414 1.414l-11 11a1 1 0 01-1.414 0l-5-5a1 1 0 011.414-1.414L9 15.586 19.293 5.293z' fill='%232A2420'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* Check Price button — outline style (H&S "Learn More") */
.btn-check-price {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--color-warm-brown);
  border: 1.5px solid var(--color-warm-brown);
  padding: 0.7rem 1.375rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-check-price:hover {
  background: var(--color-warm-brown);
  color: var(--color-white);
}

/* Call Now inline button inside card (H&S "Book Now") */
.btn-call-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--color-warm-brown);
  color: var(--color-white);
  border: 1.5px solid var(--color-warm-brown);
  padding: 0.7rem 1.375rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-call-inline:hover {
  background: var(--color-warm-brown-dark);
  border-color: var(--color-warm-brown-dark);
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-sand-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-warm-brown); }
