/* ==========================================================================
   Jeevan Fitness. One stylesheet for the whole site.
   Order: tokens, reset, typography, buttons, layout, header, home sections,
   booking page, footer, motion, responsive.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */

:root {
  --cream: #FAF7F2;
  --sand: #F1EBE1;
  --white: #FFFFFF;
  --ink: #23282B;
  --ink-soft: #4F565B;
  --sage: #5F7A5C;
  --sage-deep: #46604A;
  --sage-light: #DCE5D9;
  --mauve: #B98C90;
  --mauve-light: #F0E1E2;
  --ochre: #D9A441;
  --pool: #7FC3C9;
  --line: #E6DFD3;

  /* Derived text-safe variants. --mauve and --sage fall short of AA for small
     text on cream, so headings, eyebrows and links use these instead and the
     base tokens stay for fills, marks and decoration. */
  --mauve-deep: #8A5A5F;
  --sage-darker: #3A5140;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius-img: 24px;
  --radius-card: 20px;
  --shadow-soft: 0 10px 30px rgba(35, 40, 43, 0.08);
  --shadow-lift: 0 16px 40px rgba(35, 40, 43, 0.12);
}

/* ----------------------------------------------------------------- reset */

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { border-style: none; }

h1, h2, h3, h4 { margin: 0 0 0.6em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

a { color: var(--sage-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sage-darker); }

button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

[hidden] { display: none !important; }

::selection { background: var(--sage-light); color: var(--ink); }

/* Focus ring: ochre per the brand, with a thin ink hairline so the indicator
   stays visible against both cream and the sage buttons. */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(35, 40, 43, 0.18);
}

.sr-only {
  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;
}

.skip {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  background: var(--sage-deep);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip:focus { top: 1rem; color: var(--cream); }

/* ------------------------------------------------------------ typography */

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  font-weight: 500;
  font-variation-settings: "SOFT" 40, "WONK" 0;
}
h1 em { font-style: italic; color: var(--sage-deep); }

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
h2 em, .h2-sub { font-style: italic; color: var(--sage-deep); font-weight: 400; }

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin: 0 0 0.9rem;
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34em;
}

.muted { color: var(--ink-soft); font-size: 0.95rem; }
.center { text-align: center; }

.prose h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 2.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose .btn { margin-top: 1.5rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}

.btn--primary {
  background: var(--sage-deep);
  color: var(--cream);
  border-color: var(--sage-deep);
}
.btn--primary:hover {
  background: var(--sage-darker);
  border-color: var(--sage-darker);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}
.btn--ghost:hover {
  background: var(--sage-light);
  color: var(--sage-darker);
  border-color: var(--sage-darker);
  transform: translateY(-1px);
}

.btn--cream {
  background: var(--cream);
  color: var(--sage-darker);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--white);
  color: var(--sage-darker);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.9rem; min-height: 44px; }

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.is-loading { pointer-events: none; opacity: 0.75; }
.btn.is-loading::after {
  content: "";
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btnrow { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btnrow--center { justify-content: center; }

.link-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sage-deep);
  text-decoration: none;
}
.link-cta .arrow { transition: transform 0.18s ease; }
.link-cta:hover { color: var(--sage-darker); }
.link-cta:hover .arrow { transform: translateX(4px); }

.ico { flex: none; vertical-align: -0.2em; color: var(--sage-deep); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }

.shead { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.shead h2 { margin-bottom: 0.5rem; }
.shead__lead { color: var(--ink-soft); margin: 0; max-width: 40em; }

.ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0 0 1.6rem; }
.chips li {
  background: var(--sage-light);
  color: var(--sage-darker);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.ticks { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.ticks li { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.7rem; color: var(--ink-soft); }
.ticks .ico { margin-top: 0.2rem; }

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

.siteheader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.siteheader.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 16px rgba(35, 40, 43, 0.04);
}
.siteheader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand__mark { display: block; flex: none; }
.brand__mark svg { display: block; width: 28px; height: 28px; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand--footer .brand__mark svg { width: 34px; height: 34px; }
.brand--footer .brand__name { font-size: 1.35rem; }

.navlinks { display: none; gap: 1.6rem; }
.navlinks a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  height: 2px;
  background: var(--mauve);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.navlinks a:hover { color: var(--sage-darker); }
.navlinks a:hover::after { transform: scaleX(1); }

.siteheader__actions { display: flex; align-items: center; gap: 0.75rem; }
.siteheader__cta { display: none; }

.socials { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.socials a:hover { background: var(--sage-light); color: var(--sage-darker); }
.socials--nav { display: none; }
.socials--footer { margin-top: 0.5rem; margin-left: -0.6rem; }
.socials--drawer { margin-top: 1.5rem; margin-left: -0.6rem; }

.burger {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.burger__bars, .burger__bars::before, .burger__bars::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger__bars { position: relative; }
.burger__bars::before, .burger__bars::after { content: ""; position: absolute; left: 0; }
.burger__bars::before { top: -6px; }
.burger__bars::after { top: 6px; }
.burger[aria-expanded="true"] .burger__bars { background: transparent; }
.burger[aria-expanded="true"] .burger__bars::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- drawer */

.drawer { position: fixed; inset: 0; z-index: 150; background: rgba(35, 40, 43, 0.35); }
.drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: var(--cream);
  padding: 5.5rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: drawerIn 0.24s ease both;
}
@keyframes drawerIn { from { transform: translateX(16px); opacity: 0; } }
.drawer__close {
  position: absolute;
  top: 1.1rem; right: var(--gutter);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
}
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.drawer__links a:hover { color: var(--sage-deep); }
.drawer__cta { margin-top: 1.75rem; }
body.is-locked { overflow: hidden; }

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

.hero {
  position: relative;
  background: var(--sand);
}
.hero__inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.25rem, 4vw, 4.5rem) clamp(2.5rem, 6vw, 5rem);
}
/* The photo sits beside the headline rather than behind it, so the trainer
   and the client both stay fully in frame at every screen size. On phones it
   leads, above the headline. */
.hero__media {
  position: relative;
  order: -1;
  margin: 0;
  aspect-ratio: 985 / 676;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content { max-width: 620px; }
.hero__lockup {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.35rem 0.5rem 0.55rem;
  border-radius: 999px;
  background: rgba(35, 40, 43, 0.46);
  color: var(--cream);
  font-family: "DM Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__lockup-mark { display: block; flex: none; }
.hero__content h1 { margin-bottom: 1rem; }
.hero__content .lead { margin-bottom: 1.75rem; }
.hero__content .btnrow { margin-bottom: 1.25rem; }
.trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

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

.intro { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.framed { position: relative; padding: 0 0 14px 14px; }
.framed::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 1.5px solid var(--mauve);
  border-radius: var(--radius-img);
  opacity: 0.55;
}
.framed__img {
  position: relative;
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.intro__text h2 { margin-bottom: 1rem; }
.intro__text .h2-sub { display: block; }

/* -------------------------------------------------------------- training */

.tgrid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.tcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.tcard__media { aspect-ratio: 3 / 2; overflow: hidden; }
.tcard__media img { transition: transform 0.5s ease; }
.tcard:hover .tcard__media img { transform: scale(1.03); }
.tcard__body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.tcard__body h3 { margin: 0; }
.tcard__body p { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 0.5rem; }
.tcard__body .link-cta { margin-top: auto; }

/* ------------------------------------------------------------------ steps */

.steps { list-style: none; padding: 0; margin: 0 0 2.5rem; display: grid; gap: clamp(1.75rem, 3vw, 2.5rem); }
/* Text-only cards: a sage-to-mauve strip on top and a round numeral badge
   carry the section now that the step photos are gone. */
.step-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem) clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--mauve));
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.step-card__n {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--mauve-light);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--mauve-deep);
  margin-bottom: 1.25rem;
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; line-height: 1.6; }
@media (prefers-reduced-motion: reduce) {
  .step-card, .step-card:hover { transition: none; transform: none; }
}

/* --------------------------------------------------------------- programs */

.pgrid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); align-items: start; }
.pcard {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.pcard--featured {
  background: var(--white);
  border-top: 4px solid var(--sage);
  padding-top: 2.4rem;
  box-shadow: var(--shadow-soft);
}
.pcard__flag {
  position: absolute;
  top: -0.85rem; left: 1.75rem;
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.pcard__name { font-size: 1.3rem; margin-bottom: 0.35rem; }
.pcard__price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.25rem; }
.pcard__amount { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; line-height: 1; }
.pcard__unit { color: var(--ink-soft); font-size: 0.92rem; }
.pcard__list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: 0.6rem; }
.pcard__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.97rem; color: var(--ink-soft); }
.pcard__list .ico { margin-top: 0.2rem; }
.pcard__cta { margin-top: auto; width: 100%; }
.pnote { margin-top: 1.5rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------------------------------------------------------------- gallery */

.gallery { column-count: 1; column-gap: 1.25rem; }
.gtile {
  position: relative;
  break-inside: avoid;
  margin: 0 0 1.25rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gtile__img { width: 100%; height: auto; display: block; }
.gtile__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem 0.9rem;
  color: var(--cream);
  font-size: 0.88rem;
  background: linear-gradient(to top, rgba(35, 40, 43, 0.72), rgba(35, 40, 43, 0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gtile:hover .gtile__cap,
.gtile:focus-within .gtile__cap { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- reviews */

.rgrid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.rcard {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  margin: 0;
}
.rcard__stars { color: var(--ochre); display: flex; gap: 2px; margin: 0 0 0.9rem; }
.rcard blockquote { margin: 0 0 1rem; }
.rcard blockquote p { font-family: var(--serif); font-size: 1.1rem; line-height: 1.45; margin: 0; }
.rcard figcaption { display: flex; flex-direction: column; }
.rcard__who { font-weight: 600; font-size: 0.95rem; }
.rcard__ctx { color: var(--ink-soft); font-size: 0.85rem; }

/* -------------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__sign { position: relative; width: 16px; height: 16px; flex: none; }
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: var(--sage-deep);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq__sign::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__sign::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item[open] .faq__sign::after { transform: scaleY(0); opacity: 0; }
.faq__a { padding: 0 0 1.3rem; max-width: 60ch; }
.faq__a p { color: var(--ink-soft); margin: 0; }

/* -------------------------------------------------------------------- cta */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  background: var(--sage-deep);
}
.cta__img { width: 100%; height: 100%; object-fit: cover; display: block; grid-area: 1 / 1; min-height: 220px; }
.cta__wash {
  grid-area: 1 / 1;
  background: linear-gradient(160deg, rgba(127, 195, 201, 0.9), rgba(95, 122, 92, 0.94));
}
.cta__inner { grid-area: 1 / 1; display: flex; align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.cta__content { width: 100%; }
.cta__content h2 { color: var(--cream); margin-bottom: 0.5rem; }
.cta__content p { color: rgba(250, 247, 242, 0.92); margin-bottom: 1.5rem; }

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

.sitefooter { background: var(--sand); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.sitefooter__grid { display: grid; gap: 2.25rem; padding-bottom: 2.75rem; }
.sitefooter__h { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; margin: 0 0 0.85rem; letter-spacing: 0.01em; }
.sitefooter__blurb { color: var(--ink-soft); font-size: 0.95rem; max-width: 32ch; }
.sitefooter__col--brand .brand { margin-bottom: 0.9rem; }
.sitefooter__list { list-style: none; padding: 0; margin: 0; display: grid; }
.sitefooter__list a, .sitefooter__mail {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}
.sitefooter__list a:hover, .sitefooter__mail:hover { color: var(--sage-darker); text-decoration: underline; }
.sitefooter__bar {
  border-top: 1px solid var(--line);
  padding-block: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.sitefooter__bar p { margin: 0; display: inline-flex; align-items: center; min-height: 44px; }
.sitefooter__bar a { color: var(--ink-soft); display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; }

.news__row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.news__row .input { flex: 1 1 11rem; min-width: 0; }
.news__msg { font-size: 0.88rem; margin: 0.6rem 0 0; min-height: 1.2em; }
.news__msg.is-ok { color: var(--sage-darker); }
.news__msg.is-err { color: #A33A32; }

/* Honeypot. Off screen but not display:none, so bots still fill it in. */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------ form basics */

.input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  min-height: 48px;
  font-size: 1rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.input:hover { border-color: #D6CCBB; }
.input:focus-visible { border-color: var(--sage-deep); }
.input--area { min-height: 7rem; resize: vertical; line-height: 1.5; }
.input.is-invalid { border-color: #A33A32; }

.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.field .req, .field .opt { font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; }
.field__err { color: #A33A32; font-size: 0.85rem; margin: 0.35rem 0 0; }
.field__count { color: var(--ink-soft); font-size: 0.8rem; margin: 0.3rem 0 0; text-align: right; }

.notice { border-radius: 14px; padding: 0.9rem 1.1rem; font-size: 0.95rem; margin: 0 0 1.25rem; }
.notice--warn { background: var(--mauve-light); color: #6E3F44; }
.notice--warn a { color: #6E3F44; }

/* ------------------------------------------------------------ booking page */

.bookpage { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.book { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.book__aside h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: 1.25rem; }
.book__media { border-radius: var(--radius-img); overflow: hidden; aspect-ratio: 3 / 2; margin-bottom: 1.25rem; box-shadow: var(--shadow-soft); }
.book__media--round { aspect-ratio: 1 / 1; width: 180px; max-width: 45vw; border-radius: 50%; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.card--form { --card-pad: clamp(1.5rem, 3vw, 2.25rem); padding: var(--card-pad); }

.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.stepper li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.stepper__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}
.stepper li[aria-current="step"] { background: var(--sage-light); border-color: var(--sage-light); color: var(--sage-darker); }
.stepper li[aria-current="step"] .stepper__n { background: var(--sage-deep); color: var(--cream); }
.stepper li.is-done .stepper__n { background: var(--mauve-deep); color: var(--cream); }

.fset { border: 0; padding: 0; margin: 0 0 1.75rem; }
.fset__legend { font-weight: 600; font-size: 1.05rem; padding: 0; margin-bottom: 0.75rem; }
.fset__hint { color: var(--ink-soft); font-size: 0.9rem; margin: -0.4rem 0 0.85rem; }

.segmented { display: grid; gap: 0.6rem; }
.segmented input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.segmented label {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.segmented label:hover { border-color: var(--sage); }
.segmented__t { display: block; font-weight: 600; }
.segmented__b { display: block; font-size: 0.88rem; color: var(--ink-soft); }
.segmented input:checked + label { border-color: var(--sage-deep); background: var(--sage-light); }
.segmented input:checked + label .segmented__b { color: var(--sage-darker); }
.segmented input:focus-visible + label { outline: 3px solid var(--ochre); outline-offset: 3px; }

.chipchecks { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip-check span {
  display: inline-block;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.chip-check span:hover { border-color: var(--sage); }
.chip-check input:checked + span { background: var(--sage-light); border-color: var(--sage-deep); color: var(--sage-darker); font-weight: 600; }
.chip-check input:focus-visible + span { outline: 3px solid var(--ochre); outline-offset: 3px; }

.step__nav { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 1.75rem; }
.step__nav .btn { flex: 0 1 auto; }

/* Calendar */
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.85rem; }
.cal__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin: 0; }
.iconbtn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.iconbtn:hover:not([disabled]) { background: var(--sage-light); }
.iconbtn[disabled] { opacity: 0.35; cursor: not-allowed; }

table.cal { width: 100%; border-collapse: collapse; table-layout: fixed; margin-bottom: 1.5rem; }
table.cal th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.5rem;
}
table.cal td { padding: 2px; text-align: center; }
.cal__day {
  width: 100%;
  min-height: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
.cal__day:hover:not([disabled]) { background: var(--sage-light); }
.cal__day[disabled] { color: #B9B2A6; background: transparent; cursor: not-allowed; }
.cal__day.is-today { border-color: var(--mauve); }
.cal__day.is-selected { background: var(--sage-deep); color: var(--cream); border-color: var(--sage-deep); }

/* Slots */
.slots { display: grid; gap: 1.25rem; }
.slots__group h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); font-family: var(--sans); margin-bottom: 0.6rem; }
.slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(6.2rem, 1fr)); gap: 0.5rem; }
.slot {
  min-height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.slot:hover { border-color: var(--sage); }
.slot.is-selected { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--cream); font-weight: 600; }
.slots__empty { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.tznote { margin: 1rem 0 0; }

.summary-pill {
  display: inline-block;
  margin: 1rem 0 0;
  background: var(--mauve-light);
  color: #6E3F44;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.summary-pill--static { margin: 0 0 1.5rem; }

.skel { background: linear-gradient(90deg, var(--sand), var(--cream), var(--sand)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; border-radius: 14px; }
.skel--cal { height: 260px; }
@keyframes shimmer { to { background-position: -200% 0; } }

.consent { font-size: 0.85rem; color: var(--ink-soft); margin: 1rem 0 0; }

/* Success */
.success { text-align: left; }
.success__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--sage-light);
  margin-bottom: 1rem;
}
.success__ico .ico { width: 26px; height: 26px; color: var(--sage-darker); }
.success__list {
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.25rem;
  font-size: 0.95rem;
}
.success__list dt { color: var(--ink-soft); }
.success__list dd { margin: 0; font-weight: 500; }
.success__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }

/* --------------------------------------------------------------- notfound */

.notfound { padding-block: clamp(5rem, 12vw, 9rem); }
.notfound .lead { margin-inline: auto; }

/* ----------------------------------------------------------------- motion */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }

.rise { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) both; animation-delay: calc(var(--i, 0) * 90ms); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }

/* Safety net. A backgrounded tab pauses CSS animations, which would otherwise
   hold the hero headline at opacity 0. site.js adds this class shortly after
   load so the largest text on the page can never be stuck invisible. */
.rise--done { animation: none !important; opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .rise { animation: none !important; }
  .skel { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ------------------------------------------------------------------ print */

@media print {
  .siteheader, .drawer, .socials, .news, .skip, .cta__wash { display: none !important; }
  .rise, .js .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
  body { background: #FFFFFF; }
  .section { padding-block: 1.5rem; }
  a[href^="http"]::after, a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

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

/* Narrow phones: let the calendar run to the card edges so each day button
   stays at least 44px wide inside a seven column grid. */
@media (max-width: 430px) {
  .card--form { --card-pad: 1.15rem; }
  table.cal {
    width: calc(100% + var(--card-pad) * 2 - 8px);
    margin-inline: calc(4px - var(--card-pad));
  }
  table.cal td { padding: 0; }
  .cal__day { border-radius: 10px; }
  .slots__grid { grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr)); }
  .step__nav { flex-wrap: wrap; }
  .step__nav .btn { flex: 1 1 auto; }
}

@media (min-width: 640px) {
  .gallery { column-count: 2; }
  .rgrid { grid-template-columns: repeat(2, 1fr); }
  .segmented { grid-template-columns: repeat(2, 1fr); }
  .sitefooter__grid { grid-template-columns: repeat(2, 1fr); }
  .success__list { grid-template-columns: 9rem 1fr; }
}

@media (min-width: 900px) {
  .navlinks { display: flex; }
  .siteheader__cta { display: inline-flex; }
  .socials--nav { display: flex; }
  .burger { display: none; }

  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); min-height: min(78vh, 760px); }
  .hero__media { order: 0; }

  .intro { grid-template-columns: 5fr 7fr; }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .gallery { column-count: 3; }
  .rgrid { grid-template-columns: repeat(3, 1fr); }

  .cta__inner { justify-content: flex-start; }
  .cta__content { max-width: 30rem; text-align: left; }
  .cta__wash {
    background: linear-gradient(to left, rgba(127, 195, 201, 0) 0%, rgba(127, 195, 201, 0.55) 32%, rgba(95, 122, 92, 0.86) 62%, rgba(95, 122, 92, 0.92) 100%);
  }

  .book { grid-template-columns: 5fr 7fr; }
  .book__aside { position: sticky; top: 96px; }

  .sitefooter__grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; }
  .sitefooter__bar { justify-content: space-between; }
}

@media (min-width: 1200px) {
  .navlinks { gap: 2rem; }
  .hero__content { max-width: 660px; }
}
