/* ============================================================
   SHIFT HEALING CENTER — Design System
   Colors: Caribbean Current #006D77 · Tiffany Blue #83C5BE
           Eggshell #F5EEDD · Pale Dogwood #FFDDD2
           Atomic Tangerine #E29578
   Fonts:  Cormorant Garamond (headings) · Lato (body)
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --primary:        #006D77;
  --primary-dark:   #004f58;
  --primary-light:  #e0f2f1;
  --secondary:      #83C5BE;
  --secondary-light:#c8e8e5;
  --bg:             #F5EEDD;
  --bg-alt:         #faf7f2;
  --peach:          #FFDDD2;
  --peach-dark:     #f5c8b8;
  --accent:         #E29578;
  --accent-dark:    #c97a5e;
  --white:          #ffffff;
  --text:           #2a3a38;
  --text-muted:     #5a6f6d;
  --text-light:     #8a9e9c;
  --border:         rgba(0, 109, 119, 0.12);
  --border-light:   rgba(0, 109, 119, 0.06);
  --shadow-sm:      0 2px 12px rgba(0, 109, 119, 0.07);
  --shadow-md:      0 8px 32px rgba(0, 109, 119, 0.10);
  --shadow-lg:      0 20px 60px rgba(0, 109, 119, 0.13);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --radius-full:    999px;
  --max-width:      1180px;
  --header-h:       80px;
  --transition:     all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-alt);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
h5 { font-size: 0.9rem; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
p { margin-bottom: 1.25rem; color: var(--text); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }
.kicker {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}
.lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 128px 0; }
.section--bg-white    { background: var(--white); }
.section--bg-eggshell { background: var(--bg); }
.section--bg-peach    { background: var(--peach); }
.section--bg-teal     { background: var(--primary); }
.section--bg-light    { background: var(--bg-alt); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: var(--radius-full);
  margin: 20px 0 32px 0;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--white { background: linear-gradient(90deg, rgba(255,255,255,.6), rgba(255,255,255,.2)); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(226, 149, 120, 0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(226, 149, 120, 0.45);
}
.btn-cta {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(226, 149, 120, 0.3);
}
.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 109, 119, 0.25);
}
.btn-teal:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-body { padding: 28px; }
.card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.card-img--square { aspect-ratio: 1; }
.card-img--tall   { aspect-ratio: 2 / 3; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(245, 238, 221, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 109, 119, 0.10);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.site-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  white-space: nowrap;
}
.site-name strong {
  font-weight: 600;
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-list li a {
  display: block;
  padding: 8px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-list li a:hover,
.nav-list li.current-menu-item > a,
.nav-list li.current_page_item > a {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-book {
  margin-left: 12px;
  font-size: 0.82rem;
  padding: 11px 24px;
}

/* ── Desktop sub-menu dropdowns ─────────────────────────────── */
.nav-list li {
  position: relative;
}
.nav-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  z-index: 200;
}
.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
  display: block;
}
.nav-list .sub-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.83rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  color: var(--text);
}
.nav-list .sub-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ── Hamburger toggle ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--primary-light); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav overlay — lives OUTSIDE the header element ─── */
/* This avoids being trapped inside the header's backdrop-filter
   stacking context, which would bleed the blur onto the panel. */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 9999;
  background: #F5EEDD;          /* solid eggshell — no transparency */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.open {
  display: flex;
  flex-direction: column;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 40px 24px 60px;
  gap: 8px;
  text-align: center;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 320px;
  list-style: none;
}
.mobile-nav-list li a {
  display: block;
  padding: 14px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-nav-list li a:hover,
.mobile-nav-list li.current-menu-item > a,
.mobile-nav-list li.current_page_item > a {
  background: var(--primary-light);
  color: var(--primary);
}
/* Mobile sub-menu — shown inline */
.mobile-nav-list .sub-menu {
  list-style: none;
  padding: 4px 0 4px 16px;
}
.mobile-nav-list .sub-menu li a {
  font-size: 0.9rem;
  padding: 10px 16px;
  color: var(--text-muted);
}
.mobile-nav-book {
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.mobile-nav-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}
.mobile-nav-footer a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-nav-footer a:hover { color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero--short {
  min-height: 480px;
  height: 55vw;
  max-height: 620px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 109, 119, 0.68) 0%,
    rgba(0, 79, 88, 0.50) 45%,
    rgba(226, 149, 120, 0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  max-width: 760px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--peach);
}
.hero-content .lead {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 109, 119, 0.80) 0%,
    rgba(0, 109, 119, 0.35) 60%,
    transparent 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 56px;
  width: 100%;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.page-hero-content .kicker { color: rgba(255,255,255,0.7); }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* Intro Banner */
.intro-banner {
  background: var(--primary);
  padding: 36px 0;
  overflow: hidden;
}
.intro-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.intro-banner-item {
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.92;
}
.intro-banner-item strong { font-weight: 600; }
.intro-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* Mission Section */
.mission-section { background: var(--bg-alt); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.mission-visual {
  position: relative;
}
.mission-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.mission-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.mission-text h2 { margin-bottom: 16px; }
.mission-values {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.value-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  flex-shrink: 0;
}

/* Services Preview */
.services-grid { gap: 32px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 28px;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.4rem; }
.service-card-body p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  transition: var(--transition);
}
.service-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* Meet Stephanie */
.about-preview-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview-img-wrap {
  position: relative;
}
.about-preview-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.about-preview-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 200px;
}
.about-preview-badge .badge-years {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.about-preview-badge .badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.about-preview-text blockquote {
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin: 24px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Approaches */
.approaches-section { background: var(--bg); }
.approaches-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.approach-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  gap: 12px;
  transition: var(--transition);
  flex: 0 0 148px;
  width: 148px;
}
.approach-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.approach-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.approach-item-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.3;
}
.approach-item-full {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Specialties Preview */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.specialty-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.specialty-chip:hover {
  border-color: var(--secondary);
  background: var(--bg-alt);
  transform: translateY(-2px);
}
.specialty-chip img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.specialty-chip-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
  opacity: 0.4;
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 109, 119, 0.3);
  position: relative;
  z-index: 2;
}
.step-item h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step-item p { font-size: 0.92rem; color: var(--text-muted); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #003d44 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 197, 190, 0.15) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 149, 120, 0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--white); }
.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.about-bio-text h2 { margin-bottom: 16px; }
.about-bio-text p { color: var(--text-muted); }
.about-bio-img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-value-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-light);
}
.about-value-card:nth-child(1) { background: var(--bg-alt); }
.about-value-card:nth-child(2) { background: var(--peach); }
.about-value-card:nth-child(3) { background: var(--primary-light); }
.about-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.about-value-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.about-value-card p  { font-size: 0.92rem; color: var(--text-muted); }

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}
.team-card-body { padding: 24px; }
.team-card-name { font-size: 1.3rem; margin-bottom: 4px; }
.team-card-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.team-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-section-grid.reverse { direction: rtl; }
.service-section-grid.reverse > * { direction: ltr; }
.service-section-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.service-section-text h2 { margin-bottom: 16px; }
.service-section-text p { color: var(--text-muted); margin-bottom: 16px; }
.service-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.service-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  margin-top: 7px;
}
.service-anchor-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
}
.service-anchor {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
}
.service-anchor:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ============================================================
   SPECIALTIES PAGE
   ============================================================ */
.specialties-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.specialty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  gap: 14px;
  transition: var(--transition);
  cursor: default;
}
.specialty-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--bg-alt);
}
.specialty-card-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.specialty-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
}
.specialty-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 16px; }
.contact-form-wrap .lead { margin-bottom: 36px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 1.6rem; margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
}
.contact-info-text a { color: var(--text); transition: color 0.2s; }
.contact-info-text a:hover { color: var(--primary); }
.contact-zen-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 16/9;
  margin-top: 24px;
}

/* WPForms Overrides */
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field textarea,
.wpforms-container .wpforms-field select {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--text) !important;
  background: var(--white) !important;
  transition: border-color 0.2s !important;
}
.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field textarea:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0,109,119,0.1) !important;
}
.wpforms-container .wpforms-submit-container button {
  background: var(--accent) !important;
  border-radius: var(--radius-full) !important;
  font-family: 'Lato', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 14px 36px !important;
  border: none !important;
  transition: var(--transition) !important;
}
.wpforms-container .wpforms-submit-container button:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px) !important;
}

/* ============================================================
   FOR NEW CLIENTS PAGE
   ============================================================ */
.new-clients-steps { gap: 40px; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 109, 119, 0.25);
}
.step-card-text h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step-card-text p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

.expect-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.expect-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.expect-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.expect-list li::before {
  content: '✦';
  color: var(--secondary);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.blog-card h2, .blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card:hover h2, .blog-card:hover h3 { color: var(--accent); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 16px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* Single Post */
.post-content {
  max-width: 760px;
  margin: 0 auto;
}
.post-content h2 { margin: 40px 0 16px; font-size: 2rem; }
.post-content h3 { margin: 32px 0 12px; font-size: 1.5rem; }
.post-content p  { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.85; }
.post-content ul, .post-content ol {
  margin: 0 0 1.5rem 24px;
  color: var(--text-muted);
  line-height: 1.8;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content blockquote {
  border-left: 3px solid var(--secondary);
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.footer-wave { display: block; line-height: 0; margin-bottom: -4px; }
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.footer-tagline em { font-style: italic; }
.footer-sub { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.footer-nav h4, .footer-contact h4, .footer-values h4 {
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.footer-nav ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav ul li a, .footer-contact ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav ul li a:hover, .footer-contact ul li a:hover { color: var(--primary); }
.footer-contact ul li { font-size: 0.88rem; color: var(--text-muted); }
.footer-btn { margin-top: 20px; font-size: 0.78rem; padding: 10px 20px; }
.values-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  flex-shrink: 0;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: 4px;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}
.footer-credits a {
  font-size: 0.78rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-credits a:hover { color: var(--primary); }

/* ============================================================
   SECTION HEADINGS (reusable)
   ============================================================ */
.section-intro { max-width: 620px; margin-bottom: 56px; }
.section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro h2 { margin-bottom: 14px; }
.section-intro p { color: var(--text-muted); margin: 0; }

/* ============================================================
   WATERCOLOR / ORGANIC ACCENTS
   ============================================================ */
.watercolor-divider {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  opacity: 0.5;
}
.organic-blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  opacity: 0.06;
  pointer-events: none;
}

/* ============================================================
   CRISIS BAR
   ============================================================ */
.crisis-bar {
  background: var(--primary-dark);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}
.crisis-bar a { color: var(--peach); font-weight: 700; }
.crisis-bar strong { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 200px 1fr 1fr; }
  .footer-values { grid-column: 2 / 4; }
}
@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-img { aspect-ratio: 16/10; }
  .mission-img-accent { display: none; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-img { aspect-ratio: 16/10; }
  .about-preview-badge { display: none; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-bio-img { aspect-ratio: 16/10; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .service-section-grid,
  .service-section-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-values { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Hide desktop nav on mobile — overlay handles it */
  .nav-toggle { display: flex; }
  .site-nav { display: none; }
  .page-hero { height: 320px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero { min-height: 92vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .approach-item { flex: 0 0 130px; width: 130px; }
  .specialties-full-grid { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .page-hero { height: 260px; }
  .intro-banner-dot { display: none; }
}
@media (max-width: 400px) {
  .approach-item { flex: 0 0 120px; width: 120px; }
  .specialties-full-grid { grid-template-columns: 1fr; }
}
