/* ── TOKENS ── */
:root {
  --cream:      #fff2ec;
  --cream-soft: #f1e6dd;
  --cream-mid:  #e8d9cd;
  --brown-dark: #45301d;
  --brown-mid:  #5c4a32;
  --brown-light:#8b7258;
  --olive:      #74862f;
  --olive-dim:  #5e6c23;
  --olive-line: #6b7238;
  --olive-muted:#5c6230;
  --white:      #ffffff;
  --shadow: rgba(69, 48, 29, 0.13);
  --hero-ink:   #1a120d;

  --ff-display: "Space Grotesk", sans-serif;
  /* Wordmark / UI emphasis — same face as `.nav__logo` */
  --ff-brand:   var(--ff-display);
  --ff-airy:    "Montserrat", sans-serif;
  --ff-body:    "Montserrat", sans-serif;

  /* Hero photo from local assets */
  --hero-photo: url("../images/hero-background.png");
  --spotlight-photo: url("https://images.unsplash.com/photo-1547153760-18fc86324498?auto=format&fit=crop&w=1600&q=80");
  --radius: 18px;
  --radius-sm: 10px;

  /* Native <select>: chevron (stroke = --brown-mid), shared with admin.css */
  --select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%235c4a32' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  /* Dark fallback so any gap between sections doesn't flash white */
  background: var(--hero-ink);
}
body {
  font-family: var(--ff-body);
  font-weight: 300;
  letter-spacing: 0.02em;
  /* Transparent so fixed site-bg shows through glass sections */
  background: transparent;
  color: var(--brown-dark);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); }
img, svg { display: block; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
@media (min-width: 701px) {
  /* Desktop: logo left, Instagram right — unwrap brand group */
  .nav__brand {
    display: contents;
  }
}
.nav.scrolled {
  background: rgba(255, 242, 236, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--cream-mid);
}
.nav.nav--hero .nav__logo {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.nav.nav--hero .nav__ig {
  color: rgba(255, 255, 255, 0.78);
}
.nav.nav--hero .nav__ig:hover { color: var(--cream-soft); }
.nav.scrolled .nav__logo {
  color: var(--brown-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}
.nav.scrolled .nav__ig { color: var(--brown-mid); }
.nav.scrolled .nav__ig:hover { color: var(--olive); }

.nav__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-brand);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--brown-dark);
  transition: color .35s ease, letter-spacing .35s ease, font-weight .35s ease;
}

#nav .nav__logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  object-fit: cover;
}
.nav__logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(116, 134, 47, 0.92), rgba(116, 134, 47, 0.2));
  transform: scaleX(0.4);
  transform-origin: left center;
  opacity: 0.72;
  transition: transform .28s ease, opacity .28s ease;
}
.nav__logo:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.nav__ig {
  color: var(--brown-mid);
  transition: color .25s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav__ig:hover { color: var(--olive); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 1rem; font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
  box-shadow: 0 8px 22px rgba(69,48,29,.22);
}
.btn--primary:hover {
  background: #321f0e;
  border-color: #321f0e;
  box-shadow: 0 14px 30px rgba(69,48,29,.28);
}
.btn--ghost {
  background: transparent;
  color: var(--brown-mid);
  border-color: var(--cream-mid);
}
.btn--ghost:hover {
  border-color: var(--brown-mid);
  color: var(--brown-dark);
}
.btn--large { padding: 17px 38px; font-size: 1.05rem; }
.btn--full   { width: 100%; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--hero-ink);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(12, 8, 5, 0.38) 0%,
      rgba(18, 11, 7, 0.44) 45%,
      rgba(8, 5, 3, 0.58) 100%
    ),
    rgba(14, 9, 6, 0.1);
}
.hero__bg-img {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.8) contrast(1.04) brightness(0.85);
  will-change: transform;
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(
    ellipse 90% 75% at 50% 38%,
    transparent 28%,
    rgba(8, 5, 3, 0.45) 100%
  );
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 780px;
  text-align: center;
}
.hero__eyebrow {
  font-family: var(--ff-airy);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(200, 206, 160, 0.95);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--ff-airy);
  font-size: clamp(2.1rem, 5.5vw, 3.55rem);
  font-weight: 200;
  line-height: 1.24;
  letter-spacing: 0.022em;
  text-transform: lowercase;
  color: #fff;
  margin-bottom: 24px;
  text-wrap: balance;
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(4px);
  animation: heroTitleReveal 1.35s cubic-bezier(0.2, 0.7, 0.25, 1) 0.2s forwards;
  will-change: opacity, transform, filter;
}
.hero__rotating-wrap {
  display: inline-grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  min-width: var(--rotating-slot-width, 11ch);
  min-height: 1.36em;
  overflow: visible;
  vertical-align: baseline;
  text-align: left;
  margin-left: 0.12em;
  padding-right: 0.06em;
  white-space: nowrap;
}
.hero__rotating {
  display: inline-block;
  line-height: 1.22;
  font-weight: 300;
  color: rgba(220, 225, 185, 0.98);
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  will-change: opacity, transform, filter;
  transition:
    opacity 0.44s cubic-bezier(0.2, 0.7, 0.25, 1),
    transform 0.44s cubic-bezier(0.2, 0.7, 0.25, 1),
    filter 0.44s cubic-bezier(0.2, 0.7, 0.25, 1);
  white-space: nowrap;
}
.hero__rotating.is-leaving {
  opacity: 0;
  transform: translateY(6px) scale(0.994);
  filter: blur(1.8px);
}
.hero__rotating.is-entering {
  opacity: 0;
  transform: translateY(7px) scale(0.992);
  filter: blur(2px);
}
.hero__rotating.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(4px);
    letter-spacing: 0.055em;
  }
  55% {
    opacity: 0.82;
    transform: translateY(2px) scale(0.996);
    filter: blur(1.4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
  .hero__rotating {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
/* ── SCHEDULE SECTION (календар після практик) ── */
.schedule-calendar-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffdfa 0%, #fff8f2 56%, #fff4ee 100%);
  border-top: 1px solid var(--cream-mid);
}
.schedule-calendar-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(116, 134, 47, 0.14) 0 120px, transparent 120px),
    radial-gradient(circle at 80% 76%, rgba(116, 134, 47, 0.1) 0 150px, transparent 150px),
    radial-gradient(circle at 52% 44%, rgba(69, 48, 29, 0.06) 0 110px, transparent 110px);
  opacity: 0.8;
}
.schedule-calendar-section__inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}
.schedule-calendar-section__inner > .section__label {
  text-align: center;
}
.schedule-calendar-section__inner > .section__title {
  text-align: center;
  margin-bottom: 8px;
}
.schedule-calendar-section__filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px auto 22px;
  max-width: 520px;
}
.schedule-calendar-section__filter {
  min-width: 0;
}
.schedule-calendar-section__filter-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 8px;
}
.schedule-calendar-section__select {
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brown-dark);
  background-color: var(--cream);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: light;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(69, 48, 29, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.schedule-calendar-section__select:hover {
  border-color: var(--brown-light);
}
.schedule-calendar-section__select:focus {
  border-color: var(--olive);
  background-color: var(--white);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(116, 134, 47, 0.2);
}
.schedule-calendar-section__select option {
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  color: var(--brown-dark);
}
.schedule-calendar-section__select option:checked,
.schedule-calendar-section__select option:hover,
.schedule-calendar-section__select option:focus-visible {
  background: linear-gradient(180deg, rgba(116, 134, 47, 0.2) 0%, rgba(116, 134, 47, 0.28) 100%) !important;
  color: var(--brown-dark) !important;
  -webkit-text-fill-color: var(--brown-dark);
  box-shadow: 0 0 0 999px rgba(116, 134, 47, 0.22) inset;
}

/* ── CUSTOM SELECT (non-native dropdown) ── */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.custom-select__trigger {
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brown-dark);
  background-color: var(--cream);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px;
  text-align: left;
  outline: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(69, 48, 29, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.custom-select__trigger:hover { border-color: var(--brown-light); }
.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
  border-color: var(--olive);
  background-color: var(--white);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(116, 134, 47, 0.2);
}
.custom-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(69, 48, 29, 0.16);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 3px;
  box-sizing: border-box;
}
.custom-select.is-open .custom-select__menu {
  display: flex;
}
.custom-select__option {
  flex: 0 0 auto;
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--ff-body);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  color: var(--brown-dark);
  background: transparent;
}
.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option.is-selected {
  background: rgba(116, 134, 47, 0.22);
  outline: none;
}
.custom-select__option:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.custom-select.is-disabled .custom-select__trigger {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ── HERO CALENDAR (вбудований блок) ── */
.hero-cal {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 20px 24px;
  text-align: left;
  background: rgba(18, 12, 8, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-cal--embedded {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow:
    0 28px 64px rgba(40, 28, 18, 0.18),
    0 8px 24px rgba(40, 28, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-cal--embedded::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
}
.hero-cal--embedded > * {
  position: relative;
  z-index: 1;
}
.hero-cal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-cal__month {
  font-family: var(--ff-airy);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  flex: 1;
  text-align: center;
}
.hero-cal__nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.hero-cal__nav:hover {
  background: rgba(116, 134, 47, 0.35);
  border-color: rgba(180, 188, 120, 0.45);
  color: #fff;
}
.hero-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  font-family: var(--ff-airy);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.hero-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.hero-cal__day {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.hero-cal__day:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}
.hero-cal__day:disabled {
  cursor: default;
  opacity: 0.22;
  background: transparent;
}
.hero-cal__day--muted {
  color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.02);
}
.hero-cal__day--today {
  box-shadow: inset 0 0 0 1px rgba(200, 206, 160, 0.55);
}
.hero-cal__day--selected {
  background: rgba(116, 134, 47, 0.42);
  border-color: rgba(180, 188, 120, 0.55);
  color: #fff;
}
.hero-cal__day--has::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive-line);
  box-shadow: 0 0 0 2px rgba(18, 12, 8, 0.5);
}
.hero-cal__day--selected.hero-cal__day--has::after {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}
.hero-cal__detail {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 4.5rem;
}
.hero-cal__detail-date {
  font-family: var(--ff-airy);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 12px;
}
.hero-cal__sessions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-cal__session {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-cal__session time {
  font-family: var(--ff-airy);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(220, 225, 185, 0.95);
}
.hero-cal__session-type {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.hero-cal__session-meta {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.72);
  margin: 0;
}
.hero-cal__empty {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  font-style: italic;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero .btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--brown-dark);
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}
.hero .btn--primary:hover {
  background: #fff;
  border-color: transparent;
  color: var(--brown-dark);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}
.hero .btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  opacity: .45;
  mix-blend-mode: overlay;
}

/* ── SPOTLIGHT (Instagram-style cards) ── */
.spotlight {
  background: var(--cream-soft);
  padding-top: 88px;
  padding-bottom: 92px;
}
.spotlight__heading {
  font-family: var(--ff-airy);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 40px;
}
.spotlight__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}
.spotlight-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 38px 32px 40px;
  min-height: 320px;
  background-color: #141009;
  background-image:
    linear-gradient(165deg, rgba(18, 12, 8, 0.83) 0%, rgba(32, 22, 14, 0.77) 55%, rgba(12, 8, 6, 0.85) 100%),
    var(--spotlight-photo);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(80, 70, 55, 0.35);
  box-shadow: 0 24px 60px rgba(40, 28, 18, 0.2);
}
.spotlight-card--trenazh {
  background-image:
    linear-gradient(165deg, rgba(18, 12, 8, 0.83) 0%, rgba(32, 22, 14, 0.77) 55%, rgba(12, 8, 6, 0.85) 100%),
    url("../images/trenazh-card.png");
  background-position: center 28%;
}
.spotlight-card--dance {
  background-image:
    linear-gradient(165deg, rgba(18, 12, 8, 0.83) 0%, rgba(32, 22, 14, 0.77) 55%, rgba(12, 8, 6, 0.85) 100%),
    url("../images/suchasnyi-tanets-card.png");
  background-position: center 28%;
}
.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(40, 35, 28, 0.2) 0%, transparent 55%);
  pointer-events: none;
}
.spotlight-card > * { position: relative; z-index: 1; }

.spotlight-card__title {
  font-family: var(--ff-airy);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.spotlight-card__duration {
  font-family: var(--ff-airy);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
}
.spotlight-card__tagline {
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(255, 248, 240, 0.82);
  margin: -8px 0 20px;
  max-width: 40ch;
}

.ig-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ig-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
}
.ig-list__rule {
  flex: 0 0 clamp(56px, 18%, 120px);
  height: 1px;
  margin-top: 0.62em;
  background: var(--olive-line);
  align-self: flex-start;
  position: relative;
  box-shadow: 0 0 0 1px rgba(107, 114, 56, 0.15);
}
.ig-list__rule::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive-line);
  box-shadow: 0 0 0 2px rgba(20, 16, 10, 0.35);
}
.ig-list__text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.spotlight__footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-mid);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  font-family: var(--ff-airy);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.spotlight__footer-times {
  color: var(--olive-dim);
  letter-spacing: 0.12em;
}

/* ── SECTIONS ── */
.section { padding: 90px 40px; }
.section__inner { max-width: 1060px; margin: 0 auto; }
.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.section__label {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--ff-airy);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: 0;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.reveal--delay-1 { transition-delay: .1s; }
.reveal.reveal--delay-2 { transition-delay: .2s; }
.reveal.reveal--delay-3 { transition-delay: .3s; }
.reveal.reveal--delay-4 { transition-delay: .4s; }
.reveal.reveal--delay-5 { transition-delay: .5s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── CARDS ── */
.directions { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px var(--shadow);
  border-color: var(--brown-mid);
}
.card--accent { background: var(--brown-dark); color: var(--white); border-color: transparent; }
.card--accent .card__text { color: rgba(255,242,236,.8); }
.card--accent .card__cta { color: var(--cream); border-color: rgba(255,242,236,.4); }
.card--accent .card__cta:hover { border-color: var(--cream); color: var(--cream); }

.card__icon {
  font-size: 1.5rem;
  color: var(--olive);
  line-height: 1;
}
.card--accent .card__icon { color: var(--cream-soft); }

.card__title {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 700;
}
.card__text {
  font-size: .95rem; line-height: 1.7;
  color: var(--brown-mid);
  flex: 1;
}
.card__cta {
  align-self: flex-start;
  background: none; border: none; padding: 0;
  font-size: .9rem; font-weight: 600;
  color: var(--olive); cursor: pointer;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
}
.card__cta:hover { border-color: currentColor; }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 2px; }
.accordion__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cream-mid);
  transition: border-color .2s;
}
.accordion__item[open] { border-color: var(--brown-mid); }

.accordion__q {
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: .97rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  color: var(--brown-dark);
  user-select: none;
}
.accordion__q::-webkit-details-marker { display: none; }
.accordion__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-mid);
  position: relative;
  transition: transform .3s ease;
}
.accordion__icon::before,
.accordion__icon::after {
  content: ""; position: absolute;
  background: var(--brown-dark);
  border-radius: 2px;
}
.accordion__icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s ease, opacity .3s; }
details[open] .accordion__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.accordion__a {
  padding: 0 22px 18px;
  font-size: .92rem; line-height: 1.7;
  color: var(--brown-mid);
}

/* ── QUOTES ── */
.quotes { background: var(--brown-dark); color: var(--white); text-align: center; padding: 80px 40px; }
.quotes__slider { position: relative; min-height: 110px; }
.quote {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.quote--active {
  opacity: 1; transform: none;
  pointer-events: auto;
  position: relative;
}
.quote p {
  max-width: 680px;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  line-height: 1.6;
  font-style: italic;
  color: var(--cream);
  margin: 0 auto;
}
.quotes__dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 32px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,242,236,.3);
  border: none;
  transition: background .3s, transform .3s;
}
.dot--active { background: var(--olive); transform: scale(1.3); }

/* ── JOIN BANNER ── */
.join { background: var(--cream-soft); }
.join__inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 28px;
}
.join__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--brown-dark);
}

/* ── MODAL ── */
.modal__backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(69,48,29,.45);
  backdrop-filter: blur(4px);
}
.modal__backdrop.active { display: block; }

.modal {
  border: none; padding: 0;
  border-radius: var(--radius);
  width: min(520px, calc(100vw - 40px));
  max-height: 92svh; overflow-y: auto;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(69,48,29,.22);
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  padding: 40px 36px;
  font-family: var(--ff-body);
  transition: opacity .25s ease, transform .25s ease;
}
.modal:not([open]) { display: none; }
.modal[open] { display: block; }

.modal__close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; font-size: 1.1rem;
  color: var(--brown-light); cursor: pointer;
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.modal__close:hover { background: var(--cream-soft); color: var(--brown-dark); }

.modal__eyebrow {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 8px;
}
.modal__title {
  font-family: var(--ff-brand);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.9rem; color: var(--brown-dark);
  margin-bottom: 8px;
}
.modal__sub { font-size: .95rem; color: var(--brown-mid); margin-bottom: 28px; line-height: 1.6; }

.modal__form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--brown-mid); }

.form-group input {
  padding: 13px 16px;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: .97rem;
  background: var(--cream);
  color: var(--brown-dark);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus { border-color: var(--brown-mid); }

/* Polished native selects — однаковий стиль з адмін-панеллю */
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: .97rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brown-dark);
  background-color: var(--cream);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: light;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(69, 48, 29, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.form-group select:hover { border-color: var(--brown-light); }
.form-group select:focus {
  border-color: var(--olive);
  background-color: var(--white);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(116, 134, 47, 0.2);
}
.form-group select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-group select option {
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  color: var(--brown-dark);
}
.form-group select option:checked,
.form-group select option:hover,
.form-group select option:focus-visible {
  background: linear-gradient(180deg, rgba(116, 134, 47, 0.2) 0%, rgba(116, 134, 47, 0.28) 100%) !important;
  color: var(--brown-dark) !important;
  -webkit-text-fill-color: var(--brown-dark);
  box-shadow: 0 0 0 999px rgba(116, 134, 47, 0.22) inset;
}

.form-group input.error { border-color: #c0392b; }
.form-group select.error { border-color: #c0392b; }
.form-error { font-size: .8rem; color: #c0392b; min-height: 1em; }

.modal__success {
  text-align: center; padding: 20px 0 8px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.modal__success[hidden] { display: none; }
.modal__checkmark {
  width: 52px; height: 52px;
  background: var(--olive);
  color: white; font-size: 1.4rem;
  border-radius: 50%;
  display: grid; place-items: center;
}
.modal__checkmark--always {
  margin: 0 auto 16px;
}
.modal__success p { font-size: 1rem; font-weight: 500; color: var(--brown-dark); }
.modal__sub--success { margin: 0; text-align: center; }

/* ── PRICING ── */
.pricing { background: var(--cream); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: 0 4px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-card__header { display: flex; flex-direction: column; gap: 4px; }
.pricing-card__title {
  font-family: var(--ff-airy);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--brown-dark);
}
.pricing-card__duration {
  font-size: .82rem;
  color: var(--brown-light);
  font-weight: 500;
  letter-spacing: .04em;
}

.pricing-card__tiers {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-mid);
}
.pricing-tier--highlight {
  background: var(--cream-soft);
  border-color: var(--olive-line);
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.pricing-tier--highlight .pricing-tier__price {
  font-size: 1.55rem;
}

.pricing-tier__main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-tier__label {
  font-size: .9rem;
  font-weight: 500;
  color: var(--brown-mid);
}
.pricing-tier__badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 20px;
}
.pricing-tier__price {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
  white-space: nowrap;
}
.pricing-tier__currency {
  font-size: .75em;
  font-weight: 500;
  color: var(--brown-light);
}

.pricing-card__cta { margin-top: auto; }

@media (max-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 22px 26px; }
}

/* ── FOOTER ── */
.footer {
  padding: 28px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid var(--cream-mid);
  font-size: .85rem; color: var(--brown-light);
}
.footer a:hover { color: var(--olive); }

/* ── SCROLL-TO-TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(116, 134, 47, 0.35);
  background: rgba(255, 248, 240, 0.92);
  color: var(--olive);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(69, 48, 29, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: var(--cream-soft);
  border-color: var(--olive);
  box-shadow: 0 8px 28px rgba(69, 48, 29, 0.2);
  transform: translateY(-3px) scale(1);
}
.scroll-top:active {
  transform: translateY(0) scale(0.96);
}

/* ── MOBILE NAV HAMBURGER ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease;
}
.nav.nav--hero .nav__hamburger { color: rgba(255, 255, 255, 0.88); }
.nav.scrolled .nav__hamburger  { color: var(--brown-dark); }
.nav__hamburger:hover { background: rgba(116, 134, 47, 0.12); }
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 82px 28px 32px;
  background: rgba(255, 248, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-mid);
  box-shadow: 0 12px 40px rgba(69, 48, 29, 0.1);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.32s ease;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__link {
  display: block;
  font-family: var(--ff-airy);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  padding: 16px 8px;
  border-bottom: 1px solid var(--cream-mid);
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.mobile-nav__link:hover { color: var(--olive); padding-left: 14px; }
.mobile-nav__cta { margin-top: 22px; }

/* ── SPOTLIGHT CARD HOVER ENHANCEMENTS ── */
.spotlight-card {
  transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.32s ease;
  will-change: transform;
}
.spotlight-card:hover {
  transform: translateY(-7px) scale(1.012);
  box-shadow:
    0 36px 80px rgba(40, 28, 18, 0.3),
    0 0 0 1px rgba(116, 134, 47, 0.35);
}

/* ── HERO CTA SHIMMER ── */
.hero .btn--primary {
  position: relative;
  overflow: hidden;
}
.hero .btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-15deg);
  animation: ctaShimmer 4s ease-in-out 3s infinite;
}
@keyframes ctaShimmer {
  0%     { left: -120%; opacity: 0; }
  8%     { opacity: 1; }
  35%, 100% { left: 160%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn--primary::after { animation: none; }
}

/* ── QUOTES DECORATIVE ── */
.quotes {
  position: relative;
  overflow: hidden;
}
.quotes::before {
  content: "«";
  position: absolute;
  top: -0.22em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-airy);
  font-size: clamp(10rem, 22vw, 18rem);
  font-weight: 200;
  line-height: 1;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
}

/* ── PRICING CARD HOVER ── */
.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 20px 56px rgba(40, 28, 18, 0.18),
    0 0 0 1.5px rgba(116, 134, 47, 0.28);
}

/* ── FOOTER ENHANCEMENTS ── */
.footer {
  background: var(--cream-soft);
  border-top: none;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-mid) 20%, var(--brown-light) 50%, var(--cream-mid) 80%, transparent);
}
.footer a { transition: color 0.22s ease; }
.footer a:hover { color: var(--olive); }
.footer span { letter-spacing: 0.04em; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav__hamburger { display: flex; }
  .nav { padding: 16px 22px; }
  .hero { padding: 110px 22px 70px; }
  .section { padding: 60px 22px; }
  .section__inner--split { grid-template-columns: 1fr; gap: 32px; }
  .join__inner { flex-direction: column; }
  .modal { padding: 30px 20px; }
  .footer { padding: 22px; }
  .spotlight__grid { grid-template-columns: 1fr; }
  .spotlight-card { padding: 28px 22px 32px; min-height: 0; }
  .spotlight-card--trenazh { background-position: center 23%; }
  .spotlight-card--dance { background-position: center 23%; }
  .ig-list li { gap: 12px; }
  .ig-list__rule { flex-basis: 44px; min-width: 44px; }
  .hero-cal,
  .hero-cal--embedded {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 18px 14px 20px;
  }
  .hero-cal__day {
    font-size: 0.74rem;
    border-radius: 10px;
  }
  .schedule-calendar-section__filters {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ── HERO PARALLAX (CSS scroll-driven; no JS) ── */
@supports (animation-timeline: scroll()) {
  .hero__bg-img {
    animation: hero-bg-parallax linear both;
    animation-timeline: scroll(root block);
    animation-range: 0vh 100vh;
  }
  @keyframes hero-bg-parallax {
    from { transform: translate3d(0, -4%, 0); }
    to   { transform: translate3d(0, 12%, 0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-img {
    inset: 0;
    height: 100%;
    animation: none;
    transform: none;
  }
}

/* ── ACCORDION MICRO-ANIMATIONS ── */
.accordion__body {
  overflow: hidden;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Initial collapsed state managed by JS; keep existing padding/text styles */
.accordion__a {
  /* padding stays, just adding margin-safety */
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .accordion__body { transition: none; }
}

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 32px);
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 16px;
  background: var(--brown-dark);
  border: 1px solid rgba(139, 114, 88, 0.3);
  border-radius: 50px;
  box-shadow:
    0 8px 32px rgba(40, 28, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition:
    opacity 0.38s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.toast__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.toast__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.toast__desc {
  font-size: 0.78rem;
  color: rgba(255, 242, 236, 0.65);
  line-height: 1.3;
}
@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.2s ease; transform: none; }
}

/* ── SITE BACKGROUND (fixed layer behind all sections) ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--hero-ink);
  background-image:
    linear-gradient(180deg,
      rgba(10, 7, 5, 0.18) 0%,
      rgba(10, 7, 5, 0.32) 100%
    ),
    var(--hero-photo);
  background-size: cover;
  background-position: center 50%;
  filter: saturate(0.72) brightness(0.9);
  pointer-events: none;
}

/* ── GLASS MORPHISM — VALUES ── */
.values {
  position: relative;
  isolation: isolate;
  background: rgba(255, 248, 242, 0.32) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(69, 48, 29, 0.04);
}

.values .section__inner--split {
  align-items: center;
}

/* Shared glass panel — left title block + accordion cards */
.values__left,
.values .accordion__item {
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.78);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 36px rgba(40, 28, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.values .accordion__item[open] {
  border-color: rgba(116, 134, 47, 0.45);
  background: rgba(255, 252, 248, 0.88);
  box-shadow:
    0 14px 40px rgba(40, 28, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.values__left {
  padding: 26px 26px 28px;
  align-self: center;
}
.values__left .section__title { margin-bottom: 0; }
.values__left .section__label {
  color: var(--olive-dim);
  font-weight: 800;
}
.values__left .section__title,
.values .accordion__q {
  font-family: var(--ff-airy);
  color: var(--brown-dark);
  font-weight: 400;
  line-height: 1.35;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 14px rgba(255, 252, 248, 0.7);
}
.values .accordion {
  gap: 12px;
}
.values .accordion__q {
  padding: 22px 26px;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  letter-spacing: 0.02em;
}
.values .accordion__a {
  padding: 0 26px 22px;
  color: rgba(69, 48, 29, 0.88);
  font-size: 0.92rem;
  line-height: 1.7;
}
.values .accordion__icon {
  border-color: rgba(92, 74, 50, 0.55);
}
.values .accordion__item[open] .accordion__icon {
  border-color: var(--olive);
}

@media (max-width: 700px) {
  .values .section__inner--split {
    align-items: start;
  }
  .values__left {
    align-self: stretch;
  }
}

/* ── GLASS MORPHISM — QUOTES ── */
.quotes {
  background: rgba(35, 20, 10, 0.76) !important;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-top: 1px solid rgba(139, 114, 88, 0.2);
  border-bottom: 1px solid rgba(139, 114, 88, 0.15);
}

/* ── ENSURE ALL OTHER SECTIONS STAY OPAQUE ── */
.spotlight        { background: var(--cream-soft); }
.schedule-calendar-section { position: relative; }
.pricing          { background: var(--cream); }
.footer           { background: var(--cream-soft); }
