/* ==========================================================================
   Sculpo
   Design tokens, base styles and shared page sections.

   Breakpoints:
     phone   <= 809px
     tablet  810–1199px
     desktop >= 1200px (design width 1440)
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Luckiest Guy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/luckiest-guy-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Luckiest Guy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/luckiest-guy-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Gabarito is a variable font — one file covers weights 400–900 */
@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/gabarito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/gabarito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* ---------- Design tokens ---------- */
:root {
  /* colors */
  --c-white:  #ffffff;
  --c-dark:   #1c4425;  /* dark green — headings, dark section backgrounds */
  --c-green:  #93d35c;  /* accent green — stickers and highlights */
  --c-yellow: #feb835;  /* yellow — stickers and warm accents */
  --c-orange: #ff5c00;  /* orange — CTA buttons */
  --c-cream:  #f1f8e7;  /* light background 1 */
  --c-mint:   #e5f0d5;  /* light background 2 */
  --c-mint-2: #d5eabd;  /* secondary card background */
  --c-sage:   #46664e;  /* muted green body text on light bg */
  --c-mist:   #d0d8d3;  /* pale gray-green text on dark bg */

  /* typography */
  --f-display: 'Luckiest Guy', sans-serif;
  --f-body: 'Gabarito', sans-serif;

  /* layout */
  --container: 1320px;
  --pad-x: 60px;
  --header-h: 96px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* nikdy nedovoliť bočné scrollovanie stránky (hlavne iOS Safari) */
html, body { overflow-x: hidden; }
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: var(--c-sage);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: 0; background: none; cursor: pointer; padding: 0; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }

h1, h2 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--c-dark);
}
h2 { font-size: 72px; line-height: 1.055; }
h3 { font-family: var(--f-body); font-weight: 800; font-size: 32px; line-height: 1.25; color: var(--c-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
@media (min-width: 1440px) {
  .container { padding-left: 0; padding-right: 0; }
}

/* decorative sparkle next to headings */
.h2-sparkle { display: inline-block; width: 50px; height: auto; vertical-align: top; margin-left: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: 100px;
  padding: 18px 32px;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn--orange { background: var(--c-orange); color: var(--c-white); }
.btn--orange:hover { background: var(--c-dark); }

/* Primary marketing CTAs use an explicit background-context variant. */
.btn--cta-on-light,
.btn--cta-on-dark {
  background: var(--c-orange);
  color: var(--c-white);
}
.btn--cta-on-light:hover,
.btn--cta-on-light:focus-visible {
  background: var(--c-dark);
  color: var(--c-white);
}
.btn--cta-on-dark:hover,
.btn--cta-on-dark:focus-visible {
  background: var(--c-white);
  color: var(--c-dark);
}
.btn--cta-on-dark:hover img,
.btn--cta-on-dark:focus-visible img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(28%) saturate(838%) hue-rotate(81deg) brightness(88%) contrast(88%);
}
.btn--white { background: var(--c-white); color: var(--c-dark); }
.btn--white:hover { background: var(--c-orange); color: var(--c-white); }
.btn--outline { border: 1px solid var(--c-dark); color: var(--c-dark); background: transparent; }
.btn--outline:hover { background: var(--c-dark); color: var(--c-white); }
.btn--mint {
  background: var(--c-mint);
  color: var(--c-dark);
  border: 1px solid rgba(28,68,37,.12);
}
.btn--mint:hover {
  background: var(--c-dark);
  color: var(--c-white);
}
.btn--sm { padding: 12px 24px; }

/* ---------- Stickers (rotated labels) ---------- */
.sticker {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--c-dark);
  padding: 10px 16px 6px; /* Luckiest Guy sits high — compensate */
  white-space: nowrap;
}
.sticker--yellow { background: var(--c-yellow); }
.sticker--green { background: var(--c-green); }
.sticker--orange { background: var(--c-orange); color: var(--c-white); }
.sticker--tilt-l { transform: rotate(-5deg); }
.sticker--tilt-r { transform: rotate(4deg); }

/* ---------- Reveal-on-scroll (subtle entrance animation) ----------
   Hidden state applies ONLY while <body> has .js-reveal (added by JS),
   so content can never stay invisible if JS fails. A timed failsafe in
   main.js also reveals everything a few seconds after load. */
body.js-reveal .reveal { opacity: 0; transform: translateY(30px); }
body.js-reveal .reveal.is-visible,
body.js-reveal.reveal-done .reveal { opacity: 1; transform: none; }
.reveal { transition: opacity .7s ease, transform .7s ease; }
@media (prefers-reduced-motion: reduce) {
  body.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: transform .35s ease, background-color .35s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-solid { background: var(--c-dark); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 1440px) { .header-inner { padding-left: 0; padding-right: 0; } }

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-text {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1;
  color: var(--c-white);
  letter-spacing: 0;
}

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-white);
  transition: opacity .2s ease;
}
.nav-link:hover { opacity: .75; }
.nav-link.is-active { text-decoration: underline; text-underline-offset: 5px; }
.chevron { transition: transform .25s ease; }

/* Pages dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 16px;
  z-index: 1;
}
.nav-dropdown--featured::after { width: 288px; }
.nav-dropdown:hover .chevron, .nav-dropdown.is-open .chevron { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  gap: 24px;
  background: var(--c-white);
  border-radius: 16px;
  padding: 24px;
  width: 560px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 20px 40px rgba(28, 68, 37, .15);
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown.is-open .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-panel--featured { width: 288px; }
.dropdown-links { display: flex; flex-direction: column; gap: 4px; min-width: 220px; padding-top: 18px; }
.menu-column-title {
  display: block;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-dark);
  line-height: 1.15;
  margin: 0 12px 8px;
  text-decoration: none;
}
.dropdown-links a:not(.menu-column-title) {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 500; color: var(--c-dark);
  padding: 10px 12px; border-radius: 10px;
  transition: background-color .2s ease;
}
.dropdown-links a:not(.menu-column-title):hover { background: var(--c-cream); }
.course-menu-icon { width: 20px; height: 20px; flex: 0 0 20px; object-fit: contain; }
.dropdown-overview {
  background: var(--c-cream);
  border-radius: 12px;
  padding: 18px;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dropdown-overview .menu-overview-title,
.mobile-menu-overview .menu-overview-title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-dark);
  line-height: 1.15;
  margin: 0;
}
.dropdown-overview p,
.mobile-menu-overview p {
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-sage);
  margin: 0;
}
.dropdown-overview-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.dropdown-overview .btn { width: 100%; }

/* Hamburger (phone/tablet) */
.hamburger { display: none; flex-direction: column; gap: 7px; padding: 10px 6px; }
.hamburger span { display: block; width: 36px; height: 3px; border-radius: 2px; background: var(--c-white); transition: transform .3s ease, opacity .3s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile menu card (display toggled by JS; animated via opacity/transform) */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 80px 0 0 0;
  padding: 16px 20px 20px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-menu.is-open { opacity: 1; transform: none; }
.mobile-menu-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 20px;
  max-width: 480px;
}
.mobile-menu-main {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(28, 68, 37, .12);
}
.mobile-menu-card > .menu-column-title { margin: 0 0 8px; font-size: 24px; }
.mobile-menu-list { display: flex; flex-direction: column; }
.mobile-menu-list a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 18px; font-weight: 500; line-height: 1.35;
  color: var(--c-dark);
}
.mobile-menu-list a.is-active {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mobile-menu-overview {
  margin-top: 20px;
  background: var(--c-cream);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-overview .menu-overview-title { font-size: 24px; }
.mobile-menu-overview .dropdown-overview-image { height: 220px; }
.mobile-menu-overview .btn { width: 100%; }

/* ---------- Standard inner pages ---------- */
.site-header[data-header-variant="solid"] {
  background: var(--c-dark);
}
.site-header[data-header-variant="solid"] + main > :first-child {
  padding-top: calc(var(--header-h) + 72px);
}
@media (max-width: 1199px) {
  .site-header[data-header-variant="solid"] + main > :first-child {
    padding-top: calc(var(--header-h) + 56px);
  }
}
@media (max-width: 809px) {
  .site-header[data-header-variant="solid"] + main > :first-child {
    padding-top: calc(var(--header-h) + 40px);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 755px;
  overflow: hidden;
  background: var(--c-dark);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.32) 100%);
}
.hero-content {
  position: absolute;
  inset: auto 0 0 0;
  padding-bottom: 52px;
}
.hero h1 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  font-size: clamp(58px, 6.25vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--c-white);
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-top: 56px;
  padding: 0 40px;
}
.hero-bottom p {
  max-width: 545px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--c-white);
}

/* rotating circular text badges */
.hero-circle {
  position: absolute;
  width: 59%;
  min-width: 800px;
  max-width: 945px;
  aspect-ratio: 1;
  z-index: 2;
  animation: spin 30s linear infinite;
  pointer-events: none;
}
.hero-circle--left  { left: -4%;  top: 132%; translate: -50% -50%; }
.hero-circle--right { left: 104%; top: 134%; translate: -50% -50%; }
@keyframes spin { to { rotate: 360deg; } }

/* ==========================================================================
   CLEAR PLANS FOR REAL PROGRESS
   ========================================================================== */
.discover {
  position: relative;
  background: var(--c-mint);
  padding: 156px 0 176px;
  overflow: hidden;
}
.discover-inner { text-align: center; position: relative; z-index: 1; }
.discover h2 { max-width: 920px; margin: 0 auto; }
.discover .lead {
  max-width: 800px;
  margin: 24px auto 40px;
}
/* floating photos */
.discover-floats { position: absolute; inset: 0; pointer-events: none; }
.float-img { position: absolute; border-radius: 50%; object-fit: cover; }
.float-img--1 { width: 140px; height: 140px; left: 10.2%; top: 156px; }
.float-img--2 { width: 140px; height: 140px; left: 84%; top: 131px; }
.float-img--3 { width: 140px; height: 140px; left: 93.7%; top: 353px; }
.float-img--4 { width: 140px; height: 140px; left: 80.1%; top: 587px; }
.float-img--house { width: 196px; height: 196px; border-radius: 50%; left: 13.1%; top: 538px; }
.float-sparkle { position: absolute; width: 44px; }
.float-sparkle--green { left: 74%; top: 120px; }
.float-sparkle--orange { left: 10.5%; top: 500px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--c-dark); padding: 120px 0 60px; }
.about-grid {
  display: grid;
  grid-template-columns: 436px 1fr;
  gap: 60px;
  align-items: start;
}
.about-media .about-arch {
  width: 100%;
  height: 623px;
  object-fit: cover;
  border-radius: 240px 240px 16px 16px;
}
.about-content { position: relative; }
.about h2 { color: var(--c-white); font-size: 64px; margin-top: 20px; max-width: 570px; position: relative; }
.about-sparkle { position: absolute; top: -6px; right: -30px; }
.about-head .sticker { margin-left: -6px; }
.about-head > p { color: var(--c-mist); margin-top: 20px; max-width: 545px; }
.about-divider { border: 0; border-top: 1px solid rgba(255,255,255,.2); margin: 40px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.feature { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.feature img { width: 48px; height: 56px; object-fit: contain; }
.feature h3 { color: var(--c-white); font-size: 24px; margin-bottom: 10px; }
.feature p { color: var(--c-mist); font-size: 18px; line-height: 1.55; }
/* ---------- Shared slider controls ---------- */
.slider-nav { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.slider-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .25s ease, color .25s ease, opacity .2s ease;
}
.slider-arrow:hover { background: var(--c-dark); color: var(--c-white); }
.slider-arrow:disabled,
.slider-arrow[aria-disabled="true"] {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

/* ==========================================================================
   PROGRAMS
   ========================================================================== */
.programs { background: var(--c-cream); padding: 120px 0 120px; overflow: hidden; }
.programs-head { text-align: center; margin-bottom: 64px; }
.programs-head h2 { position: relative; display: inline-block; }
.programs-sticker { position: absolute; top: -30px; left: 50%; transform: translateX(-8%) rotate(4deg); z-index: 2; }
.h2-sparkle--left { position: absolute; left: -64px; top: -24px; }
.programs-slider { position: relative; cursor: grab; }
.programs-slider.is-dragging { cursor: grabbing; }
.programs-track {
  display: flex;
  gap: 40px;
  padding: 0 max(60px, calc((100vw - 1320px) / 2));
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.programs-track::-webkit-scrollbar { display: none; }
.program-card { flex: 0 0 380px; text-align: center; }
.program-img { position: relative; }
.program-img > img {
  width: 380px; height: 440px;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 46% 46% 46% 46%;
  pointer-events: none;
}
.program-arrow {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%) translateY(20%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
}
.program-card h3 { margin: 40px 0 12px; }
.program-card p {
  max-width: 340px;
  margin: 0 auto;
}
/* orange DRAG cursor bubble (desktop only) */
.drag-cursor {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) and (hover: hover) {
  .programs-slider:hover .drag-cursor { display: inline-flex; }
  .programs-nav { display: none; }
}

/* ==========================================================================
   PROGRAM DIRECTORY PAGE BLOCK
   ========================================================================== */
.program-directory {
  background: var(--c-cream);
  padding: 118px 0 120px;
  overflow: hidden;
}
.program-directory-head {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 84px;
  text-align: center;
}
.program-directory-title {
  position: relative;
  display: inline-block;
  font-size: clamp(56px, 5vw, 72px);
  line-height: 1.05;
}
.program-directory-heading-break {
  display: none;
}
@media (min-width: 1200px) {
  .program-directory-heading-break {
    display: block;
  }
}
.program-directory-sticker {
  position: relative;
  display: table;
  margin: 0 auto -12px;
  z-index: 2;
  transform: rotate(-7deg);
}
.program-directory-sparkle {
  position: absolute;
  right: -64px;
  top: 10px;
  width: 50px;
  height: auto;
}
.program-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 84px 60px;
}
.program-directory-card {
  display: block;
  text-align: center;
}
.program-directory-media {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400 / 463;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50% / 46%;
}
.program-directory-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.program-directory-arrow {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 76px;
  height: 76px;
  transform: translateX(-50%) translateY(8px);
  border-radius: 50%;
  background: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.program-directory-card:hover .program-directory-media > img { transform: scale(1.025); }
.program-directory-card:hover .program-directory-arrow {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.program-directory-card-title {
  margin: 36px 0 12px;
  font-size: 32px;
}
.program-directory-card p {
  max-width: 360px;
  margin: 0 auto;
  color: var(--c-sage);
  font-size: 20px;
  line-height: 1.5;
}

/* ==========================================================================
   WHY PARENTS TRUST US
   ========================================================================== */
.choose { background: var(--c-dark); padding: 120px 0; }
.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; }
.choose h2 { color: var(--c-white); font-size: 64px; margin-top: 18px; }
.choose-head { position: relative; }
.choose-head .sticker { position: absolute; top: -12px; left: 0; z-index: 2; }
.choose-head h2 { padding-top: 26px; }
.choose-photo {
  width: 100%; height: 444px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 64px;
}
.choose-arch { position: relative; }
.choose-arch > img {
  width: 100%; height: 592px;
  object-fit: cover;
  border-radius: 310px 310px 16px 16px;
}
.choose-stickers {
  position: absolute;
  left: -20px; right: -20px; bottom: 110px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.choose-stickers .sticker { font-size: 22px; padding: 12px 18px 8px; }
.choose-right > p { color: var(--c-mist); margin: 32px 0; }

@media (min-width: 1200px) {
  .choose-stickers { bottom: 50px; }
}

/* ==========================================================================
   WHY SCULPO EXISTS
   ========================================================================== */
.current-welcome {
  background: var(--c-mint);
  padding: 120px 0;
  overflow: hidden;
}
.current-welcome-grid {
  display: grid;
  grid-template-columns: 580px 590px;
  gap: 60px;
  align-items: start;
}
.current-welcome-media {
  position: relative;
  width: 580px;
  min-height: 550px;
}
.current-welcome-photo-wrap {
  width: 554px;
  height: 550px;
  margin-left: 26px;
  overflow: hidden;
  border-radius: 280px 280px 16px 16px;
}
.current-welcome-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.current-welcome-media-sticker {
  position: absolute;
  left: 3px;
  bottom: -10px;
  z-index: 2;
  transform: rotate(-8deg);
}
.current-welcome-copy {
  width: 590px;
}
.current-welcome-head {
  position: relative;
}
.current-welcome-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
  transform: rotate(-8deg);
}
.current-welcome h2 {
  max-width: 590px;
  font-size: 72px;
  line-height: 1.055;
  position: relative;
}
.current-welcome-sparkle {
  position: absolute;
  top: -10px;
  right: 12px;
  width: 50px;
  height: auto;
}
.current-welcome-text {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  max-width: 590px;
}
.current-welcome-text p {
  color: var(--c-sage);
  font-size: 20px;
  line-height: 1.6;
}
.current-welcome-text .btn {
  justify-self: start;
  margin-top: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--c-dark); padding: 120px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(170px, 220px) minmax(460px, 1.18fr);
  gap: 64px;
  align-items: start;
}
.footer-about { max-width: 460px; }
.footer-about p { color: var(--c-mist); font-size: 18px; line-height: 1.55; margin-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 20px; padding-left: 40px; border-left: 1px solid rgba(255,255,255,.15); }
.footer-col a {
  color: var(--c-mist);
  font-size: 18px;
  line-height: 1.45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--c-white); }
.footer-nav { gap: 0; }
.footer-courses { gap: 0; }
.footer-courses-title {
  margin: 0 0 32px;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}
.footer-col .footer-featured-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 18px;
  color: var(--c-dark);
  background: var(--c-cream);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(8, 30, 14, .16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.footer-col .footer-featured-card:hover {
  color: var(--c-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(8, 30, 14, .22);
}
.footer-featured-image {
  display: block;
  width: 164px;
  height: 164px;
  object-fit: cover;
  border-radius: 12px;
}
.footer-featured-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}
.footer-featured-content strong {
  color: var(--c-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}
.footer-featured-content > span {
  color: var(--c-sage);
  font-size: 16px;
  line-height: 1.45;
}
.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 64px;
  padding-top: 32px;
}
.footer-legal { display: flex; align-items: center; gap: 0; color: var(--c-mist); font-size: 17px; }
.footer-legal span { padding-right: 16px; }
.footer-legal a {
  color: var(--c-mist);
  padding: 0 16px;
  border-left: 1px solid rgba(255,255,255,.25);
  transition: color .2s ease;
}
.footer-legal a:hover { color: var(--c-white); }
.footer-social {
  display: none;
  gap: 20px;
}
.footer-social a { opacity: .85; transition: opacity .2s ease; }
.footer-social a:hover { opacity: 1; }

/* Homepage-only footer color test. */
.page-home .footer {
  background: #93d35c;
  color: #1d4425;
}
.page-home .footer-brand-text {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(76px, 8vw, 118px);
  line-height: .82;
  letter-spacing: 0;
  color: #1d4425;
  margin: 0 0 22px;
}
.page-home .footer-about p,
.page-home .footer-col a,
.page-home .footer-legal,
.page-home .footer-legal a {
  color: #1d4425;
}
.page-home .footer-col {
  border-left-color: rgba(29, 68, 37, .25);
}
.page-home .footer-courses-title {
  color: #1d4425;
}
.page-home .footer-bottom {
  border-top-color: rgba(29, 68, 37, .25);
}
.page-home .footer-legal a {
  border-left-color: rgba(29, 68, 37, .35);
}
.page-home .footer-col a:hover,
.page-home .footer-legal a:hover {
  color: var(--c-orange);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.page-home .footer-col .footer-featured-card:hover {
  color: var(--c-dark);
  text-decoration: none;
}
.page-home .footer-social img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(28%) saturate(838%) hue-rotate(81deg) brightness(88%) contrast(88%);
}
.page-home .footer .btn--white {
  color: #1d4425;
}

/* ==========================================================================
   CONTACT INTRO BLOCK
   ========================================================================== */
.contact-intro {
  background: var(--c-cream);
  padding: 124px 0 120px;
  overflow: hidden;
}
.contact-intro-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contact-intro-sticker {
  position: relative;
  z-index: 2;
  margin-bottom: -12px;
  transform: rotate(-7deg);
}
.contact-intro-title {
  max-width: 960px;
  margin: 0 auto;
  font-size: 76px;
  line-height: 1.02;
  position: relative;
}
.contact-intro-sparkle {
  position: absolute;
  top: 8px;
  right: -58px;
  width: 58px;
  height: auto;
}
.contact-intro-head p {
  max-width: 770px;
  margin: 24px auto 0;
  color: var(--c-sage);
  font-size: 20px;
  line-height: 1.55;
}
.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 554px) minmax(520px, 680px);
  gap: 84px;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 64px;
}
.contact-info-card,
.contact-form-card {
  border-radius: 24px;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  min-height: 642px;
  padding: 58px 52px 50px;
  background: var(--c-mint);
  color: var(--c-dark);
}
.contact-info-title,
.contact-form-title {
  color: inherit;
  font-size: 32px;
  line-height: 1.2;
}
.contact-info-title {
  margin-bottom: 38px;
}
.contact-form-card {
  display: grid;
  gap: 20px;
  padding: 56px 52px 50px;
  background: var(--c-dark);
  color: var(--c-white);
}
.contact-form-head {
  margin-bottom: 10px;
}
.contact-form-head p {
  margin-top: 14px;
  color: var(--c-mist);
  font-size: 18px;
  line-height: 1.5;
}
.contact-field {
  display: grid;
  gap: 10px;
  color: var(--c-white);
  font-size: 18px;
  line-height: 1.3;
}
.contact-field-control {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .10);
  color: var(--c-mist);
}
.contact-field-control svg {
  width: 22px;
  height: 22px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c-white);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--c-mist);
  opacity: 1;
}
.contact-field-control--textarea {
  align-items: start;
  min-height: 142px;
  padding-top: 18px;
}
.contact-field-control--textarea svg {
  margin-top: 2px;
}
.contact-field textarea {
  min-height: 104px;
  padding: 0;
  resize: vertical;
}
.contact-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
}
.contact-submit:hover {
  background: var(--c-white);
  color: var(--c-dark);
}

/* ==========================================================================
   LEGAL TEXT PAGE BLOCK
   ========================================================================== */
.legal-text-page {
  background: var(--c-cream);
  padding: 118px 0 132px;
}
.legal-text-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.legal-text-sticker {
  position: relative;
  z-index: 2;
  margin-bottom: -12px;
  transform: rotate(-7deg);
}
.legal-text-title {
  max-width: 760px;
  margin: 0 auto;
  font-size: 76px;
  line-height: 1.04;
  position: relative;
}
.legal-text-sparkle {
  position: absolute;
  top: 28px;
  right: -54px;
  width: 58px;
  height: auto;
}
.legal-text-body {
  max-width: 820px;
  margin: 78px auto 0;
  color: var(--c-sage);
}
.legal-text-intro {
  font-size: 22px;
  line-height: 1.55;
}
.legal-sections {
  list-style: none;
  counter-reset: legal-section;
  display: grid;
  gap: 48px;
  margin: 56px 0 0;
  padding: 0;
}
.legal-sections > li {
  counter-increment: legal-section;
}
.legal-section-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--c-dark);
  font-size: 32px;
  line-height: 1.2;
}
.legal-section-title::before {
  content: counter(legal-section) ".";
  flex: 0 0 auto;
}
.legal-sections ul {
  list-style: disc;
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding-left: 24px;
}
.legal-sections li,
.legal-sections p,
.legal-contact-list {
  font-size: 20px;
  line-height: 1.5;
}
.legal-sections p {
  margin-top: 8px;
}
.legal-contact-list {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
}
.legal-contact-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}
.legal-contact-list dt {
  color: var(--c-dark);
  font-weight: 800;
}
.legal-contact-list dd {
  margin: 0;
}
.legal-contact-list a {
  color: inherit;
}

.transport {
  background: var(--c-dark);
  padding: 108px 0 94px;
}
.transport-head {
  text-align: center;
  color: var(--c-white);
}
.transport-head .sticker {
  margin-bottom: -10px;
}
.transport-head h2 {
  color: var(--c-white);
  font-size: 76px;
  line-height: 1.04;
}
.transport-sparkle {
  width: 50px;
  margin-left: 10px;
  transform: translateY(8px);
}
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}
.transport-card {
  background: var(--c-mint-2);
  border-radius: 18px;
  padding: 46px 64px 40px;
  min-height: 0;
}
.transport-card h3 {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-bottom: 42px;
}
/* ==========================================================================
   FAQ PAGE BLOCK
   ========================================================================== */
.faq-page-section {
  background: var(--c-cream);
  padding: 132px 0 136px;
  overflow: hidden;
}
.faq-page-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.faq-page-sticker {
  position: relative;
  z-index: 2;
  margin-bottom: -12px;
  transform: rotate(-7deg);
}
.faq-page-title {
  max-width: 840px;
  margin: 0 auto;
  font-size: 72px;
  line-height: 1.055;
  position: relative;
}
.faq-page-sparkle {
  position: absolute;
  top: 20px;
  right: -72px;
  width: 58px;
  height: auto;
}
.faq-page-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 56px auto 0;
}
.faq-page-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 24px 10px;
  border: 1.5px solid var(--c-dark);
  border-radius: 999px;
  color: var(--c-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color .2s ease, color .2s ease;
}
.faq-page-tab.is-active,
.faq-page-tab:hover {
  background: var(--c-dark);
  color: var(--c-white);
}
.faq-page-content {
  display: grid;
  gap: 64px;
  margin-top: 70px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.faq-page-group {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 780px);
  column-gap: 120px;
  align-items: start;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.faq-page-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 10px;
  color: var(--c-dark);
}
.faq-page-category svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}
.faq-page-group-title {
  color: var(--c-dark);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
}
.faq-page-items {
  display: grid;
  gap: 16px;
}
.faq-page-item {
  overflow: hidden;
  border: 1px solid rgba(28, 68, 37, .10);
  border-radius: 10px;
  background: var(--c-mint);
  color: var(--c-dark);
  transition: background-color .2s ease, border-color .2s ease;
}
.faq-page-item[open] {
  border-color: var(--c-dark);
  background: var(--c-dark);
}
.faq-page-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 81px;
  padding: 23px 24px;
  color: var(--c-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.32;
  cursor: pointer;
  list-style: none;
}
.faq-page-item summary::-webkit-details-marker { display: none; }
.faq-page-item[open] summary {
  min-height: 0;
  padding-bottom: 14px;
  color: var(--c-white);
}
.faq-page-question {
  min-width: 0;
}
.faq-page-item p {
  max-width: 700px;
  padding: 0 100px 28px 24px;
  color: var(--c-mist);
  font-size: 18px;
  line-height: 1.55;
}
.faq-page-icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(28, 68, 37, .58);
  border-radius: 50%;
  color: var(--c-dark);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.faq-page-icon::before,
.faq-page-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
}
.faq-page-icon::after {
  width: 2px;
  height: 10px;
  border-radius: 2px;
  transform: translate(-50%, -58%);
}
.faq-page-icon::before {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  transform: translate(-50%, -24%) rotate(45deg);
}
.faq-page-item[open] .faq-page-icon {
  border-color: var(--c-white);
  background: var(--c-white);
  color: var(--c-dark);
  transform: rotate(180deg);
}

.faq-section {
  background: var(--c-cream);
  padding: 112px 0 120px;
}
.faq-head {
  text-align: center;
}
.faq-head .sticker {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
}
.faq-head h2 {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
.faq-head .h2-sparkle {
  position: absolute;
  top: 8px;
  right: -58px;
  width: 40px;
}
.faq-list {
  max-width: 650px;
  margin: 64px auto 0;
  display: grid;
  gap: 14px;
}
.faq-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.faq-actions .btn {
  padding: 15px 28px;
  font-size: 18px;
}
.faq-item {
  background: var(--c-mint);
  border: 1px solid rgba(28,68,37,.10);
  border-radius: 8px;
  overflow: hidden;
  color: var(--c-dark);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  color: var(--c-dark);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 24px 24px;
  color: var(--c-sage);
  font-size: 17px;
  line-height: 1.5;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(28,68,37,.55);
  border-radius: 50%;
  flex: 0 0 auto;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-dark);
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: 2px;
  height: 10px;
}
.faq-item[open] .faq-icon::before { display: none; }

/* ==========================================================================
   TABLET (810–1199px)
   ========================================================================== */
@media (max-width: 1199px) {
  :root { --pad-x: 40px; --header-h: 88px; }

  h2 { font-size: 50px; }
  h3 { font-size: 28px; }
  body { font-size: 18px; }

  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.is-open { display: block; }
  .header-inner { padding-top: 20px; padding-bottom: 20px; }
  .brand-text { font-size: 30px; }

  .hero { height: 640px; }
  .hero h1 { max-width: 820px; font-size: clamp(50px, 7.6vw, 68px); line-height: 0.98; }
  .hero-bottom { gap: 32px; margin-top: 40px; }
  .hero-bottom p { font-size: 18px; max-width: 460px; }
  .hero-circle { min-width: 500px; }

  .discover { padding: 120px 0 140px; }
  .float-img { width: 110px !important; height: 110px !important; }
  .float-img--house { width: 150px !important; height: 150px !important; }

  .about h2, .choose h2 { font-size: 50px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-media .about-arch { height: 520px; }

  .program-card { flex: 0 0 320px; }
  .program-img > img { width: 320px; height: 370px; }

  .program-directory {
    padding: 104px 0;
  }
  .program-directory-head {
    max-width: 820px;
    margin-bottom: 68px;
  }
  .program-directory-title {
    font-size: clamp(50px, 7.2vw, 68px);
  }
  .program-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px 32px;
  }
  .program-directory-media {
    max-width: 340px;
  }
  .program-directory-card-title {
    font-size: 28px;
  }
  .program-directory-card p {
    max-width: 320px;
    font-size: 18px;
  }

  .choose-grid { grid-template-columns: 1fr; gap: 48px; }
  .choose-photo { height: 400px; margin-top: 40px; }
  .choose-arch > img { height: 520px; }

  .current-welcome {
    padding: 96px 0;
  }
  .current-welcome-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .current-welcome-copy {
    order: 1;
    width: min(680px, 100%);
  }
  .current-welcome-media {
    order: 2;
    width: min(580px, 100%);
    min-height: 0;
  }
  .current-welcome-photo-wrap {
    width: min(554px, 100%);
    height: auto;
    aspect-ratio: 560 / 556;
    margin-left: 0;
  }
  .current-welcome h2 {
    font-size: 56px;
    max-width: 560px;
  }
  .current-welcome-sparkle {
    right: 2px;
  }

  .contact-intro {
    padding: 112px 0 92px;
  }
  .contact-intro-head {
    max-width: 760px;
  }
  .contact-intro-title {
    max-width: 720px;
    font-size: 56px;
  }
  .contact-intro-sparkle {
    right: -22px;
    width: 46px;
  }
  .contact-intro-head p {
    max-width: 680px;
    font-size: 18px;
  }
  .contact-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 54px auto 0;
  }
  .contact-form-card {
    order: 1;
    padding: 44px;
  }
  .contact-info-card {
    order: 2;
    min-height: 0;
    padding: 42px;
  }

  .legal-text-page {
    padding: 104px 0 112px;
  }
  .legal-text-title {
    max-width: 720px;
    font-size: 56px;
  }
  .legal-text-sparkle {
    right: -30px;
    width: 46px;
  }
  .legal-text-body {
    max-width: 760px;
    margin-top: 64px;
  }
  .legal-text-intro {
    font-size: 20px;
  }
  .legal-section-title {
    font-size: 28px;
  }
  .legal-sections li,
  .legal-sections p,
  .legal-contact-list {
    font-size: 18px;
  }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-col .footer-featured-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }
  .footer-featured-image {
    width: 150px;
    height: 150px;
  }
  .transport {
    padding: 150px 0 96px;
  }
  .transport-head h2 {
    font-size: 56px;
    max-width: 720px;
    margin: 0 auto;
  }
  .transport-grid {
    gap: 20px;
    margin-top: 64px;
  }
  .transport-card {
    padding: 34px 24px 32px;
    min-height: 0;
  }
  .transport-card h3 {
    font-size: 34px;
    margin-bottom: 34px;
  }
  .faq-page-section {
    padding: 112px 0 104px;
  }
  .faq-page-title {
    max-width: 720px;
    font-size: 56px;
  }
  .faq-page-sparkle {
    right: -30px;
    width: 46px;
  }
  .faq-page-tabs {
    max-width: 760px;
    margin-top: 48px;
  }
  .faq-page-content {
    gap: 54px;
    margin-top: 62px;
  }
  .faq-page-group {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    column-gap: 44px;
  }
  .faq-page-group-title {
    font-size: 28px;
  }
  .faq-page-item summary {
    font-size: 21px;
  }
  .faq-page-item p {
    padding-right: 72px;
    font-size: 17px;
  }

  .faq-section { padding: 90px 0; }
  .faq-head .h2-sparkle { display: none; }
}

/* ==========================================================================
   PHONE (<= 809px)
   ========================================================================== */
@media (max-width: 809px) {
  :root { --pad-x: 20px; --header-h: 80px; }

  h2 { font-size: 36px; line-height: 1.055; }
  h3 { font-size: 26px; }
  body { font-size: 18px; line-height: 1.55; }
  .h2-sparkle { width: 36px; }

  .header-inner { padding-top: 16px; padding-bottom: 16px; }
  .brand-text { font-size: 28px; }

  /* Base mobile button size for functional and navigation controls. */
  .btn { padding: 12px 24px; font-size: 18px; }

  /* Primary marketing CTAs fill their text column and use a larger tap target. */
  .btn.btn--cta-on-light,
  .btn.btn--cta-on-dark {
    width: 100%;
    padding: 15px 24px;
    text-align: center;
  }

  /* hero: 658px, obsah ukotvený pri spodku, kruhové texty skryté */
  .hero { height: 658px; }
  .hero h1 {
    max-width: 520px;
    font-size: clamp(36px, 10.6vw, 44px);
    line-height: 1.04;
    text-align: left;
    white-space: normal;
    padding: 0 var(--pad-x);
  }
  .hero-content { padding-bottom: 56px; }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 12px;
    padding: 0 var(--pad-x);
  }
  .hero-bottom p { font-size: 18px; line-height: 1.55; }
  .hero-circle { display: none; }
  .hero-bg { object-position: 40% bottom; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,.05) 50%, rgba(0,0,0,.45) 100%);
  }

  /* discover: na mobile bez fotokoláže, iba s jemným zeleným dekorom pri nadpise */
  .discover { padding: 60px 0 90px; }
  .discover .lead { margin: 20px auto 32px; }
  .discover-floats {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    margin: 0;
    pointer-events: none;
  }
  .float-img {
    display: none;
  }
  .float-sparkle--green { position: absolute; top: 42px; right: 9%; left: auto; width: 36px; }
  .float-sparkle--orange { display: none; }

  /* about: na mobile iba jeden veľký centrovaný oblúkový obrázok */
  .about { padding: 40px 0 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; position: relative; }
  .about h2 { font-size: 36px; }
  .about-head .sticker { position: relative; top: 17px; z-index: 2; }
  .about-sparkle { display: none; }
  .about-features { grid-template-columns: 1fr; gap: 32px; }
  .feature h3 { font-size: 20px; }
  .about-media { order: 2; width: 100%; margin: 0 auto; position: relative; z-index: 1; }
  .about-media .about-arch {
    height: auto;
    aspect-ratio: 560 / 556;
    border-radius: 210px 210px 12px 12px;
  }
  .about-content { order: 1; position: static; }

  .programs { padding: 90px 0; }
  .programs-head { margin-bottom: 48px; padding: 0 var(--pad-x); }
  .programs-sticker { top: -36px; }
  .h2-sparkle--left { left: -6px; top: -40px; width: 36px; }
  .programs-track { gap: 24px; padding: 0 var(--pad-x); }
  .program-card { flex: 0 0 300px; }
  .program-img > img { width: 300px; height: 370px; }
  .program-card h3 { margin-top: 32px; }

  .program-directory {
    padding: 84px 0 88px;
  }
  .program-directory-head {
    max-width: 350px;
    margin-bottom: 58px;
  }
  .program-directory-title {
    font-size: clamp(38px, 10.3vw, 44px);
    line-height: 1.04;
  }
  .program-directory-sticker {
    margin-bottom: -4px;
    transform: rotate(-7deg);
  }
  .program-directory-sparkle {
    display: none;
  }
  .program-directory-grid {
    display: block;
  }
  .program-directory-card {
    margin-bottom: 56px;
  }
  .program-directory-card:last-child {
    margin-bottom: 0;
  }
  .program-directory-media {
    width: min(350px, 100%);
    max-width: none;
  }
  .program-directory-arrow {
    width: 76px;
    height: 76px;
    bottom: 28px;
    opacity: 1;
    transform: translateX(-50%);
  }
  .program-directory-arrow img {
    width: 32px;
    height: 32px;
  }
  .program-directory-card:hover .program-directory-media > img {
    transform: none;
  }
  .program-directory-card-title {
    margin-top: 30px;
    font-size: 28px;
  }
  .program-directory-card p {
    max-width: 340px;
    font-size: 18px;
    line-height: 1.5;
  }

  /* choose: centered heading and arch photo with stickers; secondary photo is desktop-only */
  .choose { padding: 90px 0; }
  .choose-grid { gap: 24px; }
  .choose h2 { font-size: 36px; }
  .choose-head { text-align: center; }
  .choose-head .sticker { position: relative; top: 11px; left: 0; margin-bottom: -6px; }
  .choose-head h2 { padding-top: 12px; }
  .choose-photo { display: none; }
  .choose-arch { margin-top: 8px; }
  .choose-arch > img { height: 420px; border-radius: 210px 210px 12px 12px; }
  .choose-stickers {
    bottom: 36px; left: 6%; right: 6%;
    flex-wrap: wrap;
    gap: 0 4px;
  }
  .choose-stickers .sticker { font-size: 15px; padding: 9px 12px 6px; }
  .choose-right > p { margin: 24px 0 28px; }

  .current-welcome {
    padding: 60px 0;
  }
  .current-welcome-grid {
    gap: 90px;
  }
  .current-welcome-copy {
    width: 100%;
  }
  .current-welcome-head {
    max-width: 310px;
  }
  .current-welcome-kicker {
    top: -9px;
    font-size: 15px;
    padding: 9px 13px 6px;
    margin-bottom: -4px;
  }
  .current-welcome h2 {
    max-width: 310px;
    font-size: 36px;
    line-height: 1.055;
  }
  .current-welcome-sparkle {
    display: none;
  }
  .current-welcome-text {
    gap: 12px;
    margin-top: 16px;
  }
  .current-welcome-text p {
    font-size: 18px;
    line-height: 1.55;
  }
  .current-welcome-media {
    width: 100%;
  }
  .current-welcome-photo-wrap {
    width: 100%;
  }
  .current-welcome-media-sticker {
    left: -11px;
    bottom: -8px;
    font-size: 15px;
    padding: 9px 10px 6px;
  }

  .contact-intro {
    padding: 70px 0 60px;
  }
  .contact-intro-head {
    max-width: 350px;
  }
  .contact-intro-sticker {
    font-size: 15px;
    padding: 9px 13px 6px;
    margin-bottom: -4px;
  }
  .contact-intro-title {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.055;
  }
  .contact-intro-sparkle {
    display: none;
  }
  .contact-intro-head p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.55;
  }
  .contact-intro-grid {
    gap: 18px;
    margin-top: 34px;
  }
  .contact-form-card {
    border-radius: 18px;
    padding: 28px 24px 24px;
    gap: 18px;
  }
  .contact-form-title {
    font-size: 26px;
    line-height: 1.28;
  }
  .contact-form-head {
    margin-bottom: 2px;
  }
  .contact-form-head p,
  .contact-field {
    font-size: 18px;
  }
  .contact-form-head p {
    margin-top: 12px;
  }
  .contact-field-control {
    grid-template-columns: 20px 1fr;
    gap: 10px;
    min-height: 49px;
    padding: 0 14px;
    border-radius: 8px;
  }
  .contact-field-control svg {
    width: 20px;
    height: 20px;
  }
  .contact-field input,
  .contact-field textarea {
    font-size: 15px;
  }
  .contact-field-control--textarea {
    min-height: 100px;
    padding-top: 13px;
  }
  .contact-field textarea {
    min-height: 76px;
  }
  .contact-submit {
    min-height: 48px;
    margin-top: 2px;
  }
  .contact-info-card {
    border-radius: 14px;
    padding: 26px 22px;
  }
  .contact-info-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .legal-text-page {
    padding: 58px 0 64px;
  }
  .legal-text-head {
    max-width: 350px;
    text-align: left;
  }
  .legal-text-sticker {
    font-size: 15px;
    padding: 9px 13px 6px;
    margin-bottom: -4px;
  }
  .legal-text-title {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.055;
  }
  .legal-text-sparkle {
    display: none;
  }
  .legal-text-body {
    max-width: 350px;
    margin-top: 34px;
  }
  .legal-text-intro {
    font-size: 18px;
    line-height: 1.55;
  }
  .legal-sections {
    gap: 36px;
    margin-top: 40px;
  }
  .legal-section-title {
    gap: 7px;
    font-size: 26px;
    line-height: 1.25;
  }
  .legal-sections ul {
    gap: 6px;
    padding-left: 19px;
  }
  .legal-sections li,
  .legal-sections p,
  .legal-contact-list {
    font-size: 18px;
    line-height: 1.55;
  }
  .legal-contact-list div {
    grid-template-columns: 70px 1fr;
    gap: 8px;
  }

  .footer { padding: 72px 0 32px; }
  .footer-top {
    display: grid;
    grid-template-columns: minmax(86px, .58fr) minmax(0, 1.42fr);
    column-gap: clamp(18px, 5.6vw, 24px);
    row-gap: 0;
    justify-content: stretch;
    align-items: start;
  }
  .footer-about {
    grid-column: 1 / -1;
    min-width: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-home .footer-about {
    max-width: none;
  }
  .page-home .footer-brand-text {
    width: calc(100% + (var(--pad-x) * 2));
    margin-left: calc(var(--pad-x) * -1);
    margin-right: calc(var(--pad-x) * -1);
    margin-bottom: 24px;
    font-size: clamp(72px, 24vw, 108px);
    text-align: center;
  }
  .footer-about .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-col {
    border-left: 0;
    padding: 0;
    text-align: left;
  }
  .footer-nav {
    grid-column: 1;
    min-width: 0;
    padding-left: 10px;
  }
  .footer-courses {
    grid-column: 2;
    min-width: 0;
    margin-top: 0;
    padding-right: 10px;
  }
  .footer-col a {
    font-size: clamp(16px, 4.35vw, 18px);
    line-height: 1.35;
  }
  .footer-courses-title {
    margin-bottom: 22px;
    font-size: clamp(20px, 6.6vw, 30px);
  }
  .footer-menu-list { gap: 28px; }
  .footer-courses-title {
    text-align: left;
  }
  .footer-col .footer-featured-card {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 12px;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    text-align: left;
  }
  .footer-featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    align-self: center;
  }
  .footer-featured-content {
    gap: 8px;
  }
  .footer-featured-content strong {
    font-size: clamp(18px, 5.6vw, 22px);
  }
  .footer-featured-content > span {
    font-size: clamp(14px, 3.85vw, 15px);
    line-height: 1.4;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
  }
  .footer-legal {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .footer-legal span {
    width: 100%;
    padding-right: 0;
  }
  .footer-legal a:first-of-type {
    border-left: 0;
  }
  .footer-social {
    width: 100%;
    justify-content: center;
  }

  .transport {
    padding: 84px 0 60px;
  }
  .transport-head {
    text-align: left;
  }
  .transport-head .sticker {
    font-size: 15px;
    padding: 9px 13px 6px;
    margin: 0 0 -2px;
  }
  .transport-head h2 {
    font-size: 36px;
    line-height: 1.07;
  }
  .transport-sparkle { display: none; }
  .transport-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 70px;
  }
  .transport-card {
    border-radius: 18px;
    padding: 27px 23px 24px;
  }
  .transport-card h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .faq-page-section {
    padding: 70px 0 78px;
  }
  .faq-page-head {
    max-width: 350px;
  }
  .faq-page-sticker {
    font-size: 15px;
    padding: 9px 13px 6px;
    margin-bottom: -4px;
  }
  .faq-page-title {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.055;
  }
  .faq-page-sparkle {
    display: none;
  }
  .faq-page-tabs {
    gap: 12px;
    max-width: 330px;
    margin-top: 34px;
  }
  .faq-page-tab {
    min-height: 48px;
    padding: 11px 22px 10px;
    font-size: 16px;
  }
  .faq-page-content {
    gap: 42px;
    margin-top: 48px;
  }
  .faq-page-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-page-category {
    gap: 10px;
    padding-top: 0;
  }
  .faq-page-category svg {
    width: 26px;
    height: 26px;
  }
  .faq-page-group-title {
    font-size: 26px;
    line-height: 1.25;
  }
  .faq-page-items {
    gap: 12px;
  }
  .faq-page-item {
    border-radius: 8px;
  }
  .faq-page-item summary {
    align-items: center;
    gap: 12px;
    min-height: 77px;
    padding: 17px 12px 17px 24px;
    font-size: 18px;
    line-height: 1.35;
  }
  .faq-page-item[open] summary {
    padding-bottom: 11px;
  }
  .faq-page-item p {
    max-width: none;
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.55;
  }
  .faq-page-icon {
    width: 24px;
    height: 24px;
  }

  .faq-section {
    padding: 78px 0 90px;
  }
  .faq-head .sticker {
    font-size: 15px;
    padding: 9px 13px 6px;
    margin-bottom: -4px;
  }
  .faq-head h2 {
    max-width: 310px;
  }
  .faq-list {
    margin-top: 42px;
    gap: 12px;
  }
  .faq-item summary {
    align-items: flex-start;
    padding: 18px 18px;
    font-size: 18px;
  }
  .faq-item p {
    padding: 0 18px 20px;
    font-size: 15px;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
  }
}
