:root {
  --graphite: #1f1f1f;
  --black: #121212;
  --ink: #24211f;
  --ivory: #f6f1eb;
  --ivory-2: #fffaf4;
  --peach: #e76f51;
  --peach-2: #ff9a6c;
  --gold: #d4af37;
  --muted: rgba(246, 241, 235, 0.7);
  --muted-dark: rgba(31, 31, 31, 0.68);
  --line: rgba(246, 241, 235, 0.18);
  --line-dark: rgba(31, 31, 31, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--black);
  background: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  color: var(--ivory);
  background: rgba(31, 31, 31, 0.94);
  border-bottom: 1px solid rgba(231, 111, 81, 0.34);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(18, 18, 18, 0.96);
  border-color: rgba(231, 111, 81, 0.46);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: transparent;
  line-height: 1;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(231, 111, 81, 0.2));
}

.brand-mark strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.07em;
}

.brand-mark small,
.eyebrow {
  display: block;
  color: var(--peach-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header .brand-mark small,
.site-header .eyebrow {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  color: rgba(246, 241, 235, 0.82);
  background: transparent;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  outline: 0;
  box-shadow: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 22% 85%, rgba(255, 214, 92, 0.9), transparent 28%),
    radial-gradient(circle at 58% 115%, rgba(255, 112, 48, 0.8), transparent 36%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.46), rgba(255, 154, 108, 0.35));
  transform: translateY(18%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, var(--gold), var(--peach-2), var(--peach));
  box-shadow: 0 0 14px rgba(255, 154, 108, 0.88);
  transform: scaleX(0.28);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--black);
  background:
    radial-gradient(circle at 22% 88%, rgba(255, 214, 92, 0.72), transparent 28%),
    radial-gradient(circle at 62% 112%, rgba(255, 112, 48, 0.62), transparent 38%),
    rgba(255, 250, 244, 0.25);
  border-color: rgba(231, 111, 81, 0.45);
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.18);
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--black);
  background: var(--peach);
  border-color: var(--peach);
  box-shadow: 0 0 0 rgba(255, 154, 108, 0);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--peach-2) 52%, var(--peach));
  box-shadow: 0 12px 30px rgba(117, 31, 8, 0.28), 0 0 24px rgba(255, 154, 108, 0.42);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  margin-left: 6px;
  border: 1px solid rgba(246, 241, 235, 0.28);
}

.language-switch button {
  min-width: 42px;
  min-height: 38px;
  color: rgba(246, 241, 235, 0.72);
  border: 0;
  border-right: 1px solid rgba(246, 241, 235, 0.18);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  outline: 0;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button.is-active {
  color: var(--black);
  background: var(--peach);
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--black);
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 214, 92, 0.7), transparent 42%),
    rgba(255, 250, 244, 0.18);
  box-shadow: inset 0 -2px 0 var(--gold), 0 0 18px rgba(255, 154, 108, 0.36);
}

.language-switch button.is-active:hover,
.language-switch button.is-active:focus-visible {
  color: var(--black);
  background:
    radial-gradient(circle at 50% 115%, rgba(255, 154, 108, 0.78), transparent 42%),
    var(--peach);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 10px;
  border: 1px solid rgba(246, 241, 235, 0.28);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ivory);
}

.section-band {
  padding: 110px 0;
}

.dark-band {
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 0%, rgba(231, 111, 81, 0.22), transparent 31%),
    linear-gradient(135deg, var(--black), var(--graphite));
}

.light-band {
  color: var(--ink);
  background: var(--ivory);
}

.hero {
  min-height: 100vh;
  padding-top: 118px;
  overflow: hidden;
}

.hero-grid,
.section-heading,
.mascot-layout,
.uniform-viewer,
.two-column,
.booking-grid,
.testimonial-carousel,
.faq-list,
.metrics,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.two-column h2,
.booking-aside h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(52px, 6.7vw, 94px);
  line-height: 0.98;
}

html[lang="et"] .hero-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
}

.hero-copy h1 span {
  display: block;
  color: var(--peach);
  font-style: italic;
}

#philosophy h2 span {
  display: block;
  white-space: nowrap;
}

#philosophy h2 {
  font-size: clamp(34px, 3.8vw, 58px);
}

.hero-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-copy blockquote {
  margin: 24px 0 0;
  padding: 14px 0 14px 20px;
  color: var(--ivory);
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--black);
  background: var(--peach);
  border-color: var(--peach);
}

.button.secondary {
  color: var(--ivory);
  background: transparent;
}

.light-band .button.secondary {
  color: var(--ink);
}

.hero-visual {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 560px;
}

.mascot-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: end center;
}

.mascot-stage img {
  position: relative;
  z-index: 1;
  width: min(470px, 92vw);
  max-height: 710px;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 34px rgba(231, 111, 81, 0.22));
}

.hero-note {
  max-width: 360px;
  margin-inline: auto;
  text-align: center;
  color: var(--ivory);
}

.hero-note span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}

.hero-note span em {
  display: inline-block;
  margin-left: 8px;
  color: var(--peach-2);
  font-style: normal;
  letter-spacing: 0.04em;
}

.hero-note strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(18, 18, 18, 0.18);
  border-left: 1px solid rgba(18, 18, 18, 0.18);
}

.metrics div {
  padding: 24px;
  color: var(--black);
  background: var(--peach);
  border-right: 1px solid rgba(18, 18, 18, 0.18);
  border-bottom: 1px solid rgba(18, 18, 18, 0.18);
}

.metrics dt {
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1;
}

.metrics dd {
  margin: 8px 0 0;
  color: rgba(18, 18, 18, 0.72);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 46px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.split-heading > *,
.hero-grid > *,
.mascot-layout > *,
.uniform-body > *,
.two-column > *,
.booking-grid > * {
  min-width: 0;
}

.section-heading h2,
.two-column h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 78px);
}

html[lang="et"] .section-heading h2,
html[lang="et"] .two-column h2 {
  font-size: clamp(38px, 4.45vw, 66px);
  line-height: 1;
}

#coaches .section-heading h2 {
  font-size: clamp(34px, 4vw, 60px);
}

#coaches .section-heading h2 span {
  display: block;
  white-space: nowrap;
}

.section-heading > p,
.split-heading > p {
  margin: 0;
  color: currentColor;
  opacity: 0.72;
  font-size: 18px;
}

.values-grid,
.program-grid,
.coach-grid {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card,
.program-card,
.coach-card {
  background: var(--ivory);
}

.value-card {
  min-height: 270px;
  padding: 28px;
}

.value-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.value-card h3,
.program-card h3,
.coach-card h3,
.uniform-copy h3 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.value-card p,
.program-card p,
.coach-card p {
  margin: 0;
  color: var(--muted-dark);
}

.mascot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.mascot-section .section-heading {
  width: auto;
  margin: 0;
}

.trait-panel {
  border: 1px solid var(--line);
  background: rgba(246, 241, 235, 0.04);
}

.trait-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.trait-tab {
  min-height: 58px;
  color: inherit;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trait-tab:last-child {
  border-right: 0;
}

.trait-tab.is-active {
  color: var(--black);
  background: var(--peach);
}

.trait-copy {
  min-height: 300px;
  padding: clamp(26px, 5vw, 48px);
}

.trait-copy span,
.uniform-copy span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.trait-copy h3 {
  margin: 26px 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

html[lang="et"] .trait-copy h3 {
  font-size: clamp(31px, 4.35vw, 50px);
}

.trait-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 26px;
}

.age-tag {
  align-self: flex-start;
  padding: 7px 9px;
  color: var(--black);
  background: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.program-card h3 {
  margin-top: 42px;
}

.program-card ul,
.coach-card ul,
.newcomer-note ul {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.program-card li,
.coach-card li,
.newcomer-note li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid rgba(31, 31, 31, 0.12);
  color: var(--muted-dark);
  font-size: 14px;
}

.program-card li::before,
.coach-card li::before,
.newcomer-note li::before {
  position: absolute;
  left: 0;
  color: var(--peach);
  content: "✓";
  font-weight: 900;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-top: auto;
  padding: 0 0 5px;
  color: var(--peach);
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schedule-controls {
  display: grid;
  width: var(--container);
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 auto 18px;
}

label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(246, 241, 235, 0.06);
  outline: 0;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--peach);
  background: rgba(246, 241, 235, 0.09);
}

.light-band input,
.light-band select,
.light-band textarea {
  color: var(--ink);
  border-color: var(--line-dark);
  background: rgba(31, 31, 31, 0.04);
}

.schedule-grid {
  display: grid;
  width: var(--container);
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-inline: auto;
}

.class-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  color: var(--ivory);
  border: 1px solid var(--line);
  background: rgba(246, 241, 235, 0.045);
  text-align: left;
}

.class-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  content: "";
  background: var(--intensity, var(--gold));
}

.class-card:hover {
  border-color: rgba(231, 111, 81, 0.8);
  background: rgba(246, 241, 235, 0.075);
}

.class-card[disabled] {
  cursor: not-allowed;
  opacity: 0.52;
}

.class-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.class-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.class-card time,
.class-card .class-meta,
.class-status {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.class-card time {
  color: var(--peach-2);
}

.class-card .class-meta {
  margin: 28px 0 0;
  color: var(--muted);
}

.class-title {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.35;
}

.class-status {
  display: inline-flex;
  margin-top: 22px;
  padding: 7px 9px;
  color: var(--black);
  background: var(--ivory);
}

.class-card.is-full .class-status {
  color: var(--ivory);
  background: rgba(246, 241, 235, 0.14);
}

.empty-state {
  width: var(--container);
  margin: 18px auto 0;
  color: var(--muted);
}

.uniform-viewer {
  border: 1px solid var(--line-dark);
  background: var(--ivory-2);
  box-shadow: var(--shadow);
}

.uniform-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 6vw, 70px);
}

.gi-figure {
  --gi-base: #fbfbfb;
  --gi-line: #d6d0ca;
  --belt: #1f1f1f;
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 0.76;
  margin-inline: auto;
}

.gi-figure span {
  position: absolute;
  display: block;
}

.gi-torso {
  inset: 24% 23% 12%;
  background: var(--gi-base);
  border: 2px solid var(--gi-line);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.gi-sleeve {
  top: 26%;
  width: 31%;
  height: 33%;
  background: var(--gi-base);
  border: 2px solid var(--gi-line);
}

.gi-sleeve.left {
  left: 3%;
  transform: skewY(-18deg);
}

.gi-sleeve.right {
  right: 3%;
  transform: skewY(18deg);
}

.gi-lapel {
  top: 25%;
  width: 28%;
  height: 44%;
  border: 2px solid var(--gi-line);
  background: rgba(255, 255, 255, 0.18);
}

.gi-lapel.left {
  left: 28%;
  transform: skewX(18deg);
}

.gi-lapel.right {
  right: 28%;
  transform: skewX(-18deg);
}

.gi-belt {
  left: 18%;
  right: 18%;
  top: 63%;
  height: 11%;
  background: var(--belt);
  border: 2px solid #070707;
}

.gi-patch {
  top: 35%;
  right: 28%;
  width: 36px;
  height: 36px;
  border: 2px solid var(--peach);
  background: var(--gold);
}

.uniform-copy h3 {
  margin-top: 18px;
  font-size: clamp(32px, 5vw, 56px);
}

.uniform-copy p {
  color: var(--muted-dark);
  font-size: 18px;
}

.uniform-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.uniform-copy dl div {
  min-height: 118px;
  padding: 18px;
  background: var(--ivory);
}

.uniform-copy dt {
  color: var(--peach);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.uniform-copy dd {
  margin: 12px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.uniform-copy code,
.store-callout code {
  color: var(--black);
  background: rgba(231, 111, 81, 0.18);
  padding: 2px 6px;
  font-family: var(--mono);
  font-size: 0.92em;
  font-weight: 900;
}

.store-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  background: rgba(231, 111, 81, 0.08);
}

.store-callout strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.08;
}

.store-callout span {
  display: block;
  margin-top: 10px;
  color: var(--muted-dark);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.coach-grid {
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border-color: var(--line);
}

.coach-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 640px;
  color: var(--ink);
  background: var(--ivory);
}

.coach-portrait {
  display: grid;
  place-items: center;
  color: rgba(246, 241, 235, 0.78);
  background:
    linear-gradient(135deg, rgba(231, 111, 81, 0.28), transparent 44%),
    linear-gradient(180deg, #35312d, #171717);
  filter: grayscale(1);
  transition: filter 180ms ease;
}

.coach-card:hover .coach-portrait {
  filter: grayscale(0);
}

.coach-portrait span {
  font-family: var(--serif);
  font-size: 86px;
  font-style: italic;
}

.coach-copy {
  padding: 26px;
}

.coach-copy .eyebrow {
  color: var(--peach);
}

.coach-card h3 {
  margin-top: 18px;
}

.coach-card blockquote {
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.2;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
}

.testimonials-section {
  background: var(--ivory-2);
}

.testimonial-controls {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.testimonial-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ivory);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  color: var(--black);
  background: var(--peach);
  border-color: var(--peach);
  transform: translateY(-2px);
}

.testimonial-controls span {
  min-width: 54px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-carousel {
  min-height: 310px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.testimonial {
  display: grid;
  min-height: 310px;
  align-content: center;
  padding: clamp(34px, 5vw, 64px) 0;
}

.testimonial[hidden] {
  display: none;
}

.testimonial > span {
  color: var(--peach);
  font-family: var(--serif);
  font-size: 74px;
  line-height: 0.6;
}

.testimonial p {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.testimonial strong {
  display: block;
  margin-top: 16px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

details {
  border-bottom: 1px solid var(--line-dark);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ivory);
  background: var(--ink);
  content: "+";
  font-family: var(--mono);
  font-size: 18px;
}

details[open] summary::after {
  color: var(--black);
  background: var(--peach);
  content: "-";
}

details p {
  margin: 0;
  padding: 0 48px 24px 0;
  color: var(--muted-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 18px;
}

.sportlyzer-card,
.booking-aside {
  border: 1px solid var(--line);
  background: rgba(246, 241, 235, 0.045);
}

.sportlyzer-card {
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
}

.sportlyzer-card h3 {
  max-width: 720px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

html[lang="et"] .sportlyzer-card h3 {
  max-width: 760px;
  font-size: clamp(36px, 4.35vw, 60px);
  line-height: 1;
}

.sportlyzer-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.sportlyzer-card .button {
  margin-top: 32px;
}

.booking-aside {
  display: grid;
  gap: 24px;
  align-content: start;
  padding: clamp(24px, 4vw, 42px);
}

.booking-aside h3 {
  margin-top: 12px;
  font-size: 46px;
}

.booking-aside p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.newcomer-note {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.newcomer-note li {
  border-color: rgba(246, 241, 235, 0.14);
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 38px 0;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 24px;
}

.site-footer small,
.site-footer a,
.site-footer address {
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.site-footer small {
  color: var(--gold);
}

.site-footer .back-top {
  color: var(--peach-2);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ivory);
  border: 1px solid rgba(246, 241, 235, 0.22);
  background: rgba(246, 241, 235, 0.05);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--peach);
  background: rgba(231, 111, 81, 0.18);
}

.social-links span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--peach);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 360px;
  padding: 15px 17px;
  color: var(--black);
  background: var(--gold);
  box-shadow: var(--shadow);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(150%);
  transition: transform 200ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav a {
    color: rgba(246, 241, 235, 0.8);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--ivory);
    background:
      radial-gradient(circle at 22% 88%, rgba(255, 214, 92, 0.28), transparent 30%),
      radial-gradient(circle at 62% 112%, rgba(231, 111, 81, 0.42), transparent 38%),
      rgba(231, 111, 81, 0.18);
    border-color: rgba(255, 154, 108, 0.42);
  }

  .site-nav .nav-cta {
    color: var(--black);
    background: var(--ivory);
    border-color: var(--ivory);
  }

  .language-switch {
    width: 100%;
    margin-left: 0;
    border-color: rgba(246, 241, 235, 0.24);
  }

  .language-switch button {
    color: rgba(246, 241, 235, 0.68);
    border-color: rgba(246, 241, 235, 0.18);
  }

  .language-switch button.is-active {
    color: var(--black);
    background: var(--peach);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .split-heading,
  .mascot-layout,
  .uniform-body,
  .two-column,
  .booking-grid,
  .kimono-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    min-height: auto;
  }

  .mascot-stage {
    min-height: 510px;
  }

  .metrics,
  .values-grid,
  .program-grid,
  .schedule-grid,
  .coach-grid,
  .uniform-copy dl {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .section-band {
    padding: 72px 0;
  }

  .hero {
    padding-top: 112px;
  }

  .brand-mark small {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  html[lang="et"] .hero-copy h1 {
    font-size: clamp(42px, 12.6vw, 62px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metrics,
  .values-grid,
  .program-grid,
  .schedule-grid,
  .coach-grid,
  .uniform-copy dl,
  .schedule-controls,
  .trait-tabs,
  .store-callout {
    grid-template-columns: 1fr;
  }

  .trait-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-note {
    max-width: none;
    margin-top: 0;
  }

  .testimonial-controls {
    justify-self: start;
  }

  .testimonial-carousel,
  .testimonial {
    min-height: 280px;
  }

  .mascot-stage {
    min-height: 420px;
  }

  .program-card,
  .coach-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-links a {
    flex: 0 0 44px;
  }

  .toast {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

/* Parent-focused conversion update */
.language-switch {
  border: 2px solid rgba(255, 154, 108, 0.78);
  background: rgba(18, 18, 18, 0.62);
  box-shadow: 0 0 0 1px rgba(255, 214, 92, 0.18), 0 0 22px rgba(231, 111, 81, 0.24);
}

.language-switch button {
  min-width: 48px;
  min-height: 42px;
  color: var(--ivory);
  background: rgba(246, 241, 235, 0.06);
}

.language-switch button.is-active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--peach));
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 1;
}

html[lang="et"] .hero-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.03;
}

.hero-reassurance {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.16;
}

.hero-trial {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.hero-actions .button.primary {
  min-height: 54px;
  padding-inline: 22px;
  font-size: 12px;
  box-shadow: 0 16px 32px rgba(117, 31, 8, 0.28), 0 0 26px rgba(255, 154, 108, 0.28);
}

.hero-contact {
  display: none;
}

.hero-contact a {
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 154, 108, 0.72);
}

.hero-contact a:hover,
.hero-contact a:focus-visible {
  color: var(--peach);
}

.hero-parent-card {
  width: min(460px, 100%);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 42px);
  color: var(--black);
  background: linear-gradient(135deg, var(--ivory), var(--peach-2));
  border: 1px solid rgba(18, 18, 18, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.hero-parent-card h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.hero-parent-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-parent-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(18, 18, 18, 0.76);
  font-weight: 800;
  line-height: 1.35;
}

.hero-parent-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--peach);
  transform: rotate(45deg);
}

.benefits-note {
  width: var(--container);
  margin: 28px auto 0;
}

.hero-mascot {
  min-height: 560px;
  place-items: end center;
  gap: 12px;
}

.hero-mascot img {
  width: min(480px, 92vw);
}

.hero-mascot strong {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 154, 108, 0.32);
}

.journey-grid,
.programs-layout,
.pricing-card,
.schedule-embed {
  width: var(--container);
  margin-inline: auto;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.journey-step {
  min-height: 420px;
  padding: 24px;
  color: var(--ivory);
  border: 1px solid var(--line);
  background: rgba(246, 241, 235, 0.045);
}

.journey-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background: var(--peach);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.journey-step h3 {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.journey-step p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.programs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.programs-layout .program-grid {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
}

.schedule-embed {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  background: rgba(246, 241, 235, 0.055);
}

.schedule-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: var(--ivory);
}

.pricing-card {
  padding: clamp(30px, 5vw, 58px);
  color: var(--black);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 214, 92, 0.42), transparent 32%),
    linear-gradient(135deg, var(--peach), var(--peach-2));
  border: 1px solid rgba(18, 18, 18, 0.12);
}

.pricing-card > span {
  display: inline-flex;
  padding: 9px 12px;
  color: var(--black);
  background: rgba(246, 241, 235, 0.6);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card p {
  max-width: 860px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
}

.pricing-card small {
  display: block;
  margin-top: 18px;
  color: rgba(18, 18, 18, 0.62);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kimono-section {
  padding-bottom: 128px;
}

.kimono-layout {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
}

.kimono-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(246, 241, 235, 0.1);
  background:
    linear-gradient(180deg, rgba(246, 241, 235, 0.045), rgba(246, 241, 235, 0.02)),
    rgba(246, 241, 235, 0.025);
}

.kimono-copy h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
}

html[lang="et"] .kimono-copy h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.35vw, 66px);
  line-height: 1;
}

.kimono-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.kimono-benefits {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.kimono-benefits li {
  position: relative;
  padding-left: 32px;
  color: var(--ivory);
  font-weight: 800;
  line-height: 1.35;
}

.kimono-benefits li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--black);
  background: var(--peach);
  content: "✓";
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.kimono-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 214, 92, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(246, 241, 235, 0.075), rgba(246, 241, 235, 0.035)),
    rgba(246, 241, 235, 0.055);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.kimono-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 154, 108, 0.12), transparent 42%);
}

.kimono-card > * {
  position: relative;
  z-index: 1;
}

.kimono-card .eyebrow {
  color: var(--gold);
}

.partner-logo {
  display: block;
  width: min(150px, 48%);
  height: auto;
  margin: 0 auto 24px;
  opacity: 0.82;
  border: 1px solid rgba(246, 241, 235, 0.08);
  box-shadow: none;
  object-fit: contain;
}

.kimono-code {
  display: inline-flex;
  justify-content: center;
  margin-top: 18px;
  max-width: 100%;
  padding: 12px 14px;
  color: var(--black);
  background: linear-gradient(135deg, var(--peach), var(--gold));
  font-family: var(--mono);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.kimono-card-text {
  width: 100%;
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--ivory);
  background: rgba(246, 241, 235, 0.075);
  border: 1px solid rgba(246, 241, 235, 0.12);
  line-height: 1.55;
}

.kimono-card-text strong {
  color: var(--gold);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

.kimono-card .button {
  align-self: stretch;
  margin-top: 30px;
}

.coach-card {
  min-height: 560px;
}

.coach-card blockquote {
  display: none;
}

.testimonial {
  position: relative;
  padding-left: clamp(0px, 8vw, 116px);
}

.testimonial-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--black);
  background: var(--peach);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial > span {
  position: absolute;
  top: clamp(34px, 5vw, 64px);
  left: 0;
}

.testimonial p {
  max-width: 980px;
}

.toast,
.schedule-controls,
.schedule-grid,
.empty-state,
.mascot-section,
.uniform-section,
.booking-section {
  display: none;
}

/* Hinotori motion layer */
body.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

body.motion-ready .motion-item.motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

body.motion-ready .hero-copy {
  animation: hero-copy-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.motion-ready .hero-visual {
  animation: hero-visual-rise 840ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-visual-rise {
  from {
    opacity: 0;
    transform: translate3d(18px, 22px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-mascot img {
  transform-origin: 50% 78%;
  animation: endo-float 6.8s ease-in-out infinite;
}

.hero-mascot strong {
  animation: endo-name-glow 5.6s ease-in-out infinite;
}

@keyframes endo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(0.4deg);
  }
}

@keyframes endo-name-glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 154, 108, 0.28);
  }

  50% {
    text-shadow: 0 0 28px rgba(255, 214, 92, 0.42);
  }
}

.brand-mark,
.brand-symbol img,
.value-card,
.journey-step,
.program-card,
.pricing-card,
.coach-card,
.testimonial,
.faq-list details,
.hero-parent-card,
.kimono-copy,
.kimono-card,
.schedule-embed {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.brand-mark:hover .brand-symbol img,
.brand-mark:focus-visible .brand-symbol img {
  transform: translateY(-1px) rotate(-2deg) scale(1.04);
  filter:
    drop-shadow(0 0 16px rgba(255, 154, 108, 0.34))
    drop-shadow(0 0 22px rgba(212, 175, 55, 0.18));
}

.button.primary {
  position: relative;
  overflow: hidden;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, var(--gold), var(--peach-2) 52%, var(--peach));
  border-color: rgba(255, 214, 92, 0.95);
  box-shadow:
    0 16px 34px rgba(117, 31, 8, 0.34),
    0 0 28px rgba(255, 154, 108, 0.42);
  transform: translateY(-2px) scale(1.012);
}

.value-card:hover,
.journey-step:hover,
.program-card:hover,
.coach-card:hover,
.hero-parent-card:hover,
.kimono-copy:hover,
.kimono-card:hover,
.schedule-embed:hover,
body.motion-ready .motion-item.motion-in.value-card:hover,
body.motion-ready .motion-item.motion-in.journey-step:hover,
body.motion-ready .motion-item.motion-in.program-card:hover,
body.motion-ready .motion-item.motion-in.coach-card:hover,
body.motion-ready .motion-item.motion-in.hero-parent-card:hover,
body.motion-ready .motion-item.motion-in.kimono-copy:hover,
body.motion-ready .motion-item.motion-in.kimono-card:hover,
body.motion-ready .motion-item.motion-in.schedule-embed:hover {
  transform: translate3d(0, -4px, 0);
}

.value-card:hover,
.program-card:hover,
.coach-card:hover {
  box-shadow: 0 20px 44px rgba(18, 18, 18, 0.12);
}

.journey-step:hover,
.schedule-embed:hover,
.kimono-card:hover {
  border-color: rgba(255, 154, 108, 0.42);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.pricing-card:hover,
.hero-parent-card:hover {
  box-shadow: 0 34px 76px rgba(117, 31, 8, 0.26);
}

.faq-list details:hover {
  background: rgba(231, 111, 81, 0.045);
}

.faq-list details[open] p {
  animation: faq-answer-rise 240ms ease both;
}

@keyframes faq-answer-rise {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .journey-grid,
  .programs-layout,
  .programs-layout .program-grid {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: auto;
  }

}

@media (max-width: 640px) {
  .hero-parent-card {
    width: 100%;
    padding: 22px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  }

  .hero-parent-card h2 {
    margin-top: 12px;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.04;
  }

  .hero-parent-card ul {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-parent-card li {
    padding-left: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.32;
  }

  .hero-parent-card li::before {
    top: 0.55em;
    width: 8px;
    height: 8px;
  }

  .hero-reassurance {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-contact {
    display: grid;
  }

  .pricing-card p {
    font-size: clamp(30px, 10vw, 46px);
  }

  html[lang="ru"] #philosophy h2 {
    font-size: clamp(28px, 8.4vw, 42px);
    line-height: 1.04;
  }

  html[lang="ru"] #pricing h2 {
    font-size: clamp(30px, 8.8vw, 42px);
    line-height: 1.04;
  }

  html[lang="ru"] #pricing .split-heading > p {
    font-size: 15px;
    line-height: 1.48;
  }

  .schedule-embed,
  .schedule-embed iframe {
    min-height: 520px;
  }

  .testimonial {
    padding-left: 0;
  }

  .testimonial > span {
    position: static;
  }

  .kimono-section {
    padding: 64px 0 82px;
  }

  .kimono-layout {
    gap: 22px;
  }

  .kimono-copy {
    padding: 22px;
  }

  .kimono-copy h2,
  html[lang="et"] .kimono-copy h2 {
    font-size: clamp(30px, 9.6vw, 42px);
    line-height: 1.04;
  }

  html[lang="ru"] .kimono-copy h2 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .kimono-intro {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.5;
  }

  .kimono-benefits {
    gap: 8px;
    margin-top: 20px;
  }

  .kimono-benefits li {
    padding-left: 26px;
    font-size: 14px;
    font-weight: 700;
  }

  .kimono-benefits li::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .kimono-card {
    padding: 22px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  }

  .kimono-code {
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    padding: 11px 10px;
    font-size: clamp(20px, 6.2vw, 27px);
    letter-spacing: 0.025em;
  }

  .partner-logo {
    width: min(124px, 46%);
    margin-bottom: 18px;
  }

  .kimono-card-text {
    margin-top: 16px;
    padding: 14px;
    font-size: 14px;
  }

  .kimono-card .button {
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready .motion-item {
    opacity: 1;
    transform: none;
  }
}
