/* West Hollywood Pilates - warm-luxury system carried over from the 2026-08 redesign. */
:root {
  --ivory: #F7F3EC;
  --espresso: #2B2118;
  --sage: #A3A78F;
  --honey: #9C7A50;
  --rule: rgba(43, 33, 24, 0.14);
  --muted: rgba(43, 33, 24, 0.62);
  --max: 1080px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Cormorant, Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.15rem; font-family: Inter, sans-serif; font-weight: 500; letter-spacing: 0.01em; }

a { color: var(--honey); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.site-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: 0.75rem; letter-spacing: 0.08em; white-space: nowrap; text-transform: uppercase;
  color: var(--espresso); text-decoration: none; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: border-color 0.18s ease, color 0.18s ease;
}
.nav-link:hover { color: var(--honey); border-bottom-color: var(--honey); }
.nav-link.is-current { border-bottom-color: var(--espresso); }
.nav-aside { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-phone { display: none; color: var(--muted); text-decoration: none; font-size: 0.9rem; white-space: nowrap; }
.nav-phone:hover { color: var(--espresso); }
.btn.btn-sm { padding: 11px 18px; font-size: 0.75rem; white-space: nowrap; line-height: 1; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle__bar { display: block; width: 22px; height: 1.5px; background: var(--espresso); margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1079px) {
  .nav-toggle { display: block; }
  .nav-phone { display: block; }
  .header-inner { flex-wrap: wrap; }
  /* Collapsed only once nav.js runs, so the menu still works with JS off. */
  .nav-js .site-nav {
    display: none; width: 100%; flex-direction: column; align-items: flex-start;
    gap: 18px; padding: 20px 0 6px; margin-left: 0;
  }
  .nav-js .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
  .nav-link { font-size: 0.85rem; }
  .nav-aside { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
}
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  white-space: nowrap;
  flex: none;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
}

main { padding: clamp(32px, 6vw, 64px) 0 80px; }
main:has(> .hero-full) { padding: 0; }
body.is-full main { padding-top: 0; padding-bottom: 0; }

.lede { color: var(--muted); max-width: 54ch; font-size: 1.05rem; }



/* Buttons */
.btn {
  display: inline-block;
  background: var(--espresso);
  color: var(--ivory);
  border: 1px solid var(--espresso);
  padding: 14px 26px;
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn:hover { background: var(--honey); border-color: var(--honey); color: #fff; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.btn-quiet { background: transparent; color: var(--espresso); }
.btn-quiet:hover { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }

/* ---- Booking widget ---- */
.booking { margin-top: 36px; }
#step-when, #step-details { margin-top: 52px; }

.step-head {
  display: flex; align-items: baseline; gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px; margin-bottom: 22px;
}

/* The booking cards mirror the live Wix /book-online: one full-width row per
   service, photo on the left half, name / duration / price / button on the
   right, hairline between rows. */
.service-list { display: grid; gap: 0; }
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  padding: 34px 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.service-list > .service:last-of-type { border-bottom: 1px solid var(--rule); }
/* Unlisted services (gift, assessment, free intro call) stay in the DOM so a
   direct /book/?service=... link can still select one, but never render. */
.service.is-unlisted { display: none; }

.service-photo { display: block; overflow: hidden; }
.service-photo img {
  display: block; width: 100%; height: auto; aspect-ratio: 2.2 / 1; object-fit: cover;
  transition: transform 0.5s ease;
}
.service:hover .service-photo img { transform: scale(1.03); }

.service-body {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 8px 0 8px 48px;
}
.service .name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 300; line-height: 1.15;
  align-self: stretch; padding-bottom: 18px; margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.service:hover .name { color: var(--honey); }
.service .meta { color: var(--muted); font-size: 0.95rem; }
.service .price { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.service .fauxbtn {
  display: inline-block; background: var(--espresso); color: var(--ivory);
  border: 1px solid var(--espresso); padding: 12px 22px;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
}
.service:hover .fauxbtn { background: var(--honey); border-color: var(--honey); }
.service[aria-pressed="true"] .fauxbtn { background: var(--honey); border-color: var(--honey); }

.book-title { text-align: center; margin-bottom: 8px; }
.chosen-service {
  text-align: center; color: var(--muted); margin: 0 0 30px;
  font-size: 0.95rem; letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .service { grid-template-columns: 1fr; padding: 26px 0; }
  .service-body { padding: 20px 0 0; }
  .service .name { font-size: 1.45rem; padding-bottom: 14px; margin-bottom: 16px; }
}

/* The month is capped so the day cells stay a sensible size. Left to fill the
   1040px column at aspect-ratio 1, each cell rendered 145px square and the grid
   alone was 771px tall, taller than the viewport. */
.cal-layout {
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 36px; align-items: start;
}
.cal-panel { max-width: 330px; }
.cal-times { min-width: 0; }
.tz-note { margin: 0 0 14px; }

.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav .month { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem; }
.cal-nav button {
  background: none; border: 1px solid var(--rule); border-radius: 2px;
  width: 32px; height: 32px; cursor: pointer; font: inherit; color: var(--espresso);
}
.cal-nav button[disabled] { opacity: 0.3; cursor: not-allowed; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); padding-bottom: 4px; }
.cal-day {
  aspect-ratio: 1; border: 1px solid transparent; background: none;
  font: inherit; font-size: 0.85rem; color: var(--espresso);
  border-radius: 2px; cursor: pointer;
}
.cal-day.empty { visibility: hidden; }
.cal-day.closed { color: rgba(43,33,24,0.22); cursor: not-allowed; }
.cal-day.open { background: #fff; border-color: var(--rule); }
.cal-day.open:hover { border-color: var(--honey); }
.cal-day[aria-pressed="true"] { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }

.slots { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); margin-top: 0; }
.slot {
  background: #fff; border: 1px solid var(--rule); border-radius: 2px;
  padding: 10px 6px; font: inherit; font-size: 0.9rem; cursor: pointer; color: var(--espresso);
}
.slot:hover { border-color: var(--honey); }
.slot[aria-pressed="true"] { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; color: var(--espresso);
  background: #fff; border: 1px solid var(--rule); border-radius: 2px;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--honey); outline-offset: -1px; }

.summary { background: #fff; border: 1px solid var(--rule); border-left: 3px solid var(--sage); padding: 18px 20px; margin-bottom: 24px; }
.summary .line { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; }
.summary .line span:first-child { color: var(--muted); }

.notice { padding: 14px 16px; border-radius: 2px; margin: 16px 0; font-size: 0.93rem; }
.notice.error { background: #fdf0ec; border: 1px solid #e0b4a4; color: #7a3b22; }
.notice.quiet { color: var(--muted); }

.hidden { display: none !important; }

.confirmed { text-align: center; padding: 40px 20px; }
.confirmed .tick { font-size: 2.4rem; color: var(--sage); }

@media (max-width: 560px) {
  .slots { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
}

/* ---------------------------------------------------------------------------
   Reviews - self-hosted Google review widget (replaces the paid Elfsight embed).
   Google's information shape, WHP's palette. Markup: src/_includes/reviews-widget.njk
   --------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.rv { margin-top: clamp(28px, 5vw, 48px); }

/* ==========================================================================
   Google reviews widget - ported from the Word of Mouth build 2026-09-18.
   Data: src/_data/googleReviews.json. Markup: _includes/partials/google-reviews.njk.
   Surfaces, type and radii are WHP tokens. Only the Google "G" and the star
   gold are Google's, because those two are what make it read as Google.
   ========================================================================== */
:root {
  --g-star: #fbbc04;
  --g-line: var(--rule);
  --g-radius: 10px;
  --g-shadow: 0 2px 10px rgba(43, 33, 24, 0.06);
  --g-tint: #EFEAE1;
}

.g-reviews { --g-cols: 3; }

.g-summary {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--g-line);
  border-radius: var(--g-radius); padding: 22px 26px;
  box-shadow: var(--g-shadow); margin: 0 0 26px;
}
.g-summary__brand { display: flex; align-items: center; gap: 10px; }
.g-summary__label { font-family: Inter, sans-serif; font-weight: 500; font-size: 15px; color: var(--espresso); letter-spacing: 0.01em; }
.g-summary__score { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.g-summary__num { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1; color: var(--espresso); }
.g-summary__count { font-family: Inter, sans-serif; font-size: 13px; color: var(--muted); }
.g-summary__write {
  margin-left: auto; font-family: Inter, sans-serif; font-size: 13.5px; font-weight: 500;
  color: var(--honey); text-decoration: none;
  border: 1px solid rgba(156, 122, 80, 0.4); border-radius: 999px; padding: 9px 18px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.g-summary__write:hover { background: var(--honey); color: #fff; border-color: var(--honey); }
.g-summary--compact { padding: 16px 20px; margin-bottom: 22px; }
.g-summary--compact .g-summary__num { font-size: 1.6rem; }

.g-stars { display: inline-flex; gap: 1px; line-height: 0; }
.g-star { fill: var(--g-star); flex: none; }

.g-reviews__grid { display: grid; grid-template-columns: repeat(var(--g-cols), 1fr); gap: 20px; align-items: start; }
.g-review {
  background: #fff; border: 1px solid var(--g-line); border-radius: var(--g-radius);
  padding: 22px 22px 20px; box-shadow: var(--g-shadow); font-family: Inter, sans-serif;
}
.g-review__head { display: flex; align-items: center; gap: 12px; margin: 0 0 12px; }
.g-review__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; background: var(--g-tint); }
.g-review__avatar--initial { display: grid; place-items: center; font-weight: 500; font-size: 17px; color: var(--honey); background: var(--g-tint); }
.g-review__who { display: flex; flex-direction: column; min-width: 0; }
.g-review__name { font-weight: 500; font-size: 14.5px; color: var(--espresso); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.g-review__meta { font-size: 12px; color: var(--muted); line-height: 1.4; }
.g-review__mark { margin-left: auto; flex: none; line-height: 0; opacity: 0.9; }
.g-review__rating { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
.g-review__date { font-size: 12.5px; color: var(--muted); }
.g-review__text { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--espresso); white-space: pre-line; }

/* Clamp is added by reviews.js, so with JS off every review reads in full. */
.g-review[data-clamped] .g-review__text { display: -webkit-box; -webkit-line-clamp: 6; line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.g-review__more { display: none; margin: 10px 0 0; padding: 0; border: 0; background: none; font-family: Inter, sans-serif; font-size: 13.5px; font-weight: 500; color: var(--honey); cursor: pointer; }
.g-review__more:hover { text-decoration: underline; }
.g-review[data-clamped] .g-review__more, .g-review[data-expanded] .g-review__more { display: inline-block; }

.g-review__reply { margin: 14px 0 0; border-top: 1px solid var(--g-line); padding-top: 12px; }
.g-review__reply summary { font-size: 12.5px; font-weight: 500; color: var(--muted); cursor: pointer; list-style: none; }
.g-review__reply summary::-webkit-details-marker { display: none; }
.g-review__reply summary::before { content: "\203A"; display: inline-block; margin-right: 7px; transition: transform 0.18s ease; }
.g-review__reply[open] summary::before { transform: rotate(90deg); }
.g-review__reply p { margin: 10px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); white-space: pre-line; }

.g-reviews__foot { margin: 24px 0 0; text-align: center; font-family: Inter, sans-serif; font-size: 13px; color: var(--muted); }
.g-reviews__foot a { color: var(--honey); }

.g-review__more:focus-visible,
.g-summary__write:focus-visible,
.g-review__reply summary:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; }

@media (max-width: 980px) { .g-reviews { --g-cols: 2; } }
@media (max-width: 700px) {
  .g-reviews { --g-cols: 1; }
  .g-summary { flex-direction: column; align-items: flex-start; gap: 14px; }
  .g-summary__score, .g-summary__write { margin-left: 0; }
}

/* ==========================================================================
   Header overrides that must win on order.
   The nav block above sits ABOVE the base .brand rule in this file, so a
   narrow-screen .brand override declared up there loses the cascade at equal
   specificity. It belongs here, at the end.
   ========================================================================== */
@media (max-width: 620px) {
  .brand { font-size: 1.05rem; letter-spacing: 0.04em; }
}

/* ---- Home + 404 ---- */
.hero { padding: clamp(24px, 5vw, 56px) 0 clamp(32px, 5vw, 60px); max-width: 62ch; }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.hero h1 { margin-bottom: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }

.band p { color: var(--muted); }
.band h2 { color: var(--espresso); }

.pull-quote {
  margin: 30px 0; padding: 0 0 0 22px; border-left: 2px solid var(--sage);
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem;
  line-height: 1.45; font-weight: 300; color: var(--espresso);
}

/* ==========================================================================
   Homepage sections, mirroring the live site's structure.
   ========================================================================== */
.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;
}

/* Full-bleed hero: photo, scrim, white type over it. */
.hero-full { position: relative; min-height: min(72vh, 660px); display: grid; align-items: center; overflow: hidden; }
.hero-full__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-full__scrim { position: absolute; inset: 0; background: rgba(43, 33, 24, 0.42); }
.hero-full__inner { position: relative; text-align: center; padding-top: 56px; padding-bottom: 56px; }
.hero-full__title {
  color: #fff; margin: 0 0 22px;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}
.hero-full__sub {
  color: #fff; margin: 0 auto 8px; max-width: 62ch;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem); line-height: 1.6;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hero-full__cta { margin: 30px 0 0; }
.btn-pill { border-radius: 999px; padding: 15px 30px; }

/* Content bands */
.band { padding: clamp(40px, 6vw, 76px) 0; }
.band--tint { background: #F1ECE3; }
.band__title-center { text-align: center; margin-bottom: 30px; }
.section-num {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 10px; font-weight: 500;
}

/* Two-column image/text sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__media img {
  width: 100%; height: auto; display: block; border-radius: 4px;
  /* The portrait shots are very tall; cap them so a short text column
     does not sit beside a 900px image with dead space under it. */
  max-height: 620px; object-fit: cover;
}
.split__body > h2 { margin-top: 0; }
.split__body p { color: var(--muted); }
.split--image-right .split__media { order: 2; }

/* Quote band */
.quote-band { text-align: center; }
.pull-quote--center {
  border: 0; padding: 0; margin: 0 auto; max-width: 30ch;
  font-size: clamp(1.4rem, 2.6vw, 2rem); text-align: center;
}
.quote-attrib {
  margin: 18px 0 0; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.hero-cta--center { justify-content: center; }

/* Teachers */
.teachers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.teacher img { width: 100%; height: auto; display: block; border-radius: 4px; margin-bottom: 18px; }
.teacher__role { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.teacher__name { margin: 0 0 12px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.teacher p { color: var(--muted); }

.studio-address { font-size: 1.05rem; color: var(--espresso) !important; }

/* Email capture */
.signup { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.signup input {
  flex: 1 1 220px; padding: 13px 14px; font: inherit; color: var(--espresso);
  background: #fff; border: 1px solid var(--rule); border-radius: 2px;
}
.signup input:focus { outline: 2px solid var(--honey); outline-offset: -1px; }
.signup__msg { flex: 1 0 100%; margin: 4px 0 0; font-size: 0.9rem; color: var(--muted); }
.signup__msg.is-error { color: #7a3b22; }


@media (max-width: 820px) {
  .split, .teachers { grid-template-columns: 1fr; }
  .split--image-right .split__media { order: 0; }
}

/* ==========================================================================
   Footer - dark espresso block, three columns, live map.
   ========================================================================== */
.site-footer {
  background: var(--espresso);
  color: rgba(247, 243, 236, 0.72);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem; font-weight: 300; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ivory);
  margin: 0 0 12px; line-height: 1.2;
}
.footer-tag { margin: 0 0 20px; max-width: 34ch; color: rgba(247, 243, 236, 0.6); }

.footer-address {
  font-style: normal; line-height: 1.9; margin: 0 0 24px;
  color: rgba(247, 243, 236, 0.78);
}

.footer-head {
  font-family: Inter, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 16px; font-weight: 500;
}

.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 10px; }

.site-footer a { color: rgba(247, 243, 236, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }

/* A quiet inverted button so the footer still has one clear action. */
.btn.btn-light {
  background: var(--ivory); color: var(--espresso); border-color: var(--ivory);
}
.btn.btn-light:hover { background: var(--honey); border-color: var(--honey); color: #fff; }
.site-footer .btn.btn-light { text-decoration: none; }

/* Map */
.map-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(247, 243, 236, 0.16);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  background: #2f261d;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.footer-directions { margin: 14px 0 0; }
.footer-directions a { color: var(--sage); }
.footer-directions a:hover { color: var(--ivory); }

/* Bottom bar */
.footer-bar { border-top: 1px solid rgba(247, 243, 236, 0.14); }
.footer-bar__inner {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 28px;
  font-size: 0.82rem;
}
.footer-legal { margin: 0; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-meta { margin: 0; color: rgba(247, 243, 236, 0.55); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar__inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Interior pages
   ========================================================================== */
.page-banner { line-height: 0; }
.page-banner img { width: 100%; height: clamp(180px, 26vw, 360px); object-fit: cover; display: block; }

/* `.wrap.prose` carries both classes, so a max-width here would combine with
   .wrap's auto margins and CENTRE the column, leaving interior pages aligned
   at a different x than the header, footer and homepage bands. Constrain the
   children instead: the wrap keeps the site grid, the text keeps its measure. */
.wrap.prose { max-width: var(--max); }
.wrap.prose > * { max-width: 68ch; }
.prose:not(.wrap) { max-width: 68ch; }
.prose h1 { margin-bottom: 20px; }
.prose h2 { margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }
.prose a { color: var(--honey); }
.note { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hero-full__note { color: rgba(255,255,255,0.86); font-size: 0.9rem; max-width: 46ch; margin: 14px auto 0; text-shadow: 0 1px 12px rgba(0,0,0,0.45); }

/* Pricing */
.price-list { list-style: none; margin: 22px 0; padding: 0; max-width: 46ch; }
.price-list li {
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--rule);
}
.price-list__what { color: var(--espresso); }
.price-list__what em { color: var(--muted); font-style: normal; font-size: 0.85em; }
.price-list__amt { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem; white-space: nowrap; }

.lineage {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage) !important; margin-bottom: 18px;
}

/* FAQ */
.faq-list { display: grid; gap: 4px; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h2 { margin: 0 0 10px; font-family: Inter, sans-serif; font-size: 1.02rem; font-weight: 500; }
.faq-item p { margin: 0; color: var(--muted); }

/* Intro offer features + gallery */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: 40px; }
.feature img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; display: block; margin-bottom: 18px; }
.feature h3 { margin: 0 0 10px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.feature p { color: var(--muted); margin: 0; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 20px); }
.gallery img { width: 100%; height: auto; aspect-ratio: 1 / 1.07; object-fit: cover; border-radius: 4px; display: block; }

.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); }
.info-cols p { color: var(--muted); }
.hours { border-collapse: collapse; font-size: 0.95rem; color: var(--muted); }
.hours th { text-align: left; font-weight: 400; padding: 3px 20px 3px 0; white-space: nowrap; }
.hours td { padding: 3px 0; white-space: nowrap; }

.closing-line { margin-bottom: 6px; }
.closing-sub { color: var(--muted); margin-top: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 64px); align-items: start; margin-top: 32px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info p { color: var(--muted); }
.contact-info .section-num { margin-top: 24px; }
.contact-info .section-num:first-child { margin-top: 0; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 0 0 16px; font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.consent input { margin-top: 3px; flex: none; }
.consent a { color: var(--honey); }
.map-frame--light { margin-top: 24px; border-color: var(--rule); box-shadow: 0 4px 16px rgba(43,33,24,0.08); }

@media (max-width: 820px) {
  .features, .gallery, .info-cols { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

.sms-form { max-width: 34rem; margin-top: 28px; }
.sms-form .field { margin-bottom: 16px; }

/* ==========================================================================
   Blog: archive cards + article
   ========================================================================== */
.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--g-radius, 10px);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.post-card:hover { border-color: var(--honey); box-shadow: 0 6px 22px rgba(43, 33, 24, 0.09); transform: translateY(-2px); }
/* height:auto is load-bearing. The img carries width+height attributes for
   layout stability; with both set, the browser ignores aspect-ratio and the
   card renders the full 450px tall image instead of a 16:9 crop. */
.post-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.post-card__noimg { display: block; width: 100%; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #EFEAE1, #E2DACD); }
.post-card__date {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); padding: 18px 20px 0;
}
.post-card__title {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.24rem;
  font-weight: 400; line-height: 1.25; color: var(--espresso); padding: 8px 20px 0;
}
.post-card__excerpt {
  font-size: 0.9rem; line-height: 1.6; color: var(--muted);
  padding: 10px 20px 22px;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__title:last-child { padding-bottom: 22px; }

.pager {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: clamp(32px, 4vw, 48px); flex-wrap: wrap;
}
.pager__link { color: var(--honey); text-decoration: none; font-size: 0.9rem; }
.pager__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.pager__link.is-off { color: rgba(43, 33, 24, 0.28); }
.pager__count { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* Article */
.post-hero { line-height: 0; }
.post-hero img { width: 100%; height: clamp(220px, 34vw, 460px); object-fit: cover; display: block; }
/* Same trap as .wrap.prose: these carry .wrap too, so a max-width here would
   centre each block at a DIFFERENT width and the h1 would sit left of the body
   text. Keep the wrap on the site grid, constrain the children. */
.wrap.post-head { padding-top: clamp(28px, 4vw, 48px); max-width: var(--max); }
.post-head > * { max-width: 76ch; }
.post-meta { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.post-head h1 { margin: 0; font-size: clamp(1.9rem, 3.8vw, 2.9rem); }

.wrap.post-body { max-width: var(--max); padding-top: clamp(22px, 3vw, 34px); padding-bottom: clamp(28px, 4vw, 44px); }
.post-body > * { max-width: 68ch; }
.post-body > figure { max-width: 76ch; }
.post-body p { color: var(--espresso); margin: 0 0 1.25em; font-size: 1.04rem; line-height: 1.75; }
.post-body h2 { margin: 1.9em 0 0.6em; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.post-body h3 { margin: 1.6em 0 0.5em; font-family: Inter, sans-serif; font-size: 1.05rem; font-weight: 500; }
.post-body a { color: var(--honey); }
.post-body ul, .post-body ol { margin: 0 0 1.25em; padding-left: 1.3em; color: var(--espresso); }
.post-body li { margin-bottom: 0.5em; line-height: 1.7; }
.post-body blockquote {
  margin: 1.8em 0; padding: 0 0 0 22px; border-left: 2px solid var(--sage);
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem;
  line-height: 1.5; font-weight: 300;
}
.post-body figure { margin: 2em 0; }
.post-body figure img { width: 100%; height: auto; border-radius: 4px; display: block; }
.post-body figcaption { margin-top: 10px; font-size: 0.85rem; color: var(--muted); }
.post-body strong { font-weight: 500; }

.post-foot { padding-bottom: clamp(40px, 5vw, 70px); }
.post-cta {
  max-width: 76ch;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--g-radius, 10px);
  padding: clamp(24px, 3vw, 36px); margin-bottom: clamp(36px, 5vw, 56px);
}
.post-cta h2 { margin-top: 0; }
.post-cta p { color: var(--muted); }
.related { margin-bottom: 36px; }
.post-back { font-size: 0.9rem; }
.post-back a { color: var(--honey); }

@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

/* Skip link. Off-screen until focused, then pinned top-left over the header. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--espresso);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 0 0 4px 0;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Sitemap page: multi-column link index. */
.sitemap-list {
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}
.sitemap-list li { break-inside: avoid; margin: 0 0 0.5rem; font-size: 0.95rem; }
.sitemap-list a { color: var(--espresso); text-decoration: none; border-bottom: 1px solid var(--rule); }
.sitemap-list a:hover { color: var(--honey); }
@media (max-width: 620px) { .sitemap-list { columns: 1; } }

/* Appended deliberately. `.cal-layout` is declared further up, so a narrow-screen
   override placed above it loses at equal specificity and the two columns stay
   side by side on a phone, overflowing the viewport. */
@media (max-width: 760px) {
  .cal-layout { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .cal-panel { max-width: 340px; }
}

/* Stripe's card fields sit in #payment-element; everything inside it is an
   iframe Stripe owns, so only the frame around it is ours to style. */
.pay { border-top: 1px solid var(--rule); margin-top: 26px; padding-top: 22px; }
.pay-head {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin: 0 0 14px;
}
.pay-note { color: var(--muted); font-size: 0.82rem; line-height: 1.5; margin: 14px 0 0; }
#payment-element { min-height: 40px; }

/* Where the copy runs long, the photo should run with it. Capped at 620px and
   vertically centred, a 763px text column left the image floating with ~72px of
   dead space above and below. Opt-in, because the short sections still want a
   tall photo rather than a squashed one. */
.split--media-fill { align-items: stretch; }
.split--media-fill .split__media { display: flex; }
.split--media-fill .split__media img { height: 100%; max-height: none; object-fit: cover; }

@media (max-width: 820px) {
  /* One column here, so a stretched photo would take its height from nothing. */
  .split--media-fill .split__media img { height: auto; max-height: 620px; }
}

/* The phone-only booking button. Declared at the end of the file on purpose:
   .btn and .btn-sm are defined further up, and an override placed beside them
   loses at equal specificity. Same trap as .brand and .cal-layout. */
.nav-cta-compact { display: none; }
@media (max-width: 1079px) {
  .nav-cta-compact { display: inline-block; margin-left: auto; }
  /* Wordmark, button and hamburger have to share one row. At 390px the default
     20px gap alone was enough to wrap the hamburger onto a second line and make
     the header 134px tall. */
  .header-inner { gap: 12px; }
}
@media (max-width: 460px) {
  .brand { font-size: 0.85rem; letter-spacing: 0.02em; }
  .nav-cta-compact { padding: 9px 11px; font-size: 0.68rem; letter-spacing: 0.06em; }
  .header-inner { gap: 8px; }
  .nav-toggle { padding: 8px 0 8px 4px; }
}
