/* === TOKENS === */
:root {
  --forest: #1a3d2b;
  --sage: #7aab8a;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --paper: #fafaf7;
  --ink: #2c2c2c;
  --muted: #6b7a6e;
  --border: #d8e0d4;

  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* === UTILITY === */
.container {
  width: min(90%, 1140px);
  margin-inline: auto;
}

.label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

nav a:hover {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  transition: background 0.2s var(--ease) !important;
  /* Reset button defaults so <button> and <a> render identically */
  border: none;
  cursor: pointer;
  font-family: var(--body);
  line-height: inherit;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--sage) !important;
  color: #fff !important;
}

.nav-owner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 2px;
  transition:
    background 0.2s var(--ease),
    color 0.2s !important;
}

.nav-owner:hover {
  background: var(--gold);
  color: var(--forest) !important;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
}

/* Botanical SVG background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/background.png") center/cover no-repeat;
  opacity: 0.22;
}

/* Leaf watermark — stuck to the right edge, clear of the hero text */
.hero-leaf {
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(35%, -50%) scale(1.6);
  transform-origin: right center;
  width: auto;
  height: 110%;
  min-width: 55%;
  max-width: none;
  opacity: 0.09;
  pointer-events: none;
  object-fit: contain;
  /* Recolour the dark SVG path to white for the watermark */
  filter: brightness(0) invert(1);
}

/* On wide screens, drive the size off width so it stays large */
@media (min-aspect-ratio: 1/1) {
  .hero-leaf {
    width: 60%;
    height: auto;
    min-height: 110%;
    right: 0;
    transform: translate(35%, -50%) scale(1.6);
    transform-origin: right center;
  }
}

/* Mobile: centre it behind the content as a full-bleed watermark */
@media (max-width: 600px) {
  .hero-leaf {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(1.6);
    transform-origin: center center;
    width: auto;
    height: 100%;
    min-width: 120%;
    opacity: 0.06;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-slogan {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 10px !important;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.btn-primary:hover {
  background: #dbb85a;
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(1);
  }
}

/* === DIVIDER === */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
  color: var(--sage);
  opacity: 0.5;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* === ABOUT === */
.section-about {
  padding: 100px 0;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  filter: grayscale(15%);
}

/* Gold corner accent — signature visual touch */
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.about-text .label {
  margin-bottom: 12px;
  display: block;
}

.about-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 8px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--muted);
}

.about-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.about-text p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 16px;
}

/* === CONDITIONS === */
.section-conditions {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-head .label {
  display: block;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
  max-width: 520px;
}
/* When a section-head is centered, center its constrained h2 too */
.section-head[style*="center"] h2 {
  margin-left: auto;
  margin-right: auto;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.condition-card {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.2s var(--ease);
}

.condition-card:hover {
  background: var(--cream);
}

.condition-icon {
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 14px;
}

.condition-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}

.condition-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === THERAPIES === */
.section-therapies {
  padding: 100px 0;
  background: var(--forest);
}

.section-therapies .section-head h2 {
  color: #fff;
}
.section-therapies .section-head .label {
  color: var(--gold);
}

.therapies-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.therapy-item {
  padding: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s var(--ease);
}

.therapy-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.therapy-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: 12px;
}

.therapy-item h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 8px;
}

.therapy-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* "Learn more" cue on therapy cards (homepage) */
a.therapy-item { text-decoration: none; color: inherit; display: block; cursor: pointer; }
a.therapy-item h3 { transition: color 0.2s; }
a.therapy-item:hover h3 { color: var(--gold); }
.therapy-readmore-inline {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 1;
  transition: transform 0.2s;
}
a.therapy-item:hover .therapy-readmore-inline { transform: translateX(4px); }

/* === WHY US === */
.section-why {
  padding: 100px 0;
  background: var(--cream);
}

/* === CONTACT / CTA === */
.section-cta {
  padding: 100px 0;
  background: var(--paper);
}

.cta-box {
  background: var(--forest);
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-text .label {
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.cta-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #fff;
}

.contact-details i {
  color: var(--sage);
  width: 16px;
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1eb257;
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

/* === FOOTER === */
footer {
  background: #0d2218;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-verse {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 460px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.contact-social-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-right: 4px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  transition: all 0.2s var(--ease);
}
.contact-social a:hover {
  color: var(--forest);
  background: var(--gold);
  border-color: var(--gold);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s;
  z-index: 300;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* === MOBILE === */
@media (max-width: 900px) {
  /* Keep the essentials visible on phones: Catalog, Staff, Book Now.
     Hide the in-page anchor links (About/Therapies/FAQ/Contact) which
     don't apply on sub-pages anyway. */
  nav a:not(.nav-cta):not(.nav-owner):not(.nav-catalog) {
    display: none;
  }
  nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
  /* On mobile only, render Catalog as a solid button matching "Book Now",
     and place the two together: Staff · Catalog · Book Now. */
  .nav-catalog {
    background: var(--forest);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background 0.2s var(--ease);
    display: inline-block;
  }
  .nav-catalog:hover { background: var(--sage); }
  /* Tighten the other two so all three fit on one row */
  nav .nav-owner {
    order: 1;
    padding: 8px 12px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .nav-catalog { order: 2; }
  nav .nav-cta {
    order: 3;
    padding: 8px 14px !important;
    font-size: 0.72rem !important;
    white-space: nowrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrap img {
    aspect-ratio: 3/4;
    max-height: 70vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    object-position: center 20%;
  }

  .conditions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .therapies-list {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 60px 36px;
  }

  .cta-actions {
    align-items: flex-start;
  }
  .cta-note {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  /* Keep the header on one tidy line on small phones */
  .logo-wrap img { height: 44px; }
  nav { gap: 6px; }
  .nav-catalog,
  nav .nav-owner,
  nav .nav-cta {
    padding: 7px 10px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.02em !important;
  }
  nav .nav-owner i { margin-right: 2px; }
}

/* === FADE-IN ON SCROLL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* === CONTACT CTA SECTION === */
.section-cta {
  padding: 100px 0;
  background: var(--forest);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-left .label {
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.cta-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-left h2 em {
  font-style: italic;
  color: var(--sage);
}

.cta-left p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-book-popup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--forest);
  padding: 15px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--body);
  transition:
    background 0.2s var(--ease),
    transform 0.2s;
}

.btn-book-popup:hover {
  background: #dbb85a;
  transform: translateY(-1px);
}

.cta-right .contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-right .contact-details a,
.cta-right .contact-details span {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  transition: color 0.2s;
}

.cta-right .contact-details a:hover {
  color: #fff;
}

.cta-right .contact-details i {
  color: var(--sage);
  width: 16px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* === BOOKING POPUP MODAL === */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 16, 0.75);
  backdrop-filter: blur(6px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.booking-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.booking-popup {
  background: var(--paper);
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.booking-overlay.active .booking-popup {
  transform: translateY(0) scale(1);
}

.popup-header {
  background: var(--forest);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-header-text .label {
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.popup-header h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.popup-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.popup-body {
  padding: 36px 40px 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.req {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--border);
  background: #fff;
  padding: 11px 14px;
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 171, 138, 0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 11px 38px 11px 14px;
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  width: 100%;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.select-wrap select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 171, 138, 0.15);
}

.select-wrap select.error {
  border-color: #c0392b;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.7rem;
  pointer-events: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note i {
  color: var(--sage);
}

.btn-submit {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-submit:hover {
  background: var(--sage);
}
.btn-submit:disabled {
  background: var(--muted);
  cursor: not-allowed;
}

/* === CALENDAR VIEW === */
.section-calendar {
  padding: 80px 0;
  background: var(--cream);
}

.calendar-wrap {
  background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
}

.cal-header {
  background: var(--forest);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-header h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}

.cal-nav {
  display: flex;
  gap: 8px;
}

.cal-nav button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--border);
}

.cal-day-label {
  text-align: center;
  padding: 12px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.cal-cell {
  min-height: 90px;
  padding: 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: default;
  transition: background 0.15s;
}

.cal-cell:nth-child(7n) {
  border-right: none;
}

.cal-cell.other-month {
  background: #f0ede8;
}
.cal-cell.today {
  background: rgba(122, 171, 138, 0.08);
}
.cal-cell.today .cal-date {
  color: var(--forest);
  font-weight: 700;
}

.cal-cell.has-appt {
  cursor: pointer;
}
.cal-cell.has-appt:hover {
  background: rgba(122, 171, 138, 0.06);
}

.cal-date {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 4px;
}

.cal-event {
  background: var(--sage);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.15s;
}

.cal-event:hover {
  background: var(--forest);
}

.cal-event.scan {
  background: #c9a84c;
  color: var(--forest);
}
.cal-event.ozone {
  background: #5b8fa8;
}
.cal-event.freq {
  background: #8a6fb5;
}
.cal-event.red {
  background: #c0392b;
}
.cal-event.sauna {
  background: #e67e22;
}
.cal-event.nutrient {
  background: #27ae60;
}
.cal-event.lifestyle {
  background: var(--forest);
}
.cal-event.general {
  background: #7f8c8d;
}
.cal-event.booked-private {
  background: #b8c4ba;
  color: var(--forest);
  cursor: default;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Appointment detail popup */
.appt-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.appt-detail-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.appt-detail-box {
  background: var(--paper);
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
}

.appt-detail-box .appt-type-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sage);
  margin-bottom: 14px;
}

.appt-detail-box h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
}

.appt-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.appt-row {
  display: flex;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--ink);
}

.appt-row i {
  color: var(--sage);
  width: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.appt-detail-actions {
  display: flex;
  gap: 10px;
}

.btn-appt-close {
  flex: 1;
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 11px;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-appt-close:hover {
  background: var(--sage);
}

.btn-appt-gcal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  background: #4285f4;
  color: #fff;
  border: none;
  padding: 11px;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-appt-gcal:hover {
  background: #3367d6;
}

/* === SUCCESS MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--paper);
  padding: 56px 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-icon {
  font-size: 3rem;
  color: var(--sage);
  margin-bottom: 20px;
}

.modal-box h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
}

.modal-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285f4;
  color: #fff;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-calendar:hover {
  background: #3367d6;
}

.btn-modal-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 24px;
  font-family: var(--body);
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-modal-close:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* Mobile */
@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .popup-header {
    padding: 22px 24px;
  }
  .popup-body {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
  }
  .modal-box {
    padding: 40px 28px;
  }
  .cal-cell {
    min-height: 64px;
    padding: 5px 4px;
  }
  .cal-event {
    font-size: 0;
    padding: 0;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 3px;
  }
}

@media (max-width: 600px) {
  .booking-overlay {
    padding: 0;
    align-items: stretch;
  }
  .booking-popup {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    transform: translateY(20px);
  }
  .booking-overlay.active .booking-popup {
    transform: translateY(0);
  }
  .popup-header {
    padding: 18px 20px;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .popup-header h3 {
    font-size: 1.3rem;
  }
  .popup-body {
    padding: 20px 20px 32px;
  }
  .cal-day-label {
    font-size: 0.6rem;
    padding: 8px 2px;
  }
}

/* === OWNER PANEL === */
.owner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 16, 0.78);
  backdrop-filter: blur(6px);
  z-index: 750;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.owner-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.owner-panel {
  background: var(--paper);
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.owner-overlay.active .owner-panel {
  transform: translateY(0) scale(1);
}

.owner-header {
  background: var(--forest);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 2;
}

.owner-header h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.owner-header .label {
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.owner-body {
  padding: 32px 36px 40px;
}

/* Login */
.owner-login {
  text-align: center;
  padding: 20px 0;
}
.owner-login i.lock-big {
  font-size: 2.4rem;
  color: var(--sage);
  margin-bottom: 16px;
}
.owner-login p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.owner-login .pass-row {
  display: flex;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}
.owner-login input {
  flex: 1;
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 0.95rem;
  outline: none;
}
.owner-login input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 171, 138, 0.15);
}
.owner-login .login-err {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 12px;
  display: none;
}

.owner-section-title {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.owner-section-title:first-child {
  margin-top: 0;
}
.owner-section-title i {
  color: var(--sage);
}

/* Appointment list */
.owner-appt-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.owner-appt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
}

.owner-appt-info {
  flex: 1;
  min-width: 0;
}
.owner-appt-info .oa-name {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.92rem;
}
.owner-appt-info .oa-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.owner-appt-info .oa-treat {
  display: inline-block;
  font-size: 0.7rem;
  color: #fff;
  background: var(--sage);
  padding: 1px 8px;
  border-radius: 2px;
  margin-top: 4px;
}

.owner-appt-del {
  background: transparent;
  border: 1px solid var(--border);
  color: #c0392b;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.owner-appt-del:hover {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}

.owner-empty {
  color: var(--muted);
  font-size: 0.86rem;
  padding: 16px;
  text-align: center;
  font-style: italic;
}

/* Block day controls */
.block-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.block-controls .form-group {
  flex: 1;
  min-width: 160px;
}
.block-controls input[type="date"] {
  border: 1px solid var(--border);
  background: #fff;
  padding: 11px 14px;
  font-family: var(--body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}
.block-controls input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 171, 138, 0.15);
}

.btn-owner-action {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-owner-action:hover {
  background: var(--sage);
}

.blocked-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.blocked-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: #c0392b;
  padding: 6px 12px;
  font-size: 0.8rem;
}
.blocked-chip button {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0;
  line-height: 1;
}

/* Add-appointment toggle form */
.owner-add-form {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.owner-add-form.active {
  display: flex;
}
.owner-add-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Blocked calendar cell */
.cal-cell.blocked {
  background: repeating-linear-gradient(
    45deg,
    #fbeae8,
    #fbeae8 6px,
    #f6ddd9 6px,
    #f6ddd9 12px
  );
}
.cal-cell.blocked .cal-date {
  color: #c0392b;
}
.cal-blocked-tag {
  font-size: 0.6rem;
  color: #c0392b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .owner-add-form .form-row {
    grid-template-columns: 1fr;
  }
  .block-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

/* === TESTIMONIALS === */
.section-testimonials {
  padding: 100px 0;
  background: var(--paper);
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.testi-card {
  background: var(--cream);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.testi-card:hover {
  box-shadow: 0 12px 30px rgba(26, 61, 43, 0.08);
}

/* Collapsed: clamp the body to a preview height with a soft fade */
.testi-body {
  position: relative;
  max-height: 7.5em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.testi-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.5em;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
  transition: opacity 0.3s;
}
.testi-card.expanded .testi-body {
  max-height: 4000px;
}
.testi-card.expanded .testi-body::after {
  opacity: 0;
}

.testi-toggle {
  align-self: flex-start;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testi-toggle::after {
  content: "↓";
  transition: transform 0.2s;
}
.testi-card.expanded .testi-toggle::after {
  transform: rotate(180deg);
}
.testi-toggle:hover {
  text-decoration: underline;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 14px;
}
.testi-card p:first-of-type {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1.5;
}

.testi-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-author span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* === FAQ === */
.section-faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 8px;
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--sage);
}

.faq-q i {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-a-inner {
  padding: 0 8px 24px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* === DISCLAIMER STRIP === */
.disclaimer-strip {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.disclaimer-strip .container {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.disclaimer-strip p {
  max-width: 520px;
}
.disclaimer-strip i {
  color: var(--sage);
  margin-right: 6px;
}

/* "Read our full story" link in the homepage About section */
.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--sage);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.about-story-link:hover { gap: 14px; color: var(--forest); }
.about-story-link i { transition: transform 0.2s; }

/* "Our approach" — four core principles (homepage) */
.why-head { max-width: 680px; margin: 0 auto 48px; }
.why-head .label { margin-bottom: 12px; }
.why-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest);
  line-height: 1.15;
  margin: 0 0 16px;
}
.why-head h2 em { color: var(--sage); font-style: italic; }
.why-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin: 0; }

.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.principles-grid .principle-card {
  flex: 0 1 260px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.principles-grid .principle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 61, 43, 0.08);
}
.principles-grid .principle-card i {
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.principles-grid .principle-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--forest);
  margin: 0 0 12px;
}
.principles-grid .principle-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* === THE SIMPLICITY DIFFERENCE (within Our Approach) === */
.difference-head {
  text-align: center;
  max-width: 680px;
  margin: 80px auto 40px;
}
.difference-head .label { margin-bottom: 12px; }
.difference-head h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--forest);
  margin: 0 0 14px;
}
.difference-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin: 0; }

.difference-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  margin-bottom: 64px;
  justify-content: center;
}
.difference-item {
  flex: 0 1 320px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.difference-item i {
  font-size: 1.4rem;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 4px;
  width: 28px;
  text-align: center;
}
.difference-item h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  margin: 0 0 6px;
}
.difference-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Our Promise band */
.promise-band {
  background: var(--forest);
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
}
.promise-band h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  margin: 0 0 28px;
}
.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}
.promise-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}
.promise-list li i { color: var(--gold); }

@media (max-width: 600px) {
  .difference-head { margin-top: 56px; }
  .promise-band { padding: 36px 24px; }
  .promise-list { flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; }
}

/* Patricia's pull-quote in the homepage About teaser */
.about-quote {
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 22px 0;
}

/* === MEET THE TEAM === */
.section-team {
  padding: 90px 0;
  background: var(--paper);
  text-align: center;
}
.section-team .section-head { text-align: center; }
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}
.team-member {
  flex: 0 1 200px;
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 61, 43, 0.08);
}
.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: 0 6px 18px rgba(26, 61, 43, 0.15);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.team-member h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 4px;
}
.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === CLINIC GALLERY BANNER (auto-scrolling) === */
.section-gallery {
  overflow: hidden;
  background: var(--cream);
  padding: 26px 0;
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gallery-scroll 45s linear infinite;
}
.section-gallery:hover .gallery-track { animation-play-state: paused; }
.gallery-item {
  flex: 0 0 auto;
  width: 320px;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .gallery-item { width: 220px; height: 150px; }
  .gallery-track { gap: 10px; animation-duration: 32s; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
}

/* === CLINIC GALLERY BANNER (auto-scrolling) === */
.section-gallery {
  padding: 70px 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.gallery-marquee {
  overflow: hidden;
  margin-top: 10px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: gallery-scroll 45s linear infinite;
}
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
.gallery-track img {
  height: 230px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(26, 61, 43, 0.12);
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .gallery-track img { height: 150px; }
  .gallery-track { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
  .gallery-marquee { overflow-x: auto; }
}
