/* ==========================================================================
   COR Clinic - Wollongong Chiropractor
   Design System & Master Stylesheet
   ========================================================================== */

:root {
  /* Brand Palette (Derived from COR Clinic Identity) */
  --color-brand-espresso: #2b221d;
  --color-brand-brown: #433023;
  --color-brand-copper: #b26839;
  --color-brand-copper-hover: #9c582d;
  --color-brand-terracotta: #c47644;
  --color-brand-sand: #e8ded4;
  --color-brand-cream: #f4eee7;
  --color-brand-bone: #faf7f2;
  --color-brand-white: #ffffff;
  
  /* Accent & Functional */
  --color-accent-sage: #5b7566;
  --color-accent-sage-soft: #eaf1ed;
  --color-accent-gold: #d4a373;
  --color-text-primary: #211c19;
  --color-text-secondary: #594f48;
  --color-text-muted: #7d726a;
  --color-text-light: #9e938a;
  
  /* Borders & Shadows */
  --border-subtle: rgba(67, 48, 35, 0.1);
  --border-glass: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 2px 8px rgba(43, 34, 29, 0.04);
  --shadow-md: 0 8px 24px rgba(43, 34, 29, 0.08);
  --shadow-lg: 0 20px 40px rgba(43, 34, 29, 0.12);
  --shadow-glow: 0 0 30px rgba(178, 104, 57, 0.18);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Spacing */
  --container-max: 1320px;
  --nav-height: 80px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-brand-bone);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, video, canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brand-espresso);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-brand-espresso) 30%, var(--color-brand-copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-copper);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--color-brand-copper);
  border-radius: 2px;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Framework */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.65;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-brand-copper);
  color: var(--color-brand-white);
  box-shadow: 0 4px 14px rgba(178, 104, 57, 0.28);
}

.btn-primary:hover {
  background: var(--color-brand-copper-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 104, 57, 0.36);
  color: var(--color-brand-white);
}

.btn-secondary {
  background: rgba(67, 48, 35, 0.06);
  color: var(--color-brand-espresso);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(67, 48, 35, 0.12);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-brand-white);
  color: var(--color-brand-espresso);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--color-brand-cream);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(67, 48, 35, 0.08);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: var(--shadow-sm);
  height: 72px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-logo .brand-name {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-brand-espresso);
  line-height: 1;
}

.brand-logo .brand-subtitle {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand-copper);
  font-weight: 600;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-brand-copper);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-brand-espresso);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-text-short {
  display: none;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: rgba(67, 48, 35, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 8px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nav-mobile-toggle:hover {
  background: rgba(67, 48, 35, 0.1);
}

.nav-mobile-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background-color: var(--color-brand-espresso);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

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

.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ==========================================================================
   HERO SECTION: ZERO-OVERLAP SPLIT ARCHITECTURE
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 45%, rgba(232, 222, 212, 0.45) 0%, rgba(250, 247, 242, 0.95) 70%);
  overflow: hidden;
}

/* Subtle background grid aligned with spine asset aesthetic */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(67, 48, 35, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(67, 48, 35, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Content (Strict Left Column: Guarantees NO OVERLAP with Spine) */
.hero-content {
  max-width: 580px;
  padding-right: 1.5rem;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-brand-white);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand-espresso);
  box-shadow: var(--shadow-sm);
}

.location-pill svg {
  color: var(--color-brand-copper);
}

.dr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(178, 104, 57, 0.08);
  border: 1px solid rgba(178, 104, 57, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand-copper);
}

.hero-title {
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--color-brand-espresso);
  font-weight: 700;
}

.hero-lead {
  font-size: clamp(1.0625rem, 1.3vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.hero-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(67, 48, 35, 0.12);
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(178, 104, 57, 0.12);
  color: var(--color-brand-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-espresso);
  margin-bottom: 0.15rem;
}

.guarantee-text p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Hero Right Column: Interactive Spine Anatomical Viewer */
.hero-spine-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spine-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: #fbf8f3;
  border: 1px solid rgba(67, 48, 35, 0.1);
  transition: transform var(--transition-slow);
}

#spineCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Interactive anatomical region indicators */
.spine-region-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(67, 48, 35, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-brand-espresso);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.spine-region-marker:hover,
.spine-region-marker.active {
  background: var(--color-brand-espresso);
  color: var(--color-brand-white);
  border-color: var(--color-brand-espresso);
  transform: scale(1.05);
}

.spine-region-marker .marker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-copper);
}

/* Markers positions (calculated to not block the spine column on the right) */
.marker-cervical {
  top: 14%;
  left: 20%;
}

.marker-thoracic {
  top: 38%;
  left: 15%;
}

.marker-lumbar {
  top: 62%;
  left: 18%;
}

.marker-sacrum {
  top: 84%;
  left: 24%;
}

/* Spine Viewer Controls Bar */
.spine-controls-card {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(67, 48, 35, 0.1);
  border-radius: 16px;
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.spine-controls-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.spine-controls-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand-espresso);
}

.frame-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-copper);
  background: rgba(178, 104, 57, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.spine-scrubber-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.spine-play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-brand-espresso);
  color: var(--color-brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.spine-play-btn:hover {
  background: var(--color-brand-copper);
  transform: scale(1.05);
}

.spine-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--color-brand-sand);
  outline: none;
  cursor: pointer;
}

.spine-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand-copper);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(178, 104, 57, 0.4);
  transition: transform var(--transition-fast);
}

.spine-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.spine-caption {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ==========================================================================
   PHILOSOPHY & APPROACH (4 PILLARS)
   ========================================================================== */
.philosophy-section {
  background: var(--color-brand-white);
  border-top: 1px solid rgba(67, 48, 35, 0.06);
  border-bottom: 1px solid rgba(67, 48, 35, 0.06);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--color-brand-bone);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand-copper), var(--color-brand-sand));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(178, 104, 57, 0.3);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-brand-sand);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-brand-espresso);
}

.pillar-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES & TRANSPARENT PRICING
   ========================================================================== */
.services-section {
  background: var(--color-brand-bone);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background: var(--color-brand-white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.service-card.featured {
  border-color: var(--color-brand-copper);
  box-shadow: 0 12px 36px rgba(178, 104, 57, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fffcf8 100%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(67, 48, 35, 0.06);
  color: var(--color-brand-espresso);
  margin-bottom: 1.5rem;
}

.service-card.featured .service-tag {
  background: var(--color-brand-copper);
  color: var(--color-brand-white);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(67, 48, 35, 0.08);
}

.service-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-brand-espresso);
  font-feature-settings: "tnum";
}

.service-duration {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.service-description {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.service-feature-item svg {
  color: var(--color-accent-sage);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   AUTHENTIC CLINICAL GALLERY & MODALITIES
   ========================================================================== */
.gallery-section {
  background: var(--color-brand-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  background: var(--color-brand-sand);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 20, 16, 0.88) 100%);
  color: var(--color-brand-white);
  transition: opacity var(--transition-normal);
}

.gallery-caption-overlay h4 {
  color: var(--color-brand-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.gallery-caption-overlay p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Asymmetric Clinical Layout */
.gallery-col-6 {
  grid-column: span 6;
  height: 380px;
}

.gallery-col-4 {
  grid-column: span 4;
  height: 380px;
}

.gallery-col-8 {
  grid-column: span 8;
  height: 380px;
}

/* ==========================================================================
   PRACTITIONER SPOTLIGHT: DR. BRODIE KELLY
   ========================================================================== */
.practitioner-section {
  background: var(--color-brand-bone);
}

.practitioner-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  background: var(--color-brand-white);
  border-radius: 32px;
  border: 1px solid var(--border-subtle);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.practitioner-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
}

.practitioner-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practitioner-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(67, 48, 35, 0.1);
}

.practitioner-badge-overlay h4 {
  font-size: 1.125rem;
  color: var(--color-brand-espresso);
}

.practitioner-badge-overlay p {
  font-size: 0.8125rem;
  color: var(--color-brand-copper);
  font-weight: 600;
}

.practitioner-info h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.practitioner-title-role {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brand-copper);
  margin-bottom: 1.5rem;
}

.practitioner-bio {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

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

.credential-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(178, 104, 57, 0.1);
  color: var(--color-brand-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-espresso);
}

/* Workshop callout inside bio */
.workshop-callout {
  background: var(--color-brand-cream);
  border-left: 4px solid var(--color-brand-copper);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.workshop-callout h4 {
  font-size: 0.9375rem;
  color: var(--color-brand-espresso);
  margin-bottom: 0.35rem;
}

.workshop-callout p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   REAL PATIENT REVIEWS
   ========================================================================== */
.testimonials-section {
  background: var(--color-brand-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-brand-bone);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quote-icon {
  width: 36px;
  height: 36px;
  color: var(--color-brand-sand);
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.patient-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(67, 48, 35, 0.08);
}

.patient-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brand-sand);
  color: var(--color-brand-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.patient-meta h4 {
  font-size: 1rem;
  color: var(--color-brand-espresso);
}

.patient-meta p {
  font-size: 0.8125rem;
  color: var(--color-brand-copper);
  font-weight: 500;
}

/* ==========================================================================
   LOCATION, CLINIC ACCESS & BOOKING BANNER
   ========================================================================== */
.location-section {
  background: var(--color-brand-espresso);
  color: var(--color-brand-white);
  padding: 6rem 0;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info h2 {
  color: var(--color-brand-white);
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.location-info .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-brand-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-content h4 {
  color: var(--color-brand-white);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.location-detail-content p,
.location-detail-content a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.5;
}

.location-detail-content a:hover {
  color: var(--color-brand-white);
  text-decoration: underline;
}

.booking-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  text-align: center;
}

.booking-card-dark h3 {
  color: var(--color-brand-white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.booking-card-dark p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.booking-card-dark .btn-primary {
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1rem;
}

.booking-guarantee-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #1d1714;
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: var(--color-brand-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--color-brand-white);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--color-brand-copper);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATION
   ========================================================================== */

/* --- Tablet / Medium Devices (769px to 1024px) --- */
@media (max-width: 1024px) {
  :root {
    --nav-height: 72px;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-header h2 {
    font-size: 2.15rem;
  }

  /* Hero stays 2-column on tablet so spine remains side-by-side with text */
  .hero-section {
    padding-top: calc(var(--nav-height) + 1.25rem);
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
    align-items: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding-right: 0.5rem;
    text-align: left;
  }
  
  .hero-badge-row {
    justify-content: flex-start;
    margin-bottom: 1.15rem;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.12;
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.96875rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta-group {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group .btn {
    padding: 0.75rem 1.35rem;
    font-size: 0.875rem;
  }
  
  .hero-guarantees {
    max-width: 100%;
    margin: 0;
    gap: 0.85rem;
    padding-top: 1.25rem;
  }

  .guarantee-text h4 {
    font-size: 0.8125rem;
  }

  .guarantee-text p {
    font-size: 0.75rem;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 1.75rem 1.35rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-title {
    font-size: 1.35rem;
  }

  .service-price {
    font-size: 2rem;
  }
  
  .practitioner-wrapper {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2.25rem;
  }

  .practitioner-image-card {
    max-width: 100%;
    margin: 0;
  }
  
  .location-wrapper {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* --- Mobile Landscape & Standard Devices (<= 768px) --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 62px;
  }

  html {
    font-size: 15px;
  }

  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  /* Header & Mobile Navigation */
  .site-header.scrolled {
    height: 58px;
  }

  .brand-logo .brand-name {
    font-size: 1.22rem;
  }

  .brand-logo .brand-subtitle {
    font-size: 0.53125rem;
    letter-spacing: 0.08em;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  #headerBookBtn {
    padding: 0.38rem 0.8rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .nav-mobile-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 7px;
  }

  body.menu-open .site-header {
    background: #faf7f2 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    width: 100%;
    background: #faf7f2;
    flex-direction: column;
    padding: 1rem 1.15rem 1.75rem;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(67, 48, 35, 0.12);
    box-shadow: 0 20px 40px rgba(43, 34, 29, 0.18);
    display: none;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
    animation: mobileNavFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-brand-espresso);
    background: var(--color-brand-white);
    border: 1px solid rgba(67, 48, 35, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }

  /* Global Section & Spacing Tuning: Eliminates Excessive Dead Space */
  .section {
    padding: 2.35rem 0;
  }

  .section-header {
    margin-bottom: 1.35rem;
  }

  .section-header h2 {
    font-size: 1.5625rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }

  .section-header p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.1em;
  }

  /* Hero Section: Dynamic Visual Hierarchy (Spine Visible Above the Fold) */
  .hero-section {
    padding-top: calc(var(--nav-height) + 0.65rem);
    padding-bottom: 1.85rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }

  .hero-content {
    display: contents; /* Unrolls child elements so spine canvas can be ordered prominently */
    text-align: left;
  }

  .hero-badge-row {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .location-pill, 
  .dr-badge {
    font-size: 0.71875rem;
    padding: 0.22rem 0.6rem;
  }

  .hero-title {
    order: 2;
    font-size: 1.72rem;
    line-height: 1.16;
    margin-bottom: 0.45rem;
    word-break: break-word;
  }

  .hero-lead {
    order: 3;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.65rem;
    color: var(--color-text-secondary);
  }

  /* 16-Frame Spine Sequence Canvas: Placed above CTAs for immediate visual impact */
  .hero-spine-container {
    order: 4;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .spine-canvas-wrapper {
    max-width: 100%;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-md);
  }

  .spine-region-marker {
    display: none; /* Keep mobile canvas 100% unobstructed */
  }

  .spine-controls-card {
    max-width: 100%;
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    margin-top: 0.5rem;
  }

  .spine-controls-header {
    margin-bottom: 0.35rem;
  }

  .spine-controls-title {
    font-size: 0.75rem;
  }

  .frame-indicator {
    font-size: 0.6875rem;
    padding: 0.1rem 0.4rem;
  }

  .spine-play-btn {
    width: 28px;
    height: 28px;
  }

  .spine-play-btn svg {
    width: 11px;
    height: 11px;
  }

  .spine-slider {
    height: 5px;
  }

  .spine-caption {
    font-size: 0.65625rem;
    margin-top: 0.3rem;
  }

  /* CTA Button Group */
  .hero-cta-group {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 420px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    font-size: 0.84375rem;
  }

  /* Clinic Guarantees */
  .hero-guarantees {
    order: 6;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    max-width: 100%;
    margin: 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(67, 48, 35, 0.1);
  }

  .guarantee-item {
    gap: 0.5rem;
  }

  .guarantee-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    margin-top: 1px;
  }

  .guarantee-icon svg {
    width: 12px;
    height: 12px;
  }

  .guarantee-text h4 {
    font-size: 0.78125rem;
    margin-bottom: 0.1rem;
  }

  .guarantee-text p {
    font-size: 0.6875rem;
    line-height: 1.32;
  }

  /* Philosophy (4 Pillars): Sleek horizontal cards that prevent vertical bloat */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .pillar-card {
    padding: 1.15rem 1.15rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
  }

  .pillar-number {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    line-height: 1;
  }

  .pillar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    line-height: 1.25;
  }

  .pillar-card p {
    font-size: 0.84375rem;
    line-height: 1.5;
  }

  /* Services & Transparent Pricing Cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 440px;
    margin: 0 auto;
  }

  .service-card {
    padding: 1.25rem 1.15rem;
    border-radius: 16px;
  }

  .service-tag {
    font-size: 0.65625rem;
    padding: 0.2rem 0.55rem;
    margin-bottom: 0.65rem;
  }

  .service-title {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }

  .service-pricing-row {
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .service-price {
    font-size: 1.65rem;
  }

  .service-duration {
    font-size: 0.75rem;
  }

  .service-description {
    font-size: 0.8125rem;
    line-height: 1.48;
    margin-bottom: 0.85rem;
  }

  .service-features {
    gap: 0.35rem;
    margin-bottom: 1rem;
  }

  .service-feature-item {
    font-size: 0.78125rem;
  }

  .service-card .btn {
    width: 100%;
    padding: 0.7rem 1.15rem;
    font-size: 0.8125rem;
  }

  /* Clinical Gallery Grid: Compact 2-column layout to prevent endless scroll */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .gallery-col-6:first-child {
    grid-column: span 2;
    height: 175px;
  }

  .gallery-col-6:not(:first-child),
  .gallery-col-4,
  .gallery-col-8 {
    grid-column: span 1;
    height: 130px;
  }

  .gallery-caption-overlay {
    padding: 0.6rem;
  }

  .gallery-caption-overlay h4 {
    font-size: 0.75rem;
  }

  .gallery-caption-overlay p {
    font-size: 0.65rem;
    line-height: 1.25;
  }

  /* Practitioner Spotlight */
  .practitioner-wrapper {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
    gap: 1.25rem;
    border-radius: 16px;
  }

  .practitioner-image-card {
    max-width: 220px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .practitioner-badge-overlay {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
  }

  .practitioner-badge-overlay h4 {
    font-size: 0.84rem;
  }

  .practitioner-badge-overlay p {
    font-size: 0.6875rem;
  }

  .practitioner-info h2 {
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
  }

  .practitioner-title-role {
    font-size: 0.8125rem;
    margin-bottom: 0.65rem;
  }

  .practitioner-bio {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }

  .credentials-list {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
  }

  .credential-icon {
    width: 22px;
    height: 22px;
  }

  .credential-icon svg {
    width: 11px;
    height: 11px;
  }

  .credential-item span {
    font-size: 0.78125rem;
  }

  .workshop-callout {
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .workshop-callout h4 {
    font-size: 0.75rem;
  }

  .workshop-callout p {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .practitioner-info .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    font-size: 0.84375rem;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .testimonial-card {
    padding: 1.15rem 1rem;
    border-radius: 14px;
  }

  .quote-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 0.5rem;
  }

  .testimonial-quote {
    font-size: 0.8125rem;
    line-height: 1.52;
    margin-bottom: 0.75rem;
  }

  .patient-author {
    padding-top: 0.65rem;
    gap: 0.65rem;
  }

  .patient-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.8125rem;
  }

  .patient-meta h4 {
    font-size: 0.8125rem;
  }

  .patient-meta p {
    font-size: 0.6875rem;
  }

  /* Location & Dark Booking Card */
  .location-section {
    padding: 2.35rem 0;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-info h2 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    word-break: break-word;
  }

  .location-info .lead {
    font-size: 0.8125rem;
    line-height: 1.48;
    margin-bottom: 1rem;
  }

  .location-details-list {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .location-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .location-icon-box svg {
    width: 14px;
    height: 14px;
  }

  .location-detail-content h4 {
    font-size: 0.8125rem;
  }

  .location-detail-content p,
  .location-detail-content a {
    font-size: 0.75rem;
  }

  .booking-card-dark {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }

  .booking-card-dark h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
  }

  .booking-card-dark p {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .booking-card-dark .btn-primary {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    width: 100%;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 1.25rem;
    font-size: 0.78125rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-brand .brand-name {
    font-size: 1.25rem;
  }

  .footer-brand p {
    font-size: 0.78125rem;
    line-height: 1.5;
  }

  .footer-col h4 {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }

  .footer-links {
    gap: 0.4rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
  }
}

/* --- Compact Mobile Devices (<= 480px) --- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Header compact pill button */
  .btn-text-full {
    display: none;
  }

  .btn-text-short {
    display: inline;
  }

  #headerBookBtn {
    padding: 0.32rem 0.68rem;
    font-size: 0.71875rem;
    border-radius: 9999px;
  }

  .brand-logo .brand-name {
    font-size: 1.15rem;
  }

  .brand-logo .brand-subtitle {
    font-size: 0.5rem;
  }

  .section {
    padding: 1.85rem 0;
  }

  .section-header {
    margin-bottom: 1.15rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 0.5rem);
    padding-bottom: 1.35rem;
  }

  .hero-title {
    font-size: 1.48rem;
    line-height: 1.18;
    margin-bottom: 0.35rem;
  }

  .hero-lead {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin-bottom: 0.55rem;
  }

  .hero-cta-group {
    margin-bottom: 0.85rem;
  }

  .hero-guarantees {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-top: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-col-6:first-child {
    grid-column: span 2 !important;
    height: 160px !important;
  }

  .gallery-col-6:not(:first-child),
  .gallery-col-4,
  .gallery-col-8 {
    grid-column: span 1 !important;
    height: 120px !important;
  }

  .practitioner-wrapper {
    padding: 1rem 0.85rem;
  }

  .service-card {
    padding: 1.15rem 0.95rem;
  }

  .testimonial-card {
    padding: 1rem 0.85rem;
  }

  .booking-card-dark {
    padding: 1.2rem 0.95rem;
  }
}

