:root {
  --teal: #0fb7a9;
  --teal-dark: #087c79;
  --yellow: #ffd84d;
  --yellow-strong: #ffc928;
  --green: #65d46e;
  --lime: #b7f45a;
  --coral: #ff765f;
  --ink: #17252f;
  --muted: #62717a;
  --line: #dbe9e8;
  --bg: #f6fbfa;
  --surface: #ffffff;
  --shadow: 0 22px 60px rgba(23, 37, 47, 0.12);
  --radius: 18px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  transition: padding 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.brand,
.site-nav {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 35px rgba(23, 37, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-weight: 800;
}

.brand__logo {
  width: 48px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--green));
  border-radius: 50%;
}

.brand__text {
  overflow: hidden;
  max-width: 220px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(15, 183, 169, 0.12);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.home-hero,
.camp-hero,
.section,
.booking-section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 94px);
  padding: 48px 0 72px;
}

.home-hero h1,
.camp-hero h1 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero p,
.camp-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.camp-home-hero {
  min-height: calc(100vh - 94px);
}

.hero-note {
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}

.button:focus-visible,
.timeline-item__button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 216, 77, 0.75);
  outline-offset: 3px;
}

.button--primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 16px 34px rgba(255, 201, 40, 0.34);
}

.button--ghost {
  color: var(--teal-dark);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 183, 169, 0.16);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.home-hero__visual {
  position: relative;
  min-height: 500px;
}

.hero-photo-stack {
  position: relative;
  height: 500px;
}

.hero-photo-stack img {
  position: absolute;
  width: min(74%, 420px);
  height: 72%;
  object-fit: cover;
  border: 10px solid var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-photo-stack img:first-child {
  top: 0;
  right: 0;
}

.hero-photo-stack img:last-child {
  bottom: 0;
  left: 0;
}

.orbit-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 122px;
  min-height: 62px;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: float 4.2s ease-in-out infinite;
}

.orbit-card--green {
  top: 40px;
  left: 10%;
  background: var(--green);
}

.orbit-card--yellow {
  right: 2%;
  bottom: 72px;
  background: var(--yellow);
  animation-delay: -1.2s;
}

.section {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.section--light,
.booking-section {
  width: 100%;
  padding: 86px max(16px, calc((100% - 1160px) / 2));
  background: var(--surface);
}

.section__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section__head h2,
.booking-section h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.section__head p,
.booking-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.fact-card,
.info-card,
.activity-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 37, 47, 0.07);
}

.fact-card {
  padding: 24px;
}

.fact-card span,
.price-card > span {
  color: var(--teal-dark);
  font-weight: 900;
}

.fact-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.1;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
}

.camp-switch,
.feature-grid,
.direction-grid,
.team-grid,
.mentor-grid,
.package-grid,
.price-grid,
.info-grid,
.activity-grid {
  display: grid;
  gap: 22px;
}

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

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

.info-card {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover,
.activity-card:hover {
  border-color: rgba(15, 183, 169, 0.42);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.info-card i,
.activity-card i {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(255, 216, 77, 0.4);
  border-radius: 18px;
  font-size: 24px;
}

.info-card h3,
.activity-card h3 {
  margin: 18px 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.15;
}

.info-card p,
.activity-card p {
  margin: 0;
  color: var(--muted);
}

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

.camp-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.camp-overview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 37, 47, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.camp-overview-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.camp-overview-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.camp-overview-card div {
  padding: 26px;
}

.camp-overview-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

.camp-overview-card h3 {
  margin: 8px 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.camp-overview-card p {
  margin: 0;
  color: var(--muted);
}

.activity-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.activity-card h3 {
  margin-top: 0;
}

.season-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 37, 47, 0.07);
}

.season-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.season-logo-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, rgba(255, 216, 77, 0.2));
  box-shadow: 0 12px 32px rgba(23, 37, 47, 0.07);
}

.season-logo-card img {
  width: min(100%, 250px);
  aspect-ratio: 1;
  margin: 0 auto 4px;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
}

.season-logo-card span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.season-logo-card h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.08;
}

.season-logo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.season-table__head,
.season-table__row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  align-items: stretch;
}

.season-table__head {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(15, 183, 169, 0.16), rgba(255, 216, 77, 0.28));
  font-weight: 900;
}

.season-table__head span,
.season-table__row > * {
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.season-table__head span:last-child,
.season-table__row > *:last-child {
  border-right: 0;
}

.season-table__head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.season-table__row {
  border-top: 1px solid var(--line);
}

.season-table__row strong {
  color: var(--teal-dark);
}

.documents-section {
  padding-top: 70px;
}

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

.document-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(15, 183, 169, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, rgba(183, 244, 90, 0.13));
  box-shadow: 0 14px 38px rgba(23, 37, 47, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.document-card:hover {
  border-color: rgba(15, 183, 169, 0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.document-card i {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 18px;
  font-size: 28px;
}

.document-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.document-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.16;
}

.document-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.staff-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.staff-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 183, 169, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(232, 250, 247, 0.62), #ffffff 45%);
  box-shadow: 0 12px 32px rgba(23, 37, 47, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.staff-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--yellow));
}

.staff-card:hover {
  border-color: rgba(15, 183, 169, 0.42);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.staff-card img,
.staff-card__initial {
  width: 100%;
  height: 232px;
}

.staff-card img {
  display: block;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.2), rgba(15, 183, 169, 0.12));
}

.staff-card--portrait img {
  object-fit: contain;
  object-position: center center;
}

.staff-card__initial {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.42), rgba(15, 183, 169, 0.18));
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 78px;
  font-weight: 900;
}

.staff-card div:last-child {
  min-height: 128px;
  padding: 20px 22px 24px;
  background: #ffffff;
}

.staff-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 183, 169, 0.1);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.staff-card h3 {
  margin: 12px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.18;
}

.camp-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.camp-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.camp-gallery img:nth-child(1),
.camp-gallery img:nth-child(6) {
  height: 360px;
}

.camp-gallery img:nth-child(4) {
  margin-top: -80px;
}

.camp-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(23, 37, 47, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.camp-card__media {
  min-height: 260px;
  background: linear-gradient(135deg, rgba(15, 183, 169, 0.16), rgba(255, 216, 77, 0.2));
}

.camp-card__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.camp-card__body {
  padding: 28px;
}

.camp-card h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
}

.camp-card__subtitle {
  color: var(--teal-dark);
  font-weight: 800;
}

.tech-preview,
.tech-grid-bg {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(15, 183, 169, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(15, 183, 169, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 70% 18%, rgba(255, 216, 77, 0.56), transparent 24%),
    #eafdfb;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.tech-preview span,
.tech-grid-bg span {
  position: absolute;
  display: block;
  border: 2px solid var(--teal);
  border-radius: 14px;
  animation: drift 8s linear infinite;
}

.tech-preview span:nth-child(1),
.tech-grid-bg span:nth-child(1) {
  width: 76px;
  height: 76px;
  top: 40px;
  left: 54px;
}

.tech-preview span:nth-child(2),
.tech-grid-bg span:nth-child(2) {
  width: 120px;
  height: 120px;
  right: 70px;
  bottom: 42px;
  border-color: var(--yellow-strong);
  animation-delay: -2s;
}

.tech-preview span:nth-child(3),
.tech-grid-bg span:nth-child(3) {
  width: 44px;
  height: 44px;
  right: 32%;
  top: 34%;
  border-radius: 50%;
  border-color: var(--green);
  animation-delay: -4s;
}

.tech-preview span:nth-child(4),
.tech-grid-bg span:nth-child(4) {
  width: 84px;
  height: 84px;
  left: 30%;
  bottom: 20px;
  transform: rotate(45deg);
  animation-delay: -6s;
}

.impact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--surface);
  box-shadow: var(--shadow);
}

.impact-band h2,
.impact-band p {
  margin: 0;
}

.impact-band p {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.camp-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 94px);
  place-items: center start;
  overflow: hidden;
  padding: 80px 48px;
  border-radius: 32px;
  color: var(--surface);
  isolation: isolate;
}

.camp-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-hero--adventure::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 124, 121, 0.84), rgba(8, 124, 121, 0.26));
}

.camp-hero--tech {
  color: var(--ink);
  background: #eafffb;
}

.camp-hero--tech .camp-hero__content {
  position: relative;
  z-index: 2;
}

.camp-hero__subtitle {
  color: inherit;
  font-weight: 800;
}

.camp-hero--adventure p {
  color: rgba(255, 255, 255, 0.9);
}

.tech-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
}

.feature-grid,
.direction-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.direction-card,
.mentor-card,
.package-card,
.price-card,
.team-card,
.daily-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 37, 47, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card,
.direction-card {
  padding: 24px;
}

.feature-card:hover,
.direction-card:hover,
.mentor-card:hover,
.package-card:hover,
.price-card:hover,
.team-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.feature-card h3,
.direction-card h3,
.team-card h3,
.mentor-card h3,
.package-card h3,
.price-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.15;
}

.feature-card p,
.direction-card p,
.team-card p,
.mentor-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding-left: 34px;
}

.timeline-item::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--yellow);
  border: 5px solid var(--teal);
  border-radius: 50%;
}

.timeline-item__button {
  display: grid;
  width: 100%;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-align: left;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.timeline-item__button:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}

.timeline-item__button span {
  color: var(--teal-dark);
  font-weight: 800;
}

.timeline-item__details {
  margin: 10px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  background: rgba(101, 212, 110, 0.12);
}

.team-grid,
.mentor-grid,
.package-grid,
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  overflow: hidden;
  padding-bottom: 22px;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card h3,
.team-card p {
  padding: 0 22px;
}

.team-card h3 {
  margin-top: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(2) {
  margin-top: 44px;
}

.direction-card {
  border-color: rgba(15, 183, 169, 0.24);
}

.direction-card:hover {
  border-color: var(--yellow);
}

.direction-card i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: rgba(255, 216, 77, 0.38);
  border-radius: 18px;
  font-size: 24px;
}

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

.daily-step {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.daily-step i {
  color: var(--teal);
  font-size: 26px;
}

.daily-step span {
  color: var(--yellow-strong);
  font-weight: 900;
}

.daily-step strong {
  font-family: "Montserrat", Arial, sans-serif;
}

.mentor-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(15, 183, 169, 0.14), transparent),
    var(--surface);
}

.mentor-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  content: "";
  border: 1px solid rgba(15, 183, 169, 0.35);
  border-radius: 16px;
  transform: rotate(18deg);
}

.mentor-card__avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--green));
  border-radius: 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.mentor-card span {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 183, 169, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.package-card,
.price-card {
  padding: 28px;
}

.package-card strong,
.price-card__value {
  display: block;
  margin: 14px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.package-card li::before {
  margin-right: 8px;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.places {
  height: 10px;
  overflow: hidden;
  margin: 18px 0 10px;
  background: #e5f1ef;
  border-radius: 999px;
}

.places__bar {
  width: var(--busy);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--yellow));
  border-radius: inherit;
}

.price-grid--simple .price-card {
  min-height: 230px;
}

.price-grid--simple .price-card__value {
  margin-top: 22px;
}

.price-note {
  max-width: 860px;
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  background: rgba(255, 216, 77, 0.18);
  font-weight: 700;
}

.contact-section {
  padding-bottom: 40px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(15, 183, 169, 0.12), rgba(255, 216, 77, 0.2)),
    var(--surface);
}

.contact-panel h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.contact-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.contact-list a {
  color: var(--teal-dark);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 42px;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--bg);
  box-shadow: 0 16px 42px rgba(23, 37, 47, 0.08);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(15, 183, 169, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: #c64735;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 48px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.not-found {
  min-height: 58vh;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--teal);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.page-transition.is-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(18px, -18px, 0) rotate(360deg);
  }
}

@media (max-width: 960px) {
  .home-hero,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .camp-switch,
  .hero-facts,
  .camp-overview-grid,
  .info-grid,
  .activity-grid,
  .staff-grid,
  .documents-grid,
  .feature-grid,
  .direction-grid,
  .team-grid,
  .mentor-grid,
  .package-grid,
  .price-grid,
  .daily-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-table__head,
  .season-table__row {
    grid-template-columns: 0.6fr 1fr;
  }

  .season-showcase {
    grid-template-columns: 1fr;
  }

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

  .camp-gallery img,
  .camp-gallery img:nth-child(1),
  .camp-gallery img:nth-child(6) {
    height: 260px;
  }

  .camp-gallery img:nth-child(4) {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }

  .camp-hero {
    min-height: 640px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(280px, 100%);
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .home-hero__visual {
    min-height: 380px;
  }

  .hero-photo-stack {
    height: 380px;
  }

  .camp-switch,
  .hero-facts,
  .camp-overview-grid,
  .info-grid,
  .activity-grid,
  .staff-grid,
  .documents-grid,
  .feature-grid,
  .direction-grid,
  .team-grid,
  .mentor-grid,
  .package-grid,
  .price-grid,
  .daily-flow,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .season-table {
    overflow-x: auto;
  }

  .season-logo-card {
    padding: 20px;
  }

  .season-logo-card img {
    width: min(78%, 220px);
  }

  .season-table__head,
  .season-table__row {
    min-width: 100%;
  }

  .camp-gallery {
    grid-template-columns: 1fr;
  }

  .camp-gallery img,
  .camp-gallery img:nth-child(1),
  .camp-gallery img:nth-child(6) {
    height: 260px;
  }

  .activity-card,
  .document-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .activity-card {
    flex-direction: column;
  }

  .contact-panel {
    padding: 28px;
  }

  .brand__text {
    max-width: 168px;
  }

  .camp-hero {
    width: calc(100% - 24px);
    min-height: 560px;
    padding: 48px 24px;
    border-radius: 24px;
  }

  .camp-hero h1,
  .home-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .impact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .section--light,
  .booking-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
