:root {
  --bg: #14100f;
  --panel: #1f1917;
  --paper: #edeae4;
  --ink: #191412;
  --text: #f3efe9;
  --muted: #c3b9b2;
  --red: #c81e33;
  --brass: #b4874a;
  --line: #38302d;
  --heading: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Barlow", Arial, sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}
body:lang(ru) {
  --heading: "Oswald", "Arial Narrow", sans-serif;
  --body: Arial, sans-serif;
}
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #ee8a96;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  text-transform: uppercase;
  line-height: 1.02;
}
h1 {
  font-size: clamp(56px, 7.3vw, 104px);
  font-weight: 800;
}
h2 {
  font-size: 50px;
  font-weight: 700;
}
h3 {
  font-size: 30px;
  font-weight: 700;
}
p + p {
  margin-top: 18px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
address {
  font-style: normal;
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "⌄";
  font-family: Arial, sans-serif;
  margin-left: 8px;
  color: #8b817b;
}
details[open] > summary::after {
  content: "⌃";
}
:focus-visible {
  outline: 3px solid #f0ce9a;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.light-section {
  background: var(--paper);
  color: var(--ink);
  --line: #ccc3ba;
}
.light-section .eyebrow {
  color: #ad0922;
}
.light-section p {
  color: #5c534e;
}
.light-section .button {
  color: #fff;
}
.section-heading {
  padding-bottom: 20px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 32px;
}
.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.section-heading--split > p {
  max-width: 540px;
  font-size: 16px;
}
.section-heading--split > .text-link {
  white-space: nowrap;
}
.eyebrow {
  font: 500 11.5px/1.6 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.mono {
  font-family: var(--mono);
}
.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  padding: 16px 32px;
  border: 1.5px solid var(--red);
  border-radius: 2px;
  background: var(--red);
  color: #fff;
  font: 600 19px/1.15 var(--heading);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.button:hover {
  background: #ad0922;
  color: #fff;
  border-color: #ad0922;
}
.button--outline {
  background: transparent;
  border-color: #4a403c;
}
.button--outline:hover {
  background: #38302d;
  border-color: #c3b9b2;
}
.button--small {
  font-size: 17px;
  padding: 13px 24px;
  min-height: 48px;
}
.text-link {
  display: inline-block;
  font: 600 17px/1.3 var(--heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid #4a403c;
  padding-bottom: 3px;
}
.red-rule {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--red);
}
.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 24px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
  padding-inline: max(40px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.admin-bar .site-header {
  top: 32px;
}
.brand {
  flex: none;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font: 600 17px/1.3 var(--heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.languages {
  display: flex;
  gap: 10px;
  font: 400 11px/1.5 var(--mono);
  letter-spacing: 0.12em;
}
.languages a {
  color: #8b817b;
}
.languages [aria-current] {
  color: var(--text);
}
.nav-dropdown {
  position: relative;
}
.nav-panel {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 290px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px #0006;
  white-space: normal;
}
.nav-panel > a {
  display: block;
  padding-block: 10px;
}
.nav-panel--camps {
  width: 470px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.nav-camp a {
  display: block;
  font-size: 26px;
  margin: 5px 0;
}
.nav-all {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}
.hero {
  position: relative;
  min-height: 792px;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      #14100fe6 0%,
      #14100fe6 30%,
      #14100f33 78%,
      #14100f6b
    ),
    linear-gradient(
      180deg,
      #14100f80 0%,
      transparent 30%,
      #14100f73 78%,
      #14100f 100%
    );
}
.hero-video {
  z-index: -2;
}
.hero-content {
  padding-top: 150px;
  padding-bottom: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ada39c;
  font-size: 12px;
  margin: 0;
}
.hero .eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--red);
  flex: none;
}
.hero h1 {
  max-width: 960px;
  letter-spacing: -0.005em;
}
.hero-intro {
  max-width: 620px;
  font-size: 21px;
  line-height: 1.5;
  color: #d6cec7;
}
.hero .actions {
  gap: 14px;
  padding-top: 8px;
}
.video-pause {
  position: absolute;
  bottom: 86px;
  right: 24px;
  background: #14100fcc;
  border: 1px solid #c3b9b2;
  border-radius: 2px;
  padding: 8px 12px;
  font-size: 13px;
}
.featured-camp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--panel);
  color: var(--text);
  border-left: 4px solid var(--red);
  box-shadow: 0 30px 64px #1914126b;
  z-index: 2;
}
.featured-camp > .cover {
  z-index: -2;
  object-position: 70% 50%;
}
.featured-camp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #1f1917 0%,
    #1f1917 38%,
    #1f1917f0 50%,
    #1f19179e 66%,
    #1f19172e 84%,
    #1f191752
  );
}
.featured-content {
  width: min(820px, 100%);
  padding: 40px 44px 40px 40px;
}
.featured-top {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.featured-top .eyebrow {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.featured-top .countdown {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.featured-camp h2 {
  font-size: 68px;
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 12px;
}
.featured-camp p.featured-description {
  color: var(--muted);
  font-size: 17.5px;
}
.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  border: 1px solid #b4874a99;
  color: #d6a96a;
  padding: 4px 9px;
  font: 400 10.5px/1.4 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status--open {
  border-color: #4e8a5f8c;
  background: #4e8a5f1f;
  color: #7fbe92;
}
.status--open::before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: currentColor;
}
.camp-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid #38302d;
  margin-block: 24px;
}
.camp-facts > div {
  padding: 18px 20px;
  border-left: 1px solid #38302d;
}
.camp-facts > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.camp-facts > div:last-child {
  padding-right: 0;
}
.camp-facts dt {
  font: 400 10px/1.6 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b817b;
  margin-bottom: 4px;
}
.camp-facts dd {
  font: 600 21px/1.3 var(--heading);
  text-transform: uppercase;
}
.camp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}
.camp-card {
  grid-column: span 2;
  position: relative;
  min-height: 420px;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--panel);
  color: var(--text);
}
.camp-card:nth-child(n + 4) {
  grid-column: span 3;
  min-height: 340px;
}
.camp-card > .cover {
  z-index: -2;
  transition: transform 0.3s;
}
.camp-card:hover > .cover {
  transform: scale(1.03);
}
.camp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #14100f0d 0%,
    #14100f4d 26%,
    #14100fcc 56%,
    #14100ff7 100%
  );
}
.camp-card-content {
  width: 100%;
}
.camp-card .camp-level {
  font: 700 12px/1.4 var(--mono);
  letter-spacing: 0.2em;
  color: #f0ce9a;
  border-left: 3px solid var(--brass);
  padding-left: 11px;
  text-transform: uppercase;
}
.camp-card .camp-date {
  font-size: 12px;
  color: var(--text);
  margin-block: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.camp-card h3 {
  font-size: 44px;
  font-weight: 800;
  line-height: 0.95;
}
.camp-card p:not(.camp-level):not(.camp-date) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  margin-top: 10px;
}
.camp-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.camp-card .text-link {
  font-size: 15px;
  border: 0;
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.why-grid article {
  background: var(--panel);
}
.why-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.why-grid article > div {
  padding: 28px;
}
.why-grid h3 {
  font-size: 34px;
  margin-bottom: 14px;
}
.why-grid p {
  font-size: 16px;
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  margin-top: 64px;
  padding-block: 32px;
}
.stats > div {
  text-align: center;
  border-left: 1px solid var(--line);
  padding: 0 14px;
}
.stats > div:first-child {
  border: 0;
}
.stats dt {
  font: 700 64px/1 var(--heading);
  color: var(--brass);
}
.stats dd {
  margin-top: 12px;
  font: 400 11px/1.8 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ada39c;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}
.split h2 {
  margin-bottom: 24px;
}
.split .text-link {
  margin-top: 24px;
}
.video-teaser {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--bg);
  overflow: hidden;
  text-align: left;
  color: #fff;
}
.video-teaser > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split .video-teaser {
  aspect-ratio: 1.25;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  /* A drawn triangle, because the ▶ character is a colour emoji in Safari and
     arrives as a square in the middle of the button. */
  color: #fff;
  padding-left: 4px;
  box-shadow: 0 0 0 8px #ffffff1a;
}
.play svg {
  display: block;
}
.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, #14100fe6);
  padding: 40px 20px 20px;
  font: 11px/1.5 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
}
.gallery-grid img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.parents-split {
  gap: 72px;
}
.parents-split > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}
.parent-point {
  padding-block: 18px;
  border-top: 1px solid var(--line);
}
.parent-point h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.parent-point p {
  font-size: 16px;
}
.parents-split .button {
  margin-top: 16px;
}
.reviews-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}
.harald-card {
  background: var(--panel);
}
.harald-card .video-teaser {
  height: 340px;
}
.harald-card .video-teaser img {
  object-position: center 32%;
}
.harald-card > div {
  padding: 24px;
}
.harald-card h3 {
  font-size: 36px;
  margin-bottom: 12px;
}
.harald-card p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}
.review-grid figure {
  min-width: 0;
}
.review-grid a {
  display: block;
  background: #fff;
  border-radius: 2px;
  padding: 12px;
}
.review-grid img {
  width: 100%;
  height: auto;
}
.review-grid figcaption {
  font: 10px/1.6 var(--mono);
  letter-spacing: 0.04em;
  color: #ada39c;
  padding-top: 10px;
}
.support-cards {
  align-items: stretch;
  gap: 24px;
}
.support-cards article {
  position: relative;
  isolation: isolate;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--text);
}
.support-cards .cover {
  z-index: -2;
}
.support-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #14100fe6, #14100f66),
    linear-gradient(0deg, #14100fe6, transparent);
}
.support-cards article > div {
  padding: 40px;
}
.support-cards h2 {
  margin-bottom: 16px;
}
.support-cards p:not(.eyebrow) {
  color: #d6cec7;
  max-width: 440px;
  font-size: 16px;
  margin-bottom: 24px;
}
.support-cards .eyebrow {
  color: #d6a96a;
}
.closing-cta {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}
.closing-cta .cover {
  z-index: -2;
}
.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #14100fd9;
}
.closing-cta h2 {
  font-size: 60px;
  max-width: 820px;
  margin: 0 auto 20px;
}
.closing-cta p {
  color: var(--muted);
  margin-bottom: 28px;
}
.closing-cta .button {
  margin-top: 10px;
}
.site-footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: #ada39c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 48px;
}
.footer-brand > img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 22px;
}
.footer-brand p {
  margin-bottom: 20px;
}
.footer-brand address {
  font-size: 12px;
  line-height: 1.9;
}
.bank-account {
  overflow-wrap: anywhere;
}
.site-footer h2 {
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--text);
}
.site-footer h3 {
  font: 10px/1.6 var(--mono);
  letter-spacing: 0.1em;
  color: #8b817b;
  margin: 28px 0 10px;
}
.site-footer li,
.site-footer .footer-grid > div > a {
  display: block;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font: 10px/1.8 var(--mono);
  letter-spacing: 0.03em;
}
.page-heading {
  padding-block: 100px 72px;
}
.page-heading h1 {
  margin-bottom: 28px;
}
.page-heading > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 21px;
}
.page-heading .status {
  margin-top: 24px;
}
.prose {
  max-width: 820px;
  min-height: 20vh;
}
.prose h2 {
  margin: 40px 0 20px;
}
.prose h3 {
  margin: 30px 0 15px;
}
.prose ul {
  list-style: disc;
  padding-left: 24px;
}
.mobile-menu {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100dvh;
  margin: 0;
  border: 0;
  padding: 0 18px 28px;
  background: var(--bg);
  color: var(--text);
  overflow: auto;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-top > img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.mobile-menu-top > button {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 34px;
}
.mobile-menu > nav {
  font: 600 28px/1.3 var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mobile-menu > nav > a,
.mobile-menu > nav > span,
.mobile-menu > nav > details {
  display: block;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-camps {
  padding: 12px 0 0 16px;
}
.mobile-camps > div {
  margin-block: 12px;
}
.mobile-camps small {
  display: block;
  font: 11px/1.6 var(--mono);
  color: #ada39c;
  text-transform: none;
  letter-spacing: 0;
}
.mobile-camps > a {
  display: block;
  font-size: 21px;
  margin-block: 12px;
}
.mobile-menu-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.mobile-menu-bottom .button {
  margin-bottom: 14px;
}
.lightbox {
  border: 0;
  padding: 50px 70px;
  background: transparent;
  color: #fff;
  max-width: 100vw;
  max-height: 100dvh;
  overflow: visible;
}
.lightbox::backdrop,
.mobile-menu::backdrop {
  background: rgba(12, 10, 9, 0.94);
}
.lightbox-content {
  display: grid;
  place-items: center;
  max-height: calc(100dvh - 120px);
}
.lightbox-content img {
  width: auto;
  height: auto;
  max-width: min(800px, calc(100vw - 140px));
  max-height: calc(100dvh - 140px);
  object-fit: contain;
}
.lightbox-content video {
  max-height: calc(100dvh - 140px);
  max-width: calc(100vw - 140px);
  width: auto;
}
.lightbox-content iframe {
  border: 0;
  width: min(960px, calc(100vw - 140px));
  aspect-ratio: 16/9;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid #ffffff40;
  background: #14100f;
  color: #fff;
  width: 46px;
  height: 46px;
  font-size: 26px;
}
.lightbox-close {
  right: 10px;
  top: 0;
}
.lightbox-prev {
  left: 0;
  top: calc(50% - 23px);
}
.lightbox-next {
  right: 0;
  top: calc(50% - 23px);
}
.lightbox-counter {
  text-align: center;
  font: 12px/1.6 var(--mono);
  margin-top: 12px;
}
@media (min-width: 1440px) {
  .container {
    width: 1240px;
  }
}
@media (max-width: 1199px) {
  .desktop-nav {
    gap: 13px;
    font-size: 16px;
  }
  .site-header {
    padding-inline: 24px;
    gap: 20px;
  }
  .header-actions {
    gap: 14px;
  }
  .desktop-cta {
    display: none;
  }
  .reviews-layout {
    grid-template-columns: 340px 1fr;
    gap: 28px;
  }
  .split {
    gap: 40px;
  }
  .footer-grid {
    gap: 28px;
  }
}
@media (max-width: 959px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 64px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero {
    min-height: 720px;
  }
  .hero h1 {
    font-size: 82px;
  }
  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .camp-card {
    grid-column: span 3;
  }
  .camp-card:nth-child(n + 4) {
    grid-column: span 3;
  }
  .three-grid {
    gap: 18px;
  }
  .why-grid article > div {
    padding: 20px;
  }
  .why-grid img {
    height: 180px;
  }
  .reviews-layout {
    grid-template-columns: 280px 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-content {
    width: 100%;
    max-width: 760px;
  }
  .split {
    gap: 32px;
  }
  h2 {
    font-size: 42px;
  }
  .closing-cta h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .section {
    padding-block: 50px;
  }
  .site-header {
    padding-inline: 18px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .admin-bar .site-header {
    top: 46px;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding-top: 96px;
    padding-bottom: 96px;
    gap: 22px;
  }
  .hero h1 {
    font-size: 52px;
    line-height: 1;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.15em;
    max-width: 340px;
  }
  .hero .eyebrow::before {
    width: 20px;
  }
  .hero-intro {
    font-size: 17px;
    line-height: 1.5;
  }
  .hero::after {
    background:
      linear-gradient(90deg, #14100fcc, #14100f55),
      linear-gradient(180deg, #14100f66, transparent 40%, #14100f 100%);
  }
  .hero .actions {
    gap: 10px;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .button {
    font-size: 17px;
    min-height: 52px;
    padding: 15px 22px;
  }
  .video-pause {
    bottom: 42px;
    font-size: 11px;
    right: 18px;
  }
  .featured-content {
    padding: 26px 20px;
  }
  .featured-top {
    gap: 12px;
    margin-bottom: 20px;
  }
  .featured-top .countdown {
    font-size: 9px;
  }
  .featured-top .eyebrow {
    font-size: 10px;
  }
  .featured-camp h2 {
    font-size: 46px;
  }
  .featured-camp::after {
    background: linear-gradient(90deg, #1f1917f5, #1f1917c9);
  }
  .featured-camp p.featured-description {
    font-size: 16px;
  }
  .camp-facts {
    grid-template-columns: 1fr;
    margin-block: 20px;
  }
  .camp-facts > div,
  .camp-facts > div:first-child,
  .camp-facts > div:last-child {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 12px 0;
    border: 0;
    border-top: 1px solid #38302d;
  }
  .camp-facts > div:first-child {
    border: 0;
  }
  .camp-facts dt {
    align-self: center;
    font-size: 9px;
    margin: 0;
  }
  .camp-facts dd {
    font-size: 20px;
  }
  .featured-camp .actions {
    gap: 18px;
  }
  .featured-camp .button {
    width: 100%;
  }
  .section-heading {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  .section-heading--split {
    gap: 18px;
  }
  .section-heading--split > p {
    font-size: 15px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .camp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .camp-card,
  .camp-card:nth-child(n + 4) {
    grid-column: auto;
    min-height: 380px;
    padding: 24px;
  }
  .camp-card h3 {
    font-size: 42px;
  }
  .camp-card .camp-date {
    font-size: 11px;
  }
  .three-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-grid img {
    height: 240px;
  }
  .why-grid article > div {
    padding: 24px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
    margin-top: 36px;
    padding-block: 28px;
  }
  .stats > div:nth-child(3) {
    border-left: 0;
  }
  .stats dt {
    font-size: 50px;
  }
  .stats dd {
    font-size: 9px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split h2 {
    margin-bottom: 20px;
  }
  .about-split .video-teaser {
    aspect-ratio: 4/3;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .parents-split > img {
    height: 360px;
  }
  .parent-point {
    padding-block: 16px;
  }
  .parent-point h3 {
    font-size: 25px;
  }
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .harald-card .video-teaser {
    height: auto;
    aspect-ratio: 1.12;
  }
  .harald-card .video-teaser img {
    object-position: center 25%;
  }
  .review-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .review-grid a {
    padding: 10px;
  }
  .review-grid img {
    width: auto;
    max-width: 100%;
    margin: auto;
  }
  .support-cards {
    gap: 20px;
  }
  .support-cards article {
    min-height: 360px;
  }
  .support-cards article > div {
    padding: 28px 24px;
  }
  .closing-cta {
    padding-block: 56px;
  }
  .closing-cta h2 {
    font-size: 38px;
  }
  .closing-cta p {
    font-size: 16px;
  }
  .site-footer {
    padding-top: 44px;
  }
  .footer-grid {
    gap: 32px 20px;
    font-size: 14px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
  }
  .footer-brand > img {
    width: 50px;
    height: 50px;
  }
  .footer-brand p {
    font-size: 14px;
  }
  .footer-brand address {
    grid-column: 1/-1;
  }
  .site-footer h2 {
    font-size: 21px;
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    font-size: 9px;
    gap: 16px;
    margin-top: 32px;
  }
  .site-footer .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .page-heading {
    padding-block: 60px 40px;
  }
  .page-heading h1 {
    font-size: 56px;
  }
  .page-heading > p:not(.eyebrow) {
    font-size: 18px;
  }
  .lightbox {
    padding: 54px 10px 70px;
    max-width: calc(100% - 16px);
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }
  .lightbox-content img {
    max-width: 100%;
    max-height: calc(100dvh - 160px);
  }
  .lightbox-content video {
    max-width: 100%;
    max-height: calc(100dvh - 160px);
  }
  .lightbox-content iframe {
    width: 100%;
    max-height: calc(100dvh - 160px);
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 10px;
    padding: 0;
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    right: 8px;
  }
  .lightbox-counter {
    position: absolute;
    bottom: 23px;
    left: 66px;
    right: 66px;
    margin: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .camp-card:hover > .cover {
    transform: none;
  }
}

/* Cookie notice — square corners, panel surface, the site's own buttons. */
.cookie-notice {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 60;
  width: min(430px, 100%);
  padding: 18px;
}
.cookie-notice-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 26px 24px;
}
.cookie-notice h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
.cookie-notice p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.cookie-notice-link {
  margin-top: 16px;
  font-size: 15px;
  border-bottom-color: var(--red);
}
.cookie-notice-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.cookie-notice-actions .button {
  flex: 1;
  min-height: 46px;
  padding-inline: 16px;
}
@media (max-width: 767px) {
  .cookie-notice {
    width: 100%;
    padding: 0;
  }
  .cookie-notice-panel {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 22px 18px 20px;
  }
  .cookie-notice h2 {
    font-size: 26px;
  }
}

/* Russian says the same things in longer words, so its header reaches the
   narrower steps sooner: the call to action goes first, then the whole menu.
   Latvian and English still fit, and keep the full bar down to 960px. */
@media (max-width: 1339px) {
  html[lang^="ru"] .desktop-cta {
    display: none;
  }
}
@media (max-width: 1099px) {
  html[lang^="ru"] .desktop-nav {
    display: none;
  }
  html[lang^="ru"] .menu-toggle {
    display: block;
  }
}
