/* =====================================================
   Vrtić Kornjačica — stylesheet
   Inspired by "Kids - Day Care & Kindergarten" theme
   Palette derived from brand: turtle green, shell brown, pink "Kornjačica"
   ===================================================== */

:root {
  --green:      #7CC04E;   /* turtle body / primary CTA */
  --green-dark: #5FA237;
  --green-band: #8BC440;   /* enroll band */
  --red:        #E85472;   /* brand pink-red */
  --red-dark:   #C83E5B;
  --brown:      #9E6B3B;   /* shell outline */
  --brown-soft: #C78A4D;
  --yellow:     #F6C127;
  --blue:       #0078A2;
  --purple:     #65517A;   /* top strip + footer */
  --purple-dark:#4D3D5E;
  --cream:      #FBF7EE;
  --cream-soft: #F3EEE0;
  --ink:        #2E2438;   /* dark heading color */
  --body:       #5A5365;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== Reusable eyebrow label ====== */
.eyebrow {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}
.eyebrow--red    { color: var(--red); }
.eyebrow--white  { color: rgba(255,255,255,0.92); }
.eyebrow--center { text-align: center; }

.section-title {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 760px; }
.title-accent { color: var(--red); font-family: "Caveat", cursive; font-weight: 700; }
.title-giant  { font-size: 120px; color: var(--green); line-height: 1; display: inline-block; }

/* ====== Buttons ====== */
.btn {
  display: inline-block;
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn--white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
}
.btn--white:hover { transform: translateY(-2px); color: var(--red); }

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 0 var(--green-dark);
}
.btn--green:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: #fff; color: var(--ink); }

.btn--large { padding: 18px 36px; font-size: 18px; }

/* ====== Turtle decorative divider ====== */
.turtle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 30px;
  max-width: 620px;
}
.turtle-divider__line {
  flex: 1;
  height: 3px;
  border-top: 3px dashed var(--brown-soft);
  opacity: 0.6;
}
.turtle-divider__mark {
  width: 80px;
  height: 54px;
  flex-shrink: 0;
}
.turtle-divider__mark img { width: 100%; height: 100%; }

.turtle-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  width: 72px;
  height: 48px;
}

/* ====== Zigzag torn-paper divider (theme signature) ====== */
.zigzag {
  position: relative;
  width: 100%;
  height: 14px;
  pointer-events: none;
}
.zigzag::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background:
    linear-gradient(-45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%),
    linear-gradient(45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 0;
  background-repeat: repeat-x;
}
.zigzag--bottom { margin-top: -14px; }
.zigzag--top    { margin-bottom: -14px; }

/* white-teeth zigzag sitting on top of green band */
.zigzag--white::before {
  background:
    linear-gradient(-45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%),
    linear-gradient(45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%);
}

/* ====== Top strip ====== */
.top-strip {
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.top-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-strip__left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
}
.top-strip__item svg { opacity: 0.85; }
.top-strip__right .social {
  color: #fff;
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.top-strip__right .social:hover { opacity: 1; color: #fff; }

/* ====== Header ====== */
.site-header {
  background: #fff;
  position: relative;
  z-index: 10;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  gap: 24px;
}
.logo img {
  height: 72px;
  width: auto;
}

/* Burger button — hidden by default (shown on mobile via media query) */
.burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav ul { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.nav__link {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 18px;
  display: inline-block;
  position: relative;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--red); }
.nav__link--active {
  background: var(--green);
  color: #fff !important;
  border-radius: 6px 6px 0 0;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--green);
  transform: translateX(-50%);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #FFF9E8 0%, #FFE9A8 40%, #FFD166 100%);
  overflow: hidden;
}
.hero__sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__sky .cloud {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  opacity: 0.85;
}
.cloud--1 { width: 120px; height: 36px; top: 60px;  left: 8%;  }
.cloud--1::before, .cloud--1::after { content: ''; position: absolute; background: #fff; border-radius: 50%; }
.cloud--1::before { width: 50px; height: 50px; top: -22px; left: 18px; }
.cloud--1::after  { width: 36px; height: 36px; top: -16px; left: 60px; }

.cloud--2 { width: 90px;  height: 28px; top: 120px; right: 14%; }
.cloud--2::before, .cloud--2::after { content: ''; position: absolute; background: #fff; border-radius: 50%; }
.cloud--2::before { width: 40px; height: 40px; top: -18px; left: 12px; }
.cloud--2::after  { width: 28px; height: 28px; top: -12px; left: 48px; }

.cloud--3 { width: 70px;  height: 22px; top: 220px; left: 20%; opacity: 0.7; }
.cloud--3::before { content: ''; position: absolute; background: #fff; border-radius: 50%; width: 30px; height: 30px; top: -14px; left: 10px; }

.sun {
  position: absolute;
  top: 40px;
  right: 6%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #FFD166 0%, #FFB703 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 183, 3, 0.4);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  z-index: 2;
}
.hero__eyebrow {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.hero__title {
  font-size: 88px;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(255,255,255,0.4);
}
.hero__title--accent {
  color: var(--red);
  font-size: 110px;
}
.hero__sub {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__mascot-img {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}


/* white zigzag at the bottom of hero, so white cuts into yellow */
.zigzag--hero-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}

/* ====== Features strip ====== */
.features {
  background: #ffffff;
  padding: 70px 0;
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(232, 84, 114, 0.08) 1.5px, transparent 1.5px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature__icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 0 rgba(0,0,0,0.08);
  color: #fff;
}
.feature__icon--green  { background: var(--green); }
.feature__icon--red    { background: var(--red); }
.feature__icon--blue   { background: var(--blue); }
.feature__icon--yellow { background: var(--yellow); }
.feature__num {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-size: 44px;
  color: #fff;
  line-height: 1;
}
.feature__title {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature__text { font-size: 15px; line-height: 1.6; }

/* ====== Welcome ====== */
.welcome {
  padding: 100px 0;
  background: #fff;
}
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome__art-placeholder {
  background: radial-gradient(circle at 50% 55%, #FFF9E8 0%, #FFE9A8 60%, #FDD77A 100%);
  border-radius: 24px;
  padding: 40px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Welcome section real photo */
.welcome__photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(46, 36, 56, 0.18);
  transform: rotate(-1.5deg);
  background: #fff;
  padding: 14px 14px 60px;
}
.welcome__photo img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
}
.welcome__photo-caption {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Caveat', 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--brown);
}
.welcome__art-placeholder::before,
.welcome__art-placeholder::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
}
.welcome__art-placeholder::before { width: 80px; height: 80px; top: 10%; left: 12%; }
.welcome__art-placeholder::after  { width: 50px; height: 50px; bottom: 18%; right: 10%; }
.welcome__art-placeholder img {
  max-width: 320px;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.15));
  position: relative;
  z-index: 2;
}
.welcome__lead {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 700;
}
.welcome__copy p { margin-bottom: 16px; }
.welcome__copy .btn { margin-top: 12px; }

/* ====== Green band ====== */
.band {
  position: relative;
  padding: 70px 0;
}
.band--green {
  background: var(--green-band);
  color: #fff;
}
.band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.band__title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.band__text {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  max-width: 620px;
}

/* ====== Tradition ====== */
.tradition {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(246, 193, 39, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
}
.tradition__inner { max-width: 820px; margin: 0 auto; }
.tradition__lead {
  font-size: 19px;
  color: var(--ink);
  margin: 20px 0 30px;
}
.tradition__quote {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: var(--brown);
  padding: 0 0 30px;
  margin: 0 auto 30px;
  max-width: 640px;
  font-style: italic;
}

/* ====== Programs ====== */
.programs { padding: 100px 0; background: #fff; }
.programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.program-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  border-top: 6px solid transparent;
  box-shadow: 0 6px 20px rgba(46, 36, 56, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(46, 36, 56, 0.12); }
.program-card--red    { border-top-color: var(--red); }
.program-card--blue   { border-top-color: var(--blue); }
.program-card--yellow { border-top-color: var(--yellow); }
.program-card--purple { border-top-color: var(--purple); }

.program-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.program-card--red    .program-card__icon { background: var(--red); }
.program-card--blue   .program-card__icon { background: var(--blue); }
.program-card--yellow .program-card__icon { background: var(--yellow); }
.program-card--purple .program-card__icon { background: var(--purple); }

.program-card__title {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.program-card p { font-size: 15px; line-height: 1.6; }

/* ====== Photo strip ====== */
.photo-strip { padding: 90px 0; background: var(--cream);
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(232, 84, 114, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
}
.photo-strip__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.photo-strip__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 20px rgba(46, 36, 56, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}
.photo-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(46, 36, 56, 0.16);
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== Contact CTA with rainbow ====== */
.contact-cta {
  position: relative;
  padding: 90px 0 90px;
  background: linear-gradient(180deg, #5DC1DB 0%, #3FA7C4 100%);
  color: #fff;
  overflow: hidden;
}
.contact-cta__inner { position: relative; z-index: 3; text-align: center; }
.contact-cta__title {
  font-size: 52px;
  color: #fff;
  margin-bottom: 20px;
}
.contact-cta__text {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 30px;
}
.contact-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.rainbow {
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 320px;
  height: 160px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.rainbow--right {
  left: auto;
  right: -60px;
  transform: scaleX(-1);
}
.rainbow__arc {
  position: absolute;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-style: solid;
  border-bottom: none;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.rainbow__arc--1 { width: 320px; height: 160px; border-width: 20px 20px 0 20px; border-color: var(--red); }
.rainbow__arc--2 { width: 280px; height: 140px; border-width: 20px 20px 0 20px; border-color: var(--yellow); }
.rainbow__arc--3 { width: 240px; height: 120px; border-width: 20px 20px 0 20px; border-color: var(--green); }
.rainbow__arc--4 { width: 200px; height: 100px; border-width: 20px 20px 0 20px; border-color: var(--purple); }

/* ====== Footer ====== */
.footer {
  background: var(--purple);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo {
  width: 150px;
  margin-bottom: 14px;
}
.footer__tag {
  font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
}
.footer__heading {
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--yellow); }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 8px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* =====================================================
   O NAMA PAGE STYLES
   ===================================================== */

/* ====== Page banner ====== */
.page-banner {
  position: relative;
  padding: 80px 0 120px;
  background: linear-gradient(180deg, #FFF9E8 0%, #FFE9A8 50%, #FDD77A 100%);
  text-align: center;
  overflow: hidden;
}
.page-banner__sky { position: absolute; inset: 0; pointer-events: none; }
.page-banner__sky .cloud--1 { top: 40px; left: 8%; }
.page-banner__sky .cloud--2 { top: 80px; right: 10%; }

.page-banner__inner { position: relative; z-index: 2; }
.page-banner__title {
  font-size: 80px;
  color: var(--ink);
  margin-bottom: 14px;
}
.page-banner__sub {
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.eyebrow--brown { color: var(--brown); }

.breadcrumb {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
}
.breadcrumb a { color: var(--green-dark); }
.breadcrumb span[aria-hidden] { margin: 0 8px; color: var(--brown-soft); }

/* ====== Real photo card (story / approach sections) ====== */
.photo-card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(46, 36, 56, 0.16);
  background: #fff;
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.photo-card--tall img { min-height: 520px; }

/* ====== Photo placeholder ====== */
.photo-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(232, 84, 114, 0.08) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #FBE9ED 0%, #F4D2D8 100%);
  border-radius: 20px;
  border: 3px dashed rgba(232, 84, 114, 0.35);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-dark);
  position: relative;
}
.photo-placeholder--tall { min-height: 520px; }
.photo-placeholder__label {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.75);
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--red);
}

/* ====== Story section ====== */
.story { padding: 100px 0; background: #fff; }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.story__lead {
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 18px;
}
.story__copy p { margin-bottom: 16px; }

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding: 28px;
  background: var(--cream);
  border-radius: 16px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
}

/* ====== Values ====== */
.values { padding: 100px 0; background: var(--cream);
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(232, 84, 114, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
}
.values__lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 17px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 24px rgba(46, 36, 56, 0.08);
  position: relative;
  border-left: 6px solid transparent;
}
.value-card--green  { border-left-color: var(--green); }
.value-card--red    { border-left-color: var(--red); }
.value-card--yellow { border-left-color: var(--yellow); }
.value-card--blue   { border-left-color: var(--blue); }

.value-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-card--green  .value-card__icon { background: var(--green); }
.value-card--red    .value-card__icon { background: var(--red); }
.value-card--yellow .value-card__icon { background: var(--yellow); }
.value-card--blue   .value-card__icon { background: var(--blue); }

.value-card__title {
  font-size: 26px;
  margin-bottom: 10px;
}
.value-card p { font-size: 16px; }

/* ====== Day timeline ====== */
.day { padding: 100px 0; background: #fff; }
.day__lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 17px;
}
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: repeating-linear-gradient(180deg, var(--brown-soft) 0 6px, transparent 6px 12px);
  opacity: 0.6;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 20px 0 20px 28px;
  align-items: flex-start;
}
.tl-item__dot {
  position: absolute;
  left: -22px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--brown-soft);
}
.tl-item__time {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brown);
  letter-spacing: 0.5px;
  padding-top: 4px;
}
.tl-item__content h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.tl-item__content p { font-size: 16px; }

/* ====== Approach ====== */
.approach { padding: 100px 0; background: var(--cream); }
.approach__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.approach__list {
  list-style: none;
  margin-top: 18px;
}
.approach__list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px dashed var(--brown-soft);
}
.approach__list li:last-child { border-bottom: none; }
.approach__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--green);
}

/* ====== Gallery ====== */
.gallery { padding: 100px 0; background: #fff; }
.gallery__lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.gallery__tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin: 0;
  box-shadow: 0 6px 16px rgba(46, 36, 56, 0.10);
}
.gallery__tile:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(46, 36, 56, 0.16); }
.gallery__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 1;
}

/* ====== Team teaser ====== */
.team-teaser {
  padding: 100px 0;
  background: linear-gradient(180deg, #65517A 0%, #4D3D5E 100%);
  color: #fff;
  text-align: center;
}
.team-teaser__inner { max-width: 760px; margin: 0 auto; }
.team-teaser__title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}
.team-teaser__text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

/* ====== Final CTA ====== */
.final-cta {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.final-cta__inner { max-width: 780px; margin: 0 auto; }
.final-cta__text {
  font-size: 18px;
  margin: 0 auto 30px;
  max-width: 600px;
}
.final-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== Responsive ====== */
/* =====================================================
   O OSNIVAČU PAGE STYLES
   ===================================================== */

/* Portrait + intro */
.founder-intro { padding: 100px 0; background: #fff; }
.founder-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.founder-intro__photo {
  position: relative;
}
.photo-placeholder--portrait {
  min-height: 580px;
  border-radius: 24px;
}

/* Branded founder-portrait interim card (pending real photo) */
.founder-portrait-card {
  margin: 0;
  border-radius: 24px;
  min-height: 580px;
  background:
    radial-gradient(circle at 30% 25%, #FFF9E8 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, #FDE4B0 0%, transparent 55%),
    linear-gradient(160deg, #FFE9A8 0%, #F9D77D 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(46, 36, 56, 0.14);
}
.founder-portrait-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(232, 84, 114, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
  opacity: 0.85;
  pointer-events: none;
}
.founder-portrait-card__mark {
  width: 78%;
  max-width: 340px;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.10));
  position: relative;
  z-index: 1;
}
.founder-portrait-card__note {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Caveat', 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--brown);
  z-index: 1;
}
.founder-intro__stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  transform: rotate(-6deg);
  border: 5px solid #fff;
}
.founder-intro__stamp-year {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
}
.founder-intro__stamp-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
  padding: 0 12px;
}
.founder-name {
  color: var(--red);
}
.founder-intro__role {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
}
.founder-intro__lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 18px;
}
.founder-intro__copy p { margin-bottom: 14px; }

/* Pull quote */
.pull-quote {
  padding: 70px 0;
  background: var(--cream);
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(232, 84, 114, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
}
.pull-quote__wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.pull-quote__mark {
  color: var(--red);
  opacity: 0.22;
  margin-bottom: -24px;
}
.pull-quote__text {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 20px;
}
.pull-quote__sign {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
}

/* Journey chapters */
.journey { padding: 100px 0; background: #fff; }
.journey__chapters {
  max-width: 880px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.chapter {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 30px;
  background: var(--cream);
  border-radius: 20px;
  border-left: 8px solid var(--green);
  align-items: start;
}
.chapter--alt { border-left-color: var(--red); }
.chapter__year {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--green);
}
.chapter--alt .chapter__year { color: var(--red); }
.chapter__body h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.chapter__body p { font-size: 16px; line-height: 1.7; }

/* Letter */
.letter {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFF9E8 0%, #FFF3D0 100%);
  position: relative;
}
.letter__paper {
  max-width: 820px;
  margin: 0 auto;
  background: #FFFDF5;
  border-radius: 4px;
  padding: 70px 80px;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.04),
    0 24px 48px rgba(46, 36, 56, 0.15);
  position: relative;
  border: 1px solid rgba(158, 107, 59, 0.15);
}
.letter__paper::before,
.letter__paper::after {
  content: '';
  position: absolute;
  top: -12px;
  width: 80px;
  height: 24px;
  background: rgba(246, 193, 39, 0.55);
  transform: rotate(-3deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.letter__paper::before { left: 40px; }
.letter__paper::after { right: 40px; transform: rotate(3deg); }
.letter__header { margin-bottom: 30px; }
.letter__title {
  font-size: 32px;
  margin-top: 6px;
  color: var(--ink);
}
.letter__body p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--ink);
}
.letter__sign {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed var(--brown-soft);
}
.letter__sign-text {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 4px;
}
.letter__signature {
  font-family: 'Caveat', 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 44px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.letter__signature .founder-name { color: var(--red); }
.letter__sign-role {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
}

/* Why still / three reasons */
.why-still {
  padding: 100px 0;
  background: linear-gradient(180deg, #4D3D5E 0%, #65517A 100%);
  color: #fff;
}
.why-still__grid {
  max-width: 900px;
  margin: 0 auto;
}
.why-still__title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
}
.why-still__lead {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}
.why-still__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-still__point {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
}
.why-still__point-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.why-still__point h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.why-still__point p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* Legacy stats */
.legacy { padding: 100px 0; background: var(--cream);
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(246, 193, 39, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
  text-align: center;
}
.legacy__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px auto 30px;
  max-width: 1000px;
}
.legacy-stat {
  background: #fff;
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: 0 6px 16px rgba(46, 36, 56, 0.08);
  border-top: 6px solid var(--green);
}
.legacy-stat:nth-child(2) { border-top-color: var(--red); }
.legacy-stat:nth-child(3) { border-top-color: var(--yellow); }
.legacy-stat:nth-child(4) { border-top-color: var(--blue); }

.legacy-stat__num {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.legacy-stat__label {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brown);
}
.legacy__note {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink);
  font-style: italic;
}

/* =====================================================
   KONTAKT PAGE STYLES
   ===================================================== */

/* Contact cards */
.contact-cards { padding: 80px 0; background: #fff; }
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(46, 36, 56, 0.08);
  border-top: 6px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  color: inherit;
}
a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(46, 36, 56, 0.14);
  color: inherit;
}
.contact-card--green  { border-top-color: var(--green); }
.contact-card--red    { border-top-color: var(--red); }
.contact-card--purple { border-top-color: var(--purple); }

.contact-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
}
.contact-card--green  .contact-card__icon { background: var(--green); }
.contact-card--red    .contact-card__icon { background: var(--red); }
.contact-card--purple .contact-card__icon { background: var(--purple); }

.contact-card__eyebrow {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.contact-card__value {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-card__note {
  font-size: 14px;
  color: var(--body);
}

/* Map + directions */
.map-section { padding: 80px 0; background: var(--cream); }
.map-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.map-section__lead {
  font-size: 17px;
  margin-bottom: 24px;
}
.map-section__tips {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.map-tip {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--brown-soft);
}
.map-tip:last-child { border-bottom: none; }
.map-tip svg { margin-top: 2px; }

.map-section__map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(46, 36, 56, 0.15);
  aspect-ratio: 4 / 3;
  background: #e5e5e5;
}
.map-section__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Contact form */
.form-section {
  padding: 90px 0;
  background: #fff;
}
.form-section__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(46, 36, 56, 0.06);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: block;
  margin-bottom: 18px;
}
.field__label {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 6px;
}
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(158, 107, 59, 0.18);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(124, 192, 78, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  margin-bottom: 22px;
}
.field--check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green); }

.contact-form .btn { width: 100%; }
.contact-form__note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--body);
  font-style: italic;
}

/* Hours */
.hours {
  padding: 90px 0;
  background: linear-gradient(180deg, #65517A 0%, #4D3D5E 100%);
  color: #fff;
}
.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hours__title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}
.hours__title-accent { color: var(--yellow); }
.hours__text {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
}
.hours__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.hours__table {
  width: 100%;
  border-collapse: collapse;
}
.hours__table th,
.hours__table td {
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px dashed var(--brown-soft);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.hours__table td {
  text-align: right;
  color: var(--green-dark);
}
.hours__table tr:last-child th,
.hours__table tr:last-child td { border-bottom: none; }
.hours__table-closed td {
  color: var(--brown-soft);
  font-style: italic;
}
.hours__note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(124, 192, 78, 0.12);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  border-left: 4px solid var(--green);
}

/* FAQ */
.faq { padding: 90px 0; background: var(--cream);
  background-image:
    radial-gradient(rgba(126, 192, 78, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(232, 84, 114, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
}
.faq__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 4px 0;
  box-shadow: 0 4px 12px rgba(46, 36, 56, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: 0 8px 20px rgba(46, 36, 56, 0.10); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--red);
}
.faq-item p {
  padding: 0 28px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .hero__inner,
  .welcome__grid,
  .story__grid,
  .approach__grid,
  .band__inner { grid-template-columns: 1fr; text-align: center; }
  .story__lead { text-align: center; }
  .approach__list li { text-align: left; }
  .values__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .page-banner__title { font-size: 60px; }
  .tl-item { grid-template-columns: 110px 1fr; gap: 14px; }
  .team-teaser__title { font-size: 30px; }
  .hero__title { font-size: 64px; }
  .hero__title--accent { font-size: 80px; }
  .hero__mascot-img { width: 280px; }
  .hero__ctas { justify-content: center; }
  .welcome__art-placeholder { min-height: 320px; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner  { grid-template-columns: repeat(2, 1fr); }
  .welcome__photo img { height: 360px; }
  .section-title  { font-size: 36px; }
  .title-giant    { font-size: 90px; }
  .contact-cta__title { font-size: 38px; }

  /* O osnivaču */
  .founder-intro__grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .founder-intro__lead { text-align: center; }
  .founder-intro__copy p { text-align: center; }
  .photo-placeholder--portrait { min-height: 460px; }
  .founder-intro__stamp { right: 50%; transform: translateX(50%) rotate(-6deg); bottom: -30px; }
  .chapter { grid-template-columns: 120px 1fr; gap: 24px; padding: 24px; }
  .chapter__year { font-size: 36px; }
  .letter__paper { padding: 50px 40px; }
  .letter__title { font-size: 26px; }
  .why-still__title { font-size: 32px; }
  .legacy__stats { grid-template-columns: repeat(2, 1fr); }

  /* Kontakt */
  .contact-cards__grid { grid-template-columns: 1fr; }
  .map-section__grid  { grid-template-columns: 1fr; gap: 40px; }
  .map-section__map   { aspect-ratio: 16 / 12; }
  .hours__grid        { grid-template-columns: 1fr; gap: 30px; }
  .hours__title       { font-size: 28px; }
}

/* ====== Mobile burger nav (below 820px) ====== */
@media (max-width: 820px) {
  .site-header__inner {
    padding: 16px 20px;
    gap: 16px;
    position: relative;
  }
  .logo { flex-shrink: 0; }
  .logo img { height: 64px; max-width: 100%; display: block; }

  .burger { display: flex; }

  /* collapse nav into slide-down drawer */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(46, 36, 56, 0.12);
    border-top: 1px solid rgba(46,36,56,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 20;
  }
  body.nav-open .nav {
    max-height: 500px;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
  }
  .nav li { width: 100%; }
  .nav__link {
    display: block;
    padding: 14px 12px;
    font-size: 16px;
    border-bottom: 1px dashed rgba(46,36,56,0.12);
  }
  .nav li:last-child .nav__link { border-bottom: none; }

  .nav__link--active {
    border-radius: 8px;
    border-bottom: none;
  }
  .nav__link--active::after { display: none; }
}

/* ====== Small mobile (below 600px) ====== */
@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .site-header__inner { padding: 14px 18px; gap: 12px; }
  .logo img { height: 58px; }

  .features__grid,
  .programs__grid,
  .footer__inner { grid-template-columns: 1fr; }
  .footer__col--brand { text-align: center; }
  .footer__logo { margin-left: auto; margin-right: auto; }

  .hero { padding: 40px 0 60px; }
  .hero__title { font-size: 44px; }
  .hero__title--accent { font-size: 54px; }
  .hero__sub { font-size: 16px; }
  .hero__eyebrow { font-size: 13px; letter-spacing: 2px; }
  .hero__mascot-img { width: 220px; }

  .sun { width: 64px; height: 64px; top: 20px; right: 4%; }
  .cloud--1 { top: 30px; left: 4%; transform: scale(0.7); transform-origin: left top; }
  .cloud--2 { top: 70px; right: 6%; transform: scale(0.7); transform-origin: right top; }
  .cloud--3 { display: none; }

  /* Top strip — hide address label on tiny screens, keep phone + social */
  .top-strip { padding: 8px 0; font-size: 12px; }
  .top-strip__inner { justify-content: space-between; }
  .top-strip__left { gap: 12px; flex-wrap: nowrap; overflow: hidden; }
  .top-strip__item { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .top-strip__item:first-child { display: none; } /* hide address */

  .section-title { font-size: 28px; }
  .title-giant   { font-size: 72px; }
  .page-banner { padding: 50px 0 70px; }
  .page-banner__title { font-size: 44px; }

  .band { padding: 50px 0; }
  .band__title { font-size: 26px; }

  .values { padding: 70px 0; }
  .value-card { padding: 28px 22px; }
  .value-card__title { font-size: 22px; }

  .story { padding: 70px 0; }
  .story__stats { grid-template-columns: 1fr; padding: 18px; gap: 14px; }
  .stat__num { font-size: 36px; }

  .day { padding: 70px 0; }
  .timeline { padding-left: 32px; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 1fr; gap: 4px; padding: 14px 0 14px 24px; }
  .tl-item__dot { left: -21px; top: 20px; }
  .tl-item__time { font-size: 14px; }
  .tl-item__content h3 { font-size: 19px; }

  .approach { padding: 70px 0; }
  .gallery { padding: 70px 0; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }

  .welcome { padding: 70px 0; }
  .welcome__art-placeholder { min-height: 260px; padding: 24px; }
  .welcome__art-placeholder img { max-width: 200px; }
  .welcome__photo { transform: none; padding: 10px 10px 44px; }
  .welcome__photo img { height: 280px; }
  .welcome__photo-caption { font-size: 18px; bottom: 10px; }

  .photo-strip { padding: 60px 0; }
  .photo-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .tradition { padding: 70px 0; }
  .programs { padding: 70px 0; }
  .program-card { padding: 24px 20px; }
  .program-card__icon { margin-left: auto; margin-right: auto; }
  .program-card__title { text-align: center; }
  .program-card .group-card__age { text-align: center; }
  .program-card p { text-align: center; }

  /* Contact CTA — hide rainbows, they overlap content on mobile */
  .contact-cta { padding: 60px 0 70px; }
  .contact-cta__title { font-size: 28px; }
  .contact-cta__text { font-size: 16px; }
  .rainbow { display: none; }
  .contact-cta__buttons .btn { width: 100%; }

  .team-teaser { padding: 70px 0; }
  .team-teaser__title { font-size: 24px; }

  .final-cta { padding: 70px 0; }
  .final-cta__text { font-size: 16px; }
  .final-cta__buttons .btn { width: 100%; }

  .btn--large { padding: 14px 20px; font-size: 15px; }

  /* O osnivaču — small mobile */
  .founder-intro { padding: 70px 0; }
  .founder-intro__grid { gap: 40px; }
  .photo-placeholder--portrait { min-height: 380px; }
  .founder-intro__stamp { width: 110px; height: 110px; bottom: -20px; border-width: 4px; }
  .founder-intro__stamp-year { font-size: 30px; }
  .founder-intro__stamp-label { font-size: 10px; padding: 0 8px; }
  .founder-intro__lead { font-size: 18px; }

  .pull-quote { padding: 60px 0; }
  .pull-quote__text { font-size: 22px; line-height: 1.4; }
  .pull-quote__mark { width: 56px; height: 44px; }

  .journey { padding: 70px 0; }
  .chapter { grid-template-columns: 1fr; gap: 12px; padding: 22px; border-left-width: 6px; }
  .chapter__year { font-size: 32px; }
  .chapter__body h3 { font-size: 22px; }

  .letter { padding: 60px 0; }
  .letter__paper { padding: 40px 24px; border-radius: 6px; }
  .letter__paper::before,
  .letter__paper::after { width: 50px; height: 18px; }
  .letter__paper::before { left: 24px; }
  .letter__paper::after { right: 24px; }
  .letter__title { font-size: 22px; }
  .letter__body p { font-size: 16px; line-height: 1.7; }
  .letter__signature { font-size: 34px; }

  .why-still { padding: 70px 0; }
  .why-still__title { font-size: 26px; }
  .why-still__lead { font-size: 16px; }
  .why-still__point { grid-template-columns: 56px 1fr; gap: 14px; }
  .why-still__point-num { font-size: 40px; }
  .why-still__point h3 { font-size: 20px; }

  .legacy { padding: 70px 0; }
  .legacy__stats { grid-template-columns: 1fr; gap: 14px; }
  .legacy-stat { padding: 24px 18px; }
  .legacy-stat__num { font-size: 40px; }

  /* Kontakt — small mobile */
  .contact-cards { padding: 60px 0; }
  .contact-card { padding: 28px 22px; }
  .map-section { padding: 60px 0; }
  .map-tip { grid-template-columns: 24px 1fr; gap: 10px; font-size: 14px; }
  .form-section { padding: 60px 0; }
  .contact-form { padding: 26px 20px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .hours { padding: 60px 0; }
  .hours__card { padding: 22px; }
  .hours__table th, .hours__table td { font-size: 15px; padding: 10px 0; }
  .faq { padding: 60px 0; }
  .faq-item summary { padding: 18px 20px; font-size: 16px; }
  .faq-item p { padding: 0 20px 18px; font-size: 15px; }
}

.program-card--green   { border-top-color: var(--green); }
.program-card--skyblue { border-top-color: #91D1E7; }
.program-card--green   .program-card__icon { background: var(--green); }
.program-card--skyblue .program-card__icon { background: #91D1E7; }

/* Location strip on O nama */
.location-strip { padding: 80px 0; background: #fff; }
.location-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.location-strip__copy h2 { margin-bottom: 16px; }
.location-strip__copy p { font-size: 17px; color: var(--ink-soft); margin-bottom: 24px; }
.location-strip__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(46, 36, 56, 0.15);
  aspect-ratio: 4 / 3;
  background: #e5e5e5;
}
.location-strip__map iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 860px) {
  .location-strip__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Standalone map strip on Kontakt */
.map-strip { padding: 0 0 80px; background: #fff; }
.map-strip__frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(46, 36, 56, 0.15);
  aspect-ratio: 16 / 7;
  background: #e5e5e5;
}
.map-strip__frame iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 860px) {
  .map-strip__frame { aspect-ratio: 4 / 3; }
}
