/* Salty Carbs -- Shared Member Site Stylesheet */
/* Used by all pages: home, about, services, service-detail, contact */
/* Color variables are injected inline per-member BEFORE this file loads. */
/* Do NOT add a :root block here -- it will override the palette injection. */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

/* ── NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--ink-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
header.nav-hidden   { transform: translateY(-100%); }
header.nav-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-svg { height: 60px; display: flex; align-items: center; }
.nav-logo-svg svg { height: 60px; width: auto; max-width: 400px; }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul a {
  display: block;
  padding: 0 1.1rem;
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--white); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0 1.6rem !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ink);
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta { background: var(--primary); color: var(--white); }

/* ── LIGHT MODE ── */
.mode-light header                       { background: #ffffff; border-bottom: 1px solid var(--border); }
.mode-light header nav ul a              { color: var(--ink); }
.mode-light header nav ul a:hover,
.mode-light header nav ul a.active       { color: var(--primary); }
.mode-light .nav-hamburger span          { background: var(--ink); }
.mode-light footer                       { background: #f5f5f5; color: var(--ink); }
.mode-light footer a                     { color: var(--ink-lt); }
.mode-light footer a:hover               { color: var(--primary); }
.mode-light .footer-tagline              { color: var(--ink-lt); }
/* Contact column -> dark ink so it's readable on the light footer. The business
   name carries an inline near-white color (for dark mode), so the light-mode
   override has to be !important to win over the inline style. */
.mode-light .footer-info p               { color: var(--ink) !important; }
.mode-light .footer-info a               { color: var(--ink); }
.mode-light .footer-body-text            { color: var(--ink); }
/* Copyright bar: drop the leftover dark-mode background tint and use a clean
   top border + readable muted ink so it reads as intentional, not a mistake. */
.mode-light .footer-bottom               { border-top: 1px solid var(--border); color: var(--ink-lt); }
.mode-light .footer-bottom a             { color: var(--ink-lt); }
.mode-light .footer-copy                 { color: var(--ink-lt); }
/* Social chips need a visible light box against the light footer. */
.mode-light .footer-social a             { background: rgba(0,0,0,0.06); color: var(--ink); }
.mode-light .footer-social a:hover       { background: var(--primary); color: var(--white); }
/* Site-map column: the "Services"/"Pages" sub-labels and their links are near-
   white for dark mode, so they vanish on the light footer. Override to dark ink
   to match the contact-column treatment. */
.mode-light .footer-sitemap-label        { color: var(--ink-lt); }
.mode-light .footer-nav-list a           { color: var(--ink); }
.mode-light .footer-nav-list a:hover     { color: var(--primary); }

/* ── PAGE OFFSET ── */
.page-wrap { padding-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.35) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--primary); font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--primary);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  max-width: 480px; font-weight: 400;
  line-height: 1.75; margin-bottom: 2.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 2rem 1.8rem;
  border-radius: 4px;
  text-align: center;
}
.hero-headshot {
  width: 172px; height: 172px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--primary);
  margin: 0 auto 1.2rem; display: block;
  background: var(--ink-mid);
  font-size: 0; color: transparent;
}
.hero-card-name { font-family: var(--serif); font-size: 1.1rem; color: var(--white); font-weight: 600; margin-bottom: 0.3rem; }
.hero-card-title { font-size: 0.68rem; color: var(--primary); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.hero-card-focus { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.4rem; }
.badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.badge-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 280px;
  background: var(--ink);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/page-hero-bg.jpg');
  background-size: cover; background-position: center 40%;
  opacity: 0.38;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.28) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 0 2.5rem 2.5rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); font-weight: 700; margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.breadcrumb { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.9rem 2.2rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all 0.25s; font-family: var(--sans);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); margin-left: 1rem; }
.btn-outline:hover { border-color: var(--white); }
.btn-teal-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-teal-outline:hover { background: var(--primary); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-mid); }

/* ── SECTION LAYOUT ── */
.section { padding: 5.5rem 2.5rem; }
.section-sm { padding: 4rem 2.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner-narrow { max-width: 860px; margin: 0 auto; }
.bg-cream { background: var(--surface); }
.bg-cream-dk { background: var(--surface-dk); }
.bg-dark { background: var(--ink); }
.bg-teal { background: var(--primary); }
.bg-white { background: var(--white); }

.section-label {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); font-weight: 600; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--primary); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--primary);
  line-height: 1.2; margin-bottom: 0.75rem;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--primary); font-style: italic; }
.section-sub { font-size: 0.9rem; color: var(--ink-lt); max-width: 580px; line-height: 1.75; margin-bottom: 3rem; }
.section-rule { width: 44px; height: 2px; background: var(--accent); margin-bottom: 1.2rem; }

.bg-dark .section-label, .bg-teal .section-label { color: var(--primary-pale); }
.bg-dark .section-title, .bg-teal .section-title { color: var(--white); }
.bg-dark .section-sub, .bg-teal .section-sub { color: rgba(255,255,255,0.65); }

/* ── CTA BAND ── */
.cta-band { background: var(--primary); padding: 5rem 2.5rem; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); font-weight: 700; margin-bottom: 1rem; line-height: 1.25; }
.cta-band p { font-size: 0.9rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; line-height: 1.75; }
.cta-band .btn-primary { background: var(--white); color: var(--primary); }
.cta-band .btn-primary:hover { background: var(--primary-pale); color: var(--primary); }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.4rem 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; gap: 1rem;
}
.faq-question { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: background 0.2s;
}
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--primary); border-radius: 2px; }
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: transform 0.3s, opacity 0.3s; }
.faq-item.open .faq-icon { background: var(--primary); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 1.4rem; font-size: 0.87rem; color: var(--ink-body); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── SERVICES GRID (homepage) ── */
.services-grid { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
.service-img { overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.service-row:hover .service-img img { transform: scale(1.04); }
.service-img-placeholder { width: 100%; height: 100%; background: var(--ink-mid); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.service-content { padding: 3.5rem 4rem; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.service-row:nth-child(even) .service-content { background: var(--surface); }
.service-num { display: none; }
.service-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.service-desc { font-size: 0.85rem; color: var(--ink-body); line-height: 1.8; margin-bottom: 1.5rem; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail-hero {
  position: relative; height: 480px;
  background: var(--ink); overflow: hidden;
}
.service-detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.service-detail-hero-overlay {
  position: absolute; inset: 0;
  /* Was 0.88->0.45 (much darker than the home/page heroes). Matched to the
     bottom-aligned .page-hero-overlay treatment (0.65->0.28) so service pages
     read as light as about/services, while staying readable for the longer
     bottom-anchored hero intro. */
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.30) 100%);
}
.service-detail-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: var(--nav-h) 2.5rem 3rem;
  height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
}
.service-detail-hero-inner .breadcrumb { margin-bottom: 0.75rem; }
.service-detail-hero-inner h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 1rem; max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.service-detail-hero-inner p {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  max-width: 600px; line-height: 1.75; margin-bottom: 1.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.service-body { max-width: 820px; margin: 0 auto; }
.service-body p { font-size: 0.92rem; color: var(--ink-body); line-height: 1.85; margin-bottom: 1.2rem; }
.service-body h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--ink); margin: 2.2rem 0 0.9rem; }
.service-bullets { list-style: none; margin: 1rem 0 1.5rem; }
.service-bullets li { font-size: 0.87rem; color: var(--ink-body); padding-left: 1.4rem; position: relative; margin-bottom: 0.5rem; line-height: 1.6; }
.service-bullets li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }

/* ── ABOUT PAGE ── */
.about-intro-grid { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.about-headshot-wrap { position: relative; }
.about-headshot { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; font-size: 0; color: transparent; }
.about-headshot-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.7rem; letter-spacing: 0.1em; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; flex-wrap: wrap; justify-content: center; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--ink); color: var(--white); border-radius: 2px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--primary); }
.about-intro-text h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); font-weight: 700; margin-bottom: 1.2rem; line-height: 1.25; }
.about-intro-text p { font-size: 0.88rem; color: var(--ink-body); line-height: 1.85; margin-bottom: 1rem; }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 0; border-top: 1px solid var(--border); }
.about-col-title { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); font-weight: 700; margin-bottom: 1.2rem; }
.check-list { list-style: none; }
.check-list li { font-size: 0.85rem; color: var(--ink-body); padding: 0.5rem 0 0.5rem 1.8rem; position: relative; border-bottom: 1px solid var(--border); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 600; font-size: 0.8rem; }
.standards-box { background: var(--primary-pale); border-left: 3px solid var(--primary); padding: 1.5rem 1.6rem; }
.standards-box h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.75rem; font-weight: 700; }
.standards-box p { font-size: 0.83rem; color: var(--ink-body); line-height: 1.8; }
.calm-space { background: var(--accent-pale); border: 1px solid rgba(0,0,0,0.08); padding: 3.5rem 4rem; text-align: center; margin-top: 4rem; }
.calm-space h2 { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); font-weight: 700; margin-bottom: 1rem; }
.calm-space p { font-size: 0.87rem; color: var(--ink-body); max-width: 580px; margin: 0 auto 1.5rem; line-height: 1.8; }

/* ── SESSION LENGTH ── */
.session-box { background: var(--primary-pale); padding: 3rem 3.5rem; margin-top: 2rem; }
.session-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.session-box h2 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); font-weight: 700; margin-bottom: 0.75rem; }
.session-box p { font-size: 0.87rem; color: var(--ink-body); line-height: 1.8; max-width: 480px; margin-bottom: 0.75rem; }
.session-pill { background: var(--white); border-left: 3px solid var(--primary); padding: 1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.session-pill:last-of-type { border-left-color: var(--accent); margin-bottom: 1rem; }
.session-pill-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--ink); }
.session-pill-desc { font-size: 0.72rem; color: var(--ink-lt); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-block { margin-bottom: 2.5rem; }
.contact-block h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 700; margin-bottom: 0.75rem; }
.contact-block p, .contact-block a { font-size: 0.85rem; color: var(--ink-body); line-height: 1.8; text-decoration: none; }
.contact-block a { color: var(--primary); }
.contact-block a:hover { text-decoration: underline; }
.contact-block .btn-primary { color: var(--white) !important; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.83rem; color: var(--ink-body); padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.hours-list li:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--ink); }
.map-wrap { width: 100%; height: 300px; overflow: hidden; margin-top: 1.5rem; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder { width: 100%; height: 300px; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.form-group input, .form-group textarea { border: 1px solid var(--border); padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.85rem; color: var(--ink-body); outline: none; transition: border-color 0.2s; background: var(--white); border-radius: 2px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { background: var(--primary); color: var(--white); border: none; padding: 0.9rem 2rem; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; border-radius: 2px; width: 100%; }
.form-submit:hover { background: var(--primary-dark); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 4rem 2.5rem 2rem; }
.footer-body-text { color: rgba(255,255,255,0.45); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { grid-template-columns: 1.4fr 1fr 1fr 0.9fr; display: grid; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { text-decoration: none; }
.footer-logo-svg { display: block; margin-bottom: 0.75rem; }
.footer-logo-svg svg { height: 60px; width: auto; max-width: 400px; }
.footer-tagline { font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.45); font-style: italic; line-height: 1.5; max-width: 240px; margin-bottom: 1.2rem; }
.footer-col-title { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 1rem; }
.footer-info p, .footer-info a { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.9; text-decoration: none; display: block; }
.footer-info a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); font-size: 0.6rem; font-weight: 600; text-decoration: none; border-radius: 2px; transition: all 0.2s; }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-social a[href=""], .footer-social a:not([href]) { display: none; }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-copy a:hover { color: var(--primary); }
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 0.4rem; }
.footer-nav-list a { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--primary); }
.footer-nav-list .footer-nav-service { font-size: 0.68rem; color: rgba(255,255,255,0.3); padding-left: 0.6rem; }
.footer-nav-list .footer-nav-service:hover { color: rgba(255,255,255,0.6); }

/* ── INTRO SECTION ── */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-text p { font-size: 0.92rem; color: var(--ink-body); line-height: 1.8; margin-bottom: 1.2rem; }
.info-card { background: var(--white); border-left: 3px solid var(--primary); padding: 1.2rem 1.4rem; margin-bottom: 0.8rem; }
.info-card:nth-child(even) { border-left-color: var(--accent); }
.info-card-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 0.3rem; }
.info-card:nth-child(even) .info-card-label { color: var(--accent-dark); }
.info-card-text { font-size: 0.8rem; color: var(--ink-lt); }

/* ── SERVICE SIDEBAR ── */
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
.sidebar-box { background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--primary); padding: 1.8rem; }
.sidebar-section { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.sidebar-other { margin-top: 1.5rem; }
.sidebar-serving { font-size: 0.78rem; color: var(--ink-lt); margin-bottom: 1.2rem; line-height: 1.6; }
.sidebar-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.sidebar-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-lt); margin-bottom: 0.5rem; }
.sidebar-box .btn-primary { display: block; width: 100%; text-align: center; }
.service-detail-hero .btn-primary { width: auto; display: inline-block; }
.sidebar-phone { display: block; font-size: 1.1rem; font-weight: 700; color: var(--primary); text-decoration: none; margin-bottom: 0.25rem; }
.sidebar-email { display: block; font-size: 0.85rem; color: var(--ink-lt); text-decoration: none; }

/* ── RELATED SERVICES ── */
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.related-card { display: block; background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--primary); padding: 1.2rem 1.4rem; margin-bottom: 0.5rem; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.related-card:hover { border-top-color: var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.related-card-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.related-card-desc { font-size: 0.72rem; color: var(--ink-lt); line-height: 1.5; }

/* ── HONEYPOT ── */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row:nth-child(even) { direction: ltr; }
  .service-img { height: 280px; }
  .service-content { padding: 2.5rem 2rem; }
  .about-intro-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .about-headshot-wrap { max-width: 240px; width: 100%; }
  .about-intro-text { text-align: left; }
  .about-intro-text h2 { text-align: center; }
  .about-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .calm-space { padding: 2.5rem 2rem; }
  .session-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .related-services { grid-template-columns: 1fr 1fr; }
  .service-detail-layout { display: block !important; }
  .service-sidebar { position: static; margin-top: 3rem; }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 2.5rem 1.5rem; gap: 1.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.9rem; }
  .section-inner > div[style*="grid-template-columns"] { display: block !important; }
  .section-inner > div[style*="grid-template-columns"] > div { order: unset !important; margin-bottom: 1.5rem; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .badges { gap: 0.5rem; }
  .related-services { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { height: 200px; }
  .service-detail-hero { height: 320px; }
}

/* ── FOOTER SITEMAP (2-column) ── */
.footer-top { grid-template-columns: 1.4fr 1fr 1.4fr; }

.footer-sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-sitemap-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 0.4rem; }
.footer-nav-list a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-sitemap { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-sitemap-grid { grid-template-columns: 1fr 1fr; }
}



