:root {
  --green: #329d20;
  --green-dark: #216f18;
  --green-soft: #e8f6e3;
  --yellow: #ffd326;
  --yellow-soft: #fff7bf;
  --orange: #ff7a2f;
  --cream: #fffdf7;
  --ink: #242622;
  --muted: #64685f;
  --white: #ffffff;
  --line: #eeeade;
  --shadow: 0 14px 36px rgba(57, 72, 37, 0.12);
  --shadow-soft: 0 8px 24px rgba(57, 72, 37, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 86px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.announcement {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 5px 20px;
  color: #423400;
  background: linear-gradient(90deg, #ffe437, #ffcf1c 56%, #ffe437);
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.announcement a { border-bottom: 1px solid currentColor; font-size: .77rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(231, 232, 226, .85);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(37, 65, 27, .1); }

.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }

.brand-sun {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f68b19;
  background: #fff2a1;
  box-shadow: 0 0 0 7px rgba(255, 211, 38, .22);
  transform: rotate(-8deg);
}
.brand-sun span { font-size: 2.3rem; line-height: 1; }

.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { color: var(--green-dark); font-size: 1.22rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--ink); font: 700 .7rem Arial, sans-serif; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.main-nav a, .footer-nav a { position: relative; font: 700 .83rem Arial, sans-serif; }
.main-nav a::after, .footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: right .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after, .footer-nav a:hover::after { right: 0; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, #3aac23, #2b8b1c);
  box-shadow: 0 8px 18px rgba(47, 157, 31, .24);
  font-weight: 900;
  line-height: 1.1;
  transition: transform .25s var(--ease), box-shadow .25s ease, filter .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(47, 157, 31, .3); filter: saturate(1.06); }
.button:active { transform: translateY(-1px); }
.button:focus-visible, .menu-toggle:focus-visible, .slider-controls button:focus-visible, input:focus-visible, .to-top:focus-visible { outline: 3px solid rgba(255, 178, 0, .55); outline-offset: 3px; }

.button-small { min-height: 44px; padding: 12px 18px; font-size: .82rem; white-space: nowrap; }
.button-yellow { color: #3c3300; background: linear-gradient(135deg, #ffe149, #ffc916); box-shadow: 0 8px 18px rgba(242, 178, 0, .2); }
.button-yellow:hover { box-shadow: 0 12px 24px rgba(242, 178, 0, .28); }

.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px 10px; border: 0; border-radius: 13px; background: var(--green-soft); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 5px; background: var(--green-dark); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 660px; background: #f8f3df; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; background: url("assets/hero-kindergarten.png") center / cover no-repeat; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 254, 246, 1) 0%, rgba(255, 254, 246, .98) 24%, rgba(255, 254, 246, .75) 42%, rgba(255,255,255,.06) 65%);
}

.hero-inner { min-height: 575px; display: flex; align-items: center; }
.hero-copy { width: min(570px, 53%); padding: 60px 0 92px; }

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--green-dark);
  font: 900 .78rem Arial, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero h1, .section-heading h2, .excursion-copy h2, .contacts-copy h2 { margin: 0; letter-spacing: -.045em; line-height: 1.08; }
.hero h1 { max-width: 620px; font-size: clamp(2.55rem, 4.45vw, 4.25rem); }
.hero h1 span { color: var(--green); }
.hero-copy > p { max-width: 500px; margin: 23px 0 28px; color: #484c45; font: 600 1.04rem/1.7 Arial, sans-serif; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-facts {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
}
.fact-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(238, 234, 222, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}
.fact-icon { width: 52px; height: 52px; display: grid; flex: 0 0 52px; place-items: center; border-radius: 50%; background: var(--green-soft); font-size: 1.6rem; }
.fact-icon-yellow { background: var(--yellow-soft); }
.fact-card span:last-child { display: flex; flex-direction: column; }
.fact-card strong { font-size: .94rem; line-height: 1.2; }
.fact-card small { margin-top: 5px; color: var(--muted); font: 600 .74rem Arial, sans-serif; }

.section { position: relative; padding: 92px 0; }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .excursion-copy h2, .contacts-copy h2 { font-size: clamp(2rem, 3.25vw, 3.1rem); }
.section-heading h2::after { content: " 🍃"; display: inline; color: var(--green); font-size: .55em; vertical-align: 20%; }
.section-heading p { max-width: 660px; margin: 14px auto 0; color: var(--muted); font: 500 .98rem/1.65 Arial, sans-serif; }

.benefits-section { background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.benefit-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 6px 20px rgba(55, 66, 42, .07);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.benefit-card:hover { transform: translateY(-7px); border-color: #d9eacc; box-shadow: var(--shadow); }
.benefit-icon { width: 68px; height: 68px; display: grid; flex: 0 0 68px; place-items: center; border-radius: 50%; font-size: 2rem; }
.benefit-icon.green { background: var(--green-soft); }
.benefit-icon.yellow { background: var(--yellow-soft); }
.benefit-icon.orange { background: #ffebdd; }
.benefit-card h3 { margin: 0 0 7px; font-size: 1rem; line-height: 1.2; }
.benefit-card p { margin: 0; color: var(--muted); font: 500 .81rem/1.55 Arial, sans-serif; }

.decor { position: absolute; opacity: .75; pointer-events: none; }
.decor-star { color: var(--yellow); font-size: 1.8rem; transform: rotate(17deg); }
.decor-leaf { color: #68b73a; font-size: 1.4rem; transform: rotate(35deg); }
.decor-one { top: 100px; right: 5vw; }
.decor-two { bottom: 70px; left: 4vw; }

.day-section { overflow: hidden; background: linear-gradient(180deg, #fff7b7 0%, #fff2a3 100%); }
.day-section::before, .day-section::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.day-section::before { left: -80px; bottom: -80px; }
.day-section::after { right: -60px; top: 20px; }
.day-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.day-grid::before { content: ""; position: absolute; left: 11%; right: 11%; top: -14px; border-top: 2px dashed rgba(47, 157, 31, .35); }
.day-card { position: relative; overflow: visible; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s ease; }
.day-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow); }
.day-number { position: absolute; z-index: 2; top: -24px; left: 50%; width: 38px; height: 38px; display: grid; place-items: center; border: 4px solid #fff4af; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 5px 12px rgba(47, 157, 31, .25); font-weight: 900; transform: translateX(-50%); }
.day-image { aspect-ratio: 1.28 / 1; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background-image: url("assets/day-collage.png"); background-size: 400% auto; background-repeat: no-repeat; background-position-y: center; }
.day-image-1 { background-position-x: 0; }
.day-image-2 { background-position-x: 33.333%; }
.day-image-3 { background-position-x: 66.666%; }
.day-image-4 { background-position-x: 100%; }
.day-content { padding: 20px 20px 24px; text-align: center; }
.day-content > span { color: var(--green); font: 800 .72rem Arial, sans-serif; letter-spacing: .06em; }
.day-content h3 { margin: 6px 0 8px; font-size: 1.02rem; }
.day-content p { margin: 0; color: var(--muted); font: 500 .79rem/1.5 Arial, sans-serif; }

.cloud { position: absolute; width: 115px; height: 35px; border-radius: 40px; background: rgba(255,255,255,.9); }
.cloud::before, .cloud::after { content: ""; position: absolute; bottom: 8px; border-radius: 50%; background: inherit; }
.cloud::before { left: 18px; width: 50px; height: 50px; }
.cloud::after { right: 18px; width: 62px; height: 62px; }
.cloud-left { left: -18px; top: 120px; }
.cloud-right { right: -18px; top: 180px; transform: scale(.8); }

.prices-section { background: #fff; }
.main-price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid #dfeccf;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f5fbe9 0%, #e8f6db 100%);
  box-shadow: var(--shadow);
}
.main-price-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: -100px; top: -130px; border-radius: 50%; background: rgba(255, 211, 38, .32); }
.main-price-copy { padding: 44px 50px; }
.price-badge { display: inline-flex; margin-bottom: 15px; padding: 7px 12px; border-radius: 999px; color: #6a4e00; background: var(--yellow); font: 900 .72rem Arial, sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.main-price-copy h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.16; }
.main-price-copy > p { margin: 10px 0 23px; color: var(--muted); font: 600 .92rem Arial, sans-serif; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 20px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; font: 600 .84rem/1.4 Arial, sans-serif; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .7rem; font-weight: 900; }
.main-price-value { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 42px; color: white; background: linear-gradient(145deg, #3fac27, #2a861d); text-align: center; }
.main-price-value > span { font: 700 .78rem Arial, sans-serif; opacity: .9; }
.main-price-value strong { margin-top: 10px; font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.main-price-value small { margin: 8px 0 24px; font: 600 .85rem Arial, sans-serif; opacity: .85; }
.main-price-value .button { width: 100%; color: #3e3300; background: var(--yellow); box-shadow: none; }

.extras-heading { margin-bottom: 22px; text-align: center; }
.extras-heading h3 { margin: 0; font-size: 1.6rem; }
.extras-heading p { margin: 7px 0 0; color: var(--muted); font: 500 .9rem Arial, sans-serif; }
.extras-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.extra-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), border-color .3s ease; }
.extra-card:hover { transform: translateY(-6px); border-color: #cde4bc; }
.extra-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; background: var(--yellow-soft); font-size: 1.7rem; }
.extra-icon-green { background: var(--green-soft); }
.extra-icon-orange { background: #ffeadf; }
.extra-card h4 { margin: 3px 0 5px; font-size: 1.05rem; }
.extra-card p { margin: 0; color: var(--muted); font: 500 .8rem/1.45 Arial, sans-serif; }
.extra-card > strong { grid-column: 1 / -1; padding-top: 15px; border-top: 1px solid var(--line); color: var(--green-dark); font-size: 1.55rem; }
.extra-card > strong small { margin-left: 5px; color: var(--muted); font: 600 .72rem Arial, sans-serif; }

.reviews-section { background: linear-gradient(180deg, #fbfaf5, #fff); }
.reviews-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { min-height: 250px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.review-author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 58px; height: 58px; display: grid; flex: 0 0 58px; place-items: center; border: 4px solid #fff; border-radius: 50%; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.12); font-size: 1.25rem; font-weight: 900; }
.avatar-one { background: linear-gradient(145deg, #ffb36b, #e87755); }
.avatar-two { background: linear-gradient(145deg, #71bf65, #308b57); }
.avatar-three { background: linear-gradient(145deg, #72a9d5, #4d709b); }
.review-author h3 { margin: 0 0 3px; font-size: .94rem; }
.stars { color: #ffb500; font-size: 1rem; letter-spacing: 2px; }
.review-card blockquote { margin: 22px 0 0; color: #4d514b; font: 500 .87rem/1.72 Arial, sans-serif; }
.slider-controls { display: none; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.slider-controls button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); background: #fff; font-weight: 900; }
.slider-dots { display: flex; gap: 7px; }
.slider-dots span { width: 8px; height: 8px; border-radius: 50%; background: #deded6; transition: width .2s ease, background .2s ease; }
.slider-dots span.active { width: 22px; border-radius: 5px; background: var(--green); }

.excursion-section { padding: 26px 0 70px; background: #fff; }
.excursion-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr minmax(300px, .75fr);
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffe85a 0%, #ffd324 68%, #ffc51c 100%);
  box-shadow: 0 16px 40px rgba(188, 151, 0, .18);
}
.excursion-card::after { content: ""; position: absolute; right: -60px; bottom: -140px; width: 330px; height: 250px; border-radius: 50%; background: rgba(65, 158, 39, .24); }
.excursion-sun { width: 132px; height: 132px; display: grid; place-items: center; border-radius: 50%; color: #f78619; background: #fff3a9; box-shadow: 0 0 0 14px rgba(255,255,255,.25); font-size: 6.8rem; line-height: 1; transform: rotate(-10deg); }
.excursion-copy { position: relative; z-index: 1; }
.excursion-copy .section-kicker { margin-bottom: 7px; color: #705600; }
.excursion-copy h2 { font-size: clamp(2rem, 3vw, 3rem); }
.excursion-copy p { margin: 13px 0 0; color: #554700; font: 600 .9rem/1.6 Arial, sans-serif; }
.excursion-form { position: relative; z-index: 2; display: grid; gap: 10px; }
.excursion-form label { display: grid; gap: 5px; }
.excursion-form label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.excursion-form input { width: 100%; height: 50px; border: 2px solid transparent; border-radius: 12px; padding: 0 16px; color: var(--ink); background: rgba(255,255,255,.96); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.excursion-form input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(47,157,31,.13); }
.excursion-form input.is-invalid { border-color: #d93631; }
.field-error { min-height: 0; color: #7b1a17; font: 700 .72rem Arial, sans-serif; }
.field-error:not(:empty) { min-height: 16px; }
.excursion-form .button { width: 100%; }
.form-note { margin: 0; color: rgba(67,53,0,.75); font: 500 .64rem/1.4 Arial, sans-serif; text-align: center; }
.form-status { display: none; margin: 0; padding: 10px 12px; border-radius: 10px; font: 700 .75rem/1.4 Arial, sans-serif; }
.form-status.success { display: block; color: #155a11; background: rgba(255,255,255,.7); }
.form-status.error { display: block; color: #8b1d19; background: rgba(255,255,255,.7); }

.contacts-section { padding-top: 0; background: #fff; }
.contacts-card { display: grid; grid-template-columns: .8fr 1.6fr; gap: 40px; align-items: stretch; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-soft); }
.contacts-copy { padding: 10px 0 10px 16px; }
.contacts-copy .section-kicker { margin-bottom: 7px; }
.contacts-copy h2 { margin-bottom: 20px; font-size: 2.2rem; }
.contacts-copy address { display: grid; gap: 13px; font-style: normal; }
.contacts-copy address a, .contacts-copy address p { display: flex; align-items: flex-start; gap: 11px; margin: 0; font: 600 .88rem/1.45 Arial, sans-serif; }
.contacts-copy address a > span:first-child, .contacts-copy address p > span:first-child { width: 22px; color: var(--green); font-weight: 900; }
.contacts-copy address small { color: var(--muted); font-size: .73rem; }
.contacts-copy address a:hover span:last-child { color: var(--green-dark); }

.map-card { position: relative; min-height: 270px; overflow: hidden; border-radius: var(--radius-lg); background: #e9f1d7; }
.map-card::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(38deg, transparent 0 65px, rgba(255,255,255,.65) 67px 81px, transparent 83px 126px); }
.map-road { position: absolute; height: 26px; border: 7px solid rgba(255,255,255,.92); border-left: 0; border-right: 0; background: #e5ded1; transform-origin: left; }
.map-road-one { width: 130%; left: -10%; top: 44%; transform: rotate(-12deg); }
.map-road-two { width: 120%; left: 8%; top: 15%; transform: rotate(64deg); }
.map-water { position: absolute; right: -8%; top: -10%; width: 28%; height: 130%; border-left: 16px solid rgba(255,255,255,.85); background: #b7dcf3; transform: rotate(14deg); }
.map-block { position: absolute; border: 8px solid rgba(255,255,255,.72); border-radius: 7px; background: #d7e3bc; }
.block-one { left: 8%; top: 10%; width: 21%; height: 23%; }
.block-two { left: 52%; bottom: 8%; width: 18%; height: 25%; }
.block-three { left: 25%; bottom: 7%; width: 16%; height: 18%; }
.map-pin { position: absolute; z-index: 2; left: 52%; top: 42%; width: 38px; height: 38px; display: grid; place-items: center; border: 5px solid white; border-radius: 50% 50% 50% 0; color: #fff; background: var(--green); box-shadow: 0 7px 16px rgba(32,91,24,.28); font-size: .55rem; transform: translate(-50%, -50%) rotate(-45deg); }
.map-pin::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: white; }
.map-label { position: absolute; z-index: 2; left: 57%; top: 34%; display: flex; flex-direction: column; padding: 14px 18px; border-radius: 13px; background: white; box-shadow: var(--shadow-soft); }
.map-label strong { font-size: .84rem; }
.map-label small { margin-top: 3px; color: var(--muted); font: 600 .7rem Arial, sans-serif; }

.site-footer { color: white; background: linear-gradient(110deg, #359f22, #23811b); }
.footer-inner { min-height: 126px; display: grid; grid-template-columns: auto 1fr auto; gap: 25px 50px; align-items: center; padding-block: 24px; }
.brand-footer .brand-copy strong, .brand-footer .brand-copy small { color: white; }
.brand-footer .brand-sun { width: 43px; height: 43px; box-shadow: 0 0 0 5px rgba(255,255,255,.12); }
.brand-footer .brand-sun span { font-size: 1.9rem; }
.footer-nav { display: flex; justify-content: center; gap: 24px; }
.footer-nav a { color: rgba(255,255,255,.92); }
.footer-nav a::after { background: var(--yellow); }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: white; font-size: .75rem; font-weight: 900; transition: transform .2s ease; }
.footer-socials a:hover { transform: translateY(-3px) rotate(4deg); }
.copyright { grid-column: 1 / -1; margin: -8px 0 0; color: rgba(255,255,255,.76); font: 500 .72rem Arial, sans-serif; text-align: center; }

.to-top { position: fixed; z-index: 30; right: 22px; bottom: 22px; width: 48px; height: 48px; border: 0; border-radius: 50%; color: white; background: var(--green); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .2s ease, transform .2s ease; }
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; width: min(calc(100% - 40px), 430px); padding: 14px 18px; border-radius: 14px; color: white; background: var(--green-dark); box-shadow: var(--shadow); font: 700 .82rem/1.45 Arial, sans-serif; text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.benefits-grid .reveal:nth-child(2), .extras-grid .reveal:nth-child(2), .reviews-track .review-card:nth-child(2) { transition-delay: .08s; }
.benefits-grid .reveal:nth-child(3), .extras-grid .reveal:nth-child(3), .reviews-track .review-card:nth-child(3) { transition-delay: .16s; }

@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .header-inner { gap: 18px; }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-sun { width: 46px; height: 46px; }
  .brand-sun span { font-size: 2rem; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .75rem; }
  .header-cta { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .day-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 20px; }
  .day-grid::before { display: none; }
  .excursion-card { grid-template-columns: 120px 1fr minmax(290px, .8fr); padding: 32px; }
  .excursion-sun { width: 100px; height: 100px; font-size: 5rem; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 72px; }
  .header-inner { justify-content: space-between; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: 104px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 13px 14px; border-radius: 10px; font-size: .9rem; }
  .main-nav a:hover { background: var(--green-soft); }
  .main-nav a::after { display: none; }
  .header-cta { display: inline-flex; }
  .hero { min-height: 720px; }
  .hero-media { background-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(255,254,246,.98) 0%, rgba(255,254,246,.92) 47%, rgba(255,255,255,.16) 83%); }
  .hero-inner { min-height: 560px; align-items: flex-start; }
  .hero-copy { width: 68%; padding-top: 72px; }
  .hero-facts { bottom: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .fact-card { min-height: 112px; flex-direction: column; justify-content: center; gap: 8px; padding: 12px; text-align: center; }
  .fact-card span:last-child { align-items: center; }
  .fact-icon { width: 44px; height: 44px; flex-basis: 44px; font-size: 1.25rem; }
  .section { padding: 76px 0; }
  .main-price-card { grid-template-columns: 1fr; }
  .main-price-value { padding: 36px; }
  .extras-grid { grid-template-columns: 1fr; }
  .reviews-slider { overflow: hidden; margin-inline: -16px; padding-inline: 16px; }
  .reviews-track { display: flex; gap: 16px; transition: transform .4s var(--ease); }
  .review-card { flex: 0 0 100%; }
  .slider-controls { display: flex; }
  .excursion-card { grid-template-columns: 95px 1fr; }
  .excursion-sun { grid-row: 1; }
  .excursion-copy { grid-row: 1; }
  .excursion-form { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .excursion-form .button, .form-note, .form-status { grid-column: 1 / -1; }
  .contacts-card { grid-template-columns: 1fr; }
  .map-card { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; flex-wrap: wrap; }
  .copyright { grid-row: 3; }
}

@media (max-width: 620px) {
  :root { --radius-xl: 24px; }
  .announcement { min-height: 36px; padding-inline: 12px; font-size: .72rem; }
  .announcement a { display: none; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 66px; }
  .brand { gap: 9px; }
  .brand-sun { width: 40px; height: 40px; box-shadow: 0 0 0 4px rgba(255,211,38,.2); }
  .brand-sun span { font-size: 1.75rem; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { margin-top: 3px; font-size: .61rem; }
  .header-cta { display: none; }
  .menu-toggle { width: 43px; height: 43px; }
  .main-nav { inset: 110px 14px auto; }
  .hero { min-height: auto; padding-bottom: 24px; background: #f8f3df; }
  .hero-media { position: relative; z-index: -1; width: calc(100% - 28px); height: 310px; margin-inline: auto; border-radius: 0 0 24px 24px; background-position: 60% center; box-shadow: var(--shadow-soft); }
  .hero::after { inset: 0 0 auto; height: 310px; background: linear-gradient(180deg, rgba(255,255,255,0) 55%, #fffdf7 100%); }
  .hero-inner { min-height: 0; margin-top: -26px; }
  .hero-copy { width: 100%; padding: 0; text-align: center; }
  .eyebrow { margin-bottom: 10px; padding: 7px 11px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-soft); }
  .hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-copy > p { margin: 18px auto 22px; font-size: .92rem; line-height: 1.6; }
  .hero-actions { justify-content: center; }
  .hero-actions .button { flex: 1 1 140px; }
  .hero-facts { position: static; grid-template-columns: 1fr; margin-top: 28px; transform: none; }
  .fact-card { min-height: 78px; flex-direction: row; justify-content: flex-start; gap: 14px; padding: 13px 16px; text-align: left; }
  .fact-card span:last-child { align-items: flex-start; }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .contacts-copy h2 { font-size: 2rem; }
  .section-heading p { font-size: .87rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { min-height: 126px; padding: 19px; }
  .benefit-icon { width: 58px; height: 58px; flex-basis: 58px; font-size: 1.7rem; }
  .day-grid { grid-template-columns: 1fr; gap: 42px; }
  .day-image { aspect-ratio: 1.5 / 1; }
  .main-price-card { margin-inline: -2px; }
  .main-price-copy { padding: 30px 24px; }
  .check-list { grid-template-columns: 1fr; }
  .main-price-value { padding: 30px 24px; }
  .extra-card { padding: 20px; }
  .review-card { min-height: 270px; padding: 22px; }
  .excursion-section { padding-bottom: 56px; }
  .excursion-card { display: block; padding: 28px 22px; text-align: center; }
  .excursion-sun { width: 84px; height: 84px; margin: 0 auto 18px; font-size: 4.2rem; }
  .excursion-copy h2 { font-size: 2rem; }
  .excursion-form { display: grid; grid-template-columns: 1fr; margin-top: 23px; text-align: left; }
  .excursion-form .button, .form-note, .form-status { grid-column: auto; }
  .contacts-card { gap: 22px; padding: 22px; }
  .contacts-copy { padding: 0; }
  .map-card { min-height: 250px; }
  .map-label { left: auto; right: 14px; top: 22px; }
  .footer-inner { grid-template-columns: 1fr auto; gap: 22px 15px; }
  .footer-nav { gap: 18px; }
  .footer-nav a { font-size: .75rem; }
  .brand-footer .brand-copy { display: none; }
  .to-top { right: 15px; bottom: 15px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
