/*
 * Central Coast Red Coral Spa — Custom Theme
 * Extracted and extended from _INPUT/designs/design-3.html
 * Design: editorial, minimalist, earth tones, zero border-radius, max weight 500
 */

/* Skip-to-content link (a11y) */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-bg-dark, #0c2340);
  color: var(--color-text-light, #fff);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.skip-to-content:focus {
  top: 0.5rem;
  outline: 2px solid var(--color-accent-warm, #c4856a);
  outline-offset: 2px;
}

/* Global focus-visible styles for keyboard navigation (a11y) */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent-warm, #c4856a);
  outline-offset: 2px;
}

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap");

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg: #f2f4f0;
  --color-bg-sage: #e4e8e2;
  --color-bg-moss: #ccd3cb;
  --color-bg-stone: #b5bfb3;
  --color-bg-dark: #0c2340;
  --color-accent: #1a3f6f;
  --color-accent-warm: #d5a073;
  --color-accent-sage: #2e5c8e;
  --color-text: #2c3545;
  --color-text-muted: #5a6675;
  --color-heading: #0c2340;
  --color-white: #ffffff;
  --color-text-light: #f2f4f0;
  --color-line: rgba(26, 63, 111, 0.12);
  --color-accent-warm-hover: #c38a65;
  --radius-soft: 18px;
  --radius-large: 26px;
  --radius-pill: 999px;

  --font-display: "Josefin Sans", sans-serif;
  --font-body: "Source Serif 4", serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.08rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--color-heading);
}

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

ul,
ol {
  padding-left: 1.5rem;
}

/* Rounded corners refresh */
input,
select,
textarea,
.service-card,
.service-overview-card,
.modality-card,
.review-card,
.testimonial-card,
.contact-info-block,
.map-embed,
.page-header,
.service-detail-header {
  border-radius: var(--radius-soft);
}

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom,
.hero-cta {
  display: inline-block;
  background: var(--color-accent-warm);
  color: var(--color-white);
  padding: 1rem 3rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary-custom:hover,
.hero-cta:hover {
  background: var(--color-accent-warm-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 1rem 3rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-outline-custom:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-group-hero {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   NAV — PROGRESSIVE DISCLOSURE MEGA-MENU
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s;
}
.site-nav.scrolled {
  background: rgba(240, 246, 248, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-line);
}

/* Scrolled state: dark text, normal logo, accent book-now */
.site-nav.scrolled .nav-logo {
  height: 75px;
}

.site-nav.scrolled .nav-links a,
.site-nav.scrolled .nav-links button.nav-link-btn {
  color: var(--color-text);
}

.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links button.nav-link-btn:hover,
.site-nav.scrolled .nav-links a.active {
  color: var(--color-accent);
}

.site-nav.scrolled .nav-book {
  background: var(--color-accent-warm) !important;
  border-color: var(--color-accent-warm) !important;
  color: #fff !important;
}

.site-nav.scrolled .nav-book:hover {
  background: var(--color-accent-warm-hover) !important;
  border-color: var(--color-accent-warm-hover) !important;
  color: var(--color-white) !important;
}

.site-nav.scrolled .mobile-toggle {
  color: var(--color-heading);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 100px;
  width: auto;
  transition: height 0.4s;
}

/* Homepage only: bigger logo at top until the nav shrinks on scroll */
body[data-page="home"] .site-nav:not(.scrolled) .nav-logo {
  height: 150px;
}
@media (max-width: 767px) {
  body[data-page="home"] .site-nav:not(.scrolled) .nav-logo {
    height: 115px;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-links button.nav-link-btn {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a:hover,
.nav-links button.nav-link-btn:hover,
.nav-links a.active {
  color: rgba(255, 255, 255, 0.65);
}

.nav-book {
  background: var(--color-accent-warm) !important;
  border: 1px solid var(--color-accent-warm) !important;
  padding: 0.5rem 1.5rem !important;
  color: #fff !important;
  transition: all 0.3s !important;
}
.nav-book:hover {
  background: var(--color-accent-warm-hover) !important;
  border-color: var(--color-accent-warm-hover) !important;
  color: #fff !important;
}

/* MEGA MENU DROPDOWN */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-top: 2px solid var(--color-accent);
  padding: 0;
  min-width: 680px;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.1);
  z-index: 200;
}
.mega-menu.is-open {
  display: block;
}

.mega-menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 0;
  padding: 1.5rem;
}

.mega-group {
  border-right: 1px solid var(--color-line);
  padding: 0 1.5rem;
}
.mega-group:first-child {
  padding-left: 0;
}

.mega-group-title {
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
  user-select: none;
}

.mega-group-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-group-links li {
  margin-bottom: 0.4rem;
}
.mega-group-links a,
.nav-links .mega-group-links a,
.site-nav.scrolled .mega-group-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  transition: color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.mega-group-links a:hover,
.nav-links .mega-group-links a:hover,
.site-nav.scrolled .mega-group-links a:hover {
  color: var(--color-accent);
}

/* Mega-menu image panel */
.mega-menu-image {
  padding-left: 1.5rem;
  display: flex;
  align-items: stretch;
}
.mega-menu-image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

/* Mega-menu footer bar */
.mega-menu-footer {
  display: flex;
  gap: 2rem;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--color-line);
  background: var(--color-bg-sage);
}
.mega-menu-footer a,
.site-nav.scrolled .mega-menu-footer a,
.nav-links .mega-menu-footer a {
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.mega-menu-footer a:hover,
.site-nav.scrolled .mega-menu-footer a:hover,
.nav-links .mega-menu-footer a:hover {
  color: var(--color-heading);
}
.mega-menu-footer a .bi {
  font-size: 0.55rem;
}

/* MOBILE NAV */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #fff;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 1001;
  padding: 2rem;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav-overlay.is-open {
  display: flex;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-heading);
  align-self: flex-end;
  margin-bottom: 1.25rem;
  line-height: 1;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-nav-close:hover,
.mobile-nav-close:focus {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links > li {
  border-bottom: 1px solid var(--color-line);
}

.mobile-nav-links > li > a,
.mobile-nav-links > li > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-heading);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-group-links {
  list-style: none;
  padding: 0 0 0.75rem 1rem;
  margin: 0;
  display: none;
}
.mobile-group-links.is-open {
  display: block;
}
.mobile-group-links a {
  display: block;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-group-heading {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.75rem 0 0.3rem;
}

.mobile-book-cta {
  display: block;
  text-align: center;
  background: var(--color-accent-warm);
  color: var(--color-white) !important;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-top: 2rem;
  text-decoration: none;
}

/* ============================================================
   HERO — EDITORIAL STACKED
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 1rem 6rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 30% 70%,
      rgba(26, 63, 111, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(12, 35, 64, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-accent-warm);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
}

/* Fade-in animations — only apply when JS adds .animated class to hero */
.hero.animated .hero-eyebrow {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}
.hero.animated .hero-title {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.4s forwards;
}
.hero.animated .hero-divider {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.6s forwards;
}
.hero.animated .hero-sub {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.7s forwards;
}
.hero.animated .hero-cta {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.9s forwards;
}

.hero-title .accent {
  color: var(--color-accent-sage);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  padding-bottom: 0.12em;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 2rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 3rem;
}

.hero-cta {
  /* animation handled by .hero.animated .hero-cta rule */
}

/* Hero with video background */
.hero--has-video {
  position: relative;
  background: var(--color-bg-dark);
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(12, 35, 64, 0.55), rgba(12, 35, 64, 0.45));
  z-index: 1;
}
.hero--has-video .hero-content {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero--has-video.animated .hero-content {
  opacity: 1;
}

/* Hero with background image */
.hero--has-bg {
  background-size: cover;
  background-position: center;
}
.hero--has-bg::before {
  background: none;
}
.hero--has-bg .hero-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.hero--has-bg .hero-title {
  color: #fff;
}
.hero--has-bg .hero-title .accent {
  color: rgba(255, 255, 255, 0.85);
}
.hero--has-bg .hero-divider {
  background: rgba(255, 255, 255, 0.5);
}
.hero--has-bg .hero-sub {
  color: rgba(255, 255, 255, 0.8);
}
.hero--has-bg .hero-cta {
  background: var(--color-accent-warm);
  color: #fff;
}
.hero--has-bg .hero-cta:hover {
  background: var(--color-accent-warm-hover);
  color: #fff;
}
.hero--has-bg .hero-cta-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #fff !important;
}
.hero--has-bg .hero-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* ============================================================
   PAGE HEADER — INNER PAGES
   ============================================================ */
.page-header {
  padding: 9rem 0 5rem;
  text-align: center;
  background: var(--color-bg);
  position: relative;
  border-bottom: 1px solid var(--color-line);
}

.page-header.bg-sage {
  background: var(--color-bg-sage);
}
.page-header.bg-moss {
  background: var(--color-bg-moss);
}

.page-header-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.page-header-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}

.page-header-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* Page header with background image */
.page-header--has-bg {
  background-size: cover;
  background-position: center;
  border-bottom: none;
}
.page-header--has-bg .page-header-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.page-header--has-bg .page-header-title {
  color: #fff;
}
.page-header--has-bg .page-header-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SERVICE DETAIL HEADER
   ============================================================ */
.service-detail-header {
  padding: 9rem 0 5rem;
  background: var(--color-bg-sage);
  border-bottom: 1px solid var(--color-line);
}

.service-detail-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.service-detail-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

.service-detail-description {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.7rem;
}

.service-detail-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.service-detail-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-accent);
  letter-spacing: 1px;
  font-weight: 400;
}

.service-detail-duration {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
}

.service-detail-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Service detail header with background image */
.service-detail-header--has-bg {
  background-size: cover;
  background-position: center;
  border-bottom: none;
}
.service-detail-header--has-bg .service-detail-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.service-detail-header--has-bg .service-detail-title {
  color: #fff;
}
.service-detail-header--has-bg .service-detail-description {
  color: rgba(255, 255, 255, 0.8);
}
.service-detail-header--has-bg .service-detail-price {
  color: rgba(255, 255, 255, 0.9);
}
.service-detail-header--has-bg .service-detail-duration {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   IMAGE BAND
   ============================================================ */
.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  height: 400px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.image-band img:hover {
  transform: scale(1.03);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 7rem 0;
  background: var(--color-bg-sage);
}

.about-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.about-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.about-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.about-section--home .about-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center top;
}

.about-credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.credential-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-accent-warm);
  flex-shrink: 0;
}

/* Custom coral icon for credentials — uses /images/red-coral-only.webp */
.icon-coral::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-color: transparent;
  background-image: url("/images/red-coral-only.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-image: none;
  mask-image: none;
}

.about-section--home .icon-coral::before {
  width: 2.15em;
  height: 2.15em;
  background-color: transparent;
  background-image: url("/images/red-coral-only.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-image: none;
  mask-image: none;
}

.credential-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text);
}

/* Credentials under image variant */
.about-credentials--under-image {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 575px) {
  .about-credentials--under-image {
    grid-template-columns: 1fr;
  }
}

.about-signoff-wrap {
  margin-top: 2.25rem;
}

.about-signoff {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.5px;
  color: var(--color-accent-warm, #c4856a);
  margin-bottom: 0.2rem;
}

.about-signature {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-accent-warm, #c4856a);
  margin-bottom: 0;
}

.about-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 0.25rem;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.about-cta:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

/* ============================================================
   SERVICE ROWS
   ============================================================ */
.services-section {
  padding: 4rem 0;
}

/* --- Service Card Grid (redesigned from rows) --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--color-line);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  overflow: hidden;
  background: var(--color-white);
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(12, 35, 64, 0.1);
  transform: translateY(-3px);
}

.service-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__img--placeholder {
  background: var(--color-bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__placeholder-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--color-accent-warm);
  opacity: 0.35;
}

.service-card__body {
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.service-card__cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.service-card__cta i {
  transition: transform 0.3s;
  font-size: 0.7rem;
}
.service-card:hover .service-card__cta {
  gap: 0.75rem;
}
.service-card:hover .service-card__cta i {
  transform: translateX(3px);
}

/* Legacy class aliases (keep for backward compat if referenced elsewhere) */
.service-row {
  display: none;
}

/* ============================================================
   SERVICE OVERVIEW CARDS
   ============================================================ */
.service-cards-grid,
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}

.services-overview-section {
  padding: 5rem 0;
}

.service-overview-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
  text-decoration: none;
  display: block;
}

.service-overview-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
}

.service-overview-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  position: relative;
}
.service-overview-card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(12, 35, 64, 0.25));
  pointer-events: none;
}
.service-overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.service-overview-card-body {
  padding: 1.75rem;
}

.service-overview-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.service-overview-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-overview-card-link {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.service-overview-card:hover .service-overview-card-link {
  gap: 0.75rem;
}

/* ============================================================
   BEFORE/AFTER GRID
   ============================================================ */
.before-after-section {
  padding: 7rem 0;
  background: var(--color-bg);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

.before-after-item {
  position: relative;
  overflow: hidden;
}

.before-after-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.before-after-item:hover img {
  transform: scale(1.03);
}

.before-after-caption {
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

/* Featured B&A (homepage — 3 columns desktop, 2 tablet) */
.before-after-featured {
  padding: 7rem 0;
  background: var(--color-bg);
}

.before-after-featured .before-after-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.before-after-featured .before-after-item img {
  height: 360px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 7rem 0;
  background: var(--color-bg-sage);
}

.testimonial-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
}

/* Reviews page: wider cards, max 2 columns for longer quotes */
body[data-page="reviews"] .testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--color-bg);
  padding: 2.5rem;
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: var(--color-line);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background: var(--color-accent-sage);
}

.testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
}

/* Featured Review (legacy — kept for about page if reused) */
.featured-review {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.featured-review .section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 2rem;
}
.featured-quote {
  border: none;
  margin: 0;
  padding: 0;
}
.featured-quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-heading);
  margin-bottom: 1rem;
}
.featured-cite {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  font-style: normal;
  display: block;
  margin-top: 1.5rem;
}

/* ============================================================
   REVIEWS LIST — Single-column cards, 50/50 split for photo cards
   ============================================================ */
.reviews-list-section {
  padding: 7rem 0;
  background: var(--color-bg-sage);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0 auto;
}

/* Base review card */
.review-card {
  background: var(--color-bg);
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.review-card:hover {
  border-color: var(--color-line);
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background: var(--color-accent-sage);
}

/* Text-only card — padded normally */
.review-card:not(.review-card--with-photo) {
  padding: 1.5rem;
}

/* Photo card — 50/50 horizontal split */
.review-card--with-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.review-card--with-photo::before {
  display: none;
}

.review-card-photo {
  position: relative;
  min-height: 280px;
}
.review-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-content {
  display: flex;
  align-items: center;
  padding: 2.5rem;
}

.review-card-body .testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-heading);
  margin-bottom: 0;
  line-height: 1.65;
}

.review-card-body .testimonial-author {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
}

/* Responsive — stack photo cards on mobile */
@media (max-width: 768px) {
  .review-card--with-photo {
    grid-template-columns: 1fr;
  }
  .review-card-photo {
    min-height: 220px;
  }
  .reviews-list {
    gap: 2rem;
  }
}

/* Review External Links */
.review-links-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.review-links-section .section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.review-links-section .section-title {
  margin-bottom: 0.5rem;
}
.review-links-subtitle {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}
.review-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.review-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-line);
  transition: all 0.3s;
}
.review-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.review-link span {
  margin-left: 0.5rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 1.5rem 0;
  background: var(--color-bg-dark);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 3rem;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  vertical-align: middle;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 7rem 0;
  text-align: center;
}

.cta-section--has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text-light, #f2f4f0);
}

.cta-section--has-bg .cta-title {
  color: var(--color-text-light, #f2f4f0);
}

.cta-section--has-bg .cta-sub {
  color: rgba(242, 244, 240, 0.7);
}

.cta-section--has-bg .hero-cta {
  background: var(--color-accent-warm, #c4856a);
  color: var(--color-bg-dark, #0c2340);
  border-color: var(--color-accent-warm, #c4856a);
}

.cta-section--has-bg .hero-cta:hover {
  background: transparent;
  color: var(--color-text-light, #f2f4f0);
}

.cta-section--has-bg .hero-cta-outline {
  color: var(--color-text-light, #f2f4f0) !important;
  border-color: rgba(242, 244, 240, 0.4) !important;
}

.cta-section--has-bg .hero-cta-outline:hover {
  background: var(--color-text-light, #f2f4f0) !important;
  color: var(--color-bg-dark, #0c2340) !important;
}

.cta-section.bg-sage {
  background: var(--color-bg-sage);
}
.cta-section.bg-dark {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
}
.cta-section.bg-dark .cta-title {
  color: var(--color-white);
}
.cta-section.bg-dark .cta-sub {
  color: rgba(255, 255, 255, 0.55);
}

.cta-signoff {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: 0.5px;
  color: var(--color-accent-warm, #c4856a);
  margin-top: 2.5rem;
  margin-bottom: 0.25rem;
}

.cta-signature {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-accent-warm, #c4856a);
  margin-top: 0;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-sub {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  text-wrap: pretty;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-phone-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 7rem 0;
  background: var(--color-bg);
}

.faq-list {
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 400;
  transition: color 0.3s;
}

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

.faq-question .faq-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.3s;
}

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

.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 640px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-section {
  padding: 5rem 0;
  background: var(--color-bg-sage);
}

.pricing-table {
  max-width: 540px;
  margin: 0 auto;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  gap: 1rem;
}
.pricing-row:first-child {
  border-top: 1px solid var(--color-line);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  font-weight: 400;
}

.pricing-duration {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex: 1;
  text-align: center;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 1px;
  text-align: right;
  flex-shrink: 0;
}

.pricing-book-link {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.4rem 1.2rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.pricing-book-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--color-bg);
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-bg-stone);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(26, 63, 111, 0.25);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3F6F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border: 1px solid var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}
.form-submit:hover {
  background: transparent;
  color: var(--color-bg-dark);
}

/* Contact info block */
.contact-info-block {
  padding: 2rem;
  background: var(--color-bg-sage);
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.contact-info-item .bi {
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--color-text);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--color-accent);
}

.map-embed {
  margin-top: 3rem;
  border: 1px solid var(--color-line);
  overflow: hidden;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ============================================================
   MODALITY CARDS
   ============================================================ */
.modalities-section {
  padding: 7rem 0;
  background: var(--color-bg);
}

.modality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}

.modality-card {
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition: border-color 0.3s;
}

.modality-card:hover {
  border-color: var(--color-accent);
}

.modality-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.modality-card-body {
  padding: 1.5rem;
}

.modality-card-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.modality-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modality-card-link {
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
}

/* ============================================================
   CONTENT BLOCK (long-form service content)
   ============================================================ */
.content-section {
  padding: 5rem 0;
  background: var(--color-bg);
}

.content-section.bg-sage {
  background: var(--color-bg-sage);
}

.content-block {
  padding: 0.5rem;
  margin: 0 auto;
}

.content-block h2,
.content-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  letter-spacing: 1px;
}

.content-block h2:first-child,
.content-block h3:first-child {
  margin-top: 0;
}

.content-block p {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.content-block ul,
.content-block ol {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.content-block li {
  margin-bottom: 0.4rem;
}

/* Content + image side-by-side layout */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-with-image.image-right .content-block {
  order: 1;
}
.content-with-image.image-right .content-image {
  order: 2;
}
.content-with-image.image-left .content-block {
  order: 2;
}
.content-with-image.image-left .content-image {
  order: 1;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================================
   CONTRAINDICATION SECTION (redesigned)
   ============================================================ */
.contraindication-section {
  padding: 5rem 0;
}

.contra-card {
  max-width: 820px;
  margin: 0 auto;
}

.contra-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contra-header .section-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.contraindication-section .contra-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-heading);
  margin: 0;
}

.contra-body > p:first-child {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contra-body ul {
  columns: 2;
  column-gap: 2.5rem;
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.contra-body li {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.contra-note {
  background: var(--color-bg-sage);
  padding: 1.5rem 2rem;
  margin-top: 1.25rem;
}

.contra-note strong:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.contra-note p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 767px) {
  .contra-body ul {
    columns: 1;
  }
}

/* ============================================================
   CREDENTIAL LIST (About page — full certifications)
   ============================================================ */
.credential-list-section {
  padding: 6rem 0;
  background: var(--color-bg-sage);
}

.credential-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.credential-list-item {
  background: var(--color-bg-sage);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.credential-list-item .bi {
  color: var(--color-accent-sage);
  font-size: 1rem;
  flex-shrink: 0;
}

.credential-list-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-heading);
  font-weight: 400;
  display: block;
}

.credential-list-number {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   GIFT CERTIFICATE SECTION
   ============================================================ */
.gift-cert-section {
  padding: 7rem 0;
  text-align: center;
  background: var(--color-bg-sage);
}

.gift-cert-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.gift-cert-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.gift-cert-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-dark);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-signoff {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent-warm);
  margin-bottom: 1.5rem;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  margin-right: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--color-accent-warm);
  color: var(--color-accent-warm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section {
  padding: 5rem 0 7rem;
  background: var(--color-bg);
}

.privacy-block {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-block h2 {
  font-size: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.privacy-block p,
.privacy-block li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ============================================================
   VISUAL DESIGN ELEMENTS
   ============================================================ */

/* Section ornament — centered accent line with diamond */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
}
.section-ornament::before,
.section-ornament::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}
.section-ornament .ornament-icon {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Enhanced card hover effects */
.service-overview-card:hover {
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.12);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.modality-card {
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.modality-card:hover {
  box-shadow: 0 6px 24px rgba(12, 35, 64, 0.1);
  transform: translateY(-2px);
}

/* Accent left bar for blockquotes and callouts */
blockquote,
.callout-block {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-muted);
}

/* Pull quote style */
.pull-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-sage);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 3rem 0;
  line-height: 1.6;
}

/* Pull-quote section (standalone component) */
.pull-quote-section {
  padding: var(--section-padding-y, 2rem) 0;
  background-color: var(--color-bg-sage);
}

.pull-quote-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote-inner .pull-quote {
  border-left: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 1.3rem;
  color: var(--color-heading);
}
.pull-quote-author {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  font-style: normal;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: var(--color-bg-dark, #0c2340);
  color: var(--color-text-light, #f2f4f0);
}
.stats-number {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--color-accent-warm, #c4856a);
}
.stats-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted, #5a6675);
}
@media (max-width: 575px) {
  .stats-number {
    font-size: 2.25rem;
  }
  .stats-section {
    padding: 3.5rem 0;
  }
}

/* Dark testimonials variant */
.testimonials-dark {
  background: var(--color-bg-dark, #0c2340) !important;
  padding: 6rem 0;
}
.testimonials-dark .section-eyebrow {
  color: var(--color-accent-warm, #c4856a);
}
.testimonials-dark .section-title,
.testimonials-dark h2 {
  color: var(--color-text-light, #f2f4f0);
}
.testimonials-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.testimonials-dark .testimonial-card p {
  color: var(--color-text-light, #f2f4f0);
}
.testimonials-dark .testimonial-card .testimonial-author {
  color: var(--color-accent-warm, #c4856a);
}
.testimonials-dark .btn {
  color: var(--color-text-light, #f2f4f0);
  border-color: var(--color-accent-warm, #c4856a);
}
.testimonials-dark .btn:hover {
  background: var(--color-accent-warm, #c4856a);
  color: var(--color-bg-dark, #0c2340);
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-carousel {
  padding: 6rem 0;
  background: var(--color-bg);
}

.testimonials-carousel .carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-carousel .carousel__track {
  position: relative;
  transition: height 0.4s ease;
  overflow: hidden;
}

.testimonials-carousel .carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
  text-align: center;
}

.testimonials-carousel .carousel__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.testimonials-carousel .carousel__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.testimonials-carousel .carousel__author {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent-warm, #c4856a);
  margin-top: 1rem;
}

.testimonials-carousel .carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonials-carousel .carousel__btn {
  background: none;
  border: 1px solid var(--color-line, rgba(31, 108, 127, 0.15));
  color: var(--color-text);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-carousel .carousel__btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.testimonials-carousel .carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-carousel .carousel__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.testimonials-carousel .carousel__dot--active {
  background: var(--color-accent-warm, #c4856a);
  border-color: var(--color-accent-warm, #c4856a);
}

/* Dark variant for carousel */
.testimonials-carousel.testimonials-dark {
  background: var(--color-bg-dark, #0c2340);
}

.testimonials-carousel.testimonials-dark .section-eyebrow {
  color: var(--color-accent-warm, #c4856a);
}

.testimonials-carousel.testimonials-dark .section-title {
  color: var(--color-text-light, #f2f4f0);
}

.testimonials-carousel.testimonials-dark .carousel__quote p {
  color: var(--color-text-light, #f2f4f0);
}

.testimonials-carousel.testimonials-dark .carousel__btn {
  color: var(--color-text-light, #f2f4f0);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonials-carousel.testimonials-dark .carousel__btn:hover {
  background: var(--color-text-light, #f2f4f0);
  color: var(--color-bg-dark, #0c2340);
}

.testimonials-carousel.testimonials-dark .carousel__dot {
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonials-carousel.testimonials-dark .hero-cta-outline {
  color: var(--color-text-light, #f2f4f0);
  border-color: var(--color-accent-warm, #c4856a);
}

.testimonials-carousel.testimonials-dark .hero-cta-outline:hover {
  background: var(--color-accent-warm, #c4856a);
  color: var(--color-bg-dark, #0c2340);
}

/* Carousel with background image */
.testimonials-carousel--has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-carousel--has-bg .section-eyebrow {
  color: var(--color-accent-warm, #c4856a);
}

.testimonials-carousel--has-bg .section-title {
  color: #fff;
}

.testimonials-carousel--has-bg .carousel__quote p {
  color: #fff;
}

.testimonials-carousel--has-bg .carousel__author {
  color: var(--color-accent-warm, #c4856a);
}

.testimonials-carousel--has-bg .carousel__btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.testimonials-carousel--has-bg .carousel__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.testimonials-carousel--has-bg .carousel__dot {
  border-color: rgba(255, 255, 255, 0.35);
}

.testimonials-carousel--has-bg .carousel__dot--active {
  background: var(--color-accent-warm, #c4856a);
  border-color: var(--color-accent-warm, #c4856a);
}

.testimonials-carousel--has-bg .hero-cta-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.testimonials-carousel--has-bg .hero-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .testimonials-carousel .carousel__quote p {
    font-size: 1rem;
  }
}

/* Image gallery grid (about page, etc.) */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.image-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.3s;
}
.image-gallery img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}
@media (max-width: 575px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-gallery img {
    height: 160px;
  }
}

@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card__img {
    aspect-ratio: 16 / 9;
  }
}

/* Parallax background section */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 246, 248, 0.85);
  pointer-events: none;
}
.parallax-section > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* ============================================================
   UTILITY SECTIONS
   ============================================================ */
.section-divider {
  height: 1px;
  background: var(--color-line);
  border: none;
}

.spacer-sm {
  padding: 2rem 0;
}
.spacer-md {
  padding: 4rem 0;
}
.spacer-lg {
  padding: 7rem 0;
}

/* Bootstrap overrides — remove visual component defaults */
.card {
  background: transparent;
  border: 1px solid var(--color-line);
}
.accordion-button {
  font-family: var(--font-display);
}
.btn {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Suppress Bootstrap's border-radius on specific elements that also need it */
.form-control,
.form-select,
.btn,
.card,
.alert,
.badge,
.modal-content,
.dropdown-menu {
  border-radius: 0 !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤991px)
   ============================================================ */
@media (max-width: 991px) {
  .nav-links {
    display: none !important;
  }
  .mobile-toggle {
    display: block;
  }

  .image-band {
    height: 250px;
  }

  /* Service card grid — handled by 767px breakpoint above */

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .content-with-image.image-right .content-block,
  .content-with-image.image-left .content-block {
    order: 2;
  }
  .content-with-image.image-right .content-image,
  .content-with-image.image-left .content-image {
    order: 1;
  }

  .content-image img {
    height: 280px;
  }

  .mega-menu {
    min-width: 300px;
  }
  .mega-menu-groups {
    grid-template-columns: 1fr;
  }
  .mega-group {
    border-right: none;
    border-bottom: 1px solid var(--color-line);
    padding: 0.75rem 0;
  }
  .mega-group:first-child {
    padding-left: 0;
  }
  .mega-menu-image {
    display: none;
  }
  .mega-menu-footer {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .service-detail-header .row {
    flex-direction: column;
  }
  .service-detail-image {
    height: 260px;
  }

  .before-after-featured .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .before-after-featured .before-after-item img {
    height: 300px;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (≤575px)
   ============================================================ */
@media (max-width: 575px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .image-band {
    grid-template-columns: 1fr;
    height: auto;
  }
  .image-band img {
    height: 200px;
  }

  .about-img {
    height: 300px;
  }

  .about-section--home .about-img {
    height: auto;
    max-height: 420px;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .before-after-grid,
  .before-after-featured .before-after-grid {
    grid-template-columns: 1fr;
  }
  .modality-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 7rem 0 3.5rem;
  }
  .service-detail-header {
    padding: 7rem 0 3.5rem;
  }

  .pricing-table {
    max-width: 100%;
  }

  .pricing-row {
    flex-wrap: wrap;
  }

  .pricing-book-link {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .btn-group-hero {
    flex-direction: column;
    align-items: center;
  }
  .btn-group-hero a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .service-detail-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================================
   HERO — DUAL CTA GROUP
   ============================================================ */
.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero.animated .hero-cta-group {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.9s forwards;
}

.hero-cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent);
  padding: 1rem 3rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  transition: all 0.3s;
}
.hero-cta-outline:hover {
  background: var(--color-accent);
  color: var(--color-white) !important;
}

/* ============================================================
   TESTIMONIAL PHOTO
   ============================================================ */
.testimonial-photo {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SPLIT CONTENT SECTION TYPOGRAPHY
   ============================================================ */
.split-content-section.bg-sage {
  background: var(--color-bg-sage);
}
.split-content-section.bg-moss {
  background: var(--color-bg-moss);
}

.split-content-section .row {
  align-items: stretch;
}

.split-content-section img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content-section .split-video {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg, 0.75rem);
}

/* Force image to be a genuine square (ignore content stretch) */
.split-content-section.image-square img {
  height: auto;
}
.split-content-section.image-square .col-lg-6:first-child {
  display: flex;
  align-items: center;
}

.split-content-section h2 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.split-content-section .split-body {
  color: var(--color-text-muted);
  line-height: 1.85;
}

.split-content-section .split-body p {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}

.split-content-section .split-body p:last-child {
  margin-bottom: 0;
}

.split-content-section .split-body h3 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.split-content-section .split-body h3:first-child {
  margin-top: 0;
}

.split-content-section .split-body ul,
.split-content-section .split-body ol {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.split-content-section .split-body li {
  margin-bottom: 0.4rem;
}

/* ============================================================
   CONTENT BLOCK SECTION WRAPPER
   ============================================================ */
.content-block-section {
  padding: 5rem 0;
}
.content-block-section.bg-sage {
  background: var(--color-bg-sage);
}
.content-block-section.bg-moss {
  background: var(--color-bg-moss);
}

/* content-layout: no-image = centered single column, with-image = side by side */
.content-layout {
  display: flex;
  justify-content: center;
}
.content-layout .content-block {
  width: 100%;
}
.content-layout--with-image {
  gap: 3.5rem;
  align-items: flex-start;
}
.content-layout--with-image .content-block {
  flex: 1 1 0;
  max-width: none;
}
.content-block-media {
  flex: 0 0 42%;
  max-width: 42%;
}
@media (max-width: 767px) {
  .content-layout--with-image {
    flex-direction: column;
  }
  .content-block-media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.content-block-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 2rem;
}

/* ============================================================
   PRICING TABLE EXTRAS
   ============================================================ */
.pricing-table-section {
  padding: 5rem 0;
}
.pricing-note {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  text-align: center;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
/* Map container */
.map-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.map-container iframe {
  display: block;
  width: 100%;
  max-height: 400px;
}

.contact-form-wrapper {
  padding: 2.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
}

/* Contact page sidebar */
.contact-info-sidebar {
  position: sticky;
  top: 120px;
}
.contact-info-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-line);
}
.contact-info-card:first-child {
  padding-top: 0;
}
.contact-info-card h3,
.content-block .contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  margin-top: 0;
}
.contact-info-card address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.contact-info-card p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.contact-info-card a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-line);
  transition: border-color 0.2s;
}
.contact-info-card a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.contact-directions {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.btn-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-signoff {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--color-accent);
  background: var(--color-bg-sage);
}
.contact-signoff p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.contact-signoff cite {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-style: normal;
}
.contact-map-section {
  margin: 0 auto;
}
.contact-map-section .map-container {
  margin: 0;
}
.contact-map-section .map-container iframe {
  max-height: 450px;
}
.contact-form-section .section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-label-optional {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

/* ============================================================
   CONTENT BLOCK — INLINE FIGURES (article-style images)
   ============================================================ */
.content-block figure {
  margin: 2.5rem 0;
  padding: 0;
}
.content-block figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
}
.content-block figure figcaption {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .content-block figure img {
    height: 260px;
  }
}

/* ============================================================
   BENEFITS BAND — ocean-bg reusable section
   ============================================================ */
.benefits-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  overflow: hidden;
}

.benefits-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 57, 77, 0.88) 0%,
    rgba(12, 35, 64, 0.82) 50%,
    rgba(8, 57, 77, 0.88) 100%
  );
  z-index: 0;
}

.benefits-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.benefits-band__eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-warm, #c4856a);
  display: block;
  margin-bottom: 0.75rem;
}

.benefits-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-text-light, #f2f4f0);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.benefits-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.benefits-band__item {
  padding: 1.75rem 1rem;
  border: 1px solid rgba(242, 244, 240, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.benefits-band__item:hover {
  border-color: rgba(196, 133, 106, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.benefits-band__item-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent-warm, #c4856a);
  display: block;
  margin-bottom: 0.65rem;
}

.benefits-band__item-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(242, 244, 240, 0.65);
  margin: 0;
}

.benefits-band__note {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(242, 244, 240, 0.5);
  margin-top: 2.5rem;
  font-style: italic;
}

@media (max-width: 767px) {
  .benefits-band {
    padding: 4rem 0;
  }
  .benefits-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .benefits-band__item {
    padding: 1.25rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .benefits-band__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PEACH BUTTONS + SOFTER EDGES
   ============================================================ */
.hero-cta,
.btn-primary-custom,
.nav-book,
.mobile-book-cta,
.form-submit,
.pricing-book-link,
.cta-section--has-bg .hero-cta {
  background: var(--color-accent-warm) !important;
  border-color: var(--color-accent-warm) !important;
  color: var(--color-white) !important;
}

.hero-cta:hover,
.btn-primary-custom:hover,
.site-nav.scrolled .nav-book:hover,
.nav-book:hover,
.mobile-book-cta:hover,
.form-submit:hover,
.pricing-book-link:hover,
.cta-section--has-bg .hero-cta:hover {
  background: var(--color-accent-warm-hover) !important;
  border-color: var(--color-accent-warm-hover) !important;
  color: var(--color-white) !important;
}

.hero-cta,
.hero-cta-outline,
.btn-primary-custom,
.btn-outline-custom,
.nav-book,
.mobile-book-cta,
.form-submit,
.pricing-book-link,
.review-link,
.cta-phone-btn,
.service-card,
.service-overview-card,
.modality-card,
.review-card,
.testimonial-card,
.contact-info-block,
.map-embed,
input,
select,
textarea {
  border-radius: var(--radius-soft) !important;
}

.hero-cta,
.hero-cta-outline,
.btn-primary-custom,
.btn-outline-custom,
.nav-book,
.mobile-book-cta,
.form-submit,
.pricing-book-link,
.review-link,
.cta-phone-btn {
  border-radius: var(--radius-pill) !important;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-nav,
  .mobile-nav-overlay,
  .marquee-section,
  .cta-section {
    display: none;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}
