/* =========================================================
   KINETIX BODY SCIENCE
   Performance-clinical brand system. Editorial type, anatomy-warm
   palette, quiet conversion (Vagaro is the conversion).
   ========================================================= */

:root {
  /* Palette */
  --ink: #0F1518;
  --slate: #2A3340;
  --paper: #F5F2EC;
  --bone: #FAF7F1;
  --line: #DDD7CB;
  --mist: #EBE6DA;
  --copper: #B95E2B;
  --copper-hover: #9E4D22;
  --sage: #4A5D54;
  --muted: #5A6068;
  --success: #2E7D32;
  --error: #B23A3A;

  /* Type */
  --font-display: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --fs-display: clamp(2.5rem, 5.5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.625rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 1.8vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing (8px base) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  --container: 1180px;
  --container-narrow: 760px;
  --container-wide: 1320px;
  --header-h: 76px;
  --radius: 2px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--slate);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--copper); text-decoration: none; }
a:hover, a:focus { color: var(--copper-hover); text-decoration: underline; text-underline-offset: 4px; }

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: 1.15; }
h3 { font-size: var(--fs-h3); font-weight: 500; line-height: 1.25; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.3; font-family: var(--font-body); letter-spacing: 0; }
p { margin-bottom: var(--s-2); }
p:last-child { margin-bottom: 0; }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--s-2);
}
.eyebrow.on-dark { color: #E8C0A0; }
.lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
}
.muted { color: var(--muted); }
.center { text-align: center; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-3); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--s-3); }
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--s-3); }

section { padding-block: var(--s-6); }
@media (min-width: 768px) { section { padding-block: var(--s-7); } }

.section-tight { padding-block: var(--s-5); }
.bg-ink { background: var(--ink); color: var(--bone); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--bone); }
.bg-ink .muted { color: #B2B6BC; }
.bg-paper { background: var(--paper); }
.bg-mist { background: var(--mist); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
  color: #fff;
  text-decoration: none;
}
.btn-ink {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-ink:hover, .btn-ink:focus {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--bone);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
}
.btn-ghost.on-dark { color: var(--bone); border-color: var(--bone); }
.btn-ghost.on-dark:hover { background: var(--bone); color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.95);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--s-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-logo { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-tag {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}

.nav-primary { display: none; }
@media (min-width: 900px) {
  .nav-primary { display: flex; align-items: center; gap: var(--s-4); }
}
.nav-primary a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}
.nav-primary a:hover, .nav-primary a:focus { color: var(--copper); text-decoration: none; }
.nav-primary a[aria-current="page"] { color: var(--copper); }
.nav-primary a.nav-cta {
  background: var(--copper);
  color: #fff;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--copper);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-primary a.nav-cta:hover, .nav-primary a.nav-cta:focus {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
  color: #fff;
  text-decoration: none;
}
.nav-primary a.nav-cta[aria-current="page"] { color: #fff; }

.header-cta { display: none; }
@media (min-width: 900px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--s-1);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9375rem;
  }
  .header-cta:hover { color: var(--copper); text-decoration: none; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: var(--s-2) var(--s-3); margin: 0; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu li:last-child { border-bottom: 0; }
.mobile-menu a {
  display: block;
  padding: var(--s-2) 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.0625rem;
}

/* Hero */
.hero {
  position: relative;
  padding-block: var(--s-6) var(--s-6);
  background: var(--bone);
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding-block: var(--s-7) var(--s-7); } }
.hero-grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-6); }
}
.hero-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.hero-display em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: var(--s-4);
  max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-4); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: var(--fs-small);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: var(--s-3);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--copper);
  pointer-events: none;
  z-index: -1;
}

/* Trust bar */
.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding-block: var(--s-3);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4) var(--s-5);
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Section header */
.section-head { max-width: 720px; margin-bottom: var(--s-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--s-3); }
.section-head p { color: var(--muted); font-size: 1.0625rem; }
.section-head .eyebrow { margin-bottom: var(--s-3); }

/* Service cards */
.services-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}
.service-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: var(--s-3); flex-grow: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: var(--s-2); font-size: 1.375rem; }
.service-card p { color: var(--muted); margin-bottom: var(--s-3); flex-grow: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.service-card-link::after { content: '\2192'; transition: transform 0.2s ease; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* Pillars (Why Choose) */
.pillars {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }
.pillar {
  padding: var(--s-4);
  background: var(--bone);
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
}
.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-3);
}
.pillar p { color: var(--slate); font-size: 1rem; line-height: 1.7; }
.pillar .pillar-stat { margin-top: var(--s-3); }
.pillar-stat {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--copper);
  font-size: 1.5rem;
  line-height: 1;
  margin-top: var(--s-2);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--slate);
}
.review-source svg { width: 12px; height: 12px; }
.review-source.google { background: #fff3e6; color: #b25e0f; }
.review-source.yelp { background: #fde6e6; color: #b22020; }

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  margin-bottom: var(--s-4);
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}
.reviews-rating {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.reviews-stars {
  color: var(--copper);
  font-size: 1.125rem;
  letter-spacing: 2px;
}
.reviews-count {
  font-size: 0.875rem;
  color: var(--muted);
}
.reviews-sources {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-write {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  margin-top: var(--s-4);
}
.reviews-write a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.1rem;
  background: var(--bone);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.reviews-write a:hover {
  border-color: var(--copper);
  color: var(--copper);
  text-decoration: none;
}
.reviews-write svg { width: 14px; height: 14px; }
.review {
  padding: var(--s-4);
  background: var(--bone);
  border: 1px solid var(--line);
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--copper);
  font-size: 1rem;
  margin-bottom: var(--s-2);
  letter-spacing: 2px;
}
.review-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.review-attr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: var(--s-2);
}
.review-name { font-weight: 600; color: var(--ink); }

.featured-review {
  padding: var(--s-5);
  background: var(--ink);
  color: var(--bone);
}
.featured-review .review-quote {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  color: var(--bone);
  margin-bottom: var(--s-4);
}
.featured-review .review-attr { color: #B2B6BC; border-color: rgba(255,255,255,0.18); }
.featured-review .review-name { color: var(--bone); }
.featured-review .review-stars { color: #E8C0A0; }

/* Topical content sections (problem/symptom + service types) */
.topic-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .topic-grid { grid-template-columns: repeat(3, 1fr); } }
.topic {
  padding: var(--s-4);
  border-left: 2px solid var(--copper);
  background: var(--bone);
}
.topic h3 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--s-2);
  color: var(--ink);
  letter-spacing: 0;
}
.topic p { color: var(--slate); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0; }
.topic-stat {
  display: inline-block;
  margin-top: var(--s-3);
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

/* Booking section (Vagaro) */
.booking {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .booking-grid { grid-template-columns: 1fr 1.2fr; gap: var(--s-6); }
}
.booking-copy h2 { margin-bottom: var(--s-3); }
.booking-copy ul { list-style: none; padding: 0; margin-block: var(--s-3); }
.booking-copy li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--slate);
}
.booking-copy li:last-child { border-bottom: 0; }
.booking-copy li::before {
  content: '\2713';
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}
.vagaro-embed {
  background: var(--bone);
  padding: var(--s-3);
  border: 1px solid var(--line);
  min-height: 500px;
}
.vagaro-embed iframe { width: 100%; min-height: 600px; border: 0; }

/* About preview */
.about-preview {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-preview { grid-template-columns: 1fr 1.2fr; gap: var(--s-6); }
}
.about-preview-img { position: relative; }
.about-preview-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-preview-img::after {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--copper);
  z-index: -1;
}
.credentials-list {
  list-style: none;
  padding: 0;
  margin-top: var(--s-3);
  display: grid;
  gap: var(--s-1);
}
.credentials-list li {
  padding-left: var(--s-2);
  border-left: 2px solid var(--copper);
  font-size: 0.9375rem;
  color: var(--slate);
}

/* FAQ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-3);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--copper);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item summary:hover { color: var(--copper); }
.faq-item p {
  margin-top: var(--s-2);
  color: var(--slate);
  line-height: 1.65;
}

/* Service-area / locations */
.area-grid {
  display: grid;
  gap: var(--s-1) var(--s-3);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
}
@media (min-width: 600px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-grid li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding: var(--s-1) 0;
  border-bottom: 1px dotted var(--line);
}

/* Service-page-specific sections */
.service-intro {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .service-intro { grid-template-columns: 1.1fr 1fr; gap: var(--s-6); }
}
.service-intro-text .lede { margin-bottom: var(--s-3); }
.service-intro-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-body { width: 100%; }
.service-body h2 { margin-block: var(--s-5) var(--s-3); }
.service-body h2:first-child { margin-top: 0; }
.service-body h3 { margin-block: var(--s-4) var(--s-3); font-size: 1.25rem; }
.service-body p { margin-bottom: var(--s-3); line-height: 1.75; }
.service-body ul, .service-body ol { margin: var(--s-3) 0 var(--s-4) 1.5rem; }
.service-body li { margin-bottom: var(--s-2); line-height: 1.7; }
.service-body .process-list { margin-left: 0; }
.service-body .process-list li { padding-left: var(--s-6); }
/* Backward-compat alias */
.service-content { width: 100%; }
.service-content h2 { margin-block: var(--s-5) var(--s-3); }
.service-content h3 { margin-block: var(--s-4) var(--s-3); font-size: 1.25rem; }
.service-content p { margin-bottom: var(--s-3); line-height: 1.75; }
.service-content ul, .service-content ol { margin: var(--s-3) 0 var(--s-4) 1.5rem; }
.service-content li { margin-bottom: var(--s-2); line-height: 1.7; }

.process-list {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 0 0;
  counter-reset: step;
}
.process-list li {
  position: relative;
  padding-left: var(--s-6);
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}
.process-list li:last-child { border-bottom: 0; }
.process-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--s-3);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--copper);
  line-height: 1;
}
.process-list h4 {
  font-size: 1.125rem;
  margin-bottom: var(--s-1);
  color: var(--ink);
}
.process-list p { color: var(--slate); margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumb {
  font-size: var(--fs-small);
  color: var(--muted);
  padding-block: var(--s-3);
}
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s-1); }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: '/'; margin: 0 var(--s-1); color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #B2B6BC;
  padding-block: var(--s-6) var(--s-4);
}
.footer-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand img { height: 60px; width: auto; margin-bottom: var(--s-2); filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.6; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: var(--s-2);
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--s-1); }
.footer-col a { color: #B2B6BC; font-size: 0.9375rem; }
.footer-col a:hover { color: var(--bone); text-decoration: none; }
.footer-col p { font-size: 0.9375rem; line-height: 1.6; color: #B2B6BC; }
.footer-col p strong { color: var(--bone); font-weight: 600; }
.footer-bar {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: var(--fs-small);
}
.footer-bar a { color: #B2B6BC; }
.footer-bar a:hover { color: var(--bone); text-decoration: none; }
.footer-bar-links { display: flex; gap: var(--s-2) var(--s-3); flex-wrap: wrap; align-items: center; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #B2B6BC;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-icon:hover, .social-icon:focus {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--bone);
  text-decoration: none;
}
.social-icon svg { display: block; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 40;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
.sticky-cta a {
  padding: var(--s-2);
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--bone);
  border: 0;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.sticky-cta a:hover { color: var(--bone); text-decoration: none; }
.sticky-cta a.primary { background: var(--copper); }
.sticky-cta a + a { border-left: 1px solid rgba(255,255,255,0.08); }
body { padding-bottom: 60px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* Contact page */
.contact-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-6); } }
.contact-card {
  padding: var(--s-4);
  background: var(--bone);
  border: 1px solid var(--line);
}
.contact-card h3 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; margin-bottom: var(--s-2); color: var(--ink); }
.contact-card p { margin-bottom: var(--s-2); font-size: 0.9375rem; color: var(--slate); line-height: 1.7; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card + .contact-card { margin-top: var(--s-3); }
.map-embed { aspect-ratio: 16 / 9; width: 100%; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.hours-list { list-style: none; padding: 0; margin-top: var(--s-2); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 0.9375rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; color: var(--ink); }
.hours-list .time { color: var(--muted); }

/* Tammy / About page */
.about-hero {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .about-hero { grid-template-columns: 1fr 1.3fr; gap: var(--s-6); } }
.about-creds-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  margin-top: var(--s-3);
}
@media (min-width: 600px) { .about-creds-grid { grid-template-columns: repeat(2, 1fr); } }
.cred-card {
  padding: var(--s-3);
  border: 1px solid var(--line);
  background: var(--bone);
}
.cred-card .year { display: block; font-family: var(--font-display); color: var(--copper); font-size: 0.875rem; font-weight: 500; margin-bottom: var(--s-1); }
.cred-card h4 { font-size: 0.9375rem; margin-bottom: var(--s-1); color: var(--ink); }
.cred-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; line-height: 1.5; }

/* Legal page */
.legal-content { max-width: 760px; margin-inline: auto; padding-block: var(--s-5); }
.legal-content h2 { margin-block: var(--s-5) var(--s-3); font-size: 1.375rem; }
.legal-content h3 { margin-block: var(--s-4) var(--s-2); font-size: 1.125rem; font-family: var(--font-body); }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.75; margin-bottom: var(--s-2); }
.legal-content ul { margin: var(--s-3) 0 var(--s-3) 1.5rem; }

/* Page header for non-home pages */
.page-header {
  background: var(--paper);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: var(--s-3); }
.page-header h1 { margin-bottom: var(--s-3); }
.page-header p { color: var(--muted); font-size: 1.0625rem; max-width: 60ch; line-height: 1.7; }

/* Utility margins */
.mt-1 { margin-top: var(--s-1); }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }

/* Print-friendly + reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
