/* ==========================================================================
   BodyLume Therapy — subpage styles
   Loaded in addition to styles.css
   ========================================================================== */

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

.page-hero {
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink-900);
  margin: 0.25rem 0 1rem;
  letter-spacing: 0.01em;
}
.page-hero__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-500);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto;
}

/* Inner section wrapper shared on subpages */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*  Service cards — quick-nav at top of services.html                         */
/* -------------------------------------------------------------------------- */

.svc-cards {
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.65rem 1.6rem;
  background: rgba(251, 245, 235, 0.55);
  border: 1px solid rgba(181, 145, 92, 0.18);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}
/* Top hairline that grows on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.35);
  width: calc(100% - 2.4rem);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 117, 0.7) 30%,
    rgba(201, 168, 117, 0.7) 70%,
    transparent);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
/* Subtle warm wash that fades in on hover */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 70% at 50% 100%,
    rgba(201, 168, 117, 0.10),
    transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 117, 0.5);
  background: rgba(251, 245, 235, 0.92);
  box-shadow: 0 22px 40px -28px rgba(62, 46, 33, 0.4);
}
.svc-card:hover::before { transform: translateX(-50%) scaleX(1); }
.svc-card:hover::after  { opacity: 1; }
.svc-card:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.svc-card__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-500);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-card__num::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.55;
}
.svc-card__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}
.svc-card__desc {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-700);
  transition: color 0.3s ease, gap 0.3s ease;
}
.svc-card__cta svg {
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-card__cta {
  color: var(--ink-900);
  gap: 0.85rem;
}
.svc-card:hover .svc-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .svc-cards { grid-template-columns: 1fr; gap: 1rem; }
  .svc-card { padding: 1.5rem 1.4rem; }
}

/* Section anchor offset — main nav is sticky (~64px); leave breathing room */
#pilates, #red-light, #wellness, #pricing {
  scroll-margin-top: 100px;
}


/* -------------------------------------------------------------------------- */
/*  Value / benefit grid (About, Services)                                    */
/* -------------------------------------------------------------------------- */

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.value {
  text-align: center;
  padding: 1rem;
}
.value__num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--gold-600);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--ink-900);
  margin: 0 0 0.35rem;
}
.value__desc {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

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

/* -------------------------------------------------------------------------- */
/*  Story — editorial single-column long read (about page)                    */
/* -------------------------------------------------------------------------- */

.story {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.story .section-title { margin: 0 0 1.5rem; }
.story__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 auto 0;
  text-align: center;
  max-width: 640px;
}
.story__lead em {
  font-style: italic;
  color: var(--bronze-700);
  font-weight: 400;
}
.story__visual {
  margin: 2.5rem auto;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.story__copy {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 1.25rem;
}
.story__copy strong {
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.story__cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 720px) {
  .story__visual { max-width: 360px; }
  .story__copy { font-size: 0.95rem; line-height: 1.75; }
}

/* -------------------------------------------------------------------------- */
/*  Beliefs — mission manifesto block                                         */
/* -------------------------------------------------------------------------- */

.beliefs__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.beliefs__inner .section-title { margin-bottom: 1.5rem; }
.beliefs__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 auto 2rem;
  max-width: 600px;
}
.beliefs__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 640px;
}
.beliefs__list li {
  position: relative;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-700);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(201, 168, 117, 0.5);
  border-radius: 999px;
  background: rgba(255, 246, 230, 0.5);
}
.beliefs__copy {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto 1.25rem;
  max-width: 640px;
  text-align: left;
}
.beliefs__copy--final {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--ink-900);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 117, 0.25);
  max-width: 580px;
}

@media (max-width: 720px) {
  .beliefs__list { gap: 0.6rem; }
  .beliefs__list li { padding: 0.45rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.18em; }
  .beliefs__copy { font-size: 0.95rem; line-height: 1.7; }
  .beliefs__copy--final { font-size: 1rem; }
}

/* -------------------------------------------------------------------------- */
/*  Philosophy — vertical editorial timeline                                  */
/* -------------------------------------------------------------------------- */

.philosophy {
  list-style: none;
  margin: 3.5rem auto 0;
  padding: 0;
  max-width: 760px;
  position: relative;
}

/* The vertical line connecting nodes — fades at top + bottom */
.philosophy::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(201, 168, 117, 0) 0%,
    rgba(201, 168, 117, 0.55) 6%,
    rgba(201, 168, 117, 0.55) 94%,
    rgba(201, 168, 117, 0) 100%);
  pointer-events: none;
}

.philosophy__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.75rem;
  padding-bottom: 3.25rem;
  position: relative;
}
.philosophy__item:last-child { padding-bottom: 0; }

/* Numbered circle node sitting on the line */
.philosophy__node {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-50);
  border: 1px solid rgba(201, 168, 117, 0.5);
  box-shadow: 0 6px 22px -10px rgba(62, 46, 33, 0.22);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
              box-shadow 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.philosophy__item:hover .philosophy__node {
  transform: scale(1.05);
  box-shadow: 0 10px 28px -10px rgba(62, 46, 33, 0.32);
}
.philosophy__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--bronze-700);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Right column — title + lead + copy + pull tag */
.philosophy__body {
  padding-top: 0.4rem;
  max-width: 580px;
}
.philosophy__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}
.philosophy__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 0.95rem;
}
.philosophy__copy {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1.1rem;
}
.philosophy__pull {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  border-left: 2px solid var(--gold-500);
  padding: 0.2rem 0 0.2rem 0.85rem;
}

@media (max-width: 720px) {
  .philosophy { max-width: 100%; }
  .philosophy::before { left: 25px; top: 24px; bottom: 24px; }
  .philosophy__item {
    grid-template-columns: 50px 1fr;
    gap: 1.1rem;
    padding-bottom: 2.5rem;
  }
  .philosophy__node { width: 50px; height: 50px; }
  .philosophy__num { font-size: 1rem; }
  .philosophy__title { font-size: 1.35rem; }
  .philosophy__lead { font-size: 1rem; }
  .philosophy__copy { font-size: 0.92rem; }
}

/* -------------------------------------------------------------------------- */
/*  Team cards                                                                */
/* -------------------------------------------------------------------------- */

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.member {
  text-align: center;
}
.member__photo {
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
  background: transparent;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
/* Prázdný rám místo fotky lektorky — "Již brzy" (prostor připravený na fotku) */
.member__photo--soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 247, 235, 0.32);
  border: 2px dashed rgba(181, 145, 92, 0.5);
  color: var(--gold-500);
}
.member__photo-icon { opacity: 0.5; }
/* Zástupné čáry místo jména a odbornosti — jméno silnější, odbornost jemnější */
.member__ph { margin: 0 auto 0.55rem; border-radius: 2px; }
.member__ph--name { width: 62%; border-top: 3px dashed rgba(181, 145, 92, 0.6); margin-top: 0.35rem; }
.member__ph--role { width: 46%; border-top: 1px dashed rgba(181, 145, 92, 0.45); }
.member__ph--bio  { width: 78%; border-top: 1px dashed rgba(181, 145, 92, 0.3); }
.member__photo--soon span {
  font-family: var(--f-display); font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--gold-500);
}
.member__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--ink-900);
  margin: 0 0 0.15rem;
}
.member__role {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--bronze-700);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.member__bio {
  font-size: 0.9rem;
  color: var(--ink-500);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 900px) { .team { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }

/* -------------------------------------------------------------------------- */
/*  Service feature row (alternating image + text)                            */
/* -------------------------------------------------------------------------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(181, 145, 92, 0.15);
}
.feature:first-of-type { border-top: 0; }
.feature--reverse .feature__visual { order: -1; }

.feature__visual {
  aspect-ratio: 5/4;
  background: transparent;
}
.feature__visual img { width: 100%; height: 100%; object-fit: cover; }

.feature__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--bronze-700);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.feature__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink-900);
  margin: 0 0 1rem;
  line-height: 1.1;
}
.feature__desc {
  color: var(--ink-500);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  max-width: 520px;
}
.feature__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}
.feature__list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-700);
  font-size: 0.95rem;
}
.feature__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #F0DDBF, #C99B5F 80%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--ink-500);
  font-size: 0.9rem;
}
.feature__meta strong {
  display: block;
  color: var(--ink-900);
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__visual { order: initial; }
}

/* -------------------------------------------------------------------------- */
/*  Pricing cards                                                             */
/* -------------------------------------------------------------------------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.price {
  background: rgba(255, 247, 235, 0.5);
  border: 1px solid rgba(181, 145, 92, 0.2);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .3s ease;
}
.price:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.price--featured {
  background: linear-gradient(160deg, rgba(255,240,215,0.9), rgba(230,198,154,0.7));
  border-color: var(--gold-500);
  position: relative;
}
.price--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink-900);
  color: var(--cream-50);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
}
.price__name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--ink-900);
  margin: 0 0 0.35rem;
}
.price__tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--bronze-700);
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.price__amount {
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--ink-900);
  line-height: 1;
  margin: 0.5rem 0;
}
.price__amount span {
  font-size: 0.9rem;
  color: var(--ink-500);
  letter-spacing: 0.1em;
}
.price__list {
  list-style: none;
  padding: 1.25rem 0;
  margin: 1rem 0;
  border-top: 1px solid rgba(181, 145, 92, 0.15);
  border-bottom: 1px solid rgba(181, 145, 92, 0.15);
  display: grid;
  gap: 0.5rem;
  color: var(--ink-500);
  font-size: 0.92rem;
}

@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }

/* -------------------------------------------------------------------------- */
/*  Schedule grid                                                             */
/* -------------------------------------------------------------------------- */

.schedule {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid rgba(181, 145, 92, 0.2);
  background: rgba(255, 247, 235, 0.4);
}
.schedule table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.schedule th, .schedule td {
  padding: 1rem 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(181, 145, 92, 0.15);
  border-right: 1px solid rgba(181, 145, 92, 0.1);
}
.schedule th:last-child, .schedule td:last-child { border-right: 0; }
.schedule tr:last-child td { border-bottom: 0; }
.schedule th {
  background: rgba(226, 201, 165, 0.25);
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink-900);
  font-size: 1rem;
}
.schedule td:first-child, .schedule th:first-child {
  font-family: var(--f-display);
  color: var(--ink-900);
  font-weight: 500;
  white-space: nowrap;
}
.slot {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-700);
  line-height: 1.35;
}
.slot strong { color: var(--ink-900); font-weight: 500; }
.slot__type {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  margin-right: 0.3rem;
}
.slot__type--pil  { background: rgba(201, 168, 117, 0.2); color: var(--bronze-700); }
.slot__type--rlt  { background: rgba(227, 137, 107, 0.22); color: #9d4b2d; }
.slot__type--well { background: rgba(169, 154, 131, 0.25); color: var(--bronze-700); }

/* ════════════════════════════════════════════════════════════════════ */
/*  Krok 2 — týdenní rozvrh + košík (rekapitulace)                        */
/* ════════════════════════════════════════════════════════════════════ */

/* Roztažení kroku 2 mimo úzký wizard, aby se vešlo všech 7 dní + košík */
.book-layout { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: start; }
@media (min-width: 1000px) {
  .book-layout {
    width: min(1180px, 92vw);
    margin-inline: calc(50% - min(1180px, 92vw) / 2);
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.9rem;
  }
  .book-cart {
    position: sticky;
    top: 1.5rem; /* výchozí — přepsáno JavaScriptem po buildWeek() */
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    align-self: start;
  }
}

/* Krok 2 řeší navigaci přímo v košíku (Pokračovat + Přidat další službu) */
.wizard__panel[data-panel="2"] > .wizard__nav { display: none; }

/* ── Rozvrh ───────────────────────────────────────────────────────── */
.schedule--book { margin-top: 0; border-radius: 16px; }
.schedule--book table { min-width: 580px; }
.schedule--book th, .schedule--book td {
  text-align: center; padding: 5px 6px; vertical-align: middle;
  border-right: 1px solid rgba(181, 145, 92, 0.08);
}
.schedule--book thead th {
  padding-top: 12px; padding-bottom: 10px;
  font-size: 0.92rem; line-height: 1.1;
}
.schedule--book td:first-child, .schedule--book th:first-child {
  text-align: center; width: 58px; font-size: 0.9rem; color: var(--ink-700);
}
.sched__date { display: block; font-family: var(--f-body); font-weight: 400; font-size: 0.68rem; color: var(--ink-500); margin-top: 2px; }
.sched__cell { padding-left: 4px; padding-right: 4px; }
.sched__cell--off { color: rgba(60, 46, 33, 0.18); font-size: 0.9rem; }
.sched__slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  width: 100%; min-height: 40px; position: relative;
  border: 1px solid rgba(181, 145, 92, 0.32); border-radius: 9px;
  background: linear-gradient(170deg, #fffdf9, rgba(255, 244, 226, 0.85)); color: var(--ink-800);
  font-size: 0.8rem; line-height: 1.15; padding: 5px 4px; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.sched__slot:hover {
  border-color: var(--gold-500); transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(170, 130, 63, 0.18);
}
.sched__slot-instr { font-weight: 600; white-space: nowrap; }
.sched__slot-price { font-size: 0.66rem; color: var(--ink-500); margin-top: 1px; }
/* Stav termínu pod jménem lektorky: Volno / Obsazeno (místo ceny) */
.sched__slot-state { font-size: 0.66rem; color: var(--ink-500); margin-top: 1px; }
.sched__slot.is-selected .sched__slot-state { color: rgba(255,255,255,0.85); }
/* Obsazený termín — nedá se vybrat */
.sched__slot--taken {
  cursor: not-allowed; background: rgba(60, 46, 33, 0.05);
  border-color: rgba(60, 46, 33, 0.12); box-shadow: none;
}
.sched__slot--taken .sched__slot-instr { color: var(--ink-500); font-weight: 500; }
.sched__slot--taken .sched__slot-state { color: #a14a3a; font-weight: 600; }
.sched__slot--taken:hover { transform: none; background: rgba(60, 46, 33, 0.05); }
.sched__slot.is-selected {
  background: linear-gradient(160deg, #c79a4a, #b0843b); border-color: #9a722f; color: #fff;
}
.sched__slot.is-selected .sched__slot-instr { color: #fff; }
.sched__slot.is-selected .sched__slot-price { color: rgba(255,255,255,0.85); }
.sched__slot.is-selected::after {
  content: '✓'; position: absolute; top: -7px; right: -7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #2f7d4f; color: #fff; border: 2px solid #fff;
  font-size: 0.6rem; line-height: 15px; text-align: center; font-weight: 700;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* ── Košík / rekapitulace ─────────────────────────────────────────── */
.book-cart {
  background: #fff; border: 1px solid rgba(181, 145, 92, 0.22);
  border-radius: 18px; padding: 1.25rem 1.3rem;
  box-shadow: 0 14px 40px rgba(120, 90, 50, 0.1);
}
.book-cart__head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(181, 145, 92, 0.16); }
.book-cart__title { font-family: var(--f-head); font-size: 1.18rem; color: var(--ink-900); margin: 0; }
.book-cart__count {
  margin-left: auto; min-width: 24px; height: 24px; padding: 0 7px; border-radius: 999px;
  background: linear-gradient(160deg, #c79a4a, #b0843b); color: #fff;
  font-size: 0.78rem; font-weight: 700; line-height: 24px; text-align: center;
}
.book-cart__empty { color: var(--ink-500); font-size: 0.86rem; line-height: 1.55; margin: 0.2rem 0; }
.cart-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 0.55rem;
  padding: 0.65rem 0; border-bottom: 1px dashed rgba(181, 145, 92, 0.22);
}
.cart-item:first-child { padding-top: 0.2rem; }
.cart-item__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item__tag {
  align-self: flex-start; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 2px 9px; border-radius: 999px;
  background: rgba(181, 145, 92, 0.14); color: #8a6a32; border: 1px solid rgba(181, 145, 92, 0.28);
}
.cart-item__when { font-size: 0.85rem; color: var(--ink-800); font-weight: 500; }
.cart-item__instr { font-size: 0.74rem; color: var(--ink-500); }

/* Volba varianty Pilates přímo v košíku (počet osob) */
.cart-variants { margin-top: 6px; }
.cart-variants__label { display: block; font-size: 0.7rem; color: var(--ink-500); margin-bottom: 4px; }
.cart-variants__row { display: flex; gap: 4px; flex-wrap: wrap; }
.cart-variant {
  flex: 1 1 auto; min-width: 62px; cursor: pointer; text-align: center;
  padding: 5px 6px; border-radius: 8px; line-height: 1.2;
  border: 1px solid rgba(181, 145, 92, 0.3); background: rgba(255, 247, 235, 0.55);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.cart-variant strong { display: block; font-size: 0.74rem; color: var(--ink-900); }
.cart-variant span   { display: block; font-size: 0.62rem; color: var(--ink-500); }
.cart-variant:hover { border-color: var(--gold-500); background: rgba(255, 240, 215, 0.9); }
.cart-variant.is-active {
  background: var(--gold-500); border-color: var(--gold-500);
}
.cart-variant.is-active strong,
.cart-variant.is-active span { color: #fff; }
/* Délka, která se do zbylého času nevejde — viditelná, ale nevolitelná. */
.cart-variant.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cart-variant.is-disabled:hover {
  border-color: var(--line-200, rgba(0, 0, 0, 0.12));
  background: transparent;
}
.cart-variants__note {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  color: var(--ink-500);
}
.cart-item__side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; white-space: nowrap; }
.cart-item__price { font-weight: 600; font-size: 0.86rem; color: var(--ink-900); }
.cart-item__remove {
  width: 22px; height: 22px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(60, 46, 33, 0.07); color: var(--ink-700); font-size: 1.05rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease;
}
.cart-item__remove:hover { background: rgba(168, 74, 58, 0.16); color: #a14a3a; }
.book-cart__totals { margin-top: 0.95rem; }
.book-cart__row { display: flex; justify-content: space-between; font-size: 0.87rem; color: var(--ink-700); padding: 3px 0; }
.book-cart__row--discount { color: #2f7d4f; font-weight: 500; }
.book-cart__row--total {
  margin-top: 0.45rem; padding-top: 0.7rem; border-top: 1px solid rgba(181, 145, 92, 0.22);
  font-family: var(--f-head); font-size: 1.22rem; color: var(--ink-900);
}
.book-cart__progress { margin-top: 0.85rem; }
.book-cart__bar { height: 6px; border-radius: 999px; background: rgba(181, 145, 92, 0.16); overflow: hidden; }
.book-cart__bar > span { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #d8b46a, #b0843b); transition: width .3s ease; }
.book-cart__hint { margin: 0.55rem 0 0; font-size: 0.78rem; line-height: 1.45; color: #8a6a32; }
.book-cart__hint.is-applied { color: #2f7d4f; font-weight: 600; }
.book-cart__continue {
  margin-top: 1.1rem; width: 100%; border: none; cursor: pointer;
  background: linear-gradient(160deg, #c79a4a, #ad8038); color: #fff;
  border-radius: 999px; padding: 0.8rem 1rem; font-size: 0.95rem; font-weight: 600;
  font-family: var(--f-body); box-shadow: 0 6px 18px rgba(170, 130, 63, 0.28);
  transition: transform .12s ease, box-shadow .15s ease, opacity .15s ease;
}
.book-cart__continue:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 9px 24px rgba(170, 130, 63, 0.34); }
.book-cart__continue:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
.book-cart__add {
  margin-top: 0.65rem; width: 100%; border: 1px dashed rgba(181, 145, 92, 0.5);
  background: transparent; color: #8a6a32; border-radius: 12px; padding: 0.6rem;
  font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all .15s ease;
}
.book-cart__add:hover { background: rgba(181, 145, 92, 0.08); border-color: var(--gold-500); }

/* Barevné odlišení služeb (tag) */
.cart-item[data-service="pilates"] .cart-item__tag,
.summary__item[data-service="pilates"] .cart-item__tag {
  background: rgba(123, 154, 122, 0.16); color: #4f6f52; border-color: rgba(123, 154, 122, 0.4);
}
.cart-item[data-service="red-light"] .cart-item__tag,
.summary__item[data-service="red-light"] .cart-item__tag {
  background: rgba(196, 110, 84, 0.15); color: #b1573a; border-color: rgba(196, 110, 84, 0.38);
}
.cart-item[data-service="wellness"] .cart-item__tag,
.summary__item[data-service="wellness"] .cart-item__tag {
  background: rgba(181, 145, 92, 0.16); color: #8a6a32; border-color: rgba(181, 145, 92, 0.4);
}

/* Step 4 — položky v souhrnu */
.summary__items { margin-bottom: 0.3rem; }
.summary__item { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 0.55rem 0; border-bottom: 1px dashed rgba(181, 145, 92, 0.2); }
.summary__item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.summary__item-when { font-size: 0.84rem; color: var(--ink-700); }
.summary__row--discount { color: #2f7d4f; }

/* ── Mobil ────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .schedule--book table { min-width: 540px; }
  .schedule--book th:first-child, .schedule--book td:first-child {
    position: sticky; left: 0; z-index: 2; width: 48px;
    background: #f7efe1;
  }
  .schedule--book thead th:first-child { background: #efe4d2; }
  .book-cart { padding: 1.1rem 1.1rem; }
  .book-cart__continue { padding: 0.85rem 1rem; min-height: 48px; }
}

/* Legend */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-500);
}
.legend__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.legend__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* -------------------------------------------------------------------------- */
/*  Contact                                                                   */
/* -------------------------------------------------------------------------- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}
.contact__info { max-width: 460px; }
.contact__block { margin-bottom: 1.75rem; }
.contact__block h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--ink-900);
  margin: 0 0 0.35rem;
  letter-spacing: 0.05em;
}
.contact__block p {
  margin: 0;
  color: var(--ink-500);
  line-height: 1.7;
}
.contact__block a { color: inherit; border-bottom: 1px dashed rgba(139, 111, 73, 0.4); }
.contact__block a:hover { color: var(--ink-900); }

.map-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(ellipse 40% 30% at 50% 55%, rgba(201,168,117,0.4), transparent 70%),
    linear-gradient(135deg, #F0E3CF 0%, #DCC29C 100%);
  display: grid;
  place-items: center;
  color: var(--bronze-700);
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  position: relative;
}
.map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(181,145,92,0.06) 40px, rgba(181,145,92,0.06) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(181,145,92,0.05) 60px, rgba(181,145,92,0.05) 61px);
  pointer-events: none;
}
.map-pin {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(145deg, #E2C497, #B6925C);
  box-shadow: 0 8px 16px -6px rgba(91,66,38,0.5);
  z-index: 1;
}
.map-pin::before {
  content: '';
  position: absolute;
  inset: 7px;
  background: var(--cream-50);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- */
/*  Forms                                                                     */
/* -------------------------------------------------------------------------- */

.form {
  display: grid;
  gap: 1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__field {
  display: grid;
  gap: 0.35rem;
}
.form__field label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-700);
}
.form__field input,
.form__field textarea,
.form__field select {
  font: inherit;
  color: var(--ink-900);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(181, 145, 92, 0.35);
  border-radius: var(--r-sm);
  background: rgba(255, 251, 243, 0.7);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form__field textarea { min-height: 140px; resize: vertical; font-family: var(--f-body); }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: 0;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 117, 0.18);
}
.form__hint { font-size: 0.8rem; color: var(--ink-500); }

/* Pre-filled (came from ?topic= query param) — gold flash */
.form__field select.is-prefilled,
.form__field input.is-prefilled {
  border-color: var(--gold-500);
  background: linear-gradient(180deg, rgba(255, 240, 215, 0.7), rgba(255, 246, 230, 0.3));
  animation: bl-prefill-flash 1.6s ease-out;
}
@keyframes bl-prefill-flash {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 117, 0.55); }
  35%  { box-shadow: 0 0 0 8px rgba(201, 168, 117, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 117, 0); }
}

/* Contextual concierge notice — shown via JS for ?topic=membership */
.form-notice {
  margin: 1rem 0 1.75rem;
  padding: 1.6rem 1.7rem;
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(255, 240, 215, 0.5), transparent 60%),
    linear-gradient(160deg, rgba(255, 246, 230, 0.85), rgba(243, 226, 195, 0.4));
  border: 1px solid rgba(201, 168, 117, 0.35);
  border-left: 3px solid var(--gold-500);
  border-radius: 4px;
  position: relative;
  animation: bl-notice-in 0.6s cubic-bezier(0.65, 0, 0.35, 1) both;
}
@keyframes bl-notice-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-notice__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-700);
  margin-bottom: 0.85rem;
}
.form-notice__line {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.7;
}
.form-notice__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}
.form-notice__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0 0 1rem;
}
.form-notice__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-notice__list li {
  position: relative;
  padding-left: 1.65rem;
}
.form-notice__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow:
    0 0 0 1px var(--gold-600),
    0 0 0 4px rgba(201, 168, 117, 0.15);
}

@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
}

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

.faq { display: grid; gap: 0.75rem; max-width: 760px; margin: 2rem auto 0; }
.faq details {
  background: rgba(255, 247, 235, 0.5);
  border: 1px solid rgba(181, 145, 92, 0.2);
  border-radius: var(--r-md);
  padding: 0.25rem 1.25rem;
  transition: background .2s ease;
}
.faq details[open] { background: rgba(255, 247, 235, 0.95); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--gold-600);
  font-size: 1.4rem;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 1rem; color: var(--ink-500); line-height: 1.7; }

/* -------------------------------------------------------------------------- */
/*  Booking wizard                                                            */
/* -------------------------------------------------------------------------- */

.wizard {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wizard__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  counter-reset: step;
  margin-bottom: 2.5rem;
  position: relative;
}
.wizard__step {
  counter-increment: step;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  color: var(--ink-500);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}
.wizard__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--bronze-700);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 247, 235, 0.7);
  border: 1px solid rgba(181, 145, 92, 0.35);
  font-size: 1rem;
  letter-spacing: 0;
  transition: all .3s ease;
}
.wizard__step.is-active {
  color: var(--ink-900);
}
.wizard__step.is-active::before {
  background: linear-gradient(145deg, #F0DDBF, #C99B5F 80%);
  border-color: var(--gold-500);
  color: var(--ink-900);
  box-shadow: 0 6px 18px -8px rgba(139, 111, 73, 0.5);
}
.wizard__step.is-done::before {
  content: '✓';
  background: var(--ink-900);
  color: var(--cream-50);
  border-color: var(--ink-900);
}
/* connector lines */
.wizard__steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,145,92,0.35), transparent);
  z-index: -1;
}

.wizard__panel {
  display: none;
  animation: fadeIn .3s ease;
}
.wizard__panel.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.wizard__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink-900);
  margin: 0 0 0.5rem;
  text-align: center;
}
.wizard__lead {
  color: var(--ink-500);
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 520px;
}

/* Option cards (service select, date picker) */
.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.option {
  display: block;
  position: relative;
  cursor: pointer;
}
.option input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.option__card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(181, 145, 92, 0.3);
  background: rgba(255, 247, 235, 0.5);
  transition: all .25s ease;
  text-align: center;
  height: 100%;
}
.option__icon {
  width: 52px; height: 52px;
  margin: 0 auto 0.75rem;
  color: var(--gold-600);
}
.option__icon--illus {
  width: 260px;
  height: 260px;
  object-fit: contain;
  display: block;
}
.option__title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink-900);
  margin: 0 0 0.25rem;
}
.option__meta { font-size: 0.85rem; color: var(--ink-500); }
.option input:checked + .option__card,
.option:hover .option__card {
  border-color: var(--gold-500);
  background: linear-gradient(160deg, rgba(255,240,215,0.9), rgba(230,198,154,0.4));
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 720px) { .options { grid-template-columns: 1fr; } }

/* Time slots grid */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.slot-btn {
  padding: 0.7rem 0.5rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(181, 145, 92, 0.3);
  background: rgba(255, 247, 235, 0.6);
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--ink-900);
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
.slot-btn:hover { border-color: var(--gold-500); }
.slot-btn.is-selected {
  background: linear-gradient(145deg, #F0DDBF, #D4AE7A);
  border-color: var(--gold-500);
}
.slot-btn[disabled] { opacity: 0.35; cursor: not-allowed; }

.dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.date-btn {
  padding: 0.9rem 0.5rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(181, 145, 92, 0.3);
  background: rgba(255, 247, 235, 0.6);
  cursor: pointer;
  text-align: center;
  transition: all .2s ease;
}
.date-btn__dow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze-700); }
.date-btn__day { font-family: var(--f-display); font-size: 1.5rem; color: var(--ink-900); line-height: 1; margin: 0.2rem 0; }
.date-btn__mo { font-size: 0.75rem; color: var(--ink-500); }
.date-btn:hover { border-color: var(--gold-500); }

/* ── Měsíční kalendář (krok 2 rezervace) ───────────────────────── */
.cal__header { display: flex; align-items: center; justify-content: space-between; max-width: 420px; margin: 0 auto 0.9rem; }
.cal__title { font-family: var(--f-display); font-size: 1.25rem; color: var(--ink-900); }
.cal__nav { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(181,145,92,0.35); background: rgba(255,247,235,0.6); font-size: 1.3rem; line-height: 1; color: var(--bronze-700); cursor: pointer; transition: all .2s ease; }
.cal__nav:hover:not([disabled]) { border-color: var(--gold-500); background: rgba(255,240,215,0.9); }
.cal__nav[disabled] { opacity: 0.3; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; max-width: 420px; margin: 0 auto 1.5rem; }
.cal__dow { text-align: center; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); padding: 0.2rem 0; }
.cal__cell { position: relative; aspect-ratio: 1 / 1; min-height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid transparent; background: transparent; cursor: pointer; transition: all .15s ease; font-size: 1rem; color: var(--ink-900); }
.cal__cell:hover:not([disabled]) { border-color: var(--gold-500); background: rgba(255,240,215,0.7); }
.cal__cell.is-selected { background: linear-gradient(160deg, rgba(255,240,215,0.95), rgba(230,198,154,0.7)); border-color: var(--gold-500); font-weight: 600; }
.cal__cell--off { color: rgba(60,46,33,0.28); cursor: default; }
.cal__cell--empty { background: none; border: none; cursor: default; }
.cal__dot { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: #c99b5f; }
.cal__cell.is-selected .cal__dot { background: #8b6f49; }
.date-btn.is-selected {
  background: linear-gradient(145deg, #F0DDBF, #D4AE7A);
  border-color: var(--gold-500);
}

/* Summary panel */
.summary {
  border: 1px solid rgba(181, 145, 92, 0.3);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  background: rgba(255, 247, 235, 0.5);
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.summary__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.95rem; }
.summary__row strong { font-family: var(--f-display); font-weight: 500; color: var(--ink-900); }
.summary__row.total {
  border-top: 1px dashed rgba(181,145,92,0.3);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1.05rem;
}

/* ─── BOOKING PAGE — kompaktní layout ─────────────────────── */
/* Hero na booking stránce má být malý — je to task, ne landing */
main:has(.wizard) .page-hero {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 0.75rem;
}
main:has(.wizard) .page-hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.3rem 0 0.5rem;
}
main:has(.wizard) .page-hero__subtitle {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-style: normal;
}
main:has(.wizard) .eyebrow {
  margin-bottom: 0.4rem;
}
main:has(.wizard) .eyebrow__label {
  font-size: 0.7rem;
}

/* Stáhnout krok indikátor */
.wizard__steps {
  margin-bottom: 1.5rem !important;
  gap: 0.3rem;
}
.wizard__step {
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  gap: 0.35rem !important;
}
.wizard__step::before {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.85rem !important;
}

/* Panel title / lead — menší, kompaktnější */
.wizard__title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem) !important;
  margin: 0.25rem 0 0.4rem !important;
}
.wizard__lead {
  font-size: 0.9rem !important;
  margin: 0 0 1rem !important;
  color: var(--ink-500);
}

/* Option cards — kompaktnější */
.option__card {
  padding: 1rem 0.85rem !important;
}
.option__card .opt__title,
.option__card h3 { font-size: 1.05rem !important; margin-bottom: 0.35rem !important; }
.option__card .opt__meta,
.option__card p { font-size: 0.85rem !important; }

/* Mobile — ještě kompaktněji */
@media (max-width: 720px) {
  main:has(.wizard) .page-hero {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
  main:has(.wizard) .page-hero__title { font-size: 1.5rem; }
  main:has(.wizard) .page-hero__subtitle { font-size: 0.85rem; }
  .wizard__steps { margin-bottom: 1.25rem !important; }
  .wizard__step { font-size: 0.6rem !important; }
  .wizard__step::before { width: 32px !important; height: 32px !important; font-size: 0.8rem !important; }
  .wizard__title { font-size: 1.25rem !important; }
}

/* Sticky nav — tlačítka Zpět / Pokračovat vždy v dohledu, bez scrollování */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  position: sticky;
  bottom: 0;
  z-index: 20;
  padding: 1rem 1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-bottom: -1.5rem;
  background: rgba(255, 246, 230, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(181, 145, 92, 0.18);
  box-shadow: 0 -2px 20px rgba(76, 49, 24, 0.06);
}
.wizard__nav .btn--ghost { margin-right: auto; }

/* Padding pod obsahem panelu, aby sticky nav nepřekrýval poslední prvek */
.wizard__panel { padding-bottom: 1rem; }

/* Mobile — kompaktnější sticky bar, lepší tap targety */
@media (max-width: 720px) {
  .wizard__nav {
    padding: 0.85rem 1rem;
    gap: 0.6rem;
    /* Safe area insetu (iPhone notch / domestic gesture bar) */
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .wizard__nav .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.95rem; min-height: 44px; }
  .wizard__nav .btn--ghost { max-width: 35%; }
  .wizard__nav .btn--primary { max-width: 65%; }
}

/* Success screen */
.booked {
  text-align: center;
  padding: 2rem 0;
}
.booked__mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, #F0DDBF, #C99B5F);
  color: var(--ink-900);
  font-size: 2rem;
  box-shadow: 0 12px 28px -12px rgba(139, 111, 73, 0.5);
}
.booked__code {
  font-family: var(--f-display);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--bronze-700);
  margin: 1rem 0;
}

/* -------------------------------------------------------------------------- */
/*  Utility                                                                   */
/* -------------------------------------------------------------------------- */

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--ink-500);
  line-height: 1.75;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* -------------------------------------------------------------------------- */
/*  Cookie consent banner                                                     */
/* -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 9999;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(62, 46, 33, 0.97);
  color: var(--cream-50);
  border: 1px solid rgba(201, 168, 117, 0.35);
  border-radius: 8px;
  box-shadow: 0 32px 60px -20px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: bl-banner-in 0.4s cubic-bezier(0.65,0,0.35,1) both;
}
.cookie-banner.is-leaving { animation: bl-banner-out 0.3s ease forwards; }
@keyframes bl-banner-in  { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes bl-banner-out { to { transform: translateY(20px); opacity: 0; } }
.cookie-banner__inner {
  padding: 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cookie-banner.is-expanded .cookie-banner__inner { grid-template-columns: 1fr; }
.cookie-banner__copy { max-width: 700px; }
.cookie-banner__title { font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; margin: 0 0 0.4rem; color: var(--cream-50); }
.cookie-banner__text { margin: 0; font-size: 0.92rem; line-height: 1.55; color: rgba(245,237,224,0.78); }
.cookie-banner__text a { color: var(--gold-500); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__prefs { display: grid; gap: 0.75rem; margin-top: 0.5rem; }
.cookie-pref { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; line-height: 1.5; color: rgba(245,237,224,0.85); cursor: pointer; }
.cookie-pref input { margin-top: 0.25rem; accent-color: var(--gold-500); }
.cookie-pref strong { color: var(--cream-50); font-weight: 500; }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }
.cookie-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.cookie-btn--primary { background: linear-gradient(145deg, #F0DDBF, #C99B5F); color: var(--ink-900); }
.cookie-btn--primary:hover { transform: translateY(-1px); }
.cookie-btn--ghost { background: transparent; color: var(--cream-50); border-color: rgba(201,168,117,0.4); }
.cookie-btn--ghost:hover { border-color: var(--gold-500); background: rgba(201,168,117,0.1); }

@media (max-width: 720px) {
  .cookie-banner__inner { grid-template-columns: 1fr; padding: 1.2rem; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 calc(50% - 0.3rem); }
}

/* -------------------------------------------------------------------------- */
/*  Newsletter signup (footer)                                                */
/* -------------------------------------------------------------------------- */
.site-footer__newsletter {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 117, 0.18);
  max-width: 320px;
}
.site-footer__news-lead {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 237, 224, 0.7);
}
.news-form { position: relative; }
.news-form__field { display: block; margin-bottom: 0.6rem; }
.news-form__field input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(245, 237, 224, 0.08);
  border: 1px solid rgba(201, 168, 117, 0.25);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--cream-50);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.news-form__field input::placeholder { color: rgba(245, 237, 224, 0.4); }
.news-form__field input:focus {
  outline: 0;
  border-color: var(--gold-500);
  background: rgba(245, 237, 224, 0.12);
}
.news-form__btn {
  width: 100%;
  padding: 0.65rem 1.2rem;
  background: linear-gradient(145deg, #F0DDBF, #C99B5F);
  color: var(--ink-900);
  border: 0;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.news-form__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4); }
.news-form__ok {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: var(--gold-500);
  font-style: italic;
}

/* -------------------------------------------------------------------------- */
/*  Visit page                                                                */
/* -------------------------------------------------------------------------- */
.visit-steps { list-style: none; max-width: 760px; margin: 0 auto; padding: 0; }
.visit-step {
  position: relative;
  padding: 1.6rem 0 1.6rem 4.5rem;
  border-bottom: 1px solid rgba(181, 145, 92, 0.18);
}
.visit-step:last-child { border-bottom: 0; }
.visit-step__num {
  position: absolute;
  left: 0;
  top: 1.6rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold-500);
  letter-spacing: 0.04em;
}
.visit-step__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink-900);
  margin: 0 0 0.5rem;
}
.visit-step__copy { color: var(--ink-500); line-height: 1.75; margin: 0; }
.visit-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 2rem auto 0;
}
.visit-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.85rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 246, 230, 0.55);
  border: 1px solid rgba(181, 145, 92, 0.18);
  border-radius: 4px;
}
.visit-check strong { font-family: var(--f-display); font-weight: 500; color: var(--ink-900); grid-column: 2; }
.visit-check span:not(.visit-check__icon) { color: var(--ink-500); font-size: 0.9rem; line-height: 1.55; grid-column: 2; }
.visit-check__icon {
  grid-row: 1 / 3;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--gold-500);
  color: var(--ink-900);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}
@media (max-width: 600px) { .visit-checklist { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- */
/*  Gift page — how-to                                                        */
/* -------------------------------------------------------------------------- */
.gift-howto {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 2.25rem;
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid rgba(181, 145, 92, 0.2);
  border-radius: 4px;
}
.gift-howto__title { font-family: var(--f-display); font-weight: 400; font-size: 1.35rem; color: var(--ink-900); margin: 0 0 1rem; }
.gift-howto__list { list-style: none; counter-reset: g; padding: 0; margin: 0; }
.gift-howto__list li {
  counter-increment: g;
  position: relative;
  padding: 0.5rem 0 0.5rem 2.4rem;
  color: var(--ink-700);
  line-height: 1.65;
}
.gift-howto__list li::before {
  content: counter(g);
  position: absolute;
  left: 0; top: 0.5rem;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--gold-500);
  color: var(--ink-900);
  border-radius: 50%;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.85rem;
}

/* -------------------------------------------------------------------------- */
/*  Journal index                                                             */
/* -------------------------------------------------------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.journal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card--placeholder { opacity: 0.6; pointer-events: none; }
.journal-card__cover {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, rgba(245,225,200,0.5), rgba(232,212,180,0.3));
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.journal-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journal-card__cover--placeholder {
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(201,168,117,0.25), transparent 60%),
    linear-gradient(160deg, rgba(245,225,200,0.5), rgba(232,212,180,0.3));
}
.journal-card__cat {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-700);
  display: block;
  margin-bottom: 0.6rem;
}
.journal-card__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink-900);
  margin: 0 0 0.6rem;
}
.journal-card:hover .journal-card__title { color: var(--bronze-700); }
.journal-card__excerpt { color: var(--ink-500); font-size: 0.92rem; line-height: 1.65; margin: 0 0 0.85rem; }
.journal-card__meta { font-family: var(--f-body); font-size: 0.78rem; color: var(--ink-500); letter-spacing: 0.04em; }

@media (max-width: 980px) { .journal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .journal-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- */
/*  Reviews page                                                              */
/* -------------------------------------------------------------------------- */

/* Aggregate stats row */
.rev-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(181, 145, 92, 0.18);
  border-bottom: 1px solid rgba(181, 145, 92, 0.18);
  text-align: center;
}
.rev-stat { padding: 0.75rem 1rem; }
.rev-stat + .rev-stat { border-left: 1px solid rgba(181, 145, 92, 0.15); }
.rev-stat__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--ink-900);
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}
.rev-stat__sub {
  font-size: 0.65em;
  color: var(--ink-500);
  font-style: italic;
}
.rev-stat__stars {
  margin: 0.4rem 0 0.2rem;
  color: var(--gold-500);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}
.rev-stat__label {
  margin-top: 0.45rem;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Featured testimonial */
.rev-featured {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(181, 145, 92, 0.22);
  border-radius: 6px;
  background:
    radial-gradient(ellipse 70% 100% at 100% 0%, rgba(255, 246, 230, 0.55), transparent 60%),
    linear-gradient(160deg, rgba(255, 250, 240, 0.7), rgba(245, 233, 213, 0.45));
  text-align: center;
}
.rev-featured__mark {
  position: absolute;
  top: -0.4em;
  left: 1.5rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.rev-featured__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink-900);
  margin: 0 auto 2rem;
  max-width: 720px;
}
.rev-featured__cite {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-style: normal;
  text-align: left;
}
.rev-featured__avatar,
.review__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #F0DDBF, #C99B5F);
  color: var(--ink-900);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  flex: 0 0 auto;
}
.rev-featured__name {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--ink-900);
}
.rev-featured__meta {
  display: block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

/* Reviews grid */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem;
  background: rgba(251, 245, 235, 0.55);
  border: 1px solid rgba(181, 145, 92, 0.18);
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
}
.review:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 117, 0.45);
  box-shadow: 0 18px 32px -22px rgba(62, 46, 33, 0.3);
  background: rgba(251, 245, 235, 0.92);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.review__avatar { width: 42px; height: 42px; font-size: 0.85rem; }
.review__who { flex: 1 1 auto; min-width: 0; }
.review__name {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}
.review__meta {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}
.review__tag {
  flex: 0 0 auto;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.review__tag--pil  { color: var(--bronze-700); background: rgba(201,168,117,0.10); }
.review__tag--rlt  { color: var(--glow);       background: rgba(227,137,107,0.10); }
.review__tag--well { color: var(--ink-500);    background: rgba(140,120,98,0.08); }

.review__stars {
  color: var(--gold-500);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.review__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink-900);
  margin: 0 0 0.6rem;
}
.review__body {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.65;
  flex-grow: 1;
}

.reviews__more {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 980px) {
  .rev-stats { grid-template-columns: repeat(2, 1fr); }
  .rev-stat:nth-child(2n+1) { border-left: 0; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rev-stats { grid-template-columns: 1fr; gap: 0; }
  .rev-stat { border-bottom: 1px solid rgba(181, 145, 92, 0.15); padding: 1.5rem 0; }
  .rev-stat + .rev-stat { border-left: 0; }
  .rev-stat:last-child { border-bottom: 0; }
  .reviews { grid-template-columns: 1fr; }
  .rev-featured { padding: 2rem 1.5rem; }
  .rev-featured__cite { flex-direction: column; text-align: center; gap: 0.75rem; }
}

/* -------------------------------------------------------------------------- */
/*  Legal pages — Privacy, Terms, Cookies                                     */
/* -------------------------------------------------------------------------- */

.legal-effective {
  margin: 1.25rem auto 0;
  max-width: 540px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-700);
}
.legal-page h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  margin: 3rem 0 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(181, 145, 92, 0.2);
}
.legal-page h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-page h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-900);
  margin: 1.75rem 0 0.6rem;
}
.legal-page p { margin: 0 0 1rem; }
.legal-page ul,
.legal-page ol {
  margin: 0 0 1.25rem 0;
  padding-left: 0;
  list-style: none;
}
.legal-page li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.45rem 0;
}
.legal-page li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-600);
}
.legal-page a {
  color: var(--bronze-700);
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 117, 0.5);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.legal-page a:hover {
  color: var(--ink-900);
  text-decoration-color: var(--gold-500);
}
.legal-page strong {
  color: var(--ink-900);
  font-weight: 500;
}
.legal-page address {
  font-style: normal;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 246, 230, 0.55);
  border-left: 2px solid var(--gold-500);
  border-radius: 2px;
  margin: 1.5rem 0;
}
.legal-page address p { margin: 0 0 0.4rem; }
.legal-page address p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .legal-page { font-size: 0.95rem; }
  .legal-page h2 { font-size: 1.35rem; margin-top: 2.4rem; }
}

/* -------------------------------------------------------------------------- */
/*  Vignette imagery — square sources with built-in radial fade               */
/*  Render whole image (no cropping); the soft edges blend into body bg.      */
/* -------------------------------------------------------------------------- */
.hero__image--plain,
.about__image--plain,
.feature__visual--plain,
.feature__visual--red,
.footer-cta__visual--plain {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image--plain img,
.about__image--plain img,
.feature__visual--plain img,
.feature__visual--red img,
.footer-cta__visual--plain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* On smaller screens the image column collapses; keep the square */
@media (max-width: 880px) {
  .about__image--plain,
  .feature__visual--plain,
  .feature__visual--red {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
