/* ================================================================
   ROZKVIT – Centrum rozvoja dieťaťa
   styles.css
   ================================================================ */


/* ----------------------------------------------------------------
   1. CSS PREMENNÉ (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  /* Primárna paleta z loga */
  --clr-red:        #B5253A;   /* tmavočervená z loga                */
  --clr-red-light:  #D94057;   /* svetlejšia červená                 */
  --clr-orange:     #E07B39;   /* oranžová z loga                    */
  --clr-green:      #5A8A3C;   /* zelená z loga                      */
  --clr-green-light:#7BB34E;   /* svetlejšia zelená                  */

  /* Neutralné odtiene */
  --clr-bg:         #FDF8F5;   /* veľmi jemná krémová – pozadie stránky */
  --clr-bg-alt:     #F5EEE8;   /* alternatívne pozadie pre sekcie    */
  --clr-white:      #FFFFFF;
  --clr-dark:       #1E1E1E;
  --clr-text:       #3D3D3D;
  --clr-muted:      #6B6B6B;
  --clr-border:     #E8DDD5;

  /* Gradient – hero sekcia */
  --gradient-hero:  linear-gradient(135deg, #FDF8F5 0%, #F5EEE8 60%, #FDEAE8 100%);
  --gradient-cta:   linear-gradient(135deg, var(--clr-red) 0%, var(--clr-orange) 100%);
  /* CTA na silno zaobl. tlačidlách – vodorovný blend (135° robil červené „rohy“) */
  --gradient-cta-pill: linear-gradient(to right, var(--clr-red) 0%, var(--clr-orange) 100%);
  --gradient-dark:  linear-gradient(135deg, #2A0D13 0%, #4A1A24 100%);

  /* Typografia */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Veľkosti písma */
  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    1.25rem;
  --fs-2xl:   1.5rem;
  --fs-3xl:   2rem;
  --fs-4xl:   2.75rem;
  --fs-5xl:   3.5rem;

  /* Medzery */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 7rem;

  /* Zaoblenie */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* Tiene */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
  --shadow-red: 0 8px 32px rgba(181, 37, 58, .25);

  /* Prechody (transitions) */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Max šírka obsahu */
  --max-w: 1200px;
}


/* ----------------------------------------------------------------
   2. RESET & ZÁKLAD
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;       /* plynulý scroll pri kliknutí na odkaz */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;            /* žiadny horizontálny scrollbar */
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Pomocná trieda – obal obsahu v strede stránky */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}


/* ----------------------------------------------------------------
   3. GLOBÁLNE TLAČIDLÁ
   ---------------------------------------------------------------- */

/* Základný štýl tlačidla */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primárne – rovnaký vzhľad ako .navbar__link--cta (bez transparentného okraja .btn – na pill gradientoch robí „špinavé“ hrany) */
.btn--primary {
  border: none;
  padding: calc(0.85rem + 2px) calc(2rem + 2px);
  background: var(--gradient-cta-pill);
  color: var(--clr-white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(181, 37, 58, .4);
}

/* Sekundárne – obrysy */
.btn--outline {
  background: transparent;
  color: var(--clr-red);
  border-color: var(--clr-red);
}
.btn--outline:hover {
  background: var(--clr-red);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/*
  Hero „Zistiť viac“ (btn--outline) – na tablete/mobiloch bez červenej výplne
  pri dotyku; hover sa na dotykových zariadeniach často „prilepí“ po ťuku.
*/
@media (max-width: 1024px) {
  .hero .btn--outline {
    -webkit-tap-highlight-color: transparent;
  }

  .hero .btn--outline:link,
  .hero .btn--outline:visited {
    background: transparent;
    color: var(--clr-red);
    border-color: var(--clr-red);
  }

  .hero .btn--outline:hover,
  .hero .btn--outline:active {
    background: transparent;
    color: var(--clr-red);
    border-color: var(--clr-red);
    transform: none;
    filter: none;
  }

  .hero .btn--outline:focus-visible {
    outline: 2px solid var(--clr-red);
    outline-offset: 3px;
  }
}

/* Celá šírka rodičovského prvku */
.btn--full {
  width: 100%;
  justify-content: center;
}


/* ----------------------------------------------------------------
   4. GLOBÁLNE SEKCIOVÉ ZÁHLAVIE
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* Malý farebný štítok nad nadpisom */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(181,37,58,.12), rgba(224,123,57,.12));
  color: var(--clr-red);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

/* Variant – na tmavom pozadí */
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

/* Nadpis sekcie */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--clr-dark);
  line-height: 1.2;
}

/* Variant nadpisu na tmavom pozadí */
.section-title--light {
  color: var(--clr-white);
}

/* Popis pod nadpisom */
.section-desc {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  color: var(--clr-muted);
  font-size: var(--fs-lg);
}


/* ----------------------------------------------------------------
   5. NAVIGÁCIA (sticky navbar)
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;              /* Pevná poloha – sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 245, .92);
  backdrop-filter: blur(12px);  /* Efekt mliečneho skla */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}

/* Tieň sa pridá keď používateľ scrolluje (JS pridá triedu .scrolled) */
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* Vnútorný riadok navbaru */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

/* Logo + názov */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  transform: scale(2);
}

.navbar__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-red);
  letter-spacing: 0.05em;
}

/* Menu – desktop */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

/* Podčiarknutie pri hoveri */
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}
.navbar__link:hover { color: var(--clr-red); }
.navbar__link:hover::after { width: 100%; }

.navbar__link[aria-current="page"] {
  color: var(--clr-red);
}
.navbar__link[aria-current="page"]::after {
  width: 100%;
}

/* CTA tlačidlo v navbare */
.navbar__link--cta {
  background: var(--gradient-cta-pill);
  color: var(--clr-white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-red);
}
.navbar__link--cta::after { display: none; }
.navbar__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(181, 37, 58, .4);
}

/* Hamburger – viditeľný len na mobile */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Animácia hamburgera keď je menu otvorené */
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ----------------------------------------------------------------
   6. HERO SEKCIA
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background-color: #fdf8f5;
  background-image:
    linear-gradient(
      105deg,
      rgba(253, 248, 245, 0.97) 0%,
      rgba(253, 248, 245, 0.9) 35%,
      rgba(253, 248, 245, 0.55) 55%,
      rgba(253, 248, 245, 0.22) 100%
    ),
    url("assets/Hero-image.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;             /* priestor pre fixed navbar */
  padding-bottom: var(--space-xl);
}

/* Obsah hero – jeden stĺpec (fotka je v pozadí sekcie) */
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Dekoratívne kružnice v pozadí */
.hero__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__circle--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181,37,58,.07) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  animation: floatSlow 8s ease-in-out infinite;
}
.hero__circle--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224,123,57,.08) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  animation: floatSlow 10s ease-in-out infinite reverse;
}
.hero__circle--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(90,138,60,.07) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: floatSlow 6s ease-in-out infinite;
}

/* Animácia jemného pohybu kružníc */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.04); }
}

/* Obsah hero */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: min(40rem, 100%);  /* primeraná šírka riadkov, drží sa v prvom stĺpci mriežky */
  min-width: 0;                 /* umožní zalamovanie/shrink grid stĺpca */
  animation: fadeInUp 0.8s ease both;
}

/* Animácia – fade in + posun nahor */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Malý label */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(181,37,58,.1);
  color: var(--clr-red);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(181,37,58,.2);
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  color: var(--clr-dark);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.hero__headline-lead {
  display: block;
  font-size: clamp(1.4rem, 3.85vw, 2.15rem);
  font-weight: 600;
  line-height: 1.28;
}

/* Kurzíva v headline */
.hero__headline em {
  color: var(--clr-red);
  font-style: italic;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.35vw, 1.375rem);
  font-weight: 600;
  line-height: 1.38;
  color: color-mix(in srgb, var(--clr-orange) 76%, var(--clr-dark) 24%);
  margin: 0 0 var(--space-md);
  max-width: min(36rem, 100%);
}

.hero__tagline em {
  font-style: italic;
  font-weight: 700;
  color: inherit;
}

/* fallback bez color-mix */
@supports not (color: color-mix(in srgb, white 50%, black)) {
  .hero__tagline {
    color: #c86d38;
  }
}

/* Perex */
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--clr-text);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

/* CTA tlačidlá */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

/* Štatistiky */
.hero__stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-red);
}
.hero__stat span {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}


/* ----------------------------------------------------------------
   7. O NÁS
   ---------------------------------------------------------------- */
.about {
  padding-block: var(--space-2xl);
  background: var(--clr-white);
}

/* Intro text v strede */
.about__intro {
  max-width: 720px;
  margin: 0 auto var(--space-md);
  text-align: center;
  font-size: var(--fs-lg);
  color: var(--clr-muted);
}

.about__intro p + p {
  margin-top: var(--space-sm);
}

.about__demo-wrap {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Mriežka 3 kariet */
.about__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Jednotlivá karta */
.about-card {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

/* Farebnú čiaru na vrchu karty – každý typ má inú farbu */
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.about-card--children::before { background: var(--gradient-cta); }
.about-card--parents::before  { background: linear-gradient(135deg, var(--clr-orange), #F5A623); }
.about-card--teachers::before { background: linear-gradient(135deg, var(--clr-green), var(--clr-green-light)); }

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Ikona v karte */
.about-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(181,37,58,.1), rgba(224,123,57,.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-red);
  margin-bottom: var(--space-md);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
  color: var(--clr-dark);
}

.about-card p { color: var(--clr-muted); }

/* Záverečný citát */
.about__promise {
  position: relative;
  max-width: 52rem;
  margin: var(--space-xl) auto 0;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  background-color: var(--clr-white);
  background-image:
    radial-gradient(ellipse 90% 75% at 50% -25%, rgba(181, 37, 58, 0.12), transparent 62%),
    radial-gradient(ellipse 65% 45% at 100% 100%, rgba(224, 123, 57, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 90%, rgba(90, 138, 60, 0.06), transparent 50%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

/* ornament – tenké čiary ako v úvodníkoch */
.about__promise::before,
.about__promise::after {
  content: '';
  display: block;
  width: min(5.5rem, 35%);
  height: 2px;
  margin-inline: auto;
  border-radius: var(--radius-full);
  background: var(--gradient-cta);
  opacity: 0.85;
}
.about__promise::before {
  margin-bottom: var(--space-lg);
}
.about__promise::after {
  margin-top: var(--space-lg);
}

.about__promise__quote {
  margin: 0;
  padding: 0;
  border: 0;
  quotes: none;
}

.about__promise__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.25vw + 0.75rem, 2.375rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--clr-dark);
}

.about__promise__quote p em {
  font-style: italic;
  color: var(--clr-red);
  font-weight: 600;
}


/* ----------------------------------------------------------------
   8. PROGRAMY
   ---------------------------------------------------------------- */
.programs {
  scroll-margin-top: 92px;
  padding-block: var(--space-2xl);
  background: linear-gradient(180deg, var(--clr-bg-alt) 0%, var(--clr-bg) 45%, var(--clr-bg-alt) 100%);
}

.programs .section-header {
  margin-bottom: var(--space-lg);
}

.programs__group-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-dark);
  margin-bottom: var(--space-md);
}

/* Vzdelávanie – výrazný samostatný blok */
.programs__edu-spotlight {
  --edu-spot-radius: var(--radius-xl);
  position: relative;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-xl) var(--space-lg) calc(var(--space-xl) + 4px);
  border-radius: var(--edu-spot-radius);
  background:
    linear-gradient(155deg, rgba(90, 138, 60, 0.11) 0%, var(--clr-white) 42%, rgba(181, 37, 58, 0.07) 100%);
  border: 1px solid rgba(181, 37, 58, 0.18);
  box-shadow:
    0 20px 50px rgba(42, 13, 19, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.programs__edu-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-red) 50%, var(--clr-orange));
  border-radius: var(--edu-spot-radius) var(--edu-spot-radius) 0 0;
}

.programs__edu-spotlight::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(181, 37, 58, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.programs__edu-spotlight.visible {
  opacity: 1;
  transform: translateY(0);
}

.programs__edu-spotlight__tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(181, 37, 58, 0.14), rgba(224, 123, 57, 0.14));
  color: var(--clr-red);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(181, 37, 58, 0.2);
}

.programs__edu-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, var(--fs-3xl));
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
}

.programs__edu-spotlight__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 42%);
  align-items: center;
  gap: var(--space-xl);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.programs__edu-spotlight__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.programs__edu-spotlight__media {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  aspect-ratio: 4 / 3;
  background: var(--clr-bg-alt);
}

.programs__edu-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programs__edu-spotlight__text {
  color: var(--clr-muted);
  font-size: var(--fs-lg);
  line-height: 1.65;
  margin: 0 0 var(--space-md);
  max-width: 34rem;
}

.programs__edu-spotlight__cta {
  margin-top: var(--space-xs);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .programs__edu-spotlight {
    padding: var(--space-lg) var(--space-md) calc(var(--space-lg) + 4px);
  }

  .programs__edu-spotlight__panel {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

  .programs__edu-spotlight__media {
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }

  .programs__edu-spotlight__cta {
    width: 100%;
    justify-content: center;
  }
}

/* Podsekcia – Doplnkové služby (iná vizuálna hierarchia než „Služby:“) */
.programs__subhead {
  text-align: center;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--clr-border);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.programs__subhead-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, var(--fs-3xl));
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  display: inline-block;
  position: relative;
}

.programs__subhead-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--clr-green), var(--clr-red) 55%, var(--clr-orange));
  opacity: 0.9;
}

/* Mriežka programov */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.programs__grid--flush {
  margin-bottom: var(--space-md);
}

/* Karta programu */
.program-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;

  /* Animácia pri zobrazení (JS pridá triedu .visible) */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.program-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.program-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg);
}

/* Ikona programu */
.program-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-cta);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-red);
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
  color: var(--clr-dark);
}

.program-card p {
  color: var(--clr-muted);
  flex: 1;
  margin-bottom: var(--space-md);
}

/* Link "Zistiť viac →" */
.program-card__link {
  font-weight: 700;
  color: var(--clr-red);
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.program-card__link:hover { gap: 8px; color: var(--clr-orange); }

button.program-card__link {
  font: inherit;
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
}

/* Zablokovanie scrollu stránky pri otvorenom modale / pop-upe (bez posunu po zatvorení) */
html.modal-scroll-lock,
body.modal-scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

body.modal-scroll-lock {
  touch-action: none;
}

dialog[open] .leaflet-modal__shell,
dialog[open] .leaflet-modal__box,
dialog[open] .legal-doc-modal__shell,
dialog[open] .legal-doc-modal__box,
dialog[open] .legal-doc-modal__content {
  touch-action: auto;
}

/* Modal – leták táborov (otvorí sa z „Vybrať termín“) */
.leaflet-modal {
  padding: 0;
  margin: 0;
  border: none;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: transparent;
  box-sizing: border-box;
}

.leaflet-modal__shell {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  box-sizing: border-box;
}

.leaflet-modal::backdrop {
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(3px);
}

/* Leták – vstupná animácia (auto po načítaní alebo po „Vybrať termín“) */
.leaflet-modal.leaflet-modal--opening .leaflet-modal__box {
  opacity: 0;
  transform: translateY(36px) scale(0.92) rotate(-0.5deg);
}

.leaflet-modal.leaflet-modal--animate-in .leaflet-modal__box {
  animation: leafletCampFlyIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes leafletCampFlyIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.92) rotate(-0.5deg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    box-shadow: var(--shadow-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .leaflet-modal.leaflet-modal--opening .leaflet-modal__box {
    opacity: 1;
    transform: none;
  }

  .leaflet-modal.leaflet-modal--animate-in .leaflet-modal__box {
    animation: none;
  }
}

.leaflet-modal__box {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  max-width: min(98vw, 1200px);
  max-height: 94vh;
  overflow: auto;
}

.leaflet-modal__box:has(.leaflet-modal__stack .leaflet-modal__img:nth-child(3)) {
  max-width: min(98vw, 1500px);
}

.leaflet-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--clr-bg);
  color: var(--clr-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.leaflet-modal__close:hover {
  background: var(--clr-red);
  color: var(--clr-white);
  transform: scale(1.05);
}

.leaflet-modal__stack {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-md);
}

/* Obrázky vedľa seba v letákovom modale (2–3 plagáty) */
.leaflet-modal__stack .leaflet-modal__img {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: 100%;
  max-height: min(85vh, 980px);
  object-fit: contain;
  object-position: top center;
}

@media (max-width: 1100px) {

  .leaflet-modal__stack:has(.leaflet-modal__img:nth-child(3)) {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .leaflet-modal__stack:has(.leaflet-modal__img:nth-child(3)) .leaflet-modal__img {
    max-width: 100%;
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 840px) {

  .leaflet-modal__stack {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .leaflet-modal__stack .leaflet-modal__img {
    max-width: 100%;
    width: 100%;
    max-height: none;
  }
}

.leaflet-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(82vh, 1200px);
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* Modal – právne texty z Wordu (previedené do HTML v prehliadači) */
.legal-doc-modal {
  padding: 0;
  margin: 0;
  border: none;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: transparent;
  box-sizing: border-box;
}

.legal-doc-modal__shell {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  box-sizing: border-box;
}

.legal-doc-modal::backdrop {
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(3px);
}

.legal-doc-modal__box {
  position: relative;
  padding: var(--space-lg);
  padding-top: calc(var(--space-lg) + 2.75rem);
  border-radius: var(--radius-xl);
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  max-width: min(98vw, 720px);
  width: 100%;
  max-height: 94vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal-doc-modal__heading {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--space-sm);
  padding-right: 3rem;
}

.legal-doc-modal__status {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}

.legal-doc-modal__content {
  flex: 1;
  min-height: 0;
  max-height: min(72vh, 640px);
  overflow-y: auto;
  padding-right: var(--space-xs);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--clr-text);
  -webkit-user-select: none;
  user-select: none;
}

.legal-doc-modal__content * {
  -webkit-user-select: none;
  user-select: none;
}

.legal-doc-modal__content p {
  margin-bottom: 0.85em;
}

.legal-doc-modal__content h1,
.legal-doc-modal__content h2,
.legal-doc-modal__content h3 {
  font-family: var(--font-display);
  margin-top: 1.1em;
  margin-bottom: 0.5em;
  color: var(--clr-dark);
}

.legal-doc-modal__content h1 { font-size: var(--fs-xl); }
.legal-doc-modal__content h2 { font-size: var(--fs-lg); }
.legal-doc-modal__content h3 { font-size: var(--fs-base); }

.legal-doc-modal__content ul,
.legal-doc-modal__content ol {
  margin: 0.5em 0 0.85em 1.25rem;
  list-style: revert;
}

.legal-doc-modal__content li {
  margin-bottom: 0.35em;
}

.legal-doc-modal__error {
  color: var(--clr-red);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   9. TÍM
   ---------------------------------------------------------------- */
.team {
  padding-block: var(--space-2xl);
  background: var(--clr-white);
}

/* Mriežka kariet tímu */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.team__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

@media (max-width: 960px) {
  .team__grid--three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.team__cta {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

/* Odkaz z portrétu na stránku tímu */
.team-card__photo-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-decoration: none;
  color: inherit;
}

.team-card__photo-link:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

/* Karta člena tímu */
.team-card {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

/* Jemný gradient v pozadí karty */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(135deg, rgba(181,37,58,.06), rgba(224,123,57,.06));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Kompaktnejšie tri karty + väčšie portréty */
.team-card--compact {
  padding: var(--space-lg) var(--space-md);
  --team-photo-align-height: 260px;
}

.team-card--compact .team-card__photo-wrap {
  --outer-max: 200px;
  margin-bottom: var(--space-md);
}

.team-card--compact .team-card__name {
  font-size: var(--fs-lg);
  line-height: 1.25;
}

.team-card--compact .team-card__bio {
  font-size: var(--fs-sm);
  margin-bottom: 0;
  text-align: center;
}

.team-card--compact::before {
  height: 160px;
}

.team-card--compact .team-card__info {
  text-align: center;
}

/* Obal fotografie – gradient tesne okolo bitmapy (žiadne pásy medzi rámom a fotkou) */
.team-card__photo-wrap {
  --team-photo-radius: var(--radius-lg);
  --frame: 2px;
  --outer-max: 140px;
  position: relative;
  box-sizing: border-box;
  max-width: var(--outer-max);
  width: max-content;
  margin: 0 auto var(--space-md);
  padding: var(--frame);
  line-height: 0;
  border-radius: var(--team-photo-radius);
  background: var(--gradient-cta);
  box-shadow: var(--shadow-md);
}

.team-card__photo {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(var(--outer-max) - 2 * var(--frame));
  border-radius: calc(var(--team-photo-radius) - var(--frame));
 
}

/* Orez spodku – rovnaká výška bloku fotky ako pri ostatných kartách (index – napr. Dana) */
.team-card--compact .team-card__photo--crop-bottom {
  width: calc(var(--outer-max) - 2 * var(--frame));
  height: var(--team-photo-align-height);
  max-width: calc(var(--outer-max) - 2 * var(--frame));
  object-fit: cover;
  object-position: center top;
}

/* Dekor bol nahradený gradientovým paddingom na obale */
.team-card__ring {
  display: none;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-dark);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  display: inline-block;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  color: var(--clr-muted);
  font-size: var(--fs-base);
  margin-bottom: var(--space-md);
}

/* Sociálne siete člena tímu */
.team-card__socials {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}
.team-card__socials a {
  width: 40px;
  height: 40px;
  background: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card__socials a:hover {
  background: var(--gradient-cta);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* Podstránka tímu – väčšie portréty a dlhé texty */
#tim {
  scroll-margin-top: 92px;
}

.team-page {
  padding-block: var(--space-2xl);
  padding-top: calc(var(--space-2xl) + var(--space-md));
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-white) 28%, var(--clr-white) 100%);
}

.team-page .section-header {
  margin-bottom: var(--space-2xl);
}

.team-page .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.scroll-target {
  scroll-margin-top: 92px;
}

.team-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl) var(--space-lg);
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.team-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-cta);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .team-profile {
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    align-items: start;
  }

  .team-profile--reverse {
    grid-template-columns: 1fr auto;
  }

  .team-profile--reverse .team-profile__photo-wrap {
    order: 2;
  }

  .team-profile--reverse .team-profile__content {
    order: 1;
  }
}

.team-profile__photo-wrap {
  --team-photo-radius: var(--radius-lg);
  --frame: 3px;
  --outer-max: min(260px, calc(88vw - 24px));
  position: relative;
  box-sizing: border-box;
  max-width: var(--outer-max);
  width: max-content;
  margin-inline: auto;
  flex-shrink: 0;
  padding: var(--frame);
  line-height: 0;
  border-radius: var(--team-photo-radius);
  background: var(--gradient-cta);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .team-profile__photo-wrap {
    --outer-max: 300px;
  }
}

.team-profile__photo {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(var(--outer-max) - 2 * var(--frame));
  border-radius: calc(var(--team-photo-radius) - var(--frame));
  
}

.team-profile__ring {
  display: none;
}

.team-profile__content {
  text-align: center;
}

@media (min-width: 768px) {
  .team-profile__content {
    text-align: left;
  }
}

.team-profile__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  color: var(--clr-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.team-profile-text {
  margin-inline: auto;
}

@media (min-width: 768px) {
  .team-profile__content .team-profile-text {
    margin-inline: 0;
  }
}

.team-profile-text p {
  color: var(--clr-muted);
  font-size: var(--fs-base);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

.team-profile-text p:last-child {
  margin-bottom: 0;
}

.team-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}


/* ----------------------------------------------------------------
   10. CENNÍK
   ---------------------------------------------------------------- */
.pricing {
  padding-block: var(--space-2xl);
  background: var(--clr-bg);
}

/* Mriežka cien */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  align-items: stretch;
  margin-bottom: var(--space-md);
}

/* Cenová karta */
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 2px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card > a.btn {
  margin-top: auto;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Zvýraznená cenová karta (diagnostika) */
.price-card--featured {
  background: var(--gradient-dark);
  border-color: transparent;
  position: relative;
  transform: scale(1.03);
}
.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

/* Vrchná časť cenovej karty */
.price-card__top {
  text-align: center;
  margin-bottom: var(--space-md);
}

/* Ikona v cenovej karte */
.price-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  background: linear-gradient(135deg, rgba(181,37,58,.1), rgba(224,123,57,.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-red);
}
.price-card--featured .price-card__icon {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.price-card__top h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-dark);
}
.price-card--featured .price-card__top h3 {
  color: var(--clr-white);
}

/* Cena */
.price-card__price {
  margin-top: var(--space-sm);
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-red);
}
.price-card--featured .price-card__amount {
  color: var(--clr-white);
}
.price-card__unit {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}
.price-card--featured .price-card__unit {
  color: rgba(255,255,255,.6);
}

/* Zoznam výhod */
.price-card__features {
  margin-bottom: var(--space-lg);
}
.price-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
  color: var(--clr-text);
}
.price-card--featured .price-card__features li {
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
}
.price-card__features li:last-child { border: none; }
.price-card__features i {
  color: var(--clr-green);
  flex-shrink: 0;
}
.price-card--featured .price-card__features i {
  color: var(--clr-green-light);
}

/* Poznámka */
.pricing__note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  font-style: italic;
}

.pricing__note-highlight {
  display: inline;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  color: var(--clr-green);
  background: rgba(90, 138, 60, 0.12);
  padding: 0.2em 0.55em;
  border-radius: var(--radius-sm);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border: 1px solid rgba(90, 138, 60, 0.22);
}


/* ----------------------------------------------------------------
   11. REFERENCIE (hodnotenia)
   ---------------------------------------------------------------- */
.testimonials {
  padding-block: var(--space-2xl);
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

/* Dekoratívna kružnica */
.testimonials::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181,37,58,.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

/* Mriežka referencií */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

/* Karta referencie */
.testimonial-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform var(--transition), background var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
}

/* Hviezdičky */
.testimonial-card__stars {
  font-size: var(--fs-xl);
  color: var(--clr-orange);
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255,255,255,.85);
  font-size: var(--fs-base);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* Autor referencie */
.testimonial-card__author strong {
  display: block;
  color: var(--clr-white);
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
}


/* ----------------------------------------------------------------
   12. KONTAKT
   ---------------------------------------------------------------- */
.contact {
  padding-block: var(--space-2xl);
  background: var(--clr-white);
}

/* Kotva pri formulári – odkazy „Kontakt“ / „Zistiť viac“ skrolujú k formuláru, nie k nadpisu sekcie */
#contact-form {
  scroll-margin-top: 92px;
}

/* Layout: info vľavo, formulár vpravo */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Kontaktné detaily */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

/* Jeden kontaktný riadok */
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

/* Ikona kontaktu */
.contact__item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(181,37,58,.1), rgba(224,123,57,.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  flex-shrink: 0;
}

.contact__item strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 2px;
}
.contact__item span,
.contact__item a {
  color: var(--clr-muted);
  font-size: var(--fs-sm);
  line-height: 1.5;
  transition: color var(--transition);
}
.contact__item a:hover { color: var(--clr-red); }

/* Mapa – obal tesne obopína iframe (žiadna medzera ako pri inline prvkoch) */
.contact__map {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  line-height: 0;
  /* výška z pomeru strán namiesto prázdneho priestoru pod iframe */
  aspect-ratio: 16 / 10;
  min-height: 200px;
}

.contact__map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Formulár */
.contact-form {
  position: relative;
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Honeypot – skryté pole (boti ho často vyplnia) */
.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skupina formulárového pola */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-dark);
}

/* Input, select, textarea */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

/* Aktívny stav poľa */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(181,37,58,.12);
}

/* Chyba pri odoslaní (server / sieť) */
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(181,37,58,.1), rgba(224,123,57,.08));
  border: 1px solid rgba(181,37,58,.25);
  border-radius: var(--radius-md);
  color: var(--clr-red);
  font-weight: 600;
  font-size: var(--fs-sm);
}
.form-error[hidden] {
  display: none;
}
.form-error > .fa-circle-xmark {
  flex-shrink: 0;
  margin-top: 0.12em;
  font-size: 1.1em;
}

/* Správa o úspešnom odoslaní */
.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(90,138,60,.1), rgba(123,179,78,.1));
  border-radius: var(--radius-md);
  color: var(--clr-green);
  font-weight: 700;
  font-size: var(--fs-lg);
}
.form-success[hidden] {
  display: none;
}
.form-success > .fa-circle-check {
  flex-shrink: 0;
  font-size: 1.15em;
}

/* Kontaktný formulár – tlačidlo počas odoslania */
.contact-form .btn[type="submit"].is-loading {
  cursor: wait;
  opacity: 0.92;
}
.contact-form .btn[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.88;
}


/* ----------------------------------------------------------------
   Sponzori (nad footerom)
   ---------------------------------------------------------------- */
.sponsors {
  padding-block: var(--space-xl);
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}
.sponsors__card-img{
  transform: scale(1.5);
}
.sponsors__card-img2{
  transform: scale(1);
}

.sponsors .section-header {
  margin-bottom: var(--space-lg);
}

.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

.sponsors__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: var(--space-md);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sponsors__card:hover {
  border-color: rgba(181, 37, 58, 0.25);
  box-shadow: var(--shadow-sm);
}

.sponsors__card:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 3px;
}

.sponsors__card img {
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}


/* ----------------------------------------------------------------
   13. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.75);
}

/* Hlavná časť footera */
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-block: var(--space-xl);
}

/* Logo vo footeri */
.footer__logo {
  height: 50px;
  margin-bottom: var(--space-sm);
  filter: brightness(1.1);
  transform: scale(1.8);
}

.footer__brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-md);
}

/* Sociálne siete vo footeri */
.footer__socials {
  display: flex;
  gap: var(--space-sm);
}
.footer__socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer__socials a:hover {
  background: var(--gradient-cta);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* Stĺpec navigácie vo footeri */
.footer__nav,
.footer__contact {
  padding-top: 0.2rem;
}

.footer__nav h4,
.footer__contact h4 {
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

/* Linky navigácie */
.footer__nav a {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  padding: 0.3rem 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__nav a:hover {
  color: var(--clr-white);
  padding-left: 4px;
}
.footer__nav a.footer__nav-link--underline {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer__nav a.footer__nav-link--underline:hover {
  text-decoration: underline;
}

/* Kontaktné riadky vo footeri */
.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  padding: 0.3rem 0;
}
.footer__contact i { color: var(--clr-orange); margin-top: 3px; }

/* Spodná lišta */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: var(--space-sm);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
}


/* ----------------------------------------------------------------
   14. ANIMÁCIA SCROLL – fade in up pri zobrazení prvku
   ---------------------------------------------------------------- */

/* Prvky pred animáciou (JS pridá .visible) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------------------------------------
   15. RESPONZIVITA – TABLET (max 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {

  /*
   Hero – jeden blok textu na pozadí s fotkou
  */
  .hero {
    min-height: auto;
    justify-content: center;
    padding-block: clamp(5rem, 12vw, 7rem) var(--space-lg);
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .hero__content {
    max-width: min(40rem, 100%);
    min-width: 0;
  }

  .hero__headline {
    margin-bottom: var(--space-sm);
  }

  .hero__headline-lead {
    font-size: clamp(1.28rem, 3.75vw, 1.85rem);
  }

  .hero__sub {
    font-size: var(--fs-base);
    color: #292929;
    font-weight: 600;
    margin-bottom: var(--space-md);
  }

  .hero__actions {
    margin-bottom: var(--space-md);
  }

  /* Štatistiky v jednom riadku – kratší hero */
  .hero__stats {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: var(--space-xs);
    padding-top: var(--space-sm);
  }

  .hero__stat {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
  }

  .hero__stat strong {
    font-size: clamp(1.1rem, 3.2vw, 1.35rem);
    line-height: 1.2;
  }

  .hero__stat span {
    display: block;
    font-size: 0.7rem;
    line-height: 1.25;
    hyphens: auto;
  }

  /* Kontakt – jedna kolumna */
  .contact__layout { grid-template-columns: 1fr; }

  /* Footer – 2 kolumny */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ----------------------------------------------------------------
   16. RESPONZIVITA – MOBIL (max 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Zobraz hamburger, skry menu */
  .navbar__hamburger { display: flex; }

  /* Menu – padajúce z navbaru */
  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 248, 245, .97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
  }
  .navbar__menu.open { display: flex; }

  .navbar__link {
    font-size: var(--fs-base);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
  }
  .navbar__link:hover { background: rgba(181,37,58,.06); }

  /* Sponzori – na mobile/tablet dva v riadku */
  .sponsors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Footer – jedna kolumna */
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }

  /* Footer bottom – centruj */
  .footer__bottom .container { justify-content: center; text-align: center; }

  /* Cenník – škála vypnutá */
  .price-card--featured { transform: scale(1); }
  .price-card--featured:hover { transform: translateY(-6px); }

  /* Hero CTA: dve menšie tlačidlá vedľa seba, nie cez celú šírku sekcie */
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    width: min(22rem, 100%);
    max-width: 100%;
  }

  .hero__actions .btn {
    justify-content: center;
    text-align: center;
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.28;
    padding: 0.4rem 0.55rem;
    border-radius: var(--radius-md);
    letter-spacing: 0.02em;
  }

  .hero__actions .btn--primary {
    padding: calc(0.4rem + 2px) calc(0.55rem + 2px);
  }

  /*
    „Zistiť viac“ – na úzkom stĺpci a fotke v pozadí musí mať „platňú“,
    inak tenký obrys a malé písmo splývajú s obrázkom.
  */
  .hero .btn--outline,
  .hero .btn--outline:link,
  .hero .btn--outline:visited {
    background: rgba(255, 255, 255, 0.94);
    color: var(--clr-red);
    border-color: var(--clr-red);
    box-shadow: 0 2px 14px rgba(30, 30, 30, 0.12), 0 0 0 1px rgba(181, 37, 58, 0.14);
  }

  .hero .btn--outline:hover,
  .hero .btn--outline:active {
    background: var(--clr-white);
    color: var(--clr-red);
    border-color: var(--clr-red);
    transform: none;
    filter: none;
    box-shadow: 0 3px 18px rgba(30, 30, 30, 0.16), 0 0 0 1px rgba(181, 37, 58, 0.22);
  }
}


/* ----------------------------------------------------------------
   17. MALÉ MOBILY (max 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {

  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .contact-form { padding: var(--space-md); }

  /* Workshopy / vzdelávanie pre pedagógov – dlhý text CTA, širší tlačidlo na malom mobile */
  .programs__edu-spotlight__cta.btn {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.38;
    padding-block: 1rem;
    padding-inline: var(--space-md);
    box-sizing: border-box;
  }

  .programs__edu-spotlight__cta.btn--primary {
    padding-block: calc(1rem + 2px);
    padding-inline: calc(var(--space-md) + 2px);
  }
}


/* ----------------------------------------------------------------
   18. MOBILNÝ HERO (max 600px) – vzdušnejšie texty
   ---------------------------------------------------------------- */
@media (max-width: 600px) {

  .hero__headline {
    margin-bottom: clamp(1.05rem, 4vw, 1.45rem);
  }

  .hero__headline-lead {
    line-height: 1.36;
  }

  .hero__tagline {
    line-height: 1.5;
    margin-bottom: clamp(1.05rem, 4vw, 1.4rem);
  }

  .hero__sub {
    line-height: 1.72;
    margin-bottom: var(--space-lg);
  }
}


/* ----------------------------------------------------------------
   19. VEĽMI ÚZKÉ MOBILY (do 380px) – vzdušnejší hero, väčšie medzery
   ---------------------------------------------------------------- */
@media (max-width: 380px) {

  .hero {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 0;
    /* Dostatok miesta pod fixným navbarom (logo je zväčšené) */
    padding-top: max(5.15rem, calc(env(safe-area-inset-top, 0px) + 4.75rem));
    padding-bottom: clamp(1.15rem, 5vw, 1.65rem);
    background-position: 68% 12%;
    background-size: cover;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
    min-height: 0;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--space-sm);
    padding-bottom: 0.25rem;
    position: relative;
    z-index: 2;
  }

  .hero__label {
    position: relative;
    z-index: 2;
    font-size: 0.64rem;
    letter-spacing: 0.055em;
    padding: 0.28rem 0.72rem;
    margin-bottom: 0.58rem;
    line-height: 1.28;
  }

  .hero__headline {
    margin-bottom: 1rem;
  }

  .hero__headline-lead {
    font-size: 1.32rem;
    line-height: 1.38;
  }

  .hero__tagline {
    font-size: 0.97rem;
    line-height: 1.48;
    margin-bottom: 1rem;
  }

  /* HTML <br> rozbíjajú úzky stĺpec — nech sa zalamuje prirodzene na plnej šírke */
  .hero__headline br {
    display: none;
  }

  .hero__sub {
    font-size: 0.94rem;
    line-height: 1.68;
    max-width: none;
    margin-bottom: 1.05rem;
    color: var(--clr-dark);
    font-weight: 600;
  }

  .hero__actions {
    margin-bottom: 0.82rem;
    gap: 0.48rem;
  }

  .hero__stats {
    padding-top: 0.9rem;
    gap: 0.32rem;
  }

  .hero__stat {
    padding-block: 0.12rem;
  }

  .hero__stat strong {
    font-size: 0.95rem;
  }

  .hero__stat span {
    font-size: 0.6rem;
    line-height: 1.28;
    margin-top: 0.2rem;
  }

  /* Menšie kruhy ďalej od textu – neprekrývajú hero__label */
  .hero__circle--1 {
    width: min(220px, 62vw);
    height: min(220px, 62vw);
    top: -28px;
    right: -72px;
    opacity: 0.5;
  }

  .hero__circle--2 {
    width: min(170px, 48vw);
    height: min(170px, 48vw);
    bottom: auto;
    top: 42%;
    left: -64px;
    opacity: 0.55;
  }

  .hero__circle--3 {
    width: min(120px, 38vw);
    height: min(120px, 38vw);
    top: 18%;
    left: 55%;
    opacity: 0.35;
  }
}


/* ----------------------------------------------------------------
   Podstránka – Ako pracujeme s deťmi
   ---------------------------------------------------------------- */
#praca-s-detmi {
  scroll-margin-top: 92px;
}

.work-page {
  padding-block: var(--space-2xl);
  padding-top: calc(var(--space-2xl) + var(--space-md));
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-white) 22%, var(--clr-white) 100%);
}

.work-page .section-header {
  margin-bottom: var(--space-2xl);
}

.work-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl) var(--space-lg);
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.work-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-cta);
  opacity: 0.9;
}

@media (min-width: 900px) {
  .work-story {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    align-items: center;
  }

  .work-story--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .work-story--reverse .work-story__content {
    order: 2;
  }

  .work-story--reverse .work-story__gallery {
    order: 1;
  }
}

.work-story__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--clr-dark);
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.work-story__text p {
  position: relative;
  padding-left: 1.35rem;
  color: #2a2a2a;
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 62ch;
}

.work-story__text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-red);
  box-shadow: 0 0 0 2px rgba(181, 37, 58, 0.15);
}

.work-story__text p:last-child {
  margin-bottom: 0;
}

.work-story__gallery {
  display: grid;
  gap: var(--space-sm);
  width: 100%;
}

.work-story__gallery--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

/* Väčší formát galérií (viac fotiek pod textom na celú šírku) */
.work-story--gallery-large .work-story__gallery {
  gap: var(--space-md);
}

.work-story--gallery-large .work-story__gallery .work-story__figure img {
  min-height: clamp(220px, 50vw, 320px);
}

@media (max-width: 639px) {
  .work-story--gallery-large .work-story__gallery--2,
  .work-story--gallery-large .work-story__gallery--3,
  .work-story--gallery-large .work-story__gallery--many {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .work-story--gallery-large .work-story__gallery--3,
  .work-story--gallery-large .work-story__gallery--many {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .work-story--gallery-large {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .work-story--gallery-large.work-story--reverse .work-story__content,
  .work-story--gallery-large.work-story--reverse .work-story__gallery,
  .work-story--gallery-large .work-story__content,
  .work-story--gallery-large .work-story__gallery {
    order: unset;
  }

  .work-story--gallery-large .work-story__gallery .work-story__figure img {
    min-height: 280px;
  }

  .work-story--gallery-large .work-story__gallery--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-story--gallery-large .work-story__gallery--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-story--gallery-large .work-story__gallery--many {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.work-story__gallery--3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-story__gallery--many {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-story__gallery--1 {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) {
  .work-story__gallery--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-story__gallery--many {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .work-story__gallery--many {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.work-story__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  line-height: 0;
}

.work-story__figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: center;
}

.work-story__gallery--1 .work-story__figure img {
  min-height: 220px;
}

.work-page__closing {
  margin: var(--space-xl) auto var(--space-2xl);
  padding: var(--space-xl) var(--space-lg);
  max-width: 40rem;
  text-align: center;
  border: none;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(181, 37, 58, 0.08) 0%, rgba(200, 109, 56, 0.1) 100%);
  border-left: 4px solid var(--clr-red);
}

.work-page__closing p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.55;
  color: var(--clr-dark);
  margin: 0;
}

.work-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}
