/* Усвідомлене дихання — premium "air" system.
   Two type families: Playfair Display (display) + Onest (everything else).
   Tokens live in tokens.css. */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-white);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 0.8em;
  letter-spacing: 0.004em;
  overflow-wrap: break-word;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-sea);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -3.5rem;
  background: var(--c-ink); color: #fff;
  padding: 0.5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100; transition: top 0.2s var(--ease-soft);
}
.skip-link:focus { top: 0; }

/* ---------- Aurora atmosphere ---------- */
.aurora {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.aurora {
  background: radial-gradient(45vmax 45vmax at 18% 78%,
              color-mix(in srgb, var(--blob-mint) 55%, transparent), transparent 70%);
  animation: aurora-breathe 70s ease-in-out infinite alternate;
}
@keyframes aurora-breathe {
  from { opacity: 0.35; }
  to   { opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) { .aurora { animation: none; } }

.aurora::before, .aurora::after {
  content: "";
  position: absolute;
  width: 55vmax; height: 55vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.aurora::before {
  background: radial-gradient(circle, var(--blob-sky), transparent 65%);
  top: -18vmax; right: -12vmax;
  animation: drift-a 52s ease-in-out infinite alternate;
}
.aurora::after {
  background: radial-gradient(circle, var(--blob-lemon), transparent 65%);
  bottom: -20vmax; left: -14vmax;
  animation: drift-b 64s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-8vmax, 10vmax) scale(1.15); }
}
@keyframes drift-b {
  from { transform: translate(0, 0) scale(1.1); }
  to   { transform: translate(10vmax, -8vmax) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora::before, .aurora::after { animation: none; }
}

/* ---------- Labels: thin, widely tracked caps ---------- */
.label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--c-sea-deep);
  margin: 0 0 1.6rem;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--c-white) 80%, transparent);
  backdrop-filter: blur(18px) saturate(1.1);
}

.nav {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--c-ink); text-decoration: none;
}
.brand-dot { color: var(--c-sea); }

.nav-menu {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none; margin: 0; padding: 0;
}

.nav-menu a {
  position: relative;
  color: var(--c-muted); text-decoration: none;
  font-size: 0.8125rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: color var(--dur-lux) var(--ease-lux);
}
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--c-sea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-lux) var(--ease-lux);
}
.nav-menu a:hover { color: var(--c-ink); }
.nav-menu a:not(.nav-cta):hover::after { transform: scaleX(1); }

.lang-switch { color: var(--c-sea-deep) !important; font-weight: 600; }
.lang-switch:hover { color: var(--c-ink) !important; }

.nav-cta {
  background: var(--c-ink); color: #fff !important;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  transition: background 0.2s var(--ease-soft);
}
.nav-cta:hover { background: var(--c-sea-deep); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 0.75rem 0.5rem;
}
.nav-toggle-bar {
  display: block; width: 24px; height: 1.5px;
  background: var(--c-ink); position: relative;
}
.nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 0;
  width: 24px; height: 1.5px;
  background: var(--c-ink);
}
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-white);
    box-shadow: var(--float-shadow);
    padding: 0.75rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: 0.9rem 0; }
  .nav-cta { text-align: center; margin-top: 0.75rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-align: center;
  padding: 1rem 2.1rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  text-decoration: none; cursor: pointer;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux),
              background var(--dur-lux) var(--ease-lux), color var(--dur-lux) var(--ease-lux);
}
.btn-primary {
  background: var(--c-ink);
  color: #fff;
  box-shadow: var(--float-shadow-sm);
}
.btn-primary:hover { background: var(--c-sea-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-ink) 30%, transparent);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--c-ink), var(--float-shadow-sm); transform: translateY(-2px); }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

/* ---------- Sections ---------- */
.section { padding: var(--space-section) 1.5rem; }
/* offset anchor jumps so the sticky header never covers a section title */
section[id] { scroll-margin-top: 5.5rem; }
.section-inner { max-width: var(--content-max); margin: 0 auto; }
.section-narrow { max-width: 700px; }
.section-band {
  background: linear-gradient(180deg,
              color-mix(in srgb, var(--blob-sky) 30%, var(--c-white)) 0%,
              color-mix(in srgb, var(--blob-sky) 14%, var(--c-white)) 100%);
}

.section-title { font-size: var(--fs-h2); text-align: center; }
.section-title-left { font-size: var(--fs-h2); max-width: 18em; }
.section-lead-left { max-width: 540px; color: var(--c-muted); margin-bottom: 3.75rem; line-height: 1.85; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 1.5rem clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: hero-breathe 42s ease-in-out infinite;
}
/* ultra-slow Ken Burns: barely perceptible scale + drift */
@keyframes hero-breathe {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%      { transform: scale(1.06) translate(-1.2%, 0.8%); }
}
.hero-bg::before {
  content: "";
  position: absolute;
  width: 60vmax; height: 60vmax;
  right: -18vmax; top: -22vmax;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c-lemon) 26%, transparent), transparent 62%);
  filter: blur(60px);
  animation: sun-glow 60s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes sun-glow {
  from { opacity: 0.35; transform: translate(0, 0); }
  to   { opacity: 0.6;  transform: translate(-4vmax, 3vmax); }
}
@media (prefers-reduced-motion: reduce) { .hero-bg::before { animation: none; } }

.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(100deg,
              color-mix(in srgb, var(--c-white) 90%, transparent) 0%,
              color-mix(in srgb, var(--c-white) 64%, transparent) 48%,
              color-mix(in srgb, var(--c-white) 22%, transparent) 100%);
}

.hero-inner { max-width: var(--content-max); margin: 0 auto; }

.hero h1 {
  font-size: var(--fs-display);
  margin-bottom: 0;
  max-width: 14em;
}

.hero-lead {
  font-size: 1rem; color: var(--c-ink);
  max-width: 24em;
  line-height: 1.85;
  margin: 3rem 0 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1.1rem; margin: 3.25rem 0 0; }

.stats {
  list-style: none; margin: clamp(3rem, 7vw, 5rem) 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1rem;
  max-width: 880px;
}
.stats li {
  display: flex; flex-direction: column; justify-content: center; gap: 0.3rem;
  text-align: center;
  background: color-mix(in srgb, var(--c-surface) 72%, transparent);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  box-shadow: var(--float-shadow-sm);
  min-height: 112px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--c-sea-deep);
  line-height: 1;
}
.stat-cap {
  font-size: 0.7rem; color: var(--c-muted);
  font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
}

/* ---------- Statement (philosophy opener) ---------- */
.statement {
  text-align: center;
}
.statement h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  max-width: 21em;
  margin: 0 auto 1.2em;
}
.statement p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--c-muted);
}

/* ---------- Breath divider band (mountains + tracked word) ---------- */
.breath-band {
  position: relative;
  min-height: clamp(300px, 46vw, 520px);
  overflow: hidden;
  display: grid; place-items: center;
}
.breath-band img {
  position: absolute; inset: -12% 0;
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
}
.breath-band span {
  position: relative;
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.9em;
  text-indent: 0.9em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 24px rgba(22, 48, 58, 0.45);
}

/* ---------- Split + glass card over photo ---------- */
.split {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.split h2 { font-size: var(--fs-h2); }

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

.section-photo { position: relative; overflow: hidden; }
.section-photo-bg { position: absolute; inset: 0; z-index: -1; }
.section-photo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* soft focus: atmospheric + hides upscaling of the photo */
  filter: blur(5px) saturate(1.05);
  transform: scale(1.06);
}

.glass-card {
  max-width: 620px;
  background: color-mix(in srgb, var(--c-surface) 76%, transparent);
  backdrop-filter: blur(20px) saturate(1.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow);
  padding: clamp(2rem, 4.5vw, 3.5rem);
}

/* ---------- Value cards (Тіло / Розум / Внутрішній світ) ---------- */
.cards-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.6rem;
}
.cards-2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.6rem;
  max-width: 760px; margin: 0 auto;
}
.daily-included {
  margin: 0.4rem 0 1.6rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: 0.01em;
}

.value-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow-sm);
  padding: 2.8rem 2.4rem;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}
.value-card:hover { transform: translateY(-5px) scale(1.004); box-shadow: var(--shadow-lift); }
.value-card h3 { font-size: 1.5rem; margin-bottom: 0.5em; }
.value-card p { color: var(--c-muted); font-size: var(--fs-small); }
.value-index {
  display: block;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-sea-deep);
  margin-bottom: 1.2rem;
}

/* ---------- Quote band (deep colour block) ---------- */
.quote-band {
  background: linear-gradient(120deg, var(--c-ink) 0%, #1E4654 55%, var(--c-sea-deep) 100%);
  color: #fff;
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 21em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
}
.quote-band blockquote em { color: var(--c-lemon); font-style: italic; }
.quote-band p {
  margin: 2rem auto 0;
  max-width: 46em;
  font-size: var(--fs-small);
  color: color-mix(in srgb, #fff 78%, transparent);
}

/* ---------- Breath game ---------- */
.game-rule { font-size: var(--fs-small); color: var(--c-muted); }
.game-rule strong { color: var(--c-ink); }

.game-unlock {
  margin-top: 1.4rem;
  font-weight: 600;
  color: var(--c-sea-deep);
}

.breath-widget {
  display: grid; place-items: center; gap: 1.5rem;
  min-height: 380px;
}

.breath-circle {
  width: 260px; height: 260px;
  animation: orb-idle 9s ease-in-out infinite;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, color-mix(in srgb, var(--c-lemon) 55%, #fff), transparent 55%),
    radial-gradient(circle at 68% 72%, color-mix(in srgb, var(--c-mint) 45%, #fff), transparent 60%),
    radial-gradient(circle, color-mix(in srgb, var(--c-sea) 38%, #fff), color-mix(in srgb, var(--c-sea) 12%, #fff));
  box-shadow: var(--float-shadow), inset 0 0 40px rgba(255, 255, 255, 0.6);
  display: grid; place-items: center;
  transform: scale(0.8);
  transition: transform 0.9s var(--ease-soft);
}
.breath-circle.inhale,
.breath-circle.hold-in  { transform: scale(1.14); transition-duration: 4s; }
.breath-circle.exhale   { transform: scale(0.8);  transition-duration: 6s; }
.breath-circle.hold-out { transform: scale(0.8);  transition-duration: 2s; }

.breath-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem; font-weight: 500;
  color: var(--c-ink);
}

.breath-cycles {
  font-size: var(--fs-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--c-sea-deep);
  min-height: 1.2em;
  margin: 0;
}

.sound-toggle {
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-ink) 25%, transparent);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--c-muted);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}
.sound-toggle:hover { color: var(--c-ink); box-shadow: inset 0 0 0 1px var(--c-ink); }

.breath-circle.inhale, .breath-circle.hold-in,
.breath-circle.exhale, .breath-circle.hold-out { animation: none; }
@keyframes orb-idle {
  0%, 100% { transform: scale(0.8); }
  50%      { transform: scale(0.835); }
}
@media (prefers-reduced-motion: reduce) {
  .breath-circle { transition: none; animation: none; }
}

/* ---------- Mood picker ---------- */
.mood-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }

.chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--c-surface);
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  color: var(--c-ink);
  cursor: pointer;
  box-shadow: var(--float-shadow-sm);
  transition: transform 0.2s var(--ease-soft), background 0.2s var(--ease-soft),
              color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}
.chip:hover { transform: translateY(-2px); box-shadow: var(--float-shadow); }
.chip[aria-selected="true"] { background: var(--c-ink); color: #fff; }

/* Emotion as colour: small state dots instead of icons */
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-stress { background: #E2856E; }
.dot-energy { background: var(--c-lemon); }
.dot-focus  { background: var(--c-sea); }
.dot-sleep  { background: #7D89C4; }

.mood-card {
  background: var(--c-surface);
  border-radius: var(--radius);
  box-shadow: var(--float-shadow);
  padding: 1.8rem 1.9rem;
  animation: mood-in 0.35s var(--ease-soft);
}
@keyframes mood-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mood-card { animation: none; }
  .chip:hover { transform: none; }
}

.mood-more { margin-top: 2rem; font-size: var(--fs-small); color: var(--c-muted); }

/* ---------- Format tag (small tracked caps) ---------- */
.format-tag {
  font-size: var(--fs-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--c-sea-deep);
  margin-bottom: 0.9rem;
}

.value-note-inline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem; line-height: 1.45;
  color: var(--c-sea-deep);
}

/* ---------- Format cards with photo tops ---------- */
.card-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--float-shadow);
  display: flex; flex-direction: column;
  background: var(--c-surface);
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}
.card-photo:hover { transform: translateY(-6px) scale(1.004); box-shadow: var(--shadow-lift); }
@media (prefers-reduced-motion: reduce) { .card-photo:hover { transform: none; } }

.card-photo-bg {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 5s var(--ease-soft);
}
.card-photo:hover .card-photo-bg { transform: scale(1.07); }

.card-photo-body {
  flex: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.9rem 1.8rem 2rem;
}
.card-photo-body h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
.card-photo-body p { color: var(--c-muted); font-size: var(--fs-small); }
.card-photo-body .btn { margin-top: auto; }
.card-photo-body p:last-of-type { margin-bottom: 1.6rem; }

/* ---------- Technique groups ---------- */
.tech-groups {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.6rem;
}
.tech-group {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow-sm);
  padding: 2.6rem 2.3rem;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}
.tech-group:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.tech-group h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
.tech-group > p:not(.format-tag) { font-size: var(--fs-small); color: var(--c-muted); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--c-surface);
  border-radius: var(--radius);
  box-shadow: var(--float-shadow-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item { transition: box-shadow var(--dur-lux) var(--ease-lux); }
.faq-item:hover { box-shadow: var(--float-shadow); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  padding: 1.5rem 1.8rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem; font-weight: 300; color: var(--c-sea);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-soft);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--c-muted); padding: 0 1.6rem 1.4rem; max-width: 62ch; }

/* ---------- Product pages (deeper / sprint) ---------- */
.page-hero .hero-bg::after {
  background: linear-gradient(100deg,
              color-mix(in srgb, var(--c-white) 92%, transparent) 0%,
              color-mix(in srgb, var(--c-white) 74%, transparent) 55%,
              color-mix(in srgb, var(--c-white) 38%, transparent) 100%);
}

.program-list {
  margin: 0; padding: 0;
  list-style: none;
  counter-reset: program;
}
.program-list li {
  counter-increment: program;
  position: relative;
  padding: 1.2rem 0 1.2rem 3.6rem;
  border-bottom: 1px solid color-mix(in srgb, var(--c-ink) 10%, transparent);
}
.program-list li::before {
  content: counter(program, decimal-leading-zero);
  position: absolute; left: 0; top: 1.35rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-sea-deep);
}
.program-list strong { font-weight: 600; }

.tech-cat {
  font-size: 1.4rem;
  margin: 2.8rem 0 1rem;
  color: var(--c-sea-deep);
}
.tech-dict { margin: 0; }
.tech-dict dt {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  margin-top: 1.2rem;
}
.tech-dict dd {
  margin: 0.25rem 0 0;
  font-size: var(--fs-small);
  color: var(--c-muted);
  max-width: 62ch;
}

.included-list {
  list-style: none; margin: 0 0 1.75rem; padding: 0;
}
.included-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
}
.included-list li::before {
  content: "✦";
  position: absolute; left: 0.2rem;
  color: var(--c-sea);
}

.price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--c-sea-deep);
  margin: 0 0 1rem;
}

/* ---------- Science cards ---------- */
.science-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow-sm);
  padding: 2.6rem 2.3rem;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}
.science-card:hover { transform: translateY(-5px) scale(1.004); box-shadow: var(--shadow-lift); }
.science-card h3 { font-size: 1.35rem; margin-bottom: 0.5em; }
.science-card p { color: var(--c-muted); font-size: var(--fs-small); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.6rem;
}
.testimonial {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow-sm);
  padding: 2.7rem 2.4rem;
  display: flex; flex-direction: column;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.t-head { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.t-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-sea-deep);
  background: linear-gradient(135deg,
              color-mix(in srgb, var(--blob-sky) 70%, #fff),
              color-mix(in srgb, var(--blob-lemon) 70%, #fff));
  overflow: hidden;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 600; font-size: var(--fs-small); color: var(--c-ink); }
.t-role {
  font-size: var(--fs-label);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-muted);
}
.testimonial blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-ink);
}


/* ---------- Customer journey ---------- */
.journey {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1rem;
  counter-reset: journey;
}
.journey li {
  counter-increment: journey;
  background: var(--c-surface);
  border-radius: var(--radius);
  box-shadow: var(--float-shadow-sm);
  padding: 1.7rem 1.4rem;
  text-align: center;
}
.journey li::before {
  content: "0" counter(journey);
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-sea-deep);
  margin-bottom: 0.6rem;
}
.journey h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.journey p { font-size: 0.8125rem; color: var(--c-muted); margin: 0; }
.journey a { color: inherit; text-decoration-color: color-mix(in srgb, var(--c-sea) 50%, transparent); }

/* ---------- Advent calendar (sprint: 7 days — 7 reveals) ---------- */
.advent {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  grid-auto-rows: 1fr;          /* equal-height rows → perfectly even tiles */
  gap: 0.85rem;
}
.advent li { display: flex; }   /* stretch the card to fill its cell */

.day-card {
  position: relative;
  width: 100%;
  border: 0; padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}

.day-face {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.55rem;
  width: 100%; height: 100%;
  min-height: 150px;
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  text-align: center;
}
.day-front {
  position: relative;
  background: linear-gradient(158deg, var(--c-sea-deep) 0%, var(--c-ink) 115%);
  box-shadow: var(--float-shadow-sm);
}
.day-front .day-day {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: color-mix(in srgb, #fff 62%, transparent);
}
.day-front .day-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.1rem + 0.4vw, 1.35rem);
  line-height: 1.12;
  color: #fff;
}
.day-front .day-hint {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-lemon);
}
.day-card:hover { transform: translateY(-4px); }
.day-card:hover .day-front { box-shadow: var(--shadow-lift); }
.day-card:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  .day-card, .day-card:hover { transition: none; transform: none; }
}

/* Ensure [hidden] always wins over component display (e.g. .btn) */
[hidden] { display: none !important; }

/* Global keyboard-focus ring (accessibility) — visible only for keyboard users */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible,
summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--c-sea);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Two-tier pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.75rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

/* ---------- Free-first pricing (lead + soft plan toggle) ---------- */
.free-lead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem; flex-wrap: wrap;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow);
  padding: 1.5rem 1.8rem;
  max-width: 540px; margin: 0 auto 2.6rem;
  text-align: left;
}
.free-lead-text { display: flex; flex-direction: column; }
.free-lead-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--c-sea-deep); line-height: 1.1; }
.free-lead-note { font-size: var(--fs-small); color: var(--c-muted); margin-top: 0.25rem; }
.free-lead .btn { white-space: nowrap; min-width: 168px; padding-left: 2.2rem; padding-right: 2.2rem; }
@media (max-width: 460px) {
  .free-lead { justify-content: center; text-align: center; }
  .free-lead-text { align-items: center; }
  .free-lead .btn { width: 100%; }
}

.plans-intro { text-align: center; color: var(--c-muted); font-size: var(--fs-small); margin: 0 0 1rem; }

.plan-toggle { display: flex; justify-content: center; gap: 0.4rem; margin: 0 auto 1.5rem; }
.plan-tab {
  border: 0; cursor: pointer; font: inherit;
  padding: 0.6rem 1.4rem; border-radius: 40px;
  background: transparent; color: var(--c-muted); font-weight: 600; font-size: var(--fs-small);
  transition: background var(--dur-lux) var(--ease-lux), color var(--dur-lux) var(--ease-lux);
}
.plan-tab[aria-selected="true"] { background: var(--c-ink); color: #fff; }
.plan-tab:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 3px; }

.plan-view { max-width: 420px; margin: 0 auto; }
.plan-perday {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 2vw, 2.6rem);
  color: var(--c-sea-deep); line-height: 1; margin: 0.1rem 0 0.5rem;
}
.price-card--featured .plan-perday { color: var(--c-lemon); }

/* ---- Cabinet upsell (trial → continue) ---- */
.upsell-plans { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.upsell-plan {
  flex: 1 1 180px;
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1.1rem 1.3rem; border-radius: var(--radius);
  background: var(--c-surface); box-shadow: var(--float-shadow-sm);
  text-decoration: none; position: relative;
  transition: transform var(--dur-lux) var(--ease-lux), box-shadow var(--dur-lux) var(--ease-lux);
}
.upsell-plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.upsell-name { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-muted); }
.upsell-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--c-sea-deep); line-height: 1.05; margin-top: 0.1rem; }
.upsell-day { font-size: 0.78rem; color: var(--c-muted); }
.upsell-badge { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-sea); margin-bottom: 0.15rem; }
.upsell-plan--best { background: linear-gradient(158deg, var(--c-sea-deep), var(--c-ink)); }
.upsell-plan--best .upsell-name { color: color-mix(in srgb, #fff 70%, transparent); }
.upsell-plan--best .upsell-price { color: #fff; }
.upsell-plan--best .upsell-day { color: color-mix(in srgb, #fff 78%, transparent); }
.upsell-plan--best .upsell-badge { color: var(--c-lemon); }

/* ---- How it works (trust steps) ---- */
.steps { list-style: none; margin: 1.8rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-n {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(158deg, var(--c-sea-deep), var(--c-ink)); color: #fff;
  font-family: var(--font-display); font-size: 1.1rem; line-height: 1;
}
.steps h3 { font-size: 1.1rem; margin: 0 0 0.2em; }
.steps p { color: var(--c-muted); font-size: var(--fs-small); margin: 0; }
.reassure { margin-top: 1.8rem; font-size: var(--fs-small); color: var(--c-muted); }

.price-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow-sm);
  padding: 2.4rem 2.2rem;
  display: flex; flex-direction: column;
}
.price-card--featured {
  background: linear-gradient(135deg, var(--c-ink) 0%, #1E4654 60%, var(--c-sea-deep) 100%);
  color: #fff;
  box-shadow: var(--float-shadow);
}
.price-card--featured h3,
.price-card--featured .price-amount { color: #fff; }
.price-card--featured .included-list li::before { color: var(--c-lemon); }
.price-card--featured p, .price-card--featured li { color: color-mix(in srgb, #fff 84%, transparent); }

.price-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--fs-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--c-ink);
  background: var(--c-lemon);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.1rem;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 0.2em; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--c-sea-deep);
  margin: 0.4rem 0 0.2rem;
}
.price-terms {
  font-size: var(--fs-label);
  color: inherit;
  opacity: 0.75;
  margin-bottom: 1.4rem;
}
.price-card .included-list { font-size: var(--fs-small); margin-bottom: 2rem; }
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card--featured .btn-primary { background: var(--c-lemon); color: var(--c-ink); }
.price-card--featured .btn-primary:hover { background: #fff; }

.price-note {
  max-width: 640px;
  margin: 2.2rem auto 0;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--c-muted);
}

/* ---------- Member areas (calendar.html / cabinet.html) ---------- */
.plan-switch { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }

/* Completed practice — the tile turns light: "breathed → lighter, more air".
   Undone tiles stay deep teal, so the row visibly brightens as the week fills. */
.day-card.done .day-front {
  background: linear-gradient(158deg, #FFFFFF 0%, #E6F4EE 130%);
  box-shadow: inset 0 0 0 1.5px var(--c-mint), var(--float-shadow-sm);
}
.day-card.done .day-front .day-day { color: var(--c-muted); }
.day-card.done .day-front .day-name { color: var(--c-sea-deep); }
.day-card.done .day-front .day-hint { color: #2f9e6a; }
.day-card.done .day-front::after {
  content: "✓";
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-mint); color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; line-height: 1;
}

.day-detail {
  margin-top: 2rem;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--float-shadow);
  padding: 2rem 2.1rem;
}
.day-detail h3 { font-size: 1.5rem; margin-bottom: 0.3em; }
.day-detail p { color: var(--c-muted); }
.day-detail audio { width: 100%; margin-top: 1rem; }
.audio-missing {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--c-sea-deep);
  background: color-mix(in srgb, var(--blob-sky) 40%, #fff);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
}
.day-detail .btn { margin-top: 1.4rem; }

/* Course cabinet tabs */
.cab-tabs {
  display: flex; gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}
.cab-tab {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--fs-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--c-surface);
  border: 0; border-radius: 999px;
  box-shadow: var(--float-shadow-sm);
  padding: 0.7rem 1.2rem;
  color: var(--c-muted);
  cursor: pointer;
}
.cab-tab[aria-selected="true"] { background: var(--c-ink); color: #fff; }

.cab-module h3 { font-size: 1.7rem; }
.cab-transform {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-sea-deep);
  margin-bottom: 1.6rem;
}
.slot-box {
  background: var(--c-surface);
  border-radius: var(--radius);
  box-shadow: var(--float-shadow-sm);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
}
.slot-box h4 {
  font-family: var(--font-body);
  font-size: var(--fs-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--c-sea-deep);
  margin: 0 0 0.6rem;
}
.slot-box p { font-size: var(--fs-small); color: var(--c-muted); margin: 0; }
.slot-box audio { width: 100%; margin-top: 0.6rem; }
.audio-row { padding: 0.7rem 0; border-bottom: 1px solid color-mix(in srgb, var(--c-ink) 8%, transparent); }
.audio-row:last-child { border-bottom: 0; }
.audio-row strong { font-weight: 600; }

.member-note {
  font-size: var(--fs-small);
  color: var(--c-muted);
  background: color-mix(in srgb, var(--blob-lemon) 45%, #fff);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  margin-bottom: 2.2rem;
}

/* ---------- Contact / footer ---------- */
.section-contact { text-align: center; }
.section-contact .label { display: inline-block; }
.contact-lead { max-width: 480px; margin: 0 auto 2.5rem; color: var(--c-muted); }
.contact-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem;
}

.site-footer {
  padding: 3rem 1.5rem 3.5rem;
  text-align: center;
  color: var(--c-muted);
  font-size: var(--fs-small);
}
.site-footer p { max-width: 640px; margin: 0 auto 0.4rem; }
.footer-note { font-size: var(--fs-label); }


/* ---------- Scroll reveal (calm, organic) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Immersion (emotional transport after hero) ---------- */
.immersion { text-align: center; }
.immersion .label { display: inline-block; }
.immersion-lines {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: 22em;
}
.immersion-lines li {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.5;
  padding: 1.1rem 0;
}
.immersion-lines li + li {
  border-top: 1px solid color-mix(in srgb, var(--c-ink) 8%, transparent);
}
.immersion-lines em { color: var(--c-sea); font-style: italic; }
.immersion-close {
  margin: 3rem auto 0;
  max-width: 30em;
  color: var(--c-muted);
}

/* ---------- About Kateryna (trust) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.portrait-frame {
  /* frameless background-photo feel — no box, no hard edge */
  aspect-ratio: 4 / 4.9;
  overflow: hidden;
  display: grid; place-items: center;
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  /* long, smooth multi-stop fade — knee crop fully dissolves into the page
     well above the frame edge, so no hard line is ever visible */
  -webkit-mask-image: linear-gradient(to bottom,
    #000 0%, #000 38%,
    rgba(0,0,0,0.88) 52%, rgba(0,0,0,0.6) 64%,
    rgba(0,0,0,0.32) 76%, rgba(0,0,0,0.12) 86%, transparent 94%);
          mask-image: linear-gradient(to bottom,
    #000 0%, #000 38%,
    rgba(0,0,0,0.88) 52%, rgba(0,0,0,0.6) 64%,
    rgba(0,0,0,0.32) 76%, rgba(0,0,0,0.12) 86%, transparent 94%);
}
.portrait-initial {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 7rem);
  color: var(--c-sea-deep);
  opacity: 0.55;
}
.about-expertise {
  list-style: none; margin: 2rem 0 2.5rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.about-expertise li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--fs-small);
  color: var(--c-muted);
}
.about-expertise li::before {
  content: "";
  position: absolute; left: 0.2rem; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-sea);
}


/* ---------- Mobile polish (primary device) ---------- */
@media (max-width: 640px) {
  .section { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* CTAs: full-width, calm stack, tighter tracking so labels fit one line */
  .btn { letter-spacing: 0.13em; padding: 1rem 1.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .contact-links { flex-direction: column; align-items: center; }
  .contact-links .btn { width: 100%; max-width: 340px; }
  .card-photo-body .btn, .price-card .btn { align-self: stretch; }

  .stats { gap: 0.75rem; }
  .stats li { min-height: 92px; padding: 1rem 0.75rem; }
  .stat-num { font-size: 1.5rem; }

  .value-card, .science-card, .tech-group { padding: 1.9rem 1.5rem; }
  .testimonial { padding: 1.9rem 1.5rem; }
  .testimonial blockquote { font-size: 0.9375rem; margin-bottom: 1.4rem; }
  .price-card { padding: 1.9rem 1.5rem; }
  .mood-card { padding: 1.5rem 1.35rem; }
  .glass-card { padding: 1.7rem 1.35rem; }
  .day-detail { padding: 1.6rem 1.35rem; }
  .journey li { padding: 1.4rem 1.1rem; }

  .faq-item summary { padding: 1.2rem 1.3rem; font-size: 1.05rem; }
  .faq-item p { padding: 0 1.3rem 1.2rem; }

  .program-list li { padding: 1.1rem 0 1.1rem 2.6rem; }
  .program-list li::before { top: 1.25rem; }

  .breath-circle { width: 215px; height: 215px; }
  .breath-widget { min-height: 300px; }

  .immersion-close { margin-top: 2.25rem; }
  .about-grid { gap: 2rem; }
  .portrait-frame { max-width: 320px; margin: 0 auto; }
}


/* ---------- Testimonials: premium upgrade ---------- */
.testimonial { position: relative; overflow: hidden; }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: color-mix(in srgb, var(--c-sea) 14%, transparent);
  pointer-events: none;
}
.testimonial blockquote { position: relative; padding-top: 2.2rem; }

@media (min-width: 880px) {
  .testimonial--featured { grid-column: span 2; }
  .testimonial--featured blockquote { font-size: 1.15rem; max-width: 34em; }
}

/* Media slot: drop in a photo or video and it appears above the quote.
   <div class="t-media"><video controls poster="..."><source src="..."></video></div> */
.t-media { margin: -2.7rem -2.4rem 1.8rem; }
.t-media img, .t-media video { width: 100%; display: block; }
@media (max-width: 640px) { .t-media { margin: -1.9rem -1.5rem 1.4rem; } }

/* ---------- Founder credibility strip ---------- */
.cred-strip {
  list-style: none;
  margin: 2.4rem 0 2.6rem; padding: 1.8rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--c-ink) 12%, transparent);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 1.4rem;
}
.cred-strip .cred-k {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--c-muted);
  margin-bottom: 0.35rem;
}
.cred-strip .cred-v {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-ink);
}

/* ---------- CTA friction reducer ---------- */
.cta-note {
  margin: 1rem 0 0;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- Footer brand line ---------- */
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-ink);
  margin-bottom: 1rem;
}
.footer-brand em { color: var(--c-sea); font-style: italic; }

/* ===================== Payment (bank transfer) modal ===================== */
.pay-modal {
  border: none; border-radius: var(--radius-lg); padding: 0;
  width: min(440px, 92vw); background: var(--c-surface);
  box-shadow: var(--shadow-lift); color: var(--c-ink);
}
.pay-modal::backdrop { background: rgba(22, 48, 58, 0.55); backdrop-filter: blur(2px); }
.pay-modal-inner { position: relative; padding: 2rem 1.75rem 1.75rem; }
.pay-modal h3 { font-family: var(--font-display, serif); font-size: 1.4rem; margin: 0 2rem 1.1rem 0; color: var(--c-ink); }
.pay-close {
  position: absolute; top: 0.9rem; right: 1rem; width: 34px; height: 34px;
  border: none; border-radius: 50%; background: color-mix(in srgb, var(--c-sea) 10%, transparent);
  color: var(--c-sea-deep); font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.pay-close:hover { background: color-mix(in srgb, var(--c-sea) 18%, transparent); }
.pay-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; align-items: baseline; }
.pay-key { color: var(--c-muted); font-size: 0.82rem; flex: 0 0 auto; }
.pay-val { font-weight: 600; text-align: right; word-break: break-all; }
.pay-divider { height: 1px; background: color-mix(in srgb, var(--c-ink) 10%, transparent); margin: 0.7rem 0; }
.pay-copy {
  margin-left: 0.5rem; border: none; border-radius: 999px; cursor: pointer;
  background: color-mix(in srgb, var(--c-sea) 12%, transparent); color: var(--c-sea-deep);
  font-size: 0.72rem; padding: 0.2rem 0.6rem; vertical-align: middle;
}
.pay-copy:hover { background: color-mix(in srgb, var(--c-sea) 20%, transparent); }
.pay-note { color: var(--c-muted); font-size: 0.86rem; line-height: 1.5; margin: 1rem 0 1.25rem; }
.pay-proof { width: 100%; text-align: center; }

/* LiqPay email-capture field inside the payment modal */
.lp-input {
  width: 100%; margin: 0.4rem 0 0.2rem;
  padding: 0.8rem 1rem; border-radius: 12px;
  border: 1.5px solid color-mix(in srgb, var(--c-ink) 18%, transparent);
  background: var(--c-surface); color: var(--c-ink);
  font-family: var(--font-body); font-size: 1rem;
}
.lp-input:focus { outline: none; border-color: var(--c-sea); box-shadow: var(--ring); }
.pay-err { color: #b4442e; font-size: 0.85rem; margin: 0.5rem 0 0; }
