/* Lumina Aesthetic & Wellness — Patient Revenue Platform Preview
   CRM Solutions · Navy / gold clinical luxury */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --navy: #0F2647;
  --navy-mid: #1B3D6E;
  --accent: #939EBA;
  --gold: #C8A882;
  --gold-dark: #A8896A;
  --canvas: #F7F7F8;
  --white: #fff;
  --border: #E2E2E6;
  --text: #1A1A1F;
  --text-muted: #5C5F68;
  --success: #1A6B4A;
  --danger: #B42318;
  --shell: min(1200px, calc(100vw - 48px));
  --shell-narrow: min(900px, calc(100vw - 48px));
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 38, 71, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 38, 71, 0.1);
  --shadow-lg: 0 20px 48px rgba(15, 38, 71, 0.14);
  --radius: 2px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

/* ── Layout shells ── */

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell-narrow {
  width: var(--shell-narrow);
  margin-inline: auto;
}

/* ── Typography ── */

.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.section-lead {
  max-width: 56ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.section-header {
  margin-bottom: 40px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-lead,
.section-header.center .reviews-aggregate {
  margin-inline: auto;
}

.section-dark .section-title,
.section-dark .section-lead {
  color: var(--white);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .eyebrow {
  color: var(--gold);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 12px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ── Preview bar ── */

.preview-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-bar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.preview-bar strong {
  color: var(--gold);
  font-weight: 600;
}

.preview-bar a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.preview-bar a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Site header ── */

.site-header {
  position: sticky;
  top: 42px;
  z-index: 150;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.nav a {
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--navy-mid);
}

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

.nav .btn {
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(15, 38, 71, 0.94) 0%,
      rgba(15, 38, 71, 0.78) 38%,
      rgba(15, 38, 71, 0.42) 62%,
      rgba(15, 38, 71, 0.55) 100%
    ),
    linear-gradient(to top, rgba(15, 38, 71, 0.65) 0%, transparent 50%);
  pointer-events: none;
}

.hero .shell {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
}

.hero-location {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(200, 168, 130, 0.45);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

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

.hero-tagline {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}

.hero-lead {
  max-width: 44ch;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 680px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

/* ── Trust strip ── */

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Sections ── */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--gold);
}

/* ── Treatment grid ── */

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 168, 130, 0.45);
}

.treatment-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--canvas);
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card-img img {
  transform: scale(1.04);
}

.treatment-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
  gap: 8px;
}

.treatment-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.treatment-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.treatment-price {
  font-size: 14px;
  color: var(--text-muted);
}

.treatment-price em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.treatment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.points-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  background: rgba(200, 168, 130, 0.14);
  border: 1px solid rgba(200, 168, 130, 0.35);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Product grid ── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(147, 158, 186, 0.5);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 18px 18px 20px;
}

.product-brand {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card-body h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.product-price .points-chip {
  margin-left: 4px;
  vertical-align: middle;
}

/* ── Benefits ── */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.section-alt .benefit-card {
  background: var(--canvas);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  border-radius: var(--radius);
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}

.benefit-card p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.benefit-card .btn {
  margin-top: 4px;
}

/* ── Reviews ── */

.reviews-aggregate {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-muted);
}

.reviews-aggregate strong {
  color: var(--navy);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  font-style: normal;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.review-source {
  margin-top: 4px;
  font-size: 12px;
  color: var(--accent);
}

/* ── Lead form ── */

.lead-form {
  padding: 28px 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(27, 61, 110, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 88px;
}

/* ── Footer ── */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand .logo-main {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 32ch;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col h4 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

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

/* ── Page hero (inner pages) ── */

.page-hero {
  padding: 56px 0 44px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-title,
.page-hero h1 {
  max-width: 20ch;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}

.page-hero .section-lead,
.page-hero p {
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.page-hero p a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(200, 168, 130, 0.5);
  transition: color var(--transition), border-color var(--transition);
}

.page-hero p a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ── Booking wizard ── */

.booking-preview-note {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(200, 168, 130, 0.12);
  border: 1px solid rgba(200, 168, 130, 0.35);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.booking-wizard {
  padding: 32px 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.booking-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.step-dot span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: var(--canvas);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.step-dot.active {
  color: var(--navy);
  font-weight: 600;
}

.step-dot.active span,
.step-dot.done span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.step-dot.done {
  color: var(--text-muted);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
}

.booking-step > p {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.treatment-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.treatment-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  background: var(--canvas);
  border: 1px solid var(--border);
  text-align: left;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.treatment-option strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.treatment-option span {
  font-size: 13px;
  color: var(--text-muted);
}

.treatment-option:hover {
  border-color: var(--accent);
}

.treatment-option.selected {
  background: rgba(15, 38, 71, 0.04);
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.cal-day {
  padding: 14px 10px;
  background: var(--canvas);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.cal-day:hover {
  border-color: var(--navy-mid);
}

.cal-day.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.time-slot {
  padding: 14px 12px;
  background: var(--canvas);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.time-slot:hover {
  border-color: var(--navy-mid);
}

.time-slot.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.booking-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.booking-success {
  padding: 48px 24px;
  text-align: center;
}

.booking-success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(26, 107, 74, 0.12);
  border: 2px solid var(--success);
  color: var(--success);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
}

.booking-success h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
}

.booking-success p {
  max-width: 48ch;
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Gift cards ── */

.gift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.gift-preview-card {
  position: sticky;
  top: 130px;
  padding: 40px 36px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(200, 168, 130, 0.3);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.gift-preview-card .logo-main {
  margin-bottom: 24px;
  font-size: 36px;
  color: var(--white);
}

.gift-amount {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.gift-message {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.gift-recipient {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.gift-recipient span {
  color: var(--gold);
  font-weight: 500;
}

.denom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.denom {
  padding: 12px 8px;
  background: var(--canvas);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.denom:hover {
  border-color: var(--gold-dark);
}

.denom.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Points / rewards table ── */

.points-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 14px;
}

.points-table th,
.points-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.points-table th {
  background: var(--canvas);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.points-table tbody tr:last-child td {
  border-bottom: 0;
}

.points-table tbody tr:hover td {
  background: rgba(247, 247, 248, 0.6);
}

.points-earned {
  font-weight: 600;
  color: var(--success);
}

/* ── Features / compare ── */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.compare-col {
  padding: 28px 26px;
  border: 1px solid var(--border);
  background: var(--white);
}

.compare-col.before {
  background: #FFF8F6;
  border-color: #F0C7C0;
}

.compare-col.after {
  background: #F3FAF6;
  border-color: #B7E0CC;
}

.compare-col h3 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-col.before h3 {
  color: var(--danger);
}

.compare-col.after h3 {
  color: var(--success);
}

.compare-col ul {
  list-style: none;
}

.compare-col li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.compare-col li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 168, 130, 0.4);
}

.feature-card-icon {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}

.feature-card p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  border-bottom: 1px solid rgba(27, 61, 110, 0.3);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.feature-card a:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ── Homepage layout helpers ── */

.team-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

#book-cta .shell {
  display: grid;
  gap: 40px;
  align-items: start;
}

/* ── Responsive ── */

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  #book-cta .shell {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .benefits-grid[style*="margin-bottom"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .site-header {
    top: 0;
  }

  .preview-bar .shell {
    min-height: auto;
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .site-header .shell {
    position: relative;
    flex-wrap: wrap;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-of-type {
    border-bottom: 0;
  }

  .nav a.active::after {
    display: none;
  }

  .nav .btn {
    margin: 8px 0 0;
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-strip .shell {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

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

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

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

  .gift-layout {
    grid-template-columns: 1fr;
  }

  .gift-preview-card {
    position: static;
    order: -1;
  }

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

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .treatment-select-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .denom-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-wizard {
    padding: 24px 20px 28px;
  }

  .booking-progress {
    gap: 10px;
  }

  .step-dot span {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

  .hero .shell {
    padding: 64px 0 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip .shell {
    grid-template-columns: 1fr;
  }

  .treatment-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .booking-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .booking-nav .btn {
    width: 100%;
  }

  .lead-form {
    padding: 22px 20px 26px;
  }
}
