/* Healthy Balance Bodyworks — Apple-premium
   Quiet sage / stone / ivory · Cormorant + Inter · soft materials
   Logo: live client mark only (no A/B/C options) */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap");

:root {
  --ivory: #f7f4ef;
  --ivory-deep: #efeae2;
  --stone: #e8e4dc;
  --sage: #7a9a72;
  --sage-soft: #d8e4d5;
  --sage-deep: #4f6b48;
  --forest: #3d5c34;
  --charcoal: #2f2e2b;
  --ink: #3d3c39;
  --muted: #6b6a66;
  --white: #fffcf8;
  --shadow-sm: 0 1px 2px rgba(47, 46, 43, 0.04);
  --shadow: 0 14px 40px rgba(47, 46, 43, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --max-wide: 1280px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--charcoal); }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* Header */
.site-header {
  background: rgba(255, 252, 248, 0.86);
  backdrop-filter: saturate(1.35) blur(18px);
  -webkit-backdrop-filter: saturate(1.35) blur(18px);
  border-bottom: 1px solid rgba(47, 46, 43, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: var(--sage-soft);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.85rem;
  font-family: var(--font-sans);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  position: relative;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sage);
}

.site-nav .nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.58rem 1.1rem !important;
  border-radius: 999px;
  font-size: 0.85rem;
}
.site-nav .nav-cta::after { display: none !important; }
.site-nav .nav-cta:hover {
  background: #1f1e1c;
  color: var(--white) !important;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5.25rem 0; }
.section-alt { background: var(--white); }
.section-sage { background: linear-gradient(180deg, var(--sage-soft), #e6efe4); }
.section-stone { background: var(--stone); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.85rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  margin: 0 0 1.1rem;
}
h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  margin: 0 0 1rem;
}
h3 {
  font-size: 1.4rem;
  margin: 0 0 0.45rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.65;
}
.muted { color: var(--muted); }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 700px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(47,46,43,0.2) 0%, rgba(47,46,43,0.5) 42%, rgba(30,29,27,0.9) 100%),
    linear-gradient(90deg, rgba(30,29,27,0.4) 0%, transparent 55%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4.25rem;
  width: 100%;
}
.hero h1 { color: var(--white); max-width: 15ch; }
.hero .lead { color: rgba(255,252,248,0.88); }
.hero .eyebrow { color: #b7cbb2; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.page-hero {
  background: var(--white);
  padding: 3.75rem 0 2.75rem;
  border-bottom: 1px solid rgba(47,46,43,0.06);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.88rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--sage);
  color: var(--charcoal);
  border-color: var(--sage);
}
.btn-primary:hover { background: #8aaa82; color: var(--charcoal); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,252,248,0.45);
}
.btn-secondary:hover {
  background: rgba(255,252,248,0.1);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(47,46,43,0.22);
}
.btn-outline:hover {
  background: var(--ivory-deep);
  color: var(--ink);
}

.btn-solid {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-solid:hover { background: #1f1e1c; color: var(--white); }

.btn-lg { padding: 1.02rem 1.7rem; font-size: 1rem; }

/* Grids / cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(47,46,43,0.05);
  height: 100%;
  transition: box-shadow 0.3s var(--ease);
}
.card:hover { box-shadow: var(--shadow); }

.card-sage {
  background: rgba(255,252,248,0.7);
  border: 1px solid rgba(122,154,114,0.22);
  box-shadow: none;
}

.card-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media .card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.card-media .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card-media:hover .card-img img { transform: scale(1.035); }
.card-media .card-body {
  padding: 1.45rem 1.55rem 1.65rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-media .card-body > a {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.icon-pill {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 0.95rem;
  font-size: 1.1rem;
}

/* Story */
.story-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.75rem;
  align-items: center;
}
.story-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: var(--stone);
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(47,46,43,0.06);
  box-shadow: var(--shadow-sm);
}
.story-panel ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.story-panel li { margin-bottom: 0.45rem; }

/* Atmosphere mosaic */
.atmosphere {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0.85rem;
}
.atmosphere figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
.atmosphere figure:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
.cta-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 4.25rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(122,154,114,0.2), transparent 55%);
  pointer-events: none;
}
.cta-strip .wrap { position: relative; }
.cta-strip h2 { color: var(--white); margin-bottom: 0.55rem; }
.cta-strip p {
  color: rgba(255,252,248,0.78);
  max-width: 34rem;
  margin: 0 auto 1.65rem;
}
.cta-strip .hero-actions { justify-content: center; }

/* Quotes */
.quote {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 1.1rem;
  line-height: 1.55;
}
.quote::before {
  content: "“";
  font-style: normal;
  font-size: 2.75rem;
  color: var(--sage);
  line-height: 1;
  display: block;
  margin-bottom: 0.1rem;
  opacity: 0.75;
}
.quote-meta {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-style: normal;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.team-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.35rem;
}
.team-photo {
  width: 132px;
  height: 152px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sage-soft), var(--stone));
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.avatar {
  width: 132px;
  height: 152px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--sage-soft), var(--stone));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}
.team-card .role {
  color: var(--sage-deep);
  font-weight: 500;
  font-size: 0.88rem;
  margin: 0 0 0.55rem;
}
.team-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.service-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.service-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(47,46,43,0.08);
  color: var(--muted);
}
.service-list li:last-child { border-bottom: none; }
.service-list strong { color: var(--ink); font-weight: 500; }

/* Info */
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.65rem;
  border: 1px solid rgba(47,46,43,0.06);
  box-shadow: var(--shadow-sm);
}
.info-box dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.95rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-box dt:first-child { margin-top: 0; }
.info-box dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.6rem 0.35rem;
  border-bottom: 1px solid rgba(47,46,43,0.08);
}
.hours-table th { color: var(--ink); font-weight: 500; width: 40%; }
.hours-table td { color: var(--muted); }

.notice {
  background: var(--ivory-deep);
  border-left: 3px solid var(--sage);
  padding: 1.05rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2rem 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(47,46,43,0.06);
  box-shadow: var(--shadow-sm);
  background: var(--stone);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.map-placeholder {
  background: var(--sage-soft);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  border: 1px dashed var(--sage);
}

/* Footer */
.site-footer {
  background: #1f1e1c;
  color: rgba(255,252,248,0.72);
  padding: 3.75rem 0 1.65rem;
}
.site-footer a { color: #b7cbb2; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  /* live logo is green on black — already matches dark footer */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}
.site-footer h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}
.site-footer p,
.site-footer li {
  font-size: 0.9rem;
  margin: 0.35rem 0;
  line-height: 1.55;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,252,248,0.1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,252,248,0.42);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* Utils */
.stack > * + * { margin-top: 1rem; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.section-intro {
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .story-band { grid-template-columns: 1fr; gap: 2rem; }
  .story-visual { aspect-ratio: 16 / 10; max-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .atmosphere { grid-template-columns: 1fr 1fr; }
  .atmosphere figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; }
  .site-nav.is-open { display: block; }
  .header-inner { flex-wrap: wrap; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.65rem 0 0.25rem;
  }
  .site-nav a { padding: 0.65rem 0.15rem; }
  .site-nav .nav-cta { text-align: center; margin-top: 0.4rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero .wrap { padding-top: 4.25rem; padding-bottom: 3rem; }
  .section { padding: 3.5rem 0; }
  .team-card {
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    padding: 1.1rem;
  }
  .team-photo, .avatar { width: 96px; height: 114px; }
  .atmosphere { grid-template-columns: 1fr; }
  .logo img { height: 44px; }
}


/* ——— Patches aligned to HTML class names ——— */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-intro {
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.atmosphere {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0.85rem;
}
.atmosphere figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
.atmosphere figure:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-pill {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 0.95rem;
  font-size: 1.1rem;
}

.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card-media:hover .card-img img { transform: scale(1.035); }
.card-body {
  padding: 1.45rem 1.55rem 1.65rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body > a {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.team-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.35rem;
}
.team-photo {
  width: 132px;
  height: 152px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sage-soft), var(--stone));
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.role {
  color: var(--sage-deep);
  font-weight: 500;
  font-size: 0.88rem;
  margin: 0 0 0.55rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

.site-nav.is-open { display: block; }

@media (max-width: 960px) {
  .atmosphere { grid-template-columns: 1fr 1fr; }
  .atmosphere figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .atmosphere { grid-template-columns: 1fr; }
  .team-card {
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    padding: 1.1rem;
  }
  .team-photo { width: 96px; height: 114px; }
}
