:root {
  --navy-950: #06234d;
  --navy-900: #08346f;
  --navy-800: #0b4a96;
  --blue-500: #1677d2;
  --orange-500: #c94b0f;
  --orange-600: #b83d0b;
  --yellow-400: #ffd34d;
  --green-500: #0f7a42;
  --sky-100: #eaf6ff;
  --mint-100: #edf9ef;
  --cream-100: #fff7e8;
  --white: #ffffff;
  --ink: #172033;
  --muted: #65708a;
  --line: #dbe5f2;
  --shadow: 0 20px 45px rgba(6, 35, 77, 0.14);
  --radius-sm: 8px;
  --radius-xs: 6px;
  --container: 1180px;
  --header-height: 78px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-xs);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 242, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--navy-950);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > a:not(.btn) {
  padding: 10px 12px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: var(--radius-xs);
}

.nav-menu > a:not(.btn):hover,
.nav-menu > a:not(.btn):focus-visible {
  background: var(--sky-100);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: var(--sky-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.nav-toggle span[aria-hidden="true"] {
  width: 21px;
  height: 2px;
  background: var(--navy-950);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 12px 28px rgba(242, 106, 33, 0.28);
}

.btn-primary:hover {
  background: var(--orange-600);
}

.btn-secondary {
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(6, 35, 77, 0.12);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-copy {
  max-width: 650px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-600);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.15rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 36px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(6, 35, 77, 0.94) 0%, rgba(6, 35, 77, 0.78) 43%, rgba(6, 35, 77, 0.35) 100%),
    url("../images/summer-camp-poster-hd.jpg");
  background-size: cover;
  background-position: center 38%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-400), var(--green-500), var(--blue-500));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 77, 0.06), rgba(6, 35, 77, 0.26));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 82px 0 72px;
}

.hero .eyebrow {
  color: var(--yellow-400);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.hero-note {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 18px 20px;
  background: var(--white);
}

.trust-grid span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--white);
  background: var(--green-500);
  border-radius: 50%;
  font-weight: 900;
}

.trust-grid strong {
  color: var(--navy-950);
  line-height: 1.25;
}

.intro-section {
  background: linear-gradient(180deg, var(--white), var(--sky-100));
}

.intro-layout,
.programme-layout,
.registration-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 52px;
  align-items: center;
}

.poster-preview {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: var(--white);
}

.poster-preview img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: inherit;
}

.activities-section {
  background: var(--white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 35, 77, 0.08);
}

.activity-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sky-100);
}

.activity-card > div {
  padding: 18px;
}

.activity-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange-600);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.activity-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.activity-memories img {
  object-position: center center;
}

.activity-large {
  grid-column: span 2;
}

.activity-confirm {
  background: linear-gradient(180deg, var(--cream-100), var(--white));
}

.programme-section {
  background: var(--cream-100);
}

.programme-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.programme-gallery figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
}

.programme-gallery figure:focus-visible {
  box-shadow: 0 0 0 4px rgba(22, 119, 210, 0.2), var(--shadow);
}

.programme-gallery figure:last-child {
  grid-column: 1 / -1;
  width: min(100%, 560px);
  justify-self: center;
}

.programme-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.programme-gallery figcaption {
  padding: 14px 16px;
  color: var(--navy-950);
  font-weight: 800;
  text-align: center;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.programme-period {
  position: fixed;
  z-index: 40;
  display: grid;
  gap: 5px;
  width: min(240px, calc(100vw - 24px));
  padding: 16px 18px;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 38px rgba(6, 35, 77, 0.24);
  pointer-events: none;
}

.programme-period[hidden] {
  display: none;
}

.programme-period strong {
  color: var(--yellow-400);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.programme-period span {
  font-weight: 800;
  line-height: 1.35;
}

.programme-period.is-inline {
  position: static;
  width: auto;
  margin: 0 12px 12px;
  pointer-events: auto;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(237, 249, 239, 0.76), rgba(255, 255, 255, 0.96));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 35, 77, 0.07);
}

.why-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-400));
}

.why-grid p {
  margin-bottom: 0;
}

.info-section {
  background: var(--navy-950);
}

.info-section h2,
.info-section .section-heading p {
  color: var(--white);
}

.info-section .section-kicker {
  color: var(--yellow-400);
}

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

.info-grid div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.info-grid span,
.info-grid strong {
  display: block;
}

.info-grid span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.info-grid strong {
  color: var(--white);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.registration-section {
  background: var(--white);
}

.pricing-section {
  background: linear-gradient(180deg, var(--white), var(--cream-100));
}

.pricing-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-group-heading {
  padding: 22px 24px;
  color: var(--white);
  background: var(--navy-950);
}

.pricing-group-family .pricing-group-heading {
  background: var(--navy-800);
}

.pricing-group-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow-400);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-group-heading h3 {
  margin: 0;
  color: var(--white);
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-option {
  display: flex;
  min-width: 0;
  min-height: 168px;
  padding: 22px 18px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.price-option:last-child {
  border-right: 0;
}

.price-option strong,
.price-option span,
.price-option small {
  display: block;
}

.price-option strong {
  margin-bottom: 14px;
  color: var(--navy-950);
}

.old-price {
  color: #667085;
  font-weight: 700;
  text-decoration: line-through;
}

.current-price {
  color: var(--orange-600);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
}

.price-option small {
  margin-top: 8px;
  color: var(--green-500);
  font-weight: 800;
  line-height: 1.35;
}

.pricing-footer {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  padding: 20px 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.pricing-footer p {
  margin: 0;
  color: var(--navy-950);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a {
  width: fit-content;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.registration-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--sky-100), var(--white));
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin: 0;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 16px;
}

label,
legend {
  color: var(--navy-950);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd8ea;
  border-radius: var(--radius-sm);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(22, 119, 210, 0.14);
  outline: none;
}

.radio-group {
  border: 0;
  padding: 0;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 14px;
  font-weight: 700;
}

.radio-group input {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  accent-color: var(--orange-500);
}

.weeks-fieldset {
  padding: 0;
  border: 0;
}

.week-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.week-options label {
  display: flex;
  min-width: 0;
  min-height: 64px;
  gap: 10px;
  padding: 12px;
  align-items: flex-start;
  border: 1px solid #cbd8ea;
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.week-options label:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--sky-100);
  box-shadow: inset 0 0 0 1px var(--blue-500);
}

.week-options label:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.56;
}

.week-options input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--blue-700);
}

.week-options span,
.week-options small {
  display: block;
}

.week-options span {
  min-width: 0;
  color: var(--navy-950);
  font-weight: 800;
}

.week-options small {
  margin-top: 3px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}

.selection-counter {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.children-fields {
  display: grid;
  gap: 14px;
}

.custom-count-row[hidden] {
  display: none;
}

.child-fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.38fr);
  gap: 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
}

.child-fieldset legend {
  grid-column: 1 / -1;
  padding: 0 6px;
}

.child-fieldset .form-row {
  min-width: 0;
}

.form-error {
  min-height: 20px;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy-900);
  font-weight: 800;
}

.form-submit {
  width: 100%;
}
.consent-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--blue-700);
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}


.faq-section {
  background: var(--sky-100);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(6, 35, 77, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy-950);
  font-weight: 800;
}

details p {
  padding: 0 20px 18px;
  margin: 0;
}

.final-cta {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 35, 77, 0.94), rgba(8, 52, 111, 0.86)),
    url("../images/summer-camp-poster.jpg");
  background-size: cover;
  background-position: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .section-kicker {
  color: var(--yellow-400);
}

.final-cta-content {
  max-width: 820px;
}

.phone-line {
  margin-bottom: 0;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #041b3d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding: 56px 0 34px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--yellow-400);
}

.site-footer .footer-brand {
  margin-bottom: 14px;
}

.site-footer .footer-brand strong,
.site-footer .footer-brand small {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.legal-placeholders {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.copyright {
  padding: 20px 0 88px;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 52px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-500);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px rgba(37, 182, 92, 0.32);
  font-weight: 900;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .activities-grid,
  .info-grid,
  .pricing-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-layout,
  .programme-layout,
  .registration-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    background-position: 58% 35%;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav {
    min-height: var(--header-height);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 18px 16px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
    gap: 6px;
  }

  .nav-menu > a:not(.btn),
  .nav-menu .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(6, 35, 77, 0.94) 0%, rgba(6, 35, 77, 0.86) 56%, rgba(6, 35, 77, 0.6) 100%),
      url("../images/summer-camp-poster-hd.jpg");
    background-position: 62% center;
  }

  .hero-content {
    padding: 64px 0 54px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-badges span {
    min-height: 38px;
    font-size: 0.92rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 70px 0;
  }

  .activity-large {
    grid-column: span 1;
  }

  .programme-period {
    position: static;
    width: auto;
    margin: 0 12px 12px;
    pointer-events: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .trust-grid,
  .activities-grid,
  .programme-gallery,
  .why-grid,
  .info-grid,
  .pricing-groups,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .programme-gallery figure:last-child {
    grid-column: auto;
    width: 100%;
  }

  .trust-grid > div {
    min-height: 72px;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .pricing-options,
  .week-options,
  .child-fieldset {
    grid-template-columns: 1fr;
  }

  .price-option {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-option:last-child {
    border-bottom: 0;
  }

  .pricing-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .registration-form {
    padding: 20px;
  }

  .radio-group label {
    width: 100%;
    min-height: 36px;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}
