:root {
  --blue: #0d4ea6;
  --blue-2: #1c6ed0;
  --blue-3: #e7f0fb;
  --orange: #f5a623;
  --orange-2: #fff2d7;
  --bg: #f7f8fc;
  --white: #ffffff;
  --ink: #12213a;
  --muted: #66748a;
  --line: #dfe6f2;
  --shadow: 0 24px 70px rgba(13, 78, 166, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 166, 35, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(13, 78, 166, 0.13), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(13, 78, 166, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.trust-row,
.hero-actions,
.contact-card {
  display: flex;
  align-items: center;
}

.header-tools,
.lang-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--blue);
}

.reserved {
  opacity: 0.62;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #4a2a00;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-tools {
  gap: 10px;
}

.lang-switcher {
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.lang-button {
  min-width: 48px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lang-button:hover,
.lang-button:focus {
  color: var(--blue);
}

.lang-button.is-active {
  background: var(--blue);
  color: var(--white);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 660px;
  font-size: clamp(3.85rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.8rem;
}

.hero-subtitle {
  margin: 24px 0 0;
  color: var(--blue);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 800;
}

.hero-lede {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
}

.hero-body,
.section-heading p,
.apply-copy > p,
.boarding-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-body {
  max-width: 620px;
  margin: 22px 0 0;
}

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

.hero-facts div,
.hero-spotlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(13, 78, 166, 0.06);
}

.hero-facts div {
  padding: 16px 16px 14px;
}

.hero-facts span,
.hero-spotlight p {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

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

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

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 78, 166, 0.24);
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--line);
}

.full-width {
  width: 100%;
}

.trust-row {
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-cta-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  padding-top: 62px;
}

.hero-spotlight {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: min(76%, 360px);
  padding: 16px 16px 14px;
  backdrop-filter: blur(18px);
}

.hero-spotlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-spotlight li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-spotlight li + li {
  margin-top: 8px;
}

.hero-spotlight li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(223, 230, 242, 0.86);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(13, 78, 166, 0.82)),
    radial-gradient(circle at 82% 15%, rgba(245, 166, 35, 0.18), transparent 18rem);
  pointer-events: none;
}

.hero-photo-card img,
.photo-card img,
.boarding-photo img,
.preview-image img,
.image-work-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card img {
  min-height: 510px;
}

.hero-photo-card figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.hero-photo-card figcaption span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: #3d2700;
  font-weight: 900;
}

.hero-photo-card figcaption strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-white {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

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

.section-heading p {
  margin: 18px 0 0;
}

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

.snapshot-card {
  padding: 20px 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(231, 240, 251, 0.68));
  box-shadow: 0 16px 40px rgba(13, 78, 166, 0.06);
}

.snapshot-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snapshot-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.skill-grid,
.highlight-grid,
.zone-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.skill-grid {
  grid-template-columns: repeat(3, 1fr);
}

.skill-card,
.highlight-card,
.zone-card,
.camp-card,
.work-tile,
.lead-form,
.contact-card,
.qr-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 78, 166, 0.07);
}

.skill-card {
  min-height: 188px;
  padding: 24px;
}

.skill-card span,
.zone-card span {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.skill-card p,
.highlight-card p,
.zone-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.camp-panel {
  display: grid;
  gap: 16px;
}

.camp-card {
  padding: 26px;
}

.camp-card.featured {
  background: var(--blue);
  color: var(--white);
}

.camp-card p {
  margin: 0 0 8px;
  color: inherit;
  opacity: 0.78;
  font-weight: 800;
}

.camp-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.camp-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.camp-facts div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--blue-3);
}

.camp-facts span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.camp-facts strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.experience-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-3), var(--white));
}

.experience-preview h3 {
  max-width: 520px;
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.experience-preview p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.preview-image {
  overflow: hidden;
  height: 330px;
  margin: 0;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(13, 78, 166, 0.14);
}

.timeline div {
  position: relative;
  min-height: 104px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
}

.timeline div::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.16);
}

.timeline time {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.timeline span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.highlight-grid,
.zone-grid {
  grid-template-columns: repeat(3, 1fr);
}

.highlight-card,
.zone-card {
  padding: 28px;
}

.location-section {
  padding-bottom: 44px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-bottom: 24px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-card-wide {
  grid-row: span 2;
  min-height: 478px;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(13, 78, 166, 0.9));
}

.photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.boarding-section {
  padding-top: 44px;
}

.boarding-card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 240, 251, 0.9)),
    var(--white);
  box-shadow: var(--shadow);
}

.boarding-card > div {
  grid-column: 1;
}

.boarding-photo {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: stretch;
  overflow: hidden;
  min-height: 330px;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(13, 78, 166, 0.14);
}

.check-list {
  display: grid;
  grid-column: 1;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange);
}

.outcomes-section {
  overflow: hidden;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(13, 78, 166, 0.08), rgba(245, 166, 35, 0.14)),
    var(--white);
  color: var(--blue);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
}

.image-work-tile {
  padding: 0;
  color: var(--white);
}

.image-work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 78, 166, 0.92));
}

.image-work-tile span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 78, 166, 0.06);
}

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

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.apply-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
  padding-top: 96px;
}

.apply-copy h2 {
  max-width: 620px;
}

.contact-card {
  gap: 22px;
  margin: 28px 0 18px;
  padding: 18px;
}

.contact-card a {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 800;
}

.qr-card {
  display: grid;
  width: min(100%, 260px);
  gap: 12px;
  padding: 20px;
  text-align: center;
}

.qr-card img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.qr-card figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 78, 166, 0.12);
}

.lead-form .full-width,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.form-status.success {
  color: #087443;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.footer-version {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -22px, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .split-section,
  .boarding-card,
  .experience-preview,
  .faq-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .skill-grid,
  .snapshot-grid,
  .highlight-grid,
  .zone-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-card-wide {
    min-height: 320px;
  }

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

  .boarding-card > div,
  .boarding-photo,
  .check-list {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 12px;
  }

  .brand-text {
    display: none;
  }

  .header-tools {
    justify-content: flex-end;
  }

  .lang-switcher {
    order: 1;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .section {
    width: min(calc(100% - 20px), var(--max));
    padding: 64px 0;
  }

  .section-white {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5rem);
  }

  .hero-photo-card {
    transform: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-media {
    padding-top: 0;
  }

  .hero-spotlight {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .hero-photo-card img {
    min-height: 390px;
  }

  .hero-photo-card figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .preview-image {
    height: 280px;
  }

  .skill-grid,
  .snapshot-grid,
  .highlight-grid,
  .zone-grid,
  .gallery-grid,
  .timeline,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .site-footer {
    flex-direction: column;
  }
}

@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;
  }
}
