/* ===================================
   Botox Canmore - Elegant Med-Spa Design System
   Soft, refined, airy. Cormorant Garamond + Jost.
   Ivory + blush + rose-taupe.
   =================================== */

:root {
  /* Palette */
  --ivory: #fbf7f4;
  --champagne: #f7f0ea;
  --blush: #f4e8e1;
  --blush-deep: #e8d5cc;
  --rose-taupe: #a06b4e;
  --rose-taupe-soft: #d4b5a2;
  --sage: #a8b5a0;
  --charcoal: #1c1815;
  --warm-gray: #564d46;
  --line: #ece4dd;
  --line-soft: #f1ebe5;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;

  /* Scale */
  --fs-display: clamp(3rem, 6.5vw, 5rem);
  --fs-h1: clamp(2.5rem, 5.5vw, 4rem);
  --fs-h2: clamp(2.25rem, 4.6vw, 3.5rem);
  --fs-h3: clamp(1.75rem, 2.8vw, 2.125rem);
  --fs-body: 1.1875rem;
  --fs-small: 1rem;
  --fs-eyebrow: 0.75rem;

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6rem;
  --s-8: 8rem;
  --s-9: 10rem;

  --container: 1240px;
  --container-narrow: 760px;
  --header-h: 96px;

  /* Soft corners */
  --radius: 4px;
  --radius-lg: 8px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--warm-gray);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; text-underline-offset: 4px; }
a:hover { color: var(--rose-taupe); }
button { cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-weight: 600;
}
h1 { font-size: var(--fs-display); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 1.375rem; font-weight: 600; line-height: 1.25; }

em, i { font-style: italic; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--rose-taupe); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: var(--rose-taupe);
  display: block;
  margin-bottom: var(--s-3);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--s-5); }
}
.container-narrow { max-width: var(--container-narrow); }

section { padding-block: var(--s-7); }
@media (min-width: 768px) {
  section { padding-block: var(--s-8); }
}
.section-tight { padding-block: var(--s-5); }

/* ---- Announcement bar ---- */
.announcement-bar {
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  padding: 0.625rem var(--s-3);
}
.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.announcement-bar a { color: var(--ivory); }
.announcement-bar a:hover { color: var(--rose-taupe-soft); }
.announcement-bar .hours { display: none; opacity: 0.7; }
@media (min-width: 640px) { .announcement-bar .hours { display: inline; } }

/* ---- Header ---- */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 244, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) 0;
  gap: var(--s-3);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.625rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo span { font-style: italic; color: var(--rose-taupe); font-weight: 300; }
.site-nav { display: none; gap: var(--s-5); }
.site-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--charcoal);
  padding-bottom: 0.25rem;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--rose-taupe);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.site-nav a:hover { color: var(--rose-taupe); }
.site-nav a:hover::after { width: 100%; }
.site-nav a[aria-current="page"] { color: var(--rose-taupe); }
.site-nav a[aria-current="page"]::after { width: 100%; }
@media (min-width: 900px) { .site-nav { display: flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--rose-taupe);
  color: var(--white);
  border-color: var(--rose-taupe);
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--ivory); }
.btn-outline {
  background: transparent;
  color: var(--rose-taupe);
  border-color: var(--rose-taupe);
}
.btn-outline:hover { background: var(--rose-taupe); color: var(--white); }
.btn-large { padding: 1.125rem 2.5rem; font-size: 0.75rem; }

.btn-call { display: none; }
@media (min-width: 480px) { .btn-call { display: inline-flex; } }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--ivory);
  padding-block: var(--s-6) var(--s-7);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
@media (min-width: 1024px) {
  .hero { padding-block: var(--s-7) var(--s-8); }
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: center;
  }
}
.hero-copy h1 { margin-bottom: var(--s-4); max-width: 14ch; }
.hero-copy .subhead {
  font-size: 1.25rem;
  color: var(--warm-gray);
  margin-bottom: var(--s-5);
  max-width: 32rem;
  line-height: 1.65;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero-copy .subhead { font-size: 1.375rem; }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.0625rem;
  color: var(--warm-gray);
  font-weight: 400;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 14px;
  height: 1px;
  background: var(--rose-taupe);
}
.hero-image {
  margin-top: var(--s-5);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blush);
  border-radius: var(--radius-lg);
}
@media (min-width: 1024px) {
  .hero-image { margin-top: 0; aspect-ratio: 4 / 5; height: auto; max-height: 620px; }
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Booking section ---- */
.booking-section { padding-block: var(--s-7); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: start;
}
@media (min-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: center;
  }
}
.booking-copy h2 { margin-bottom: var(--s-3); }
.booking-copy p {
  color: var(--warm-gray);
  font-size: 1.1875rem;
  line-height: 1.65;
  margin-bottom: var(--s-4);
  max-width: 32rem;
}
.booking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.booking-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--warm-gray);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.booking-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 18px;
  height: 1px;
  background: var(--rose-taupe);
}
.booking-list li strong {
  color: var(--charcoal);
  font-weight: 500;
  font-family: var(--font-heading);
  font-style: italic;
}
.booking-section .lead-form { max-width: none; }

/* ---- Lead form card ---- */
.lead-form {
  background: var(--white);
  padding: var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -20px rgba(184, 137, 107, 0.15);
  max-width: 30rem;
}
@media (min-width: 768px) {
  .lead-form { padding: var(--s-5); }
}
.lead-form-wide { max-width: 44rem; margin-inline: auto; }
.lead-form h3 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  margin-bottom: var(--s-1);
  color: var(--charcoal);
}
.lead-form .form-intro {
  color: var(--warm-gray);
  font-size: var(--fs-small);
  margin-bottom: var(--s-4);
  font-weight: 300;
}
.lead-form .form-grid { display: grid; gap: var(--s-3); }
@media (min-width: 540px) {
  .lead-form .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
.lead-form label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 0.9375rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23b8896b' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--rose-taupe);
  background: var(--white);
}
.lead-form input::placeholder, .lead-form textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.5;
}
.lead-form .full { grid-column: 1 / -1; }
.lead-form textarea { min-height: 90px; resize: vertical; line-height: 1.6; }
.lead-form .btn { width: 100%; padding: 1.125rem; font-size: 0.75rem; }
.lead-form .hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.lead-form .form-note {
  font-size: 0.75rem;
  color: var(--warm-gray);
  text-align: center;
  margin-top: var(--s-2);
  font-style: italic;
  font-weight: 300;
}
.form-success {
  padding: var(--s-5);
  background: var(--blush);
  border: 1px solid var(--rose-taupe-soft);
  border-radius: var(--radius-lg);
  color: var(--charcoal);
  text-align: center;
}
.form-success strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--s-2);
  color: var(--charcoal);
}
.form-success p { color: var(--warm-gray); }
.form-error {
  padding: var(--s-2);
  background: #fdf0ee;
  border: 1px solid #d99a8e;
  border-radius: var(--radius);
  color: #8c4438;
  font-size: 0.875rem;
  margin-bottom: var(--s-2);
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--charcoal);
  padding: var(--s-4) 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-3) var(--s-5);
  text-align: center;
}
.trust-bar span.trust-item {
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ivory);
}
.trust-bar .divider {
  display: none;
  width: 4px;
  height: 4px;
  background: var(--rose-taupe);
  border-radius: 50%;
}
@media (min-width: 900px) { .trust-bar .divider { display: block; } }

/* ---- Sections ---- */
.section-light { background: var(--ivory); }
.section-cream { background: var(--champagne); }
.section-blush { background: var(--blush); }
.section-ink { background: var(--charcoal); color: var(--ivory); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--ivory); }

.section-head { margin-bottom: var(--s-7); max-width: 48rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 { margin-bottom: var(--s-2); }
.section-head p {
  color: var(--warm-gray);
  font-size: 1.25rem;
  max-width: 42rem;
  line-height: 1.65;
  font-weight: 400;
}
.section-head.center p { margin-inline: auto; }

/* ---- Pillars ---- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
.pillar { display: flex; flex-direction: column; gap: var(--s-2); padding: var(--s-2) 0; }
.pillar-icon {
  width: 40px; height: 40px;
  color: var(--rose-taupe);
  margin-bottom: var(--s-3);
  stroke-width: 1;
  opacity: 0.85;
}
.pillar h3 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: var(--s-1);
  color: var(--charcoal);
}
.pillar p { color: var(--warm-gray); line-height: 1.7; font-weight: 400; font-size: 1.1875rem; }

/* ---- Treatments grid ---- */
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 640px) { .treatments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .treatments-grid { grid-template-columns: repeat(3, 1fr); } }
.treatment-card {
  background: var(--white);
  padding: var(--s-5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.treatment-card:hover {
  border-color: var(--rose-taupe-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -15px rgba(184, 137, 107, 0.2);
}
.treatment-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--charcoal);
}
.treatment-card p {
  color: var(--warm-gray);
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: var(--s-3);
  font-weight: 400;
}
.treatment-card .stat {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rose-taupe);
  font-weight: 400;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-soft);
}

/* ---- Process steps ---- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }
.process-step { display: flex; flex-direction: column; gap: var(--s-2); text-align: left; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--rose-taupe);
  color: var(--rose-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: var(--s-2);
}
.process-step h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}
.process-step p { color: var(--warm-gray); font-size: 1.125rem; font-weight: 400; line-height: 1.65; }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  padding: var(--s-5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--rose-taupe-soft);
  font-style: italic;
  line-height: 1;
  opacity: 0.5;
}
.review-card .stars {
  color: var(--rose-taupe);
  letter-spacing: 0.25em;
  font-size: 0.9375rem;
  margin-bottom: var(--s-3);
}
.review-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.3125rem;
  line-height: 1.55;
  margin-bottom: var(--s-4);
  flex-grow: 1;
  font-weight: 500;
}
.review-card cite {
  font-style: normal;
  font-weight: 400;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--charcoal);
}
.review-card cite .loc { color: var(--rose-taupe); margin-left: 0.5rem; font-weight: 300; }

/* ---- Mid-page form band ---- */
.form-band {
  background: var(--blush);
  text-align: center;
  position: relative;
}
.form-band h2 {
  margin-bottom: var(--s-3);
  max-width: 32rem;
  margin-inline: auto;
}
.form-band .subhead {
  color: var(--warm-gray);
  font-size: 1.1875rem;
  margin-bottom: var(--s-5);
  max-width: 34rem;
  margin-inline: auto;
  font-weight: 400;
}

/* ---- About preview / split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
.split-image {
  aspect-ratio: 4 / 5;
  background: var(--blush);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-bottom: var(--s-3); }
.split-copy p {
  color: var(--warm-gray);
  font-size: 1.25rem;
  margin-bottom: var(--s-3);
  line-height: 1.7;
  font-weight: 400;
}
.split-copy .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--rose-taupe);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: var(--s-2);
  transition: gap 0.2s;
}
.split-copy .link-arrow:hover { color: var(--charcoal); gap: 0.875rem; }

/* ---- Service area ---- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: start;
}
@media (min-width: 900px) { .area-grid { grid-template-columns: 5fr 7fr; gap: var(--s-7); } }
.area-list { display: grid; gap: 0; }
.area-list .area-row {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--rose-taupe-soft);
}
.area-list .area-row .dot {
  width: 6px; height: 6px;
  background: var(--rose-taupe);
  border-radius: 50%;
}
.area-list .area-row .name {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--charcoal);
}
.area-list .area-row .meta {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-style: italic;
  font-family: var(--font-heading);
}

/* ---- FAQ ---- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: var(--s-2);
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--rose-taupe-soft); }
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: var(--s-4);
  padding-right: 3.5rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--rose-taupe);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details > div {
  padding: 0 var(--s-4) var(--s-4);
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 400;
  font-size: 1.1875rem;
}

/* ---- Final CTA band ---- */
.cta-band {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding-block: var(--s-8);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 60%;
  height: 200%;
  background: var(--rose-taupe);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(100px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--ivory);
  margin-bottom: var(--s-4);
  max-width: 32rem;
  margin-inline: auto;
  font-weight: 300;
}
.cta-band .phone-link {
  display: block;
  margin-top: var(--s-4);
  color: rgba(251, 247, 244, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.6875rem;
  font-weight: 400;
}
.cta-band .phone-link a {
  color: var(--ivory);
  margin-left: 0.625rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}
.cta-band .phone-link a:hover { color: var(--rose-taupe-soft); }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(251, 247, 244, 0.7);
  padding-block: var(--s-7) var(--s-4);
  border-top: 1px solid rgba(251, 247, 244, 0.06);
  font-weight: 300;
}
.site-footer .footer-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-5); } }
.site-footer h4 {
  color: var(--rose-taupe-soft);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--s-3);
}
.site-footer .brand-block .footer-logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ivory);
  display: block;
  margin-bottom: var(--s-2);
}
.site-footer .brand-block .footer-logo span { font-style: italic; color: var(--rose-taupe-soft); font-weight: 300; }
.site-footer .brand-block p {
  color: rgba(251, 247, 244, 0.55);
  font-size: 0.9375rem;
  margin-bottom: var(--s-3);
  line-height: 1.7;
}
.site-footer .brand-block .phone {
  color: var(--ivory);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.625rem; font-size: 0.9375rem; color: rgba(251, 247, 244, 0.65); }
.site-footer li a { color: rgba(251, 247, 244, 0.65); }
.site-footer li a:hover { color: var(--ivory); }
.site-footer .hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(251, 247, 244, 0.65);
}
.site-footer .footer-bottom {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(251, 247, 244, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: 0.625rem;
  color: rgba(251, 247, 244, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.site-footer .footer-bottom a { color: rgba(251, 247, 244, 0.5); }
.site-footer .footer-bottom a:hover { color: var(--ivory); }
.site-footer .footer-bottom .legal-links { display: flex; gap: var(--s-3); }

/* ---- Sticky mobile CTA ---- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--charcoal);
  border-top: 1px solid rgba(251, 247, 244, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta a {
  padding: 1rem;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
}
.mobile-cta .call { background: var(--ivory); color: var(--charcoal); }
.mobile-cta .quote { background: var(--rose-taupe); color: var(--white); }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: var(--s-3) 0;
  font-size: 0.75rem;
  color: var(--warm-gray);
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
}
.breadcrumbs a { color: var(--warm-gray); }
.breadcrumbs a:hover { color: var(--rose-taupe); }
.breadcrumbs .sep { margin-inline: 0.75rem; color: var(--rose-taupe-soft); }
.breadcrumbs span[aria-current] { color: var(--charcoal); }

/* ---- Page hero (non-home) ---- */
.page-hero {
  background: var(--blush);
  padding-block: var(--s-7) var(--s-7);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: var(--blush-deep);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--rose-taupe); }
.page-hero h1 { margin-bottom: var(--s-3); max-width: 32rem; }
.page-hero p {
  color: var(--warm-gray);
  font-size: 1.4375rem;
  max-width: 42rem;
  font-weight: 400;
  line-height: 1.55;
}

/* ---- Long-form prose ---- */
.prose {
  max-width: 760px;
  margin-inline: auto;
  color: var(--warm-gray);
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 400;
}
.prose h1 {
  color: var(--charcoal);
  margin-bottom: var(--s-3);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 600;
}
.prose h2 {
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  color: var(--charcoal);
  font-size: 2.375rem;
  font-weight: 600;
}
.prose h3 {
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
  color: var(--charcoal);
  font-size: 1.625rem;
  font-weight: 600;
}
.prose p { margin-bottom: var(--s-3); }
.prose ul, .prose ol { padding-left: var(--s-3); margin-bottom: var(--s-3); }
.prose li { margin-bottom: 0.625rem; }
.prose a { color: var(--rose-taupe); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.prose a:hover { color: var(--charcoal); }
.prose em { color: var(--warm-gray); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
.contact-info h3 {
  font-size: 1.625rem;
  font-weight: 400;
  margin-bottom: var(--s-4);
  color: var(--charcoal);
}
.contact-info .contact-row {
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line-soft);
}
.contact-info .contact-row .label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rose-taupe);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact-info .contact-row a {
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
}
.contact-info .contact-row a:hover { color: var(--rose-taupe); }
.contact-info .contact-row p {
  color: var(--charcoal);
  font-size: 1.125rem;
  margin-top: 0.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Print */
@media print {
  .mobile-cta, .announcement-bar, .btn { display: none; }
}
