:root {
  --primary: #D4AF37;
  --primary-deep: #063d2a;
  --secondary: #BE5103;
  --accent: #DCA1A1;
  --dark: #1a2e28;
  --ink: #1a202c;
  --muted: #5a6678;
  --line: rgba(26, 32, 44, 0.1);
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 44px rgba(16, 24, 40, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1120px;
  /* Fixed header height - update here if the header height ever changes */
  --header-h: 57px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html:focus-within {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  margin: 0;
  /* Push all page content below the fixed header automatically.
     Any new page added to the site inherits this - no per-page fix needed. */
  padding-top: var(--header-h);
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfcfc 0%, #f4f8f8 100%);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.admin-page {
  background: linear-gradient(180deg, #f8fbfb 0%, #eef4f4 100%);
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.08;
}

.site-backdrop {
  position: fixed;
  /* Extend 120px past all viewport edges so the bottom-right gradient
     remains visible when browsers (e.g. Firefox) shift the visible area
     during scroll without clipping the fade at the screen edge. */
  inset: -120px;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(154, 230, 180, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(246, 232, 215, 0.45), transparent 32%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 14px 0 56px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brandmark {
  display: inline-flex;
  align-items: center;
}

.admin-header a img,
.booking-admin-card a img {
  transition: opacity 200ms ease;
}

.admin-header a:hover img,
.booking-admin-card a:hover img {
  opacity: 0.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  touch-action: manipulation;
}

.button:hover,
.button:focus-visible,
.day-tab:hover,
.day-tab:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(44, 122, 123, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-deep);
}

.button-secondary {
  color: var(--primary-deep);
  background: #fff;
  border-color: rgba(44, 122, 123, 0.14);
}

.booking-flow {
  display: grid;
  gap: 20px;
}

.booking-card,
.cta-card,
.availability-card,
.step-card,
.metric-card,
.booking-admin-card,
.auth-card,
.empty-state {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.booking-card,
.cta-card,
.availability-card,
.step-card,
.metric-card,
.booking-admin-card,
.auth-card,
.empty-state {
  padding: 24px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(21, 35, 48, 0.22), rgba(21, 35, 48, 0.72)),
    linear-gradient(90deg, rgba(21, 35, 48, 0.6), rgba(21, 35, 48, 0.18)),
    url('/assets/images/hero-2.png');
  background-position: center 24%;
  background-size: cover;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

.cta-card-inner {
  display: grid;
  gap: 18px;
  align-content: end;
  min-height: 560px;
  max-width: 760px;
  padding: 34px;
  color: #fff;
}

.form-logo {
  margin-bottom: 4px;
}

.form-logo-light {
  margin-bottom: 0;
}

.card-kicker,
.eyebrow,
.panel-label,
.metric-label,
.meta-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.booking-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-wrap: balance;
}

.cta-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-wrap: balance;
}

.booking-lead,
.availability-intro p,
.section-heading p,
.step-card p,
.site-footer p,
.submit-note,
.admin-subtitle,
.auth-card p,
.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-lead-light {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.card-kicker-light {
  color: rgba(255, 255, 255, 0.86);
}

.quick-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 540px;
}

.quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
}

.quick-list li::before {
  content: '';
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 2px rgba(7, 51, 39, 0.35);
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

.mini-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(44, 122, 123, 0.08);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
}

.booking-admin-card .message {
  margin-top: 16px;
}

.message strong {
  display: block;
  margin-bottom: 6px;
}

.message ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.message-success {
  color: #0f5132;
  background: rgba(154, 230, 180, 0.25);
  border: 1px solid rgba(44, 122, 123, 0.16);
}

.message-error {
  color: #7b241c;
  background: rgba(246, 232, 215, 0.9);
  border: 1px solid rgba(179, 91, 63, 0.2);
}

.reference-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(44, 122, 123, 0.12);
  color: var(--primary-deep);
  font-weight: 700;
}

.form-grid,
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-span-full {
  grid-column: 1 / -1;
}

.field label,
.optional-group summary {
  font-weight: 700;
  color: var(--ink);
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(44, 122, 123, 0.4);
  box-shadow: 0 0 0 4px rgba(44, 122, 123, 0.1);
}

/* Field error state - only shown after user interaction */
.field-error input,
.field-error select,
.field-error textarea {
  border-color: #dc3545;
  background: #fff5f5;
}

.field-error label {
  color: #dc3545;
}

.field-error input:focus-visible,
.field-error select:focus-visible,
.field-error textarea:focus-visible {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.submit-note {
  max-width: 320px;
}

.availability-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
}

.availability-status.is-info {
  color: var(--primary-deep);
  background: rgba(44, 122, 123, 0.08);
}

.availability-status.is-error {
  color: #7b241c;
  background: rgba(246, 232, 215, 0.9);
}

.noscript-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.availability-card[hidden] {
  display: none;
}

.booking-card .availability-intro {
  margin-bottom: 18px;
}

.availability-intro {
  display: grid;
  gap: 10px;
}

.availability-intro h2,
.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.day-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.day-tab {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(44, 122, 123, 0.14);
  background: #fff;
  color: var(--primary-deep);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.day-tab.is-active {
  background: var(--primary-deep, #063d2a);
  border-color: var(--primary-deep, #063d2a);
  color: #fff;
}

.day-tab:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.slot-picker {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.slot-summary {
  margin: 0;
  color: var(--primary-deep);
  line-height: 1.6;
  font-weight: 600;
}

.details-grid {
  margin-top: 18px;
}

.optional-group {
  margin-top: 18px;
}

.optional-group summary {
  cursor: pointer;
  list-style: none;
}

.optional-group summary::-webkit-details-marker {
  display: none;
}

.optional-group summary::after {
  content: '+';
  float: right;
  color: var(--primary-deep);
}

.optional-group[open] summary::after {
  content: '-';
}

.optional-fields {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 32, 44, 0.08);
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.simple-section,
.admin-metrics,
.admin-list {
  margin-top: 26px;
}

.section-heading.compact {
  max-width: 520px;
}

.step-grid,
.admin-meta-grid {
  display: grid;
  gap: 16px;
}

.step-grid {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(44, 122, 123, 0.1);
  color: var(--primary-deep);
  font-weight: 700;
}

.step-card h3 {
  margin-top: 14px;
  font-size: 1.12rem;
}

/* Selectable massage cards */
.massage-option {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.massage-option::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--massage-card-background, linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)));
  background-size: cover;
  background-position: var(--massage-card-position-desktop, 50% 50%);
  background-repeat: no-repeat;
  z-index: 0;
}

.massage-option > * {
  position: relative;
  z-index: 1;
}

.massage-option .price-table {
  overflow: hidden;
  border-radius: 18px;
  background: var(--massage-table-bg, rgba(15, 23, 42, 0.4));
  backdrop-filter: blur(6px);
}

.massage-option .price-table-head,
.massage-option .price-table-row {
  display: grid;
  grid-template-columns: 78px 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
}

.massage-option .price-table-head {
  background: var(--massage-table-head-bg, rgba(255, 255, 255, 0.07));
  color: var(--massage-table-head-color, rgba(255, 255, 255, 0.72));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.massage-option .price-table-row + .price-table-row {
  border-top: 1px solid var(--massage-table-divider, rgba(255, 255, 255, 0.12));
}

.massage-option .price-key {
  color: var(--massage-table-length-color, rgba(255, 255, 255, 0.9));
  font-weight: 700;
}

.massage-option .price-main {
  color: var(--massage-table-standard-color, #ffffff);
  font-size: 1.05rem;
  font-weight: 800;
}

.massage-option .price-member {
  color: var(--massage-table-member-color, #f2c94c);
  font-size: 1.05rem;
  font-weight: 800;
}

.massage-option .price-unavailable {
  color: var(--massage-table-head-color, rgba(255, 255, 255, 0.72));
  font-size: 0.95rem;
  font-weight: 700;
}

/* Remove the semi-transparent background/border from base step-card for massage cards */
.step-card.massage-option {
  background: transparent;
  border: none;
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.massage-option:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(44, 122, 123, 0.15),
    inset 0 0 0 2px var(--primary);
}

.massage-option:active {
  transform: translateY(-2px);
}

.massage-option.selected {
  box-shadow:
    0 8px 24px rgba(44, 122, 123, 0.25),
    inset 0 0 0 2px var(--primary-deep);
}

.massage-option.collapsed {
  padding: 16px 24px;
  cursor: pointer;
}

.massage-option.collapsed p {
  display: none;
}

.massage-option.collapsed h3 {
  margin: 0;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 32, 44, 0.08);
}

.admin-shell {
  padding-top: 22px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(44, 122, 123, 0.14);
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.weekly-schedule {
  margin-top: 18px;
  border: 1px solid rgba(26, 32, 44, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.weekly-header {
  display: grid;
  grid-template-columns: 70px repeat(7, minmax(0, 1fr));
  border-bottom: 1px solid rgba(26, 32, 44, 0.08);
  background: rgba(248, 251, 251, 0.8);
}

.weekly-header-spacer {
  border-right: 1px solid rgba(26, 32, 44, 0.08);
}

.weekly-day-label {
  padding: 12px 10px;
  font-weight: 600;
  text-align: center;
  color: var(--primary-deep);
}

.weekly-grid {
  display: grid;
  grid-template-columns: 70px 1fr;
}

.weekly-times {
  border-right: 1px solid rgba(26, 32, 44, 0.08);
}

.weekly-time {
  padding: 10px 8px;
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(26, 32, 44, 0.08);
}

.weekly-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekly-day {
  position: relative;
  border-right: 1px solid rgba(26, 32, 44, 0.08);
  background-image: linear-gradient(
    to bottom,
    rgba(26, 32, 44, 0.06) 1px,
    transparent 1px
  );
  background-size: 100% 56px;
}

.weekly-day:last-child {
  border-right: none;
}

.weekly-block {
  position: absolute;
  left: 8px;
  right: 8px;
  background: rgba(44, 122, 123, 0.16);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 6px 8px;
  font-size: 0.78rem;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  box-shadow: 0 10px 18px rgba(44, 122, 123, 0.16);
}

.weekly-block span {
  display: inline-block;
}

.admin-subtitle {
  margin-top: 8px;
}

.admin-banner {
  margin-top: 20px;
  margin-bottom: 0;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  display: grid;
  gap: 8px;
}

.metric-card strong {
  font-size: 1.8rem;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.metric-card.is-active {
  border-color: rgba(44, 122, 123, 0.28);
  box-shadow: 0 16px 34px rgba(44, 122, 123, 0.12);
}

.panel-label,
.metric-label,
.meta-label {
  color: var(--primary-deep);
}

.booking-admin-card + .booking-admin-card {
  margin-top: 16px;
}

.booking-admin-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.booking-admin-card h2 {
  margin-top: 8px;
  font-size: 1.8rem;
}

.status-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.status-form select {
  min-width: 150px;
}

.admin-meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.admin-meta-grid p,
.admin-notes p {
  margin: 8px 0 0;
  color: var(--ink);
  line-height: 1.65;
}

.admin-notes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 32, 44, 0.08);
}

.admin-notes a,
.admin-meta-grid a {
  color: var(--primary-deep);
}

.admin-auth {
  min-height: calc(100vh - 60px);
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(100%, 520px);
}

.auth-card h1 {
  margin-top: 18px;
  font-size: 2.1rem;
}

.auth-card .button-primary {
  margin-top: 8px;
}

.booking-form .button-primary {
  margin-top: 8px;
}

.weekly-submit {
  margin-top: 10px;
}

.empty-state {
  text-align: center;
  padding: 44px 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-highlight {
  background: rgba(44, 122, 123, 0.04);
  border: 1px solid rgba(44, 122, 123, 0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 18px;
}

.service-highlight h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary-deep);
}

@media (max-width: 980px) {
  .massage-option::before {
    background-position: var(--massage-card-position-mobile, var(--massage-card-position-desktop, 50% 50%));
  }

  .massage-option .price-table-head,
  .massage-option .price-table-row {
    grid-template-columns: 66px 1fr 1fr;
    gap: 8px;
    padding: 11px 12px;
  }

  .form-grid,
  .details-grid,
  .step-grid,
  .admin-metrics,
  .admin-meta-grid {
    grid-template-columns: 1fr;
  }

  .field-span-full {
    grid-column: auto;
  }

  .submit-note {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-bottom: 44px;
  }

  .site-header,
  .admin-header,
  .booking-admin-top,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .booking-card,
  .availability-card,
  .cta-card-inner,
  .step-card,
  .metric-card,
  .booking-admin-card,
  .auth-card,
  .empty-state {
    padding: 18px;
  }

  .booking-card h1,
  .cta-card h1 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .cta-card,
  .cta-card-inner {
    min-height: 460px;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions .button,
  .admin-actions,
  .admin-actions .button {
    width: 100%;
  }

  /* Weekly schedule: allow horizontal scroll instead of clipping content */
  .weekly-schedule {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .weekly-header,
  .weekly-grid {
    min-width: 560px;
  }

  /* Hard reset: force all text containers to stay within the viewport */
  p, h1, h2, h3, h4, h5, h6, li, span, label, td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
  }
}

/* Payment Section */
.payment-summary {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.payment-summary h3 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span:first-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.summary-total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--primary);
}

.summary-total span:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.summary-total span:last-child {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

#payment-element {
  margin: 24px 0;
  min-height: 200px;
}

.payment-status {
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: 500;
}

.payment-status.is-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.payment-status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.payment-status.is-info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* Sticky Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 1002;
  background: white;
  border-bottom: 1px solid rgba(11, 61, 46, 0.15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border-radius: 0;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  display: block;
  height: 46px;
  width: auto;
}

/* Desktop Navigation - always hidden; all nav lives in the hamburger menu */
.header-nav {
  display: none;
  gap: 24px;
  align-items: center;
  margin-left: auto;
  margin-right: 24px;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a.active {
  color: var(--primary);
  font-weight: 600;
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Hamburger menu is always visible - no desktop nav breakpoint */

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-actions form button {
  background: transparent;
  border: 1px solid var(--primary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.header-actions form button:hover {
  background: var(--primary);
  color: white;
}

/* Hamburger Menu Styles */
.hamburger-btn {
  display: flex; /* Always visible - consistent UI across all widths */
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
}

.hamburger-btn span {
  width: 20px;
  height: 2px;
  background: var(--primary-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  padding-top: 60px;
  padding-bottom: 100px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-menu nav a,
.mobile-menu nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  color: var(--ink);
  text-decoration: none;
  border: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.mobile-menu nav a:hover,
.mobile-menu nav button:hover {
  background: var(--accent);
}

.mobile-menu nav .menu-section-title {
  padding: 12px 24px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
  background: none;
  cursor: default;
  border: none;
}

.mobile-menu nav .menu-section-title:hover {
  background: none;
}

/* Address Action Styles */
.address-copy-btn {
  transition: color 0.2s;
}

.address-copy-btn:hover {
  color: var(--primary-deep) !important;
  text-decoration: underline;
}

.address-copy-btn:active {
  color: var(--primary) !important;
}

.address-map-link {
  transition: all 0.2s;
}

.address-map-link:hover {
  text-decoration: underline;
  color: var(--primary) !important;
}

/* Show header actions on desktop, adjust for mobile */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

/* Hide secondary header buttons at all widths - navigation lives in the hamburger */
.header-actions .button-secondary {
  display: none;
}

.header-actions .button-primary {
  display: inline-flex;
  font-size: 0.8rem;
  padding: 7px 14px;
}

/* Header clearance is handled globally by body { padding-top: var(--header-h); } at the top of this file. */

/* Calendar-style availability picker */
.calendar-wrapper {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.calendar-month {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-deep);
}

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

.calendar-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-deep);
  transition: all 0.2s;
}

.calendar-nav-btn:hover {
  background: var(--accent);
  border-color: var(--primary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.calendar-day-header {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 0;
}

.calendar-day {
  aspect-ratio: 1;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
  transition: all 0.2s;
  position: relative;
}

.calendar-day:hover:not(.calendar-day-disabled):not(.calendar-day-empty):not(.calendar-day-no-slots) {
  border-color: var(--primary);
  background: var(--accent);
}

.calendar-day.calendar-day-no-slots {
  color: #d1d5db;
  cursor: default;
  background: #f9fafb;
}

.calendar-day.calendar-day-today {
  border-color: var(--primary);
  font-weight: 600;
}

.calendar-day.calendar-day-selected {
  background: var(--primary-deep, #063d2a);
  color: white;
  border-color: var(--primary-deep, #063d2a);
}

/* Availability dots removed - they overlap the day numbers on mobile */

.calendar-day.calendar-day-disabled {
  color: #d1d5db;
  cursor: not-allowed;
  background: #f9fafb;
}

.calendar-day.calendar-day-empty {
  border-color: transparent;
  cursor: default;
}

.calendar-day-number {
  font-size: 1rem;
}

.time-slots-section {
  margin-top: 32px;
}

.time-slots-header {
  height: 1px;
  background: rgba(11, 61, 46, 0.12);
  margin-bottom: 20px;
  font-size: 0;
  overflow: hidden;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.time-slot-btn {
  padding: 14px 20px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  transition: all 0.2s;
}

.time-slot-btn:hover {
  border-color: var(--primary);
  background: var(--accent);
}

.time-slot-btn.selected {
  background: var(--primary-deep, #063d2a);
  color: white;
  border-color: var(--primary-deep, #063d2a);
}

.show-all-link {
  text-align: center;
  margin-top: 16px;
}

.show-all-link a {
  color: var(--primary-deep);
  text-decoration: underline;
  font-size: 0.95rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .calendar-grid {
    gap: 4px;
  }
  
  .calendar-day-number {
    font-size: 0.9rem;
  }
  
  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
  
  .time-slot-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   LANDING PAGE REDESIGN
   All rules scoped under body.landing-page to avoid affecting other pages.
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Warm Palette & Tokens ─────────────────────────────────────────────── */
body.landing-page {
  --warm: #c9956b;
  --warm-light: #f5ebe0;
  --warm-glow: rgba(201, 149, 107, 0.18);
  --warm-bg-start: #fdfbf8;
  --warm-bg-end: #f6f1ec;
  --cream: #faf8f5;
  --footer-bg: #162420;
  --footer-text: rgba(255, 255, 255, 0.72);
  --footer-heading: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, var(--warm-bg-start) 0%, var(--warm-bg-end) 100%);
}

body.landing-page .site-backdrop {
  background:
    radial-gradient(ellipse 60% 50% at 10% 10%, rgba(154, 230, 180, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(201, 149, 107, 0.16), transparent),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(246, 241, 236, 0.3), transparent);
}

/* ── Keyframe Animations ───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(44, 122, 123, 0.22); }
  50%      { box-shadow: 0 16px 44px rgba(44, 122, 123, 0.36), 0 0 0 6px rgba(44, 122, 123, 0.08); }
}

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

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes drawLine {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes revealNumber {
  from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes warmGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
  50%      { box-shadow: 0 8px 28px rgba(201, 149, 107, 0.18); }
}

/* ── Staggered Reveal Children ─────────────────────────────────────────── */
body.landing-page .js-ready .reveal .stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

body.landing-page .js-ready .reveal.is-visible .stagger {
  opacity: 1;
  transform: translateY(0);
}

body.landing-page .js-ready .reveal.is-visible .stagger-1 { transition-delay: 0.08s; }
body.landing-page .js-ready .reveal.is-visible .stagger-2 { transition-delay: 0.18s; }
body.landing-page .js-ready .reveal.is-visible .stagger-3 { transition-delay: 0.28s; }
body.landing-page .js-ready .reveal.is-visible .stagger-4 { transition-delay: 0.38s; }
body.landing-page .js-ready .reveal.is-visible .stagger-5 { transition-delay: 0.48s; }
body.landing-page .js-ready .reveal.is-visible .stagger-6 { transition-delay: 0.58s; }

/* ── Hero / CTA Card Enhancements ──────────────────────────────────────── */
body.landing-page .cta-card {
  min-height: 600px;
  background:
    linear-gradient(180deg, rgba(15, 30, 24, 0.10) 0%, rgba(15, 30, 24, 0.55) 55%, rgba(15, 30, 24, 0.78) 100%),
    linear-gradient(90deg, rgba(15, 30, 24, 0.50) 0%, rgba(15, 30, 24, 0.10) 70%),
    url('/assets/images/hero-2.png');
  background-position: center 24%;
  background-size: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.18);
}

body.landing-page .cta-card-inner {
  min-height: 600px;
  padding: 40px 38px;
  gap: 20px;
  align-content: start;
}

body.landing-page .cta-card h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

body.landing-page .booking-lead-light {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
}

body.landing-page .card-kicker-light {
  color: var(--warm);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

/* Hero trust badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: floatBadge 4s ease-in-out infinite;
  width: fit-content;
}

.hero-trust-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* Quick list warm styling */
body.landing-page .quick-list li {
  white-space: normal;
  font-size: 0.96rem;
}

body.landing-page .quick-list li::before {
  background: var(--warm);
  box-shadow: 0 0 0 3px rgba(201, 149, 107, 0.25);
}

/* Hero actions */
body.landing-page .hero-actions {
  gap: 14px;
  padding-top: 4px;
}

body.landing-page .hero-actions .button-primary {
  animation: gentlePulse 3s ease-in-out infinite;
  font-size: 1.08rem;
  padding: 15px 30px;
  border-radius: 14px;
}

body.landing-page .hero-actions .button-primary:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(44, 122, 123, 0.35);
}

body.landing-page .hero-actions .button-secondary {
  font-size: 1.08rem;
  padding: 15px 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.landing-page .hero-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

body.landing-page .hero-actions .text-link {
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 200ms ease;
}

body.landing-page .hero-actions .text-link:hover {
  opacity: 1;
}

/* ── Services Section ──────────────────────────────────────────────────── */
body.landing-page .services-section {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

body.landing-page .services-section .availability-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

body.landing-page .services-intro-sub {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-top: 6px;
}

/* Service card hover cue */
body.landing-page .massage-option {
  border-radius: 22px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.landing-page .massage-option::after {
  content: "Select to book \2192";
  position: absolute;
  bottom: 16px;
  right: 18px;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 80, 57, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

body.landing-page .massage-option:hover::after {
  opacity: 1;
  transform: translateY(0);
}

body.landing-page .massage-option:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(44, 122, 123, 0.18),
    0 0 0 2px var(--primary),
    0 0 40px rgba(201, 149, 107, 0.08);
}

body.landing-page .step-grid {
  gap: 18px;
}

/* Services membership note */
body.landing-page .services-member-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.9rem;
  color: #9ca3af;
}

body.landing-page .services-member-note a {
  color: var(--secondary);
  font-weight: 600;
  transition: color 200ms ease;
}

body.landing-page .services-member-note a:hover {
  color: #b8900a;
}

/* ── Section Divider ───────────────────────────────────────────────────── */
.landing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
}

.landing-divider::before,
.landing-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 149, 107, 0.3), transparent);
}

.landing-divider-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  opacity: 0.5;
}

/* ── How It Works ──────────────────────────────────────────────────────── */
body.landing-page .how-section {
  margin-top: 32px;
}

body.landing-page .how-section .section-heading {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

body.landing-page .how-section .section-heading .eyebrow {
  color: var(--warm);
}

body.landing-page .how-section .section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

body.landing-page .how-section .section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Steps with timeline */
body.landing-page .how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  position: relative;
}

/* Connecting line behind steps */
body.landing-page .how-steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.667% + 10px);
  right: calc(16.667% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--warm), var(--primary), var(--warm));
  opacity: 0.25;
  border-radius: 2px;
  z-index: 0;
}

body.landing-page .how-step-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body.landing-page .how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

body.landing-page .how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  position: relative;
}

body.landing-page .how-step-icon.step-icon-1 {
  background: linear-gradient(135deg, rgba(10, 80, 57, 0.12), rgba(10, 80, 57, 0.06));
  color: var(--primary);
}

body.landing-page .how-step-icon.step-icon-2 {
  background: linear-gradient(135deg, rgba(201, 149, 107, 0.18), rgba(201, 149, 107, 0.08));
  color: var(--warm);
}

body.landing-page .how-step-icon.step-icon-3 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.06));
  color: var(--secondary);
}

body.landing-page .how-step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(10, 80, 57, 0.3);
}

body.landing-page .how-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

body.landing-page .how-step-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
  margin: 0;
}

/* ── Testimonials ──────────────────────────────────────────────────────── */
body.landing-page .testimonials-section {
  margin-top: 40px;
}

body.landing-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

body.landing-page .testimonial-card {
  background: var(--card-bg, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.08));
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}

body.landing-page .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

body.landing-page .testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

body.landing-page .testimonial-quote {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text, #1a1a1a);
  margin: 0;
  flex: 1;
  font-style: italic;
}

body.landing-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

body.landing-page .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0d6b4a 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

body.landing-page .testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text, #1a1a1a);
}

body.landing-page .testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted, #666);
  margin-top: 2px;
}

/* ── Mid-page CTA Band ─────────────────────────────────────────────────── */
body.landing-page .landing-cta-band {
  text-align: center;
  padding: 44px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d6b4a 50%, var(--primary-deep) 100%);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

body.landing-page .landing-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(201, 149, 107, 0.12), transparent),
    radial-gradient(ellipse 30% 40% at 80% 30%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

body.landing-page .landing-cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
  position: relative;
}

body.landing-page .landing-cta-band .cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
}

body.landing-page .landing-cta-band .button {
  background: #fff;
  color: var(--primary-deep);
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

body.landing-page .landing-cta-band .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

body.landing-page .cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  position: relative;
}

body.landing-page .cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

body.landing-page .cta-trust-item svg {
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── FAQ Section ───────────────────────────────────────────────────────── */
body.landing-page .faq-section {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-top: 32px;
}

body.landing-page .faq-section .availability-intro .card-kicker {
  color: var(--warm);
}

body.landing-page .faq-section .availability-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

body.landing-page .faq-section .optional-group {
  border-bottom: 1px solid rgba(26, 32, 44, 0.06);
  padding-bottom: 16px;
}

body.landing-page .faq-section .optional-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.landing-page .faq-section .optional-group summary {
  padding: 4px 0;
  font-size: 1.05rem;
  transition: color 200ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.landing-page .faq-section .optional-group summary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230a5039' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 300ms ease;
  float: none;
}

body.landing-page .faq-section .optional-group[open] summary::after {
  content: '';
  transform: rotate(180deg);
}

body.landing-page .faq-section .optional-group summary:hover {
  color: var(--primary);
}

body.landing-page .faq-section .optional-fields {
  padding-top: 8px;
  border-top: none;
}

body.landing-page .faq-section .optional-fields p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ── Next Available Section ────────────────────────────────────────────── */
body.landing-page .na-section {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.landing-page .na-banner {
  width: 100%;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

body.landing-page .na-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 6s ease;
}

body.landing-page .na-banner:hover img {
  transform: scale(1.04);
}

body.landing-page .na-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 24px;
}

body.landing-page .na-banner-overlay h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

body.landing-page .na-banner-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

body.landing-page .na-card-styled {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 20px 18px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page .na-card-styled:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

body.landing-page .na-card-time {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

body.landing-page .na-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 0.88rem;
}

body.landing-page .na-card-meta svg {
  flex-shrink: 0;
  opacity: 0.6;
}

body.landing-page .na-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  flex-wrap: wrap;
  gap: 6px;
}

body.landing-page .na-card-bottom .button-primary {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  min-height: unset;
}

body.landing-page .na-card-pricing {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

body.landing-page .na-card-pricing .member-price {
  color: #b8860b;
  font-weight: 600;
}

body.landing-page .na-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

body.landing-page .na-nav-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

body.landing-page .na-nav-btn:hover {
  border-color: var(--primary);
  background: var(--accent);
}

body.landing-page .na-counter-text {
  font-size: 0.82rem;
  color: #6b7280;
  min-width: 34px;
  text-align: center;
}

/* ── Landing Footer ────────────────────────────────────────────────────── */
.landing-footer {
  background: var(--footer-bg, #162420);
  border-radius: 28px;
  margin-top: 40px;
  padding: 48px 40px 32px;
  color: var(--footer-text);
}

.landing-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.95;
}

.footer-brand-tagline {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--footer-text);
  margin: 0 0 16px;
  max-width: 300px;
}

.footer-brand-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand-location svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-col h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--footer-text);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 200ms ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 200ms ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Landing Responsive ────────────────────────────────────────────────── */
@media (max-width: 980px) {
  body.landing-page .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  body.landing-page .how-steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  body.landing-page .how-steps-grid::before {
    display: none;
  }

  .landing-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  body.landing-page .cta-card {
    min-height: 520px;
    border-radius: 22px;
  }

  body.landing-page .cta-card-inner {
    min-height: 520px;
    padding: 28px 22px;
    overflow: hidden;
  }

  body.landing-page .hero-actions {
    flex-wrap: wrap;
  }

  body.landing-page .cta-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body.landing-page .services-section,
  body.landing-page .faq-section {
    padding: 22px 18px;
    border-radius: 22px;
  }

  body.landing-page .how-step-card {
    padding: 24px 20px;
  }

  body.landing-page .landing-cta-band {
    padding: 36px 20px;
    border-radius: 22px;
  }

  .landing-footer {
    padding: 36px 24px 28px;
    border-radius: 22px;
  }

  .landing-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  body.landing-page .na-banner {
    height: 180px;
    border-radius: 18px;
  }

  body.landing-page .massage-option::after {
    display: none;
  }
}
