/* ==========================================================================
   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; } }

/* -------------------------------------------------------------------------- */
/*  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; }
.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); }

/* 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: 130px;
  height: 130px;
  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); }
.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;
}

.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wizard__nav .btn--ghost { margin-right: auto; }

/* 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; }

/* -------------------------------------------------------------------------- */
/*  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;
  }
}
