

@font-face {
  font-family: "Pontano Sans";
  src: url("assets/fonts/pontano-sans.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --blvd-widget-chrome-offset: 200px;
  --paper: #f8f5f1;
  --cream: #e4ebf1;
  --mist: #9ca7b3;
  --mist-soft: #edf2f5;
  --sage: #b6b7a5;
  --sage-dark: #526477;
  --clay: #c6a98d;
  --clay-deep: #76583f;
  --honey-soft: #edf3f6;
  --redwood: #8a5d52;
  --slate: #536273;
  --ink: #3d4a58;
  --charcoal: #3d4a58;
  --white: #ffffff;
  --line: rgba(61, 74, 88, 0.16);
  --line-soft: rgba(61, 74, 88, 0.1);
  --shadow: 0 22px 60px rgba(61, 74, 88, 0.1);
  --soft-shadow: 0 14px 34px rgba(61, 74, 88, 0.07);
  --section-dark: #233140;
  --header-bg: rgba(248, 245, 241, 0.94);
  --header-border: rgba(61, 74, 88, 0.12);
  --header-link: #4f5b67;
  --header-link-active: #3d4a58;
  --nav-menu-bg: #fffdf9;
  --panel-soft: rgba(255, 253, 249, 0.86);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans-display: "Tenor Sans", Arial, sans-serif;
  --sans: "Avenir Next", Avenir, "Pontano Sans", Arial, sans-serif;
  --radius: 2px;
  --radius-arch: 2px;
  --max: 1240px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --ease-lux: cubic-bezier(0.22, 0.61, 0.36, 1);
}


* { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  scroll-padding-top: 105px;
}

main [id] { scroll-margin-top: 105px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a {
  color: var(--charcoal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
a:hover { color: var(--clay-deep); }

p { margin: 0 0 1.25rem; }

h1, h2, h3, h4 {
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 480;
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(3.1rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2.35rem, 3.8vw, 3.5rem); }
h2 + p { margin-top: 1.1rem; }
h3 { font-family: var(--sans-display); font-size: 1.32rem; line-height: 1.28; letter-spacing: 0.02em; }
h4 { font-family: var(--sans-display); font-size: 1.2rem; line-height: 1.3; }

ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: 0.45rem; }

.eyebrow {
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans-display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: var(--clay);
  flex: 0 0 auto;
}

/* ---------- layout ---------- */

.section { padding: clamp(5rem, 9vw, 8.5rem) var(--pad-x); }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) var(--pad-x); }
.section-cream { background: var(--cream); }
.section-mist { background: var(--mist-soft); }

.section-dark {
  background: var(--section-dark);
  color: rgba(255, 253, 249, 0.8);
}
.section-dark h2, .section-dark h3, .section-dark .eyebrow { color: var(--paper); }
.section-dark .eyebrow::before { background: var(--clay); }
.section-dark a { color: var(--paper); }
.section-dark a:hover { color: var(--clay); }

.container { margin: 0 auto; max-width: var(--max); width: 100%; }
.narrow { max-width: 820px; }

.split {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}
.split.reverse { grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr); }

.section-heading {
  align-items: flex-end;
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-heading.section-heading-stack { margin-bottom: 1.4rem; }
.section-heading > div h2 + p { max-width: none; }
.service-detail-section { padding-bottom: clamp(2.5rem, 4vw, 4rem); padding-top: clamp(3rem, 5vw, 4.5rem); }
.service-detail-section .section-heading { margin-bottom: 1.6rem; }
.service-detail-section .section-heading p { max-width: none; }
.section-heading > div { max-width: none; }
.section-heading > div p { max-width: none; }
.section-heading p { max-width: 460px; margin-bottom: 0.35rem; font-size: 0.98rem; color: var(--slate); }
.section-heading h2 + p { max-width: 720px; }

/* ---------- buttons ---------- */

.button-row {
  display: grid;
  gap: 0.9rem;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 2rem;
  width: fit-content;
}

.button {
  align-items: center;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  color: var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans-display);
  font-size: 0.78rem;
  gap: 0.6rem;
  justify-content: center;
  letter-spacing: 0.24em;
  line-height: 1;
  padding: 1.05rem 2.1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 260ms var(--ease-lux), color 260ms var(--ease-lux), border-color 260ms var(--ease-lux);
  white-space: nowrap;
}

.button-primary {
  background: var(--charcoal);
  color: var(--paper);
}
.button-primary:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  color: var(--white);
}

.button-secondary {
  background: transparent;
  border-color: rgba(61, 74, 88, 0.34);
}
.button-secondary:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: rgba(61, 74, 88, 0.04);
}

.section-dark .button-primary,
.cta-band .button-primary {
  background: var(--clay);
  border-color: var(--clay);
  color: #2a2019;
}
.section-dark .button-primary:hover,
.cta-band .button-primary:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--charcoal);
}
.section-dark .button-secondary,
.cta-band .button-secondary {
  border-color: rgba(248, 245, 241, 0.4);
  color: var(--paper);
}
.section-dark .button-secondary:hover,
.cta-band .button-secondary:hover {
  border-color: var(--paper);
  background: rgba(248, 245, 241, 0.08);
  color: var(--paper);
}

/* ---------- header ---------- */

.skip-link {
  background: var(--charcoal);
  color: var(--paper);
  left: 1rem;
  padding: 0.6rem 1rem;
  position: absolute;
  top: -4rem;
  transition: top 200ms ease;
  z-index: 60;
}
.skip-link:focus { top: 1rem; }

.site-header {
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1520px;
  min-height: 88px;
  padding: 0.75rem var(--pad-x);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
}
.brand-logo {
  display: block;
  height: auto;
  max-height: 58px;
  width: min(340px, 34vw);
}
.brand-logo-light { display: none !important; }

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.1rem, 2vw, 1.9rem);
}
.site-nav a {
  color: var(--header-link);
  font-family: var(--sans-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--header-link-active); }
.site-nav > a[aria-current="page"]:not(.nav-book),
.nav-dropdown [aria-current="page"].nav-dropdown-trigger {
  border-bottom: 1px solid var(--clay);
  padding-bottom: 0.3rem;
}

.nav-dropdown { align-items: center; display: inline-flex; position: relative; }
.nav-dropdown::before {
  content: "";
  height: 0.9rem;
  left: -0.75rem;
  position: absolute;
  right: -0.75rem;
  top: 100%;
}
.nav-dropdown-trigger { align-items: center; display: inline-flex; gap: 0.45rem; }
.nav-dropdown-trigger::after {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 0.36rem;
  margin-top: -0.2rem;
  opacity: 0.6;
  transform: rotate(45deg);
  width: 0.36rem;
}

.nav-dropdown-menu {
  background: var(--nav-menu-bg);
  border: 1px solid var(--header-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.1rem;
  left: 50%;
  min-width: 250px;
  opacity: 0;
  padding: 0.7rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 0.7rem);
  transform: translate(-50%, 0.4rem);
  transition: opacity 200ms var(--ease-lux), transform 200ms var(--ease-lux), visibility 200ms;
  visibility: hidden;
  z-index: 30;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}
.site-nav .nav-dropdown-menu a {
  border-radius: var(--radius);
  display: block;
  font-size: 0.74rem;
  line-height: 1.25;
  padding: 0.68rem 0.85rem;
  white-space: nowrap;
}
.site-nav .nav-dropdown-menu a:hover {
  background: var(--mist-soft);
  color: var(--header-link-active);
}

.site-nav .nav-book {
  align-items: center;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  color: var(--paper);
  display: inline-flex;
  padding: 0.78rem 1.5rem;
  transition: background 240ms var(--ease-lux), color 240ms var(--ease-lux), border-color 240ms var(--ease-lux);
}
.site-nav a.nav-book,
.site-nav a.nav-book[aria-current="page"] { color: var(--paper); }
.site-nav .nav-book:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  color: var(--white);
}

.nav-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 46px;
  justify-content: center;
  padding: 0 11px;
  width: 52px;
}
.nav-toggle span {
  background: var(--charcoal);
  display: block;
  height: 1px;
  transition: transform 240ms ease, opacity 200ms ease;
  width: 100%;
}

/* ---------- hero ---------- */

.hero {
  overflow: hidden;
  position: relative;
}

.home-hero {
  align-items: flex-end;
  display: flex;
  min-height: clamp(500px, 75svh, 780px);
}

.hero-poster,
.hero-video {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
.hero-poster img,
.hero-video { height: 100%; object-fit: cover; width: 100%; }

.home-hero::after {
  background:
    linear-gradient(to top, rgba(23, 31, 40, 0.78) 0%, rgba(23, 31, 40, 0.3) 44%, rgba(23, 31, 40, 0.12) 70%, rgba(23, 31, 40, 0.22) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x) clamp(4rem, 7vw, 6.5rem);
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-copy { max-width: 820px; }
.hero-copy .eyebrow { color: rgba(248, 245, 241, 0.85); }
.hero-copy .eyebrow::before { background: var(--clay); }
.hero-copy h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-copy p {
  color: rgba(248, 245, 241, 0.86);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 640px;
}
.hero-copy .button-secondary {
  border-color: rgba(248, 245, 241, 0.44);
  color: var(--paper);
}
.hero-copy .button-secondary:hover {
  background: rgba(248, 245, 241, 0.1);
  border-color: var(--paper);
  color: var(--paper);
}
.hero-copy .button-primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--charcoal);
}
.hero-copy .button-primary:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: #2a2019;
}

@keyframes gfmc-hero-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy > * { animation: none; }

/* ---------- image panels ---------- */

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.image-panel img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 1200ms var(--ease-lux);
}
.image-panel:hover img { transform: scale(1.025); }

/* ---------- home: routine intro ---------- */

.routine-intro { background: var(--paper); }
.routine-intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}
.routine-intro-image { order: 2; }
.routine-intro-copy p:last-of-type { color: var(--slate); font-size: 0.97rem; }
.routine-intro-image {
  aspect-ratio: 4 / 4.7;
  min-height: 420px;
  min-width: 0;
  width: 100%;
  border-radius: var(--radius-arch);
  overflow: hidden;
}
.routine-intro-image img { height: 100%; object-fit: cover; width: 100%; }
.routine-intro-copy { max-width: 640px; }
.routine-intro-copy h2 { margin-bottom: 1.4rem; }
.routine-intro-copy p { color: var(--slate); }
.routine-intro-copy p:first-of-type { color: var(--ink); }

/* ---------- home: services ---------- */

.home-services { padding-top: 0; }
.home-services .section-heading > div { max-width: 920px; }
.home-services .section-heading h2 { font-size: clamp(1.9rem, 2.9vw, 2.7rem); }
.home-services .section-heading p { max-width: 620px; }

.card-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: transparent;
  display: flex;
  flex-direction: column;
}
.service-card img {
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-arch);
  object-fit: cover;
  width: 100%;
  transition: transform 1200ms var(--ease-lux);
}
.service-card:hover img { transform: scale(1.02); }
.service-card-body {
  border-top: 1px solid var(--line);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
}
.service-card-body h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
}
.service-card-body p {
  color: var(--slate);
  font-size: 0.96rem;
  margin: 0;
}
.service-card-body .button {
  align-self: flex-start;
  border: 0;
  border-bottom: 1px solid var(--clay);
  border-radius: 0;
  margin-top: auto;
  padding: 0.85rem 0 0.45rem;
}
.service-card-body .button:hover {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--clay-deep);
}

/* ---------- home: memberships ---------- */

#memberships { padding-top: clamp(5rem, 9vw, 8.5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }

.membership-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
.membership-heading p { max-width: 720px; }

.membership-tip {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  text-align: center !important;
  margin: 2.2rem auto 0 !important;
  max-width: 760px;
  padding: 0 !important;
  color: var(--slate);
  font-size: 0.95rem;
}
.membership-tip strong { color: var(--charcoal); font-weight: 600; }

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 2.1rem 1.8rem 1.9rem;
  transition: border-color 300ms ease, transform 400ms var(--ease-lux), box-shadow 400ms var(--ease-lux);
}
.pricing-card:hover {
  border-color: rgba(61, 74, 88, 0.3);
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}
.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
}
.pricing-card-heading {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}
.badge {
  border: 1px solid var(--clay);
  border-radius: 999px;
  color: var(--clay-deep);
  flex: 0 0 auto;
  font-family: var(--sans-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card .sessions {
  border-bottom: 1px solid var(--line-soft);
  color: var(--slate);
  font-family: var(--sans-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin: 0.9rem 0 1.1rem;
  padding-bottom: 1.1rem;
  text-transform: uppercase;
}
.pricing-card .price {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 480;
  line-height: 1;
  margin: 0 0 1.1rem;
}
.pricing-card .price span {
  color: var(--slate);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.pricing-card > p:not(.price):not(.sessions) {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}
.pricing-card .button { margin-top: auto; width: 100%; }

.pricing-card.featured {
  background: var(--section-dark);
  border-color: var(--section-dark);
  color: rgba(248, 245, 241, 0.78);
}
.pricing-card.featured h3,
.pricing-card.featured .price { color: var(--paper); }
.pricing-card.featured .price span { color: rgba(248, 245, 241, 0.6); }
.pricing-card.featured .sessions {
  border-color: rgba(248, 245, 241, 0.18);
  color: rgba(248, 245, 241, 0.66);
}
.pricing-card.featured > p:not(.price):not(.sessions) { color: rgba(248, 245, 241, 0.72); }
.pricing-card.featured .badge { border-color: var(--clay); color: var(--clay); }
.pricing-card.featured .button-primary {
  background: var(--clay);
  border-color: var(--clay);
  color: #2a2019;
}
.pricing-card.featured .button-primary:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--charcoal);
}

#plans .membership-includes,
#memberships .membership-includes,
.membership-includes {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: grid;
  gap: 1.5rem clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  margin-top: 3rem !important;
  padding: 2.4rem 0 0 !important;
}
#plans .membership-includes h3,
#memberships .membership-includes h3,
.membership-includes h3 {
  font-family: var(--sans-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  line-height: 1.7;
  margin: 0 !important;
  text-align: left !important;
  text-transform: uppercase;
}
#plans .membership-includes ul,
#memberships .membership-includes ul {
  display: grid;
  gap: 0.45rem 2.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
#plans .membership-includes li,
#memberships .membership-includes li { margin: 0; padding-left: 1.65rem; position: relative; }
#plans .membership-includes li::before,
#memberships .membership-includes li::before {
  content: "\2713";
  font-weight: 700;
  left: 0;
  position: absolute;
}
.membership-includes li { color: var(--slate); font-size: 0.95rem; }
.membership-includes li::before { color: var(--clay-deep) !important; }
@media (max-width: 860px) {
  #memberships .membership-includes { grid-template-columns: minmax(0, 1fr); gap: 1.2rem; }
  #plans .membership-includes ul,
#memberships .membership-includes ul { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- home: results / benefits ---------- */

.pilates-classes-section { padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.pilates-classes-section .section-heading { margin-bottom: 1.4rem; }
.pilates-classes-section .container > .button-row {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3rem);
  grid-auto-columns: unset;
  grid-auto-flow: row;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: 0;
  width: 100%;
}
.pilates-classes-section .container > .button-row .button { justify-self: center; min-width: 320px; }
@media (max-width: 980px) {
  .pilates-classes-section .container > .button-row { grid-template-columns: minmax(0, 1fr); }
  .pilates-classes-section .container > .button-row .button { min-width: 0; width: 100%; }
}
.pilates-why-section { padding-top: clamp(3rem, 5vw, 4.5rem); }
.pilates-start-section { padding-top: clamp(3rem, 5vw, 4.5rem); }
.pilates-start-section .eyebrow { margin-bottom: 0.7rem; }
@media (min-width: 1100px) {
  .pilates-start-section .membership-results-copy h2 { white-space: nowrap; }
}
.membership-results { padding-top: clamp(3rem, 5vw, 4.5rem); }
.membership-results-layout {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
}
.membership-results-copy p { color: var(--ink); }
.membership-results-copy > p:first-of-type { font-size: 1.05rem; }
.service-area { font-size: 0.88rem; letter-spacing: 0.02em; }

.membership-benefit-panel { align-self: center; display: grid; gap: 0; }
.benefit-card {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.3rem;
  grid-template-columns: auto 1fr;
  padding: 1.35rem 0;
}
.benefit-card:last-child { border-bottom: 1px solid var(--line); }
.benefit-number {
  color: var(--clay-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 480;
  line-height: 1.4;
  min-width: 2.1rem;
}
.benefit-card h3 {
  font-family: var(--sans-display);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.benefit-card p { color: var(--slate); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    linear-gradient(rgba(28, 38, 49, 0.82), rgba(28, 38, 49, 0.82)),
    url("assets/studio-space.webp") center 62% / cover no-repeat;
  color: rgba(248, 245, 241, 0.82);
  padding: clamp(6rem, 11vw, 10rem) var(--pad-x);
  text-align: center;
}
.cta-band-pilates {
  background:
    linear-gradient(rgba(28, 38, 49, 0.78), rgba(28, 38, 49, 0.78)),
    url("assets/pilates-why-studio.webp") center 60% / cover no-repeat;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.cta-band p { margin: 0 auto; max-width: 560px; }
.cta-band .button-row { margin-inline: auto; margin-top: 2.4rem; }

/* ---------- contact ---------- */

.contact-section { background: var(--paper); padding-top: clamp(3rem, 5vw, 4.5rem); }
.contact-section .section-heading {
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.contact-section .section-heading p { max-width: 680px; }

.contact-grid {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  padding: clamp(1.75rem, 4vw, 3.25rem);
}

.contact-form {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto auto 1fr auto;
  height: 100%;
}
.form-row-full { display: grid; grid-template-rows: auto 1fr; }
.form-row-full textarea { height: 100%; min-height: 140px; }
.form-row { display: grid; gap: 0.15rem; }
.form-row-full { grid-column: 1 / -1; }
.contact-form label {
  color: var(--slate);
  font-family: var(--sans-display);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(61, 74, 88, 0.3);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.35rem 0.1rem 0.55rem;
  transition: border-color 240ms ease;
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--charcoal);
  outline: none;
}
.contact-form .button {
  align-self: start;
  font-size: 0.78rem;
  grid-column: 1 / -1;
  justify-self: start;
  letter-spacing: 0.14em;
  line-height: 1.72;
  margin-top: 0.4rem;
  padding: 0.78rem 1.5rem;
}

.contact-map-panel { display: grid; gap: 1.75rem; align-content: start; }
.map-frame {
  background: var(--mist-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  flex: 1;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
.apple-map-link {
  align-items: center;
  display: flex;
  height: 100%;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-decoration: none;
}
.apple-map-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 0.3rem;
  padding: 1.4rem 1.7rem;
  text-align: center;
}
.apple-map-label {
  color: var(--slate);
  font-family: var(--sans-display);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.apple-map-title { font-family: var(--sans-display); font-size: 1rem; color: var(--charcoal); }
.apple-map-address { color: var(--slate); font-size: 0.88rem; line-height: 1.5; }
.apple-map-marker {
  background: var(--clay);
  border: 3px solid var(--white);
  border-radius: 50%;
  bottom: 18%;
  box-shadow: 0 4px 12px rgba(61, 74, 88, 0.3);
  height: 16px;
  position: absolute;
  right: 22%;
  width: 16px;
}

.map-details h3 {
  font-family: var(--sans-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.map-contact-lines { display: grid; gap: 0.9rem; }
.contact-item {
  display: grid;
  gap: 0.15rem;
}
.contact-label {
  color: var(--slate);
  font-family: var(--sans-display);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.contact-item a { text-decoration: none; }
.contact-item a:hover { color: var(--clay-deep); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--section-dark);
  color: rgba(248, 245, 241, 0.72);
  padding: clamp(4rem, 7vw, 6rem) var(--pad-x) 2.4rem;
}
.site-footer a { color: rgba(248, 245, 241, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--clay); }
.footer-grid {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  grid-template-columns: minmax(340px, 1.5fr) minmax(0, 0.7fr) minmax(0, 1.2fr) minmax(0, 1fr);
  padding-bottom: 1.5rem;
}
@media (min-width: 1101px) {
  .footer-brand-address { white-space: nowrap; }
}
.footer-grid > div { display: grid; align-content: start; gap: 0.8rem; justify-items: start; }
.footer-brand img { display: block; height: auto; width: min(360px, 100%); }
.footer-brand-address { color: rgba(248, 245, 241, 0.55); font-size: 0.9rem; margin: 0; }
.footer-grid h3,
.footer-grid .footer-heading {
  color: rgba(248, 245, 241, 0.72);
  font-family: var(--sans-display);
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.28em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.footer-grid > div > a {
  font-family: var(--sans-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-contact p { font-size: 0.94rem; margin: 0 0 0.6rem; }
.footer-brand .social-links { justify-self: center; margin-top: 0.2rem; }
.social-links { display: flex; gap: 0.8rem; margin-top: 0.6rem; }
.social-icon {
  align-items: center;
  border: 1px solid rgba(248, 245, 241, 0.25);
  border-radius: 50%;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: border-color 240ms ease, background 240ms ease;
  width: 40px;
}
.social-icon:hover { background: rgba(248, 245, 241, 0.08); border-color: var(--clay); }
.social-icon svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  width: 18px;
}
.social-icon-facebook svg { fill: currentColor; stroke: none; }

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(248, 245, 241, 0.14);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 1.5rem;
  justify-content: space-between;
  padding-top: 1.8rem;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-legal-link { font-size: 0.82rem; }

/* dark mode dropped — hide the toggle */
.theme-toggle { display: none !important; }

/* ---------- reveals ---------- */

.gfmc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms var(--ease-lux), transform 900ms var(--ease-lux);
  transition-delay: var(--reveal-delay, 0ms);
}
.gfmc-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .gfmc-reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > * { animation: none; }
}










































/* ============================================================
   Inner pages — heroes
   ============================================================ */

.memberships-hero, .services-hero, .training-hero, .about-hero, .book-hero, .pilates-hero {
  align-items: flex-end;
  display: flex;
  min-height: clamp(480px, 66svh, 720px);
  position: relative;
}
.memberships-hero::before, .services-hero::before, .training-hero::before, .about-hero::before, .book-hero::before, .pilates-hero::before {
  content: "";
  inset: 0;
  position: absolute;
  background-position: center;
  background-size: cover;
}
.memberships-hero::before { background-image: url("assets/gfmc-hero-sauna.webp"); }
.pilates-hero::before { background-image: url("assets/pilates-why-studio.webp"); background-position: center 60%; }
.services-hero::before { background-image: url("assets/gfmc-hero-studio.webp"); background-position: center 48%; }
.training-hero::before { background-image: url("assets/personal-training-lisa.webp"); background-position: center 30%; }
.about-hero::before { background-image: url("assets/studio-space.webp"); }
.book-hero::before { background-image: url("assets/book-studio.webp"); }
.memberships-hero::after, .services-hero::after, .training-hero::after, .about-hero::after, .book-hero::after, .pilates-hero::after {
  background: linear-gradient(to top, rgba(23, 31, 40, 0.86) 0%, rgba(23, 31, 40, 0.48) 52%, rgba(23, 31, 40, 0.24) 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.services-hero .hero-copy { max-width: 960px; }
.services-hero .hero-copy h1 { font-size: clamp(2.6rem, 4.8vw, 4.2rem); }
.hero .hero-content { position: relative; z-index: 2; }
.hero .hero-copy h1 { color: var(--white); }
.hero .hero-copy .eyebrow { color: rgba(248, 245, 241, 0.85); }
.hero .hero-copy .eyebrow::before { background: var(--clay); }
.hero .hero-copy p { color: rgba(248, 245, 241, 0.86); font-size: 1.05rem; max-width: 640px; }
.hero .hero-copy h1 { font-size: clamp(2.8rem, 5.4vw, 4.6rem); margin-bottom: 1.3rem; }
.home-hero .hero-copy h1 { font-size: clamp(3.1rem, 6.4vw, 5.6rem); }
.hero .hero-copy .button-primary { background: var(--paper); border-color: var(--paper); color: var(--charcoal); }
.hero .hero-copy .button-primary:hover { background: var(--clay); border-color: var(--clay); color: #2a2019; }
.hero .hero-copy .button-secondary { border-color: rgba(248, 245, 241, 0.44); color: var(--paper); }
.hero .hero-copy .button-secondary:hover { background: rgba(248, 245, 241, 0.1); border-color: var(--paper); color: var(--paper); }






/* ---------- page intro ---------- */

.page-intro { padding-top: clamp(5rem, 9vw, 8rem) !important; }
.page-intro h2 { margin-bottom: 1.3rem; }
.page-intro p { color: var(--slate); max-width: 60ch; }
.page-intro p:first-of-type { color: var(--ink); }

/* ---------- memberships: fit section ---------- */

.membership-fit-section { padding-bottom: clamp(3.75rem, 6vw, 5.5rem); padding-top: clamp(3rem, 5vw, 4.5rem); }
.membership-fit-layout {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}
.membership-fit-image { order: -1; }
.membership-fit-heading { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.membership-fit-heading p { max-width: 60ch; }
.membership-fit-image { aspect-ratio: 4 / 4.6; border-radius: var(--radius-arch); }
.membership-fit-image img { height: 100%; object-fit: cover; width: 100%; }

/* ---------- packages ---------- */

#plans { padding-bottom: clamp(2.5rem, 4vw, 4rem); padding-top: clamp(3rem, 5vw, 4.5rem); }
.section:has(> .container .package-grid) { padding-top: clamp(2.5rem, 4vw, 4rem); }
.package-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.7rem 1.7rem;
  transition: border-color 300ms ease, transform 400ms var(--ease-lux);
}
.package-card:hover { border-color: rgba(61, 74, 88, 0.32); transform: translateY(-3px); }
.package-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.package-card .price {
  border-bottom: 1px solid var(--line-soft);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 480;
  line-height: 1;
  margin: 0.8rem 0 1rem;
  padding-bottom: 1rem;
}
.package-card p:not(.price) { color: var(--slate); font-size: 0.93rem; }
.package-card .button { margin-top: auto; width: 100%; }

/* ---------- FAQ ---------- */

.faq-heading { margin-bottom: 2.4rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  align-items: baseline;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  font-family: var(--sans-display);
  font-size: 1.02rem;
  gap: 1rem;
  justify-content: space-between;
  letter-spacing: 0.03em;
  list-style: none;
  padding: 1.35rem 0.2rem;
  transition: color 200ms ease;
}
.faq-list summary:hover { color: var(--clay-deep); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  color: var(--clay-deep);
  content: "+";
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 0.8;
  transition: transform 300ms var(--ease-lux);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p, .faq-list details ul {
  color: var(--slate);
  font-size: 0.97rem;
  max-width: 62ch;
  padding: 0 0.2rem;
}
.faq-list details > p:last-child, .faq-list details > ul:last-child { padding-bottom: 1.4rem; }

/* ---------- wellness services ---------- */

.services-intro { padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.services-intro-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}
.services-intro-copy h2 { margin-bottom: 1.3rem; }
.services-intro-copy p { color: var(--slate); }
.services-intro-copy p:first-of-type { color: var(--ink); }
.services-intro-panel { align-content: start; align-self: center; display: grid; gap: 0; }
.intro-pathway {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 7.5rem 1fr;
  padding: 1.3rem 0;
}
.intro-pathway:last-child { border-bottom: 1px solid var(--line); }
.intro-pathway span {
  color: var(--clay-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}
.intro-pathway p { color: var(--slate); font-size: 0.94rem; margin: 0; }

.service-detail {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.service-detail:first-of-type { padding-top: 1rem; }
.service-detail + .service-detail { border-top: 1px solid var(--line); }
.service-detail:nth-of-type(even) { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr); }
.service-detail:nth-of-type(even) img { order: 2; }
.service-detail img {
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius-arch);
  height: auto;
  object-fit: cover;
  width: 100%;
}
.service-detail h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.2rem; }
.service-detail p { color: var(--slate); }
.service-detail p:first-of-type { color: var(--ink); }
.service-points { display: grid; gap: 0; margin-top: 1.6rem; }
.service-points > div {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 0;
}
.service-points strong {
  color: var(--charcoal);
  font-family: var(--sans-display);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-points span { color: var(--slate); font-size: 0.93rem; line-height: 1.6; }

.coming-soon-badge {
  background: transparent !important;
  border: 1px solid var(--clay) !important;
  color: var(--clay-deep) !important;
  font-family: var(--sans-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
}

/* ---------- benefit grid + team ---------- */

.benefit-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.benefit-grid .benefit-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: block;
  padding: 1.8rem 1.6rem;
}
.benefit-grid .benefit-card h3 {
  font-family: var(--sans-display);
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}
.benefit-grid .benefit-card p { color: var(--slate); font-size: 0.93rem; margin: 0; }

.training-services-section { padding-bottom: clamp(3rem, 5vw, 4.5rem); padding-top: clamp(3rem, 5vw, 4.5rem); }
.training-team-section { padding-top: clamp(2.5rem, 4vw, 4rem); }
.training-team-block { margin-top: clamp(4rem, 7vw, 6rem); }
.training-team-section .training-team-block { margin-top: 0; }

.bio-grid, .team-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.team-card { display: flex; flex-direction: column; }
.team-card img {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-arch);
  height: auto;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}
.team-card-body {
  border-top: 1px solid var(--line);
  margin-top: 1.4rem;
  padding-top: 1.2rem;
}
.team-card-body h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin-bottom: 0.5rem; }
.team-card-body p { color: var(--slate); font-size: 0.95rem; margin: 0; }

.section-mist .benefit-grid .benefit-card { background: var(--white); }












.section-mist .split h2 { font-size: clamp(1.75rem, 2.6vw, 2.55rem); }
@media (min-width: 1100px) {
  .section-mist .split:has(.image-panel) h2 { white-space: nowrap; }
}
.services-rhythm-cta {
  background:
    linear-gradient(rgba(28, 38, 49, 0.72), rgba(28, 38, 49, 0.72)),
    url("assets/services-rhythm-bg.webp") center / cover no-repeat;
  color: rgba(248, 245, 241, 0.85);
  text-align: left;
}

/* ---------- time-limited promotion ---------- */

.gfmc-promo-backdrop,
.gfmc-promo-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
}
.gfmc-promo-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 25, 34, 0.46);
  z-index: 2147483600;
}
.gfmc-promo-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(460px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(16, 25, 34, 0.28);
  padding: 2.2rem 1.9rem 1.8rem;
  text-align: center;
  z-index: 2147483601;
}
.gfmc-promo-backdrop.is-open,
.gfmc-promo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gfmc-promo-modal.is-open { transform: translate(-50%, -50%); }
.gfmc-promo-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  appearance: none;
}
.gfmc-promo-modal h2 { font-size: 2.1rem; margin: 0.4rem 0 0.5rem; }
.gfmc-promo-price {
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--charcoal);
  margin: 0 0 0.9rem;
}
.gfmc-promo-price span {
  display: block;
  font-family: "Avenir Next", Avenir, "Pontano Sans", Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--sage-dark);
  font-weight: 700;
  margin-top: 0.35rem;
}
.gfmc-promo-copy { font-size: 0.98rem; margin-bottom: 1.2rem; }
.gfmc-promo-modal .button { width: 100%; }
.gfmc-promo-fine {
  color: var(--slate);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0.95rem 0 0;
}
.services-rhythm-cta h2 { color: var(--paper); margin-bottom: 1.2rem; }
.services-rhythm-cta .eyebrow { color: rgba(248, 245, 241, 0.85); }
.services-rhythm-cta .eyebrow::before { background: var(--clay); }
.services-rhythm-cta p { color: rgba(248, 245, 241, 0.85) !important; max-width: 62ch; }
.services-rhythm-cta .button-primary { background: var(--clay); border-color: var(--clay); color: #2a2019; }
.services-rhythm-cta .button-primary:hover { background: var(--paper); border-color: var(--paper); color: var(--charcoal); }
.services-rhythm-cta .button-secondary { border-color: rgba(248, 245, 241, 0.44); color: var(--paper); }
.services-rhythm-cta .button-secondary:hover { background: rgba(248, 245, 241, 0.1); border-color: var(--paper); color: var(--paper); }
.services-rhythm-cta h2 { margin-bottom: 1.2rem; }
.services-rhythm-cta p { color: var(--slate); max-width: 62ch; }

/* ---------- inner-page responsive ---------- */

@media (max-width: 1100px) {
  .package-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .membership-fit-layout, .services-intro-grid { grid-template-columns: minmax(0, 1fr); }
  .membership-fit-image { aspect-ratio: 4 / 3; order: -1; }
  .service-detail, .service-detail:nth-of-type(even) { grid-template-columns: minmax(0, 1fr); }
  .service-detail:nth-of-type(even) img { order: 0; }
  .service-detail img { aspect-ratio: 16 / 10; }
  .bio-grid, .team-grid { grid-template-columns: minmax(0, 1fr); }
  .intro-pathway { grid-template-columns: 6rem 1fr; }
  .memberships-hero, .services-hero, .training-hero, .about-hero, .book-hero { min-height: clamp(420px, 58svh, 620px); }
}

@media (max-width: 640px) {
  .package-grid, .benefit-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   About page
   ============================================================ */

.mini-list { display: grid; gap: 0; margin-top: 1.8rem; }
.mini-list > div {
  border-top: 1px solid var(--line);
  color: var(--slate);
  display: grid;
  font-size: 0.95rem;
  gap: 1.5rem;
  grid-template-columns: 8rem 1fr;
  padding: 1rem 0;
}
.mini-list > div:last-child { border-bottom: 1px solid var(--line); }
.mini-list span {
  color: var(--clay-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.image-panel.tall { aspect-ratio: 4 / 4.8; border-radius: var(--radius-arch); }
.section-cream .split .image-panel.tall { align-self: center; aspect-ratio: auto; }
.section-cream .split .image-panel.tall img { height: auto; object-fit: contain; width: 100%; }
.section-mist .split .image-panel.tall { align-self: center; width: 90%; }
.image-panel.tall img { height: 100%; object-fit: cover; width: 100%; }
.image-panel.wide img { height: 100%; object-fit: cover; width: 100%; }

.partner-feature-stack { display: grid; gap: clamp(3rem, 6vw, 5.5rem); }
.partner-feature {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
}
.partner-feature-reverse { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr); }
.partner-feature-reverse .partner-feature-image { order: 2; }
.partner-feature-image {
  aspect-ratio: 4 / 4.7;
  border-radius: var(--radius-arch);
  overflow: hidden;
}
.partner-feature-image img { height: 100%; object-fit: cover; width: 100%; }
.partner-feature-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.partner-feature-copy p { color: var(--slate); }
.partner-feature-copy p:first-of-type { color: var(--ink); }

.text-link {
  border-bottom: 1px solid var(--clay);
  color: var(--charcoal);
  display: inline-block;
  font-family: var(--sans-display);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  padding-bottom: 0.35rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 240ms ease, color 240ms ease;
}
.text-link:hover { border-color: var(--charcoal); color: var(--clay-deep); }

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
}
.contact-panel h3 {
  font-family: var(--sans-display);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.contact-panel p { color: var(--slate); font-size: 0.98rem; }
.contact-panel p:last-child { margin-bottom: 0; }
.contact-panel a { text-decoration: none; }





/* ============================================================
   Pilates page
   ============================================================ */

.hero-subhead {
  color: var(--white) !important;
  font-family: var(--serif) !important;
  font-size: 1.5rem !important;
  font-style: italic;
  margin-bottom: 0.9rem;
}
.section-subhead {
  color: var(--clay-deep) !important;
  font-family: var(--serif) !important;
  font-size: 1.3rem !important;
  font-style: italic;
  margin: 0.6rem 0 0 !important;
  max-width: none !important;
}
.team-photo-ashley { object-position: 50% 40%; }
.team-photo-lisa { object-position: 50% 28%; }

.pilates-callout {
  align-items: center;
  border: 1px solid var(--line);
  border-left: 2px solid var(--clay);
  border-radius: var(--radius);
  display: grid;
  gap: 0.4rem 3rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
}
.pilates-callout h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; grid-column: 1; }
.pilates-callout p { color: var(--slate); font-size: 0.96rem; grid-column: 1; margin: 0; max-width: 62ch; }
.pilates-callout .button { grid-column: 2; grid-row: 1 / 3; }




/* ============================================================
   Booking page  (frame geometry ported unchanged — do not tune)
   ============================================================ */

.booking-page-main { background: var(--paper); }
.booking-page-intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.booking-page-intro h1 { font-size: clamp(2.6rem, 4.6vw, 4rem); margin-bottom: 1rem; }
.booking-page-intro p { color: var(--slate); margin: 0; }

.booking-shell { display: grid; gap: clamp(2rem, 4vw, 3rem); }

.booking-proxy-heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.booking-proxy-heading p { max-width: 62ch; }
.booking-proxy-heading h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.booking-proxy-heading p { color: var(--slate); font-size: 0.95rem; margin: 0; max-width: 380px; }

.booking-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.booking-service-card {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0.35rem;
  padding: 1.7rem 1.7rem 1.6rem;
  text-align: left;
  text-decoration: none;
  transition: border-color 260ms ease, transform 360ms var(--ease-lux), box-shadow 360ms var(--ease-lux);
}
.booking-service-card:hover { border-color: rgba(61, 74, 88, 0.34); transform: translateY(-3px); }
.booking-service-card.is-active {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 1px var(--charcoal);
}
.booking-service-card span {
  color: var(--clay-deep);
  font-family: var(--sans-display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.booking-service-card strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
}
.booking-service-card small { color: var(--slate); font-size: 0.92rem; line-height: 1.5; }

.booking-frame-heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.booking-frame-heading p { max-width: 62ch; }
.booking-frame-heading h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.booking-frame-heading p { color: var(--slate); font-size: 0.95rem; margin: 0; max-width: 380px; }

.booking-native-menu { display: grid; gap: 0.9rem; }
.booking-native-menu-row {
  align-items: center;
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0.15rem 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1.2rem 1.4rem;
  text-align: left;
  transition: border-color 240ms ease, background 240ms ease;
  width: 100%;
}
.booking-native-menu-row:hover { background: var(--paper); border-color: var(--charcoal); }
.booking-native-menu-row::after {
  color: var(--clay-deep);
  content: "\2192";
  font-size: 1.2rem;
  grid-column: 2;
  grid-row: 1 / 3;
}
.booking-native-menu-row span {
  color: var(--clay-deep);
  display: block;
  font-family: var(--sans-display);
  font-size: 0.62rem;
  grid-column: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.booking-native-menu-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  grid-column: 1;
  line-height: 1.2;
}

/* functional frame geometry — identical to production */
.booking-native-menu[hidden],
.booking-request-panel[hidden],
.booking-frame-crop[hidden] { display: none; }
.booking-frame-crop {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 760px;
  overflow: hidden;
  position: relative;
}
.booking-live-frame { border: 0; display: block; height: 760px; width: 100%; }
.booking-frame-crop-blvd { height: 340px; }
.booking-frame-crop-blvd::after {
  background: var(--white);
  bottom: 0;
  content: "";
  height: 25px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.booking-live-frame-blvd { height: 655px; position: relative; top: -315px; }
.booking-frame-mask { display: none; }
.booking-frame-crop-blvd .booking-frame-mask {
  background: var(--white);
  bottom: 0;
  display: block;
  height: 25px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}
.booking-frame-crop-mindbody { height: 780px; }
.booking-live-frame-mindbody { height: 780px; }

body .blvd-backdrop {
  background-color: rgba(16, 25, 34, 0.72) !important;
  backdrop-filter: blur(3px);
  z-index: 2147483644 !important;
}
body .blvd-booking-widget {
  background: #f8f5f1 !important;
  bottom: auto !important;
  box-shadow: 24px 0 80px rgba(16, 25, 34, 0.24);
  color-scheme: light !important;
  height: calc(100vh + var(--blvd-widget-chrome-offset)) !important;
  max-width: min(560px, 100vw) !important;
  top: calc(var(--blvd-widget-chrome-offset) * -1) !important;
  z-index: 2147483645 !important;
}

@media (max-width: 980px) {
  .partner-feature,
  .partner-feature-reverse { grid-template-columns: minmax(0, 1fr); }
  .partner-feature-reverse .partner-feature-image { order: 0; }
  .partner-feature-image { aspect-ratio: 4 / 3.4; }
  .booking-service-grid { grid-template-columns: minmax(0, 1fr); }
  .booking-proxy-heading, .booking-frame-heading { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .pilates-callout { grid-template-columns: minmax(0, 1fr); }
  .pilates-callout .button { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 0.8rem; }
  .mini-list > div { grid-template-columns: 6.4rem 1fr; }
  .image-panel.tall { aspect-ratio: 4 / 3.6; }
}

/* ---------- uniform paragraph size/color (match routine-intro lead) ---------- */
.section-heading p,
.routine-intro-copy p,
.page-intro p,
.services-intro-copy p,
.service-detail p,
.partner-feature-copy p,
.service-card-body p,
.pricing-card > p:not(.price):not(.sessions),
.package-card p:not(.price),
.benefit-card p,
.intro-pathway p,
.team-card-body p,
.contact-panel p,
.faq-list details p,
.membership-results-copy p,
.membership-results-copy > p:first-of-type,
.booking-page-intro p,
.booking-proxy-heading p,
.booking-frame-heading p,
.membership-tip,
.contact-section .section-heading p {
  color: var(--ink);
  font-size: 1em;
}
.pricing-card.featured > p:not(.price):not(.sessions) { color: rgba(248, 245, 241, 0.75); }
.membership-benefit-panel .benefit-card p { font-size: 0.93rem; }

/* ---------- booking layout variants ---------- */

.gfmc-variant-pill {
  background: rgba(23, 31, 40, 0.92);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: rgba(248, 245, 241, 0.75);
  font: 500 12px/1 var(--sans);
  left: 50%;
  padding: 10px 16px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 2147483602;
}
.gfmc-variant-pill a { color: var(--clay); text-decoration: underline; }

.booking-help {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.8rem;
}
.booking-help-item { display: grid; gap: 0.3rem; align-content: start; }
.booking-help-item span {
  color: var(--slate);
  font-family: var(--sans-display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.booking-help-item a { font-size: 1.02rem; text-decoration: none; }
.booking-help-item a:hover { color: var(--clay-deep); }
.booking-help-item p { color: var(--ink); font-size: 0.95rem; margin: 0; }

.booking-page-intro { margin: 0 0 clamp(2rem, 3.5vw, 3rem) 0; max-width: 720px; text-align: left; }
.booking-page-intro .eyebrow { justify-content: flex-start; }
.booking-layout-a .booking-proxy-menu {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}
.booking-layout-a .booking-frame-panel {
  border-top: 1px solid var(--line);
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding-top: 1.8rem;
}
.booking-step2 span:first-child { color: var(--clay-deep); }

.booking-shell-split {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
}
.booking-rail { display: grid; gap: 0; position: sticky; top: 110px; }
.booking-rail .booking-proxy-heading { flex-direction: column; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.4rem; }
.booking-rail .booking-proxy-heading h2 { font-size: 1.9rem; }
.booking-rail .booking-service-grid { grid-template-columns: minmax(0, 1fr); gap: 0.9rem; }
.booking-rail .booking-service-card { padding: 1.3rem 1.4rem; }
.booking-rail .booking-service-card strong { font-size: 1.4rem; }
.booking-rail .booking-help { grid-template-columns: minmax(0, 1fr); gap: 1rem; margin-top: 2rem; }

@media (max-width: 1020px) {
  .booking-shell-split { grid-template-columns: minmax(0, 1fr); }
  .booking-rail { position: static; }
  .booking-help { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- responsive ---------- */

@media (max-width: 1240px) {
  .brand-logo { width: min(280px, 28vw); }
  .site-nav { gap: 1rem; }
  .site-nav a { font-size: 0.74rem; }
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .site-nav {
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    justify-items: stretch;
    left: 0;
    max-height: calc(100dvh - 88px);
    opacity: 0;
    overflow-y: auto;
    padding: 1rem var(--pad-x) 2rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 88px;
    transform: translateY(-8px);
    transition: opacity 240ms var(--ease-lux), transform 240ms var(--ease-lux);
    z-index: 50;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a,
  .nav-dropdown { border-bottom: 1px solid var(--line-soft); padding: 1.1rem 0; width: 100%; }
  .site-nav a { font-size: 0.92rem; }
  .nav-dropdown { display: grid; gap: 0.4rem; }
  .nav-dropdown::before { display: none; }
  .nav-dropdown-menu {
    border: 0;
    box-shadow: none;
    background: transparent;
    left: 0;
    min-width: 0;
    opacity: 1;
    padding: 0.2rem 0 0 1rem;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }
  .site-nav:not(.is-open) .nav-dropdown-menu { pointer-events: none; }
  .site-nav .nav-book {
    justify-content: center;
    margin-top: 1.2rem;
    padding: 1rem 1.5rem;
    width: 100%;
  }
  .body.nav-open { overflow: hidden; }
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .routine-intro-grid,
  .membership-results-layout,
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .routine-intro-grid .routine-intro-image { min-height: 0; aspect-ratio: 4 / 3; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .card-grid { grid-template-columns: minmax(0, 1fr); }
  .service-card img { aspect-ratio: 16 / 10; }
  .home-hero { min-height: clamp(560px, 88svh, 820px); }
}

@media (max-width: 640px) {
  .pilates-hero::before { background-image: url("assets/pilates-why-studio-mobile.webp"); }
  .services-hero::before { background-image: url("assets/gfmc-hero-studio-mobile.webp"); }
  .about-hero::before { background-image: url("assets/studio-space-mobile.webp"); }
  body { font-size: 16.5px; }
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; max-height: calc(100dvh - 72px); }
  .brand-logo { max-height: 48px; width: min(240px, calc(100vw - 6.5rem)); }
  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-form { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .button { width: 100%; }
  .button-row { grid-auto-flow: row; grid-auto-columns: unset; width: 100%; }
  .hero-copy .button-row { max-width: 360px; }

}

/* ---------- hero copy scrim (legibility over bright hero footage) ---------- */
.home-hero .hero-copy { position: relative; }
.home-hero .hero-copy::before {
  background: radial-gradient(102% 100% at 30% 52%, rgba(16, 22, 29, 0.74) 0%, rgba(16, 22, 29, 0.7) 55%, rgba(16, 22, 29, 0.42) 82%, rgba(16, 22, 29, 0) 100%);
  border-radius: 28px;
  content: "";
  filter: blur(5px);
  inset: -2.25rem -3.5rem -2.5rem -2.75rem;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
@media (max-width: 640px) {
  .home-hero .hero-copy::before {
    border-radius: 22px;
    filter: blur(4px);
    inset: -1.5rem -1.5rem -1.75rem -1.5rem;
  }
}

/* ---------- MJ review fixes 2026-08-03 ---------- */

/* About hero: brighter studio photo, slightly lighter scrim */
.about-hero::before { background-image: url("assets/gfmc-hero-studio.webp"); background-position: center 42%; }
.about-hero::after {
  background: linear-gradient(to top, rgba(23, 31, 40, 0.8) 0%, rgba(23, 31, 40, 0.42) 52%, rgba(23, 31, 40, 0.18) 100%);
}

/* About hero copy scrim, matching the home hero */
.about-hero .hero-copy { position: relative; }
.about-hero .hero-copy::before {
  background: radial-gradient(102% 100% at 30% 52%, rgba(16, 22, 29, 0.74) 0%, rgba(16, 22, 29, 0.7) 55%, rgba(16, 22, 29, 0.42) 82%, rgba(16, 22, 29, 0) 100%);
  border-radius: 28px;
  content: "";
  filter: blur(5px);
  inset: -2.25rem -3.5rem -2.5rem -2.75rem;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

/* Trainer card booking CTA */
.team-card-body .team-card-cta { margin-top: 1.1rem; }

/* A-la-carte package validity window */
.package-card p.package-term {
  color: var(--slate);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.45rem;
  text-transform: uppercase;
}

/* About: our story */
.about-story-section p + p { margin-top: 1.05rem; }

@media (max-width: 1020px) {
  /* Mobile nav fix: the desktop dropdown hover/focus state was leaking
     transform: translate(-50%, 0) into the static mobile menu, shoving the
     submenu links off-screen to the left whenever one was hovered. */
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
}

@media (max-width: 640px) {
  .about-hero::before { background-image: url("assets/gfmc-hero-studio-mobile.webp"); }
}

/* ---------- nav ---------- */
.site-nav > a,
.nav-dropdown-trigger { white-space: nowrap; }

/* PT hero copy scrim, matching the home and about heroes */
.pt-hero .hero-copy { position: relative; }
.pt-hero .hero-copy::before {
  background: radial-gradient(102% 100% at 30% 52%, rgba(16, 22, 29, 0.74) 0%, rgba(16, 22, 29, 0.7) 55%, rgba(16, 22, 29, 0.42) 82%, rgba(16, 22, 29, 0) 100%);
  border-radius: 28px;
  content: "";
  filter: blur(5px);
  inset: -2.25rem -3.5rem -2.5rem -2.75rem;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

/* ---------- inline contact blocks on service pages (2026-08-03) ---------- */
/* The homepage form is laid out to fill a two-column grid beside the map, so it
   sets an explicit row template and height:100%. These standalone blocks flow
   on their own instead. */
.contact-form-inline {
  gap: 1.4rem;
  grid-template-rows: none;
  height: auto;
  margin-top: 1.8rem;
}
.contact-form-inline .form-row-full textarea { height: auto; min-height: 120px; }
.contact-section .field-optional {
  letter-spacing: 0.12em;
  opacity: 0.6;
  text-transform: none;
}

/* Comfortable touch targets. The bottom-border input style keeps its look;
   the padding is what grows. Applies to the homepage form too. */
@media (max-width: 780px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
    padding-bottom: 0.6rem;
  }
  .contact-form .button { min-height: 46px; width: 100%; }
}
