:root {
  --forest: #2d6a4f;
  --forest-deep: #1f4f3b;
  --bark: #6b3f2a;
  --stone: #8d9e8a;
  --moss: #a3b18a;
  --cream: #f5f0e8;
  --mist: #edf3eb;
  --charcoal: #233127;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(35, 49, 39, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;

  /* Phase 2 — holistic medicine tone */
  --transition-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 300ms;
  --transition-slow: 450ms;

  --shadow-warm: 0 24px 60px rgba(35, 49, 39, 0.10), 0 4px 16px rgba(107, 63, 42, 0.06);
  --shadow-hover: 0 32px 72px rgba(35, 49, 39, 0.16), 0 8px 24px rgba(107, 63, 42, 0.08);

  --focus-ring: 0 0 0 3px rgba(45, 106, 79, 0.36), 0 0 0 5px rgba(163, 177, 138, 0.22);

  --amber-soft:   rgba(107, 63, 42, 0.14);
  --amber-border: rgba(107, 63, 42, 0.36);
  --amber-text:   #7a3a20;

  --success-fill:   rgba(45, 106, 79, 0.10);
  --success-border: rgba(45, 106, 79, 0.42);

  --skeleton-base:  rgba(163, 177, 138, 0.18);
  --skeleton-shine: rgba(245, 240, 232, 0.72);

  --backdrop-color: rgba(35, 49, 39, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--charcoal);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(163, 177, 138, 0.28), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #eef5ee 50%, #f7f3ed 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

/* ─── Typography ─────────────────────────────────────────── */

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  margin-top: 0;
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-top: 0;
}

h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  margin-top: 0;
}

h4 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-top: 0;
}

/* ─── Layout Shell ───────────────────────────────────────── */

.site-shell {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ─── Header ─────────────────────────────────────────────── */

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(45, 106, 79, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.96), rgba(245, 240, 232, 0.88)),
    linear-gradient(90deg, rgba(163, 177, 138, 0.10), rgba(255, 255, 255, 0));
  box-shadow: none;
}

.site-header-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: rgba(35, 49, 39, 0.78);
  white-space: nowrap;
  transition: background-color var(--transition-base) var(--transition-ease),
              color var(--transition-base) var(--transition-ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--forest-deep);
  background: rgba(163, 177, 138, 0.22);
}

.nav-toggle {
  display: none;
}

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9;
  background: var(--backdrop-color);
}

.nav-backdrop.is-visible {
  display: block;
}

/* ─── Nav Account Dropdown ───────────────────────────────── */

.nav-account-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(45, 106, 79, 0.12);
}

.nav-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem 0.35rem 0.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(35, 49, 39, 0.78);
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background-color 200ms var(--transition-ease),
              color 200ms var(--transition-ease);
}

.nav-account-trigger:hover {
  color: var(--forest-deep);
  background: rgba(163, 177, 138, 0.18);
}

.nav-avatar-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

img.nav-avatar-sm.has-image {
  object-fit: cover;
  background: none;
}

.nav-account-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 200ms var(--transition-ease),
              opacity 200ms var(--transition-ease);
}

.nav-account-wrapper:hover .nav-account-chevron {
  opacity: 0.8;
}

.nav-account-wrapper.is-open .nav-account-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.nav-account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 180px;
  padding: 0.35rem 0;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(35, 49, 39, 0.12), 0 2px 8px rgba(107, 63, 42, 0.06);
  border: 1px solid rgba(45, 106, 79, 0.08);
  z-index: 100;
}

.nav-account-wrapper.is-open .nav-account-dropdown {
  display: block;
  animation: dropdown-enter 180ms var(--transition-ease);
}

@keyframes dropdown-enter {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-account-dropdown a,
.nav-account-dropdown button {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms var(--transition-ease),
              color 150ms var(--transition-ease);
}

.nav-account-dropdown a:hover,
.nav-account-dropdown button:hover {
  background: rgba(163, 177, 138, 0.14);
  color: var(--forest-deep);
}

.nav-account-dropdown-divider {
  height: 1px;
  margin: 0.25rem 0.75rem;
  background: rgba(45, 106, 79, 0.10);
}

/* ─── Auth CTA Banners ──────────────────────────────────── */


/* ─── Sections & Page Structure ──────────────────────────── */

main {
  display: grid;
  gap: 0;
  flex: 1 0 auto;
}

.hero,
.booking-layout,
.about-layout,
.section-grid,
.split-section {
  display: grid;
  gap: 2rem;
}

.hero,
.booking-layout,
.about-layout,
.section-grid,
.split-section,
.section,
.page-header {
  position: relative;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  z-index: 0;
  isolation: isolate;
}

.hero::before,
.section-band::before,
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}

.hero::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 78% 22%, rgba(245, 240, 232, 0.24), transparent 18%),
    linear-gradient(110deg, rgba(31, 79, 59, 0.98) 0%, rgba(45, 106, 79, 0.92) 46%, rgba(237, 243, 235, 0.76) 100%);
}

.page-header::before {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.92), rgba(31, 79, 59, 0.98));
}

.section-band-soft::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08));
}

.section-band-mist::before {
  background: linear-gradient(180deg, rgba(237, 243, 235, 0.98), rgba(245, 240, 232, 0.42));
}

.section-band-cream::before {
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(255, 255, 255, 0.20));
}

.section-band-forest::before {
  background:
    linear-gradient(135deg, rgba(31, 79, 59, 0.97), rgba(45, 106, 79, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 18%);
}

.hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  align-items: center;
}

.booking-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.section-grid,
.about-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
}

.split-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.info-card-copy h2 {
  max-width: 24ch;
}

.section-heading.compact {
  margin-bottom: 1rem;
}

/* ─── Glass Cards ────────────────────────────────────────── */

.hero-copy,
.booking-panel,
.info-card,
.profile-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-header {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.page-header > * {
  max-width: 48rem;
}

.page-header .eyebrow {
  color: rgba(245, 240, 232, 0.72);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5rem);
  margin-bottom: 0.85rem;
}

.page-header > p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}

.hero-copy {
  max-width: 39rem;
}

.info-card-copy {
  padding-right: 2rem;
}

.info-card-panel,
.booking-panel,
.contact-card {
  padding: clamp(1.85rem, 3vw, 2.35rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 16px 36px rgba(35, 49, 39, 0.08);
}

.hero-copy {
  color: var(--white);
}

.hero-copy h1,
.section-heading h2,
.info-card h2,
.profile-card h2,
.service-card h3,
.feature-point h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1rem;
  max-width: 10ch;
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.hero-subhead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.hero-actions,
.social-row,
.calendar-toolbar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons on the dark hero-copy background */
.hero-copy .button-primary {
  background: var(--cream);
  color: var(--forest-deep);
  border-color: rgba(245, 240, 232, 0.28);
  box-shadow: 0 4px 16px rgba(35, 49, 39, 0.22);
}

.hero-copy .button-primary:hover:not(:disabled) {
  background: var(--white);
  border-color: rgba(245, 240, 232, 0.50);
  box-shadow: 0 6px 22px rgba(35, 49, 39, 0.32);
}

.hero-copy .button-secondary {
  color: rgba(245, 240, 232, 0.92);
  border-color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.06);
}

.hero-copy .button-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.hero-points,
.service-list,
.contact-list {
  margin: 1.25rem 0 0;
}

.service-list,
.contact-list {
  padding-left: 1.25rem;
}

.service-list li,
.contact-list li {
  margin-bottom: 0.6rem;
}

.hero-points {
  max-width: 33rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.8);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.74);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 1rem;
  padding-left: clamp(1rem, 5vw, 4rem);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 2% 16% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.30), rgba(245, 240, 232, 0));
  filter: blur(12px);
  z-index: -1;
}

.hero-illustration {
  width: min(100%, 520px);
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(31, 79, 59, 0.16));
}

.philosophy-band,
.feature-band {
  display: grid;
  gap: 1.25rem;
}

.philosophy-layout,
.feature-pair {
  display: grid;
  gap: 1.5rem 2rem;
}

.philosophy-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.philosophy-layout h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--forest-deep);
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.philosophy-layout p {
  margin: 0;
  max-width: 32rem;
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(35, 49, 39, 0.82);
}

.feature-band .section-heading {
  margin-bottom: 0;
}

.feature-band .section-heading h2 {
  max-width: 22ch;
}

.who-list {
  max-width: 38rem;
}

.who-list .service-list {
  margin-bottom: 1.5rem;
}

.who-list p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(35, 49, 39, 0.78);
  font-style: italic;
}

.techniques-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(35, 49, 39, 0.72);
  font-style: italic;
}

.session-tag {
  display: inline-block;
  background: rgba(45, 106, 79, 0.12);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.15em 0.6em;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.35rem;
}

.sessions-band .service-card {
  text-align: left;
}

.sessions-band .service-card h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.location-band .location-content,
.closing-band .bridge-content {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.location-band .location-content p,
.closing-band .bridge-content p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(35, 49, 39, 0.82);
  margin-bottom: 1rem;
}

.closing-band .bridge-content p {
  color: rgba(255, 255, 255, 0.82);
}

.closing-band .social-row {
  justify-content: center;
  margin-top: 1.5rem;
}

.feature-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-point {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 0.75rem 0;
}

.feature-point h3 {
  margin-bottom: 0.35rem;
}

.feature-point p {
  margin: 0;
  color: rgba(35, 49, 39, 0.78);
}

/* ─── Typography Components ──────────────────────────────── */

.eyebrow,
.badge,
.calendar-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.calendar-label {
  color: var(--forest);
}

.hero-copy .eyebrow {
  color: rgba(245, 240, 232, 0.82);
}

.badge {
  color: var(--bark);
}

/* ─── Service + Review Cards ─────────────────────────────── */

.service-grid,
.review-grid {
  display: grid;
  gap: 0;
}

.service-grid {
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(45, 106, 79, 0.14);
  border-bottom: 1px solid rgba(45, 106, 79, 0.14);
}

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

.service-card,
.review-card {
  padding: 2rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: none;
}

.review-card:hover {
  border-color: rgba(45, 106, 79, 0.32);
}

.service-card:first-child,
.review-card:first-child {
  border-top: 0;
}

body[data-page="home"] .service-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(220px, 0.55fr);
  column-gap: 1.5rem;
  row-gap: 0.45rem;
  align-items: start;
}

body[data-page="home"] .service-card .service-icon {
  grid-row: 1 / span 4;
}

body[data-page="home"] .service-card .eyebrow,
body[data-page="home"] .service-card h3,
body[data-page="home"] .service-card > p:last-of-type {
  grid-column: 2;
}

body[data-page="home"] .service-card .service-list,
body[data-page="home"] .service-card .button {
  grid-column: 3;
}

body[data-page="home"] .service-card > p:last-of-type {
  margin: 0;
  max-width: 56ch;
}

body[data-page="home"] .service-card .service-list {
  margin: 0;
  padding-left: 1.1rem;
}

body[data-page="home"] .service-card .button {
  margin-top: 0.35rem;
  justify-self: start;
  align-self: start;
}

body[data-page="about"] .service-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 1.25rem;
  row-gap: 0.35rem;
  align-items: start;
}

body[data-page="about"] .service-card .service-icon {
  grid-row: 1 / span 2;
}

body[data-page="about"] .service-card > p {
  margin: 0;
  max-width: 58ch;
}

.review-card {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: rgba(35, 49, 39, 0.7);
}

.google-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.google-review-grid .review-card,
.google-review-grid .review-card:first-child {
  display: block;
  height: 100%;
  padding: 1.25rem;
  border: 0;
  border-radius: 10px;
  background: #f5f3ee;
  box-shadow: none;
}

.google-review-grid .review-card:hover {
  border-color: transparent;
  background: #f5f3ee;
}

.review-copy-fixed {
  min-height: 175px;
}

.review-quote,
.review-meta-line {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.review-quote {
  color: var(--charcoal);
}

.review-meta-line {
  color: var(--charcoal);
}

.review-meta-line strong {
  font-weight: 700;
}

.google-badge-logo-inline {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}

.review-stars {
  margin: 0 0 0.3125rem;
  color: #ffbf00;
  letter-spacing: 0;
  font-size: 21px;
  line-height: 24px;
}

.google-review-grid .review-card p {
  color: var(--charcoal);
}

/* Reviews placeholder (empty state) */
.reviews-placeholder {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
  max-width: 44rem;
  margin: 0;
}

.reviews-placeholder p:last-of-type {
  margin-bottom: 1.5rem;
}

.reviews-placeholder-note {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

.section-band-forest .section-heading .eyebrow {
  color: rgba(245, 240, 232, 0.72);
}

.section-band-forest .section-heading h2,
.reviews-placeholder-dark p {
  color: var(--white);
}

.reviews-placeholder-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.section-band-forest .button-secondary {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.section-band-forest .button-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(45, 106, 79, 0.14);
}

.faq-item {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(45, 106, 79, 0.14);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background-color var(--transition-base) var(--transition-ease),
              color var(--transition-base) var(--transition-ease);
}

.faq-question:hover {
  color: var(--forest-deep);
}

.faq-question:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.faq-question::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6a4f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--transition-base) var(--transition-ease);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(180deg);
}

/* Smooth FAQ animation via max-height (replaces display: none/block) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: rgba(35, 49, 39, 0.82);
  transition: max-height var(--transition-slow) var(--transition-ease),
              padding var(--transition-slow) var(--transition-ease);
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: 0 0 1.5rem;
}

/* ─── Buttons ─────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease),
              background-color var(--transition-base) var(--transition-ease),
              filter var(--transition-base) var(--transition-ease),
              opacity var(--transition-base) var(--transition-ease);
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest-deep);
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.30);
}

.button-primary:hover:not(:disabled) {
  background: var(--forest-deep);
  box-shadow: 0 6px 22px rgba(45, 106, 79, 0.42);
}

.button-primary:active:not(:disabled) {
  background: var(--forest-deep);
  box-shadow: none;
  transition-duration: 150ms;
}

.button-secondary {
  color: var(--forest-deep);
  background: transparent;
  border: 1.5px solid rgba(45, 106, 79, 0.40);
}

.button-secondary:hover:not(:disabled) {
  background: rgba(45, 106, 79, 0.07);
  border-color: var(--forest);
}

.button-secondary:active:not(:disabled) {
  background: rgba(45, 106, 79, 0.12);
  box-shadow: none;
  transition-duration: 150ms;
}

.button.small {
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
}

/* Loading state */
.button.is-loading {
  color: transparent;
  pointer-events: none;
  opacity: 0.72;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.90);
  animation: btn-spin 0.7s linear infinite;
}

.button-secondary.is-loading::after {
  border-color: rgba(45, 106, 79, 0.22);
  border-top-color: var(--forest);
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ─── Booking Layout ─────────────────────────────────────── */

.calendar-shell {
  display: grid;
  gap: 1rem;
}

.date-grid,
.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── Calendar Chips ─────────────────────────────────────── */

.date-chip,
.time-chip {
  min-width: 8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(45, 106, 79, 0.14);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: transform var(--transition-base) var(--transition-ease),
              border-color var(--transition-base) var(--transition-ease),
              background-color var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease);
}

.date-chip:hover:not(.is-selected),
.time-chip:hover:not(.is-selected) {
  transform: translateY(-1px);
  border-color: rgba(45, 106, 79, 0.32);
  background: rgba(163, 177, 138, 0.16);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.10);
}

.date-chip.is-selected,
.time-chip.is-selected {
  border-color: rgba(45, 106, 79, 0.55);
  background: rgba(45, 106, 79, 0.10);
  box-shadow: inset 0 0 0 1.5px rgba(45, 106, 79, 0.28);
  font-weight: 600;
  transform: none;
}

.date-chip:focus-visible,
.time-chip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.date-chip.is-disabled,
.time-chip.is-disabled,
.date-chip:disabled,
.time-chip:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.date-chip strong,
.time-chip strong {
  display: block;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--skeleton-base) 25%,
    var(--skeleton-shine) 50%,
    var(--skeleton-base) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  pointer-events: none;
  border-color: transparent;
  color: transparent;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.date-chip.skeleton {
  min-height: 64px;
}

/* ─── Booking Form ───────────────────────────────────────── */

.booking-form,
.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(45, 106, 79, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  transition: border-color var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease),
              background-color var(--transition-base) var(--transition-ease);
  outline: none;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  border-color: rgba(45, 106, 79, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(45, 106, 79, 0.50);
  box-shadow: var(--focus-ring);
  background: #ffffff;
}

.booking-form input.is-invalid,
.booking-form select.is-invalid,
.booking-form textarea.is-invalid {
  border-color: var(--amber-border);
  background: var(--amber-soft);
}

.booking-form input.is-valid,
.booking-form select.is-valid,
.booking-form textarea.is-valid {
  border-color: var(--success-border);
  background: var(--success-fill);
}

.booking-form input:disabled,
.booking-form select:disabled,
.booking-form textarea:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: rgba(237, 242, 231, 0.5);
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-helper-stack {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.booking-inline-note,
.booking-intake-notice {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 106, 79, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(35, 49, 39, 0.78);
}

.booking-inline-note strong,
.booking-intake-notice strong {
  color: var(--forest-deep);
}

.booking-intake-notice {
  border-color: rgba(180, 123, 46, 0.24);
  background: rgba(244, 236, 220, 0.76);
}

.booking-intake-notice a {
  color: var(--forest-deep);
  font-weight: 700;
}

/* Field-level validation messages */
.field-error {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--amber-text);
  margin-top: 0.2rem;
  min-height: 1.2em;
}

/* Selected slot display */
.selected-slot {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid rgba(45, 106, 79, 0.12);
  color: rgba(35, 49, 39, 0.50);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color var(--transition-base) var(--transition-ease),
              border-color var(--transition-base) var(--transition-ease),
              color var(--transition-base) var(--transition-ease);
}

.selected-slot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.25);
  flex-shrink: 0;
  transition: background-color var(--transition-base) var(--transition-ease);
}

.selected-slot.has-slot {
  background: rgba(45, 106, 79, 0.10);
  border-color: rgba(45, 106, 79, 0.32);
  color: var(--forest-deep);
  font-weight: 600;
}

.selected-slot.has-slot::before {
  background: var(--forest);
}

/* Form status */
.form-status,
.placeholder-text {
  margin: 0;
  color: rgba(35, 49, 39, 0.7);
}

.form-status.is-error {
  color: #8a3520;
}

.form-status.is-success {
  color: var(--forest);
}

/* Payment section */
.payment-section {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(45, 106, 79, 0.04);
  border: 1px solid rgba(45, 106, 79, 0.12);
}

.payment-section .section-heading {
  margin: 0;
}

.payment-section h3 {
  margin: 0;
  font-size: 1rem;
}

#card-container {
  min-height: 40px;
}

.payment-total {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--forest);
}

.success-paid {
  font-weight: 600;
  color: var(--forest);
}

/* Post-booking success card */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 2rem;
}

.booking-success h2 {
  margin: 0;
  font-size: 1.5rem;
}

.booking-success p {
  margin: 0;
  max-width: 36ch;
  color: rgba(35, 49, 39, 0.80);
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  display: grid;
  place-items: center;
  color: var(--forest);
  font-size: 1.5rem;
  line-height: 1;
}

.success-slot {
  font-weight: 600;
  color: var(--forest-deep);
}

.booking-signup-prompt {
  width: 100%;
  max-width: 380px;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(45, 106, 79, 0.05);
  border: 1px solid rgba(45, 106, 79, 0.14);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.signup-prompt-heading {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 0;
}

.booking-signup-prompt p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(35, 49, 39, 0.72);
  max-width: 32ch;
}

.booking-signup-prompt .button {
  margin-top: 0.25rem;
}

/* ─── Account ────────────────────────────────────────────── */

.account-section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

[data-account-loading] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 340px;
  font-size: 0.95rem;
  color: rgba(35, 49, 39, 0.66);
}

[data-account-loading]::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 3px solid rgba(45, 106, 79, 0.16);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

/* ── Welcome banner ───────────────────────────────────── */

.account-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.account-welcome-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

img.account-avatar.has-image {
  object-fit: cover;
  background: none;
}

.profile-picture-section {
  margin-bottom: 0.5rem;
}

.profile-picture-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.profile-picture-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-picture-preview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

img.profile-picture-preview.has-image {
  object-fit: cover;
  background: none;
}

.profile-picture-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.profile-picture-upload-btn {
  cursor: pointer;
}

.profile-picture-actions .form-hint {
  font-size: 0.8rem;
  color: var(--text-light, #888);
  margin: 0;
}

.account-welcome-text h2 {
  margin: 0 0 0.15rem;
  font-size: 1.35rem;
}

.account-welcome-text p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(35, 49, 39, 0.62);
}

/* ── Tab navigation ───────────────────────────────────── */

.account-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid rgba(45, 106, 79, 0.10);
}

.account-tabs [data-tab] {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(35, 49, 39, 0.58);
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition-base) var(--transition-ease);
}

.account-tabs [data-tab]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-base) var(--transition-ease);
}

.account-tabs [data-tab]:hover {
  color: var(--forest-deep);
}

.account-tabs [data-tab].active {
  color: var(--forest-deep);
}

.account-tabs [data-tab].active::after {
  transform: scaleX(1);
}

.account-logout {
  margin-left: auto;
}

/* ── Tab content ──────────────────────────────────────── */

.account-tab-content {
  display: none;
}

.account-tab-content.active {
  display: block;
  animation: account-fade-in 250ms var(--transition-ease);
}

@keyframes account-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.account-shell {
  display: grid;
  gap: 1.5rem;
}

.account-flash {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 106, 79, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

/* ── Bookings ─────────────────────────────────────────── */

.bookings-section {
  margin: 0 0 1.25rem;
  font-size: 1.18rem;
}

.bookings-section-spaced {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(45, 106, 79, 0.10);
}

.bookings-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
  border: 1px dashed rgba(45, 106, 79, 0.18);
}

.bookings-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(45, 106, 79, 0.08);
  display: grid;
  place-items: center;
  color: var(--forest);
}

.bookings-empty-icon svg {
  width: 26px;
  height: 26px;
}

.bookings-empty p {
  margin: 0;
  max-width: 28ch;
  color: rgba(35, 49, 39, 0.62);
  line-height: 1.6;
}

.booking-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(45, 106, 79, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease);
}

.booking-card:hover {
  border-color: rgba(45, 106, 79, 0.20);
  box-shadow: 0 8px 24px rgba(35, 49, 39, 0.06);
}

.booking-card + .booking-card {
  margin-top: 0.75rem;
}

.booking-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.12);
  flex-shrink: 0;
}

.booking-date-badge .bdb-month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1;
}

.booking-date-badge .bdb-day {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
}

.booking-card-body h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.booking-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(35, 49, 39, 0.64);
}

.booking-card-body .booking-card-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.booking-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-status.pending {
  background: rgba(107, 63, 42, 0.10);
  color: var(--bark);
}

.booking-status.confirmed {
  background: rgba(45, 106, 79, 0.12);
  color: var(--forest-deep);
}

.booking-status.cancelled {
  background: rgba(138, 53, 32, 0.10);
  color: #8a3520;
}

.booking-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.booking-card-actions .button {
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
}

.booking-notes-panel {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.55);
  border: 1px solid rgba(45, 106, 79, 0.08);
}

.booking-notes-panel-highlight {
  background: rgba(232, 241, 229, 0.74);
  border-color: rgba(45, 106, 79, 0.16);
}

.booking-notes-panel .eyebrow {
  margin-bottom: 0.4rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ── Auth forms ───────────────────────────────────────── */

.auth-container {
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.auth-forms {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 440px;
}

.auth-form {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 16px 48px rgba(35, 49, 39, 0.06);
}

.auth-form h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.auth-form .auth-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: rgba(35, 49, 39, 0.62);
  line-height: 1.55;
}

.auth-form form {
  display: grid;
  gap: 1.1rem;
}

.auth-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(35, 49, 39, 0.78);
}

.auth-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(45, 106, 79, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  transition: border-color var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease);
  outline: none;
}

.auth-form input:hover {
  border-color: rgba(45, 106, 79, 0.28);
}

.auth-form input:focus {
  border-color: rgba(45, 106, 79, 0.50);
  box-shadow: var(--focus-ring);
  background: #ffffff;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(35, 49, 39, 0.38);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(45, 106, 79, 0.10);
}

.google-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.google-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.tab-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: rgba(35, 49, 39, 0.58);
  font-size: 0.88rem;
}

.tab-toggle button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color var(--transition-base) var(--transition-ease);
}

.tab-toggle button:hover {
  color: var(--forest-deep);
  text-decoration: none;
}

/* ── Profile & settings forms ─────────────────────────── */

.profile-settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.profile-form {
  display: grid;
  gap: 1.1rem;
  max-width: none;
}

.profile-form h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.profile-form .form-section-desc {
  margin: -0.25rem 0 0.5rem;
  font-size: 0.88rem;
  color: rgba(35, 49, 39, 0.58);
}

.profile-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(35, 49, 39, 0.78);
}

.profile-form input,
.profile-form select,
.profile-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(45, 106, 79, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  transition: border-color var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease);
  outline: none;
}

.profile-form input:hover,
.profile-form select:hover,
.profile-form textarea:hover {
  border-color: rgba(45, 106, 79, 0.28);
}

.profile-form input:focus,
.profile-form select:focus,
.profile-form textarea:focus {
  border-color: rgba(45, 106, 79, 0.50);
  box-shadow: var(--focus-ring);
  background: #ffffff;
}

.profile-form input:readonly {
  background: rgba(237, 242, 231, 0.58);
  color: rgba(35, 49, 39, 0.56);
  cursor: not-allowed;
  border-style: dashed;
}

.form-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(45, 106, 79, 0.10);
}

.profile-grid-two,
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.settings-grid {
  align-items: start;
}

.form-hint {
  margin: -0.4rem 0 0;
  color: rgba(35, 49, 39, 0.58);
  font-size: 0.82rem;
}

.checkbox-list {
  display: grid;
  gap: 0.85rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  font-weight: 600;
}

.checkbox-row input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
}

.auth-method-card {
  align-content: start;
}

.integration-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(180, 123, 46, 0.12);
  color: var(--bark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.integration-pill.is-linked {
  background: rgba(45, 106, 79, 0.12);
  color: var(--forest-deep);
}

.account-callout {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.7);
  border: 1px solid rgba(45, 106, 79, 0.08);
}

.account-callout.is-attention {
  background: rgba(244, 236, 220, 0.8);
  border-color: rgba(180, 123, 46, 0.22);
}

.intake-form {
  max-width: 720px;
}

/* ─── Reschedule / Status Pages ─────────────────────────── */

.reschedule-summary {
  display: grid;
  gap: 1rem;
}

.reschedule-summary h2 {
  margin: 0;
}

.reschedule-current-slot {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.reschedule-detail-list {
  margin-top: 0;
}

.reschedule-expiry,
.contact-note {
  margin: 0;
  color: rgba(35, 49, 39, 0.72);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── 404 Illustrated Layout ────────────────────────────── */

.not-found-section {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.not-found-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
}

.not-found-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  display: block;
}

.not-found-content h1 {
  margin-top: 0.5rem;
}

.not-found-content p {
  max-width: 42ch;
}

@media (max-width: 720px) {
  .not-found-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .not-found-content p {
    max-width: none;
  }

  .not-found-actions {
    justify-content: center;
  }

  .not-found-image img {
    max-width: 260px;
  }
}

/* ─── Illustrated Technique Cards ───────────────────────── */

.service-card-illustrated {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
}

.service-card-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-card-body h3 {
  margin: 0 0 0.35rem;
}

.service-card-body p {
  margin: 0;
  max-width: 48ch;
}

.reviews-empty-state {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  padding: clamp(1.7rem, 3vw, 2.3rem);
  border-radius: 24px;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.14);
}

.reviews-empty-state p {
  margin: 0;
  color: rgba(245, 240, 232, 0.82);
}

/* ─── About / Profile ────────────────────────────────────── */

.profile-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.profile-photo {
  line-height: 0;
}

.profile-photo img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: 2px solid rgba(45, 106, 79, 0.35);
  display: block;
}

.credential-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: rgba(35, 49, 39, 0.82);
}

.credential-list li {
  margin-bottom: 0.5rem;
}

.tone-earth {
  background: rgba(245, 240, 232, 0.92);
}

/* ─── Footer ─────────────────────────────────────────────── */

.site-footer {
  width: 100%;
  margin: -1px 0 0;
  padding: 0 1.5rem;
  border-radius: 0;
  background: linear-gradient(135deg, var(--forest-deep), var(--charcoal));
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  flex-shrink: 0;
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 2.75rem 0;
  display: grid;
  gap: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand-name {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.80);
  transition: color var(--transition-base) var(--transition-ease);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-disclaimer {
  margin-bottom: 0.75rem !important;
  font-size: 0.78rem !important;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48) !important;
}

/* ─── Service & Metric Icons ─────────────────────────────── */

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(45, 106, 79, 0.10);
  border: 1px solid rgba(45, 106, 79, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 0;
  flex-shrink: 0;
  color: var(--forest);
}



.service-icon svg {
  width: 26px;
  height: 26px;
}

.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(45, 106, 79, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 0.6rem;
  color: var(--forest);
}

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

/* ─── Scroll-to-Top Button ───────────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(45, 106, 79, 0.38);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition-base) var(--transition-ease),
              transform var(--transition-base) var(--transition-ease),
              background-color var(--transition-base) var(--transition-ease),
              box-shadow var(--transition-base) var(--transition-ease);
  z-index: 50;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--forest-deep);
  box-shadow: 0 6px 24px rgba(45, 106, 79, 0.48);
}

.scroll-top:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--transition-ease),
              transform 0.55s var(--transition-ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ─── Responsive — Tablet ────────────────────────────────── */

@media (max-width: 980px) {
  .hero,
  .booking-layout,
  .about-layout,
  .section-grid,
  .split-section,
  .philosophy-layout,
  .feature-pair,
  .profile-card,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-card-copy,
  .story-band .profile-card {
    padding-right: 0;
  }

  body[data-page="home"] .service-card,
  body[data-page="about"] .service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  body[data-page="home"] .service-card .service-list,
  body[data-page="about"] .service-card > p {
    max-width: none;
  }

  .service-card-illustrated {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card-image {
    max-width: 280px;
  }

  .hero-visual {
    justify-items: center;
    padding-left: 0;
  }

  .google-review-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Responsive — Mobile ────────────────────────────────── */

@media (max-width: 720px) {
  .site-shell {
    padding: 0;
  }

  .hero,
  .booking-layout,
  .about-layout,
  .section-grid,
  .split-section,
  .section,
  .page-header {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .site-header {
    padding: 0 1rem;
  }

  .site-footer {
    padding: 0 1rem;
  }

  .site-header-inner {
    flex-wrap: wrap;
    row-gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 999px;
    color: var(--forest-deep);
    background: rgba(163, 177, 138, 0.18);
    cursor: pointer;
    transition: background-color var(--transition-base) var(--transition-ease);
  }

  .nav-toggle:hover {
    background: rgba(163, 177, 138, 0.30);
  }

  /* Mobile nav — slide via grid-template-rows */
  .site-nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
    transition: grid-template-rows var(--transition-slow) var(--transition-ease);
  }

  .site-nav-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
  }

  .site-nav a {
    display: block;
    text-align: center;
  }

  .nav-account-wrapper {
    width: 100%;
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0.25rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(45, 106, 79, 0.10);
  }

  .nav-account-trigger {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    gap: 0.5rem;
  }

  .nav-avatar-sm {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .nav-account-chevron {
    display: none;
  }

  .nav-account-dropdown {
    display: none;
  }

  .nav-account-wrapper.is-open .nav-account-dropdown {
    display: none;
  }

  .hero,
  .booking-layout,
  .about-layout,
  .section-grid,
  .split-section,
  .section,
  .page-header {
    padding: 3rem 0;
  }

  .booking-panel,
  .info-card-panel {
    padding: 1.6rem;
  }

  .hero-copy h1,
  .philosophy-layout h2 {
    max-width: none;
  }

  .feature-point {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .google-review-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .account-welcome {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .account-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .account-tabs::-webkit-scrollbar {
    display: none;
  }

  .account-tabs [data-tab] {
    white-space: nowrap;
    padding: 0.75rem 1rem;
  }

  .account-logout {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }

  .booking-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .booking-date-badge {
    width: auto;
    height: auto;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    align-self: flex-start;
  }

  .booking-card-actions {
    width: 100%;
  }

  .booking-card-actions .button {
    flex: 1;
  }

  .auth-form {
    padding: 1.5rem;
  }

  .profile-settings-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-grid-two,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .page-header {
    padding: 3.4rem 0 2rem;
  }
}

/* ─── Reduced Motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .review-card {
    transition: none;
  }

  .scroll-top {
    transition: opacity 0ms, transform 0ms;
  }

  .account-tab-content.active {
    animation: none;
  }

  @keyframes skeleton-shimmer {
    0%, 100% { background-position: 0 0; }
  }

  @keyframes btn-spin {
    to { transform: rotate(0deg); }
  }

  @keyframes dropdown-enter {
    from { opacity: 1; transform: none; }
  }
}
