:root {
  --green: #119647;
  --green-deep: #0d7237;
  --green-soft: #d9ebde;
  --cream: #f6f0e6;
  --paper: #fbf7f0;
  --paper-strong: #efe6d8;
  --stone: #51493f;
  --ink: #2d2a26;
  --muted: #6f675d;
  --warm: #c77642;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(32, 28, 24, 0.08);
  --shadow-hero: 0 20px 60px rgba(0, 0, 0, 0.18);
  --border-soft: rgba(62, 54, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(17, 150, 71, 0.08), transparent 24%),
    var(--paper);
  font-family: "Manrope", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
strong {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

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

.shell {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    var(--cream);
}

.section--paper {
  background: var(--paper);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.86);
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.button:hover,
.store-button:hover,
.main-nav a:hover,
.site-footer__links a:hover,
.hero-event:hover {
  transform: translateY(-1px);
}

.button {
  min-height: 52px;
  padding: 0 24px;
}

.button--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(17, 150, 71, 0.22);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.button--warm {
  background: var(--warm);
  color: var(--white);
}

.button--outline {
  background: transparent;
  color: var(--stone);
  border: 1px solid rgba(81, 73, 63, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(11, 18, 13, 0.18), rgba(11, 18, 13, 0.56)),
    linear-gradient(90deg, rgba(12, 17, 13, 0.78) 0%, rgba(12, 17, 13, 0.22) 56%, rgba(12, 17, 13, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 28px 0 72px;
}

.hero__topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand__badge {
  display: grid;
  place-items: center;
  width: 114px;
  height: 114px;
  border-radius: 28px;
  background: rgba(250, 247, 240, 0.96);
  box-shadow: var(--shadow-hero);
}

.brand__badge img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-hero);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 32px;
  flex: 1;
}

.hero__copy {
  max-width: 560px;
  padding: 80px 0 28px;
}

.hero__copy h1 {
  margin-bottom: 20px;
  font-family: "Fraunces", serif;
  font-size: clamp(70px, 5.2vw, 96px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero__lead {
  max-width: 480px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.6;
}

.hero-event-wrap {
  margin-bottom: 26px;
}

.hero-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 520px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(248, 244, 236, 0.14);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-hero);
  backdrop-filter: blur(14px);
}

.hero-event__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-event__meta {
  display: grid;
  gap: 4px;
}

.hero-event__meta strong {
  font-size: 28px;
  line-height: 1;
}

.hero-event__meta small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.hero-event__action {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.hero__ornament {
  justify-self: end;
  align-self: center;
  width: 220px;
  height: 340px;
  opacity: 0.34;
  background:
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, 0.62) 0 7px, transparent 8px),
    radial-gradient(circle at 62% 21%, rgba(255, 255, 255, 0.55) 0 9px, transparent 10px),
    radial-gradient(circle at 42% 43%, rgba(255, 255, 255, 0.52) 0 12px, transparent 13px),
    linear-gradient(160deg, transparent 20%, rgba(255, 255, 255, 0.8) 20.5%, transparent 23%),
    linear-gradient(22deg, transparent 42%, rgba(255, 255, 255, 0.68) 42.5%, transparent 46%),
    linear-gradient(198deg, transparent 65%, rgba(255, 255, 255, 0.72) 65.5%, transparent 69%);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.split-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.section-card--intro {
  padding: 64px 48px 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    var(--paper);
}

.section-card--intro h2,
.webcam__copy h2,
.app-copy h2,
.festival__content h2,
.section-heading h2,
.contacts__info h2 {
  margin-bottom: 18px;
  font-size: 62px;
  line-height: 0.95;
}

.intro__text {
  max-width: 420px;
  margin-bottom: 36px;
  color: var(--stone);
  font-size: 24px;
  line-height: 1.7;
}

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

.feature-card {
  padding: 28px 20px 24px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border: 1px solid rgba(17, 150, 71, 0.18);
  border-radius: 16px;
  color: var(--green);
  font-size: 26px;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.1;
}

.split-intro__photo img {
  height: 100%;
  object-fit: cover;
}

.webcam {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.webcam__player {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #101010;
  box-shadow: var(--shadow-soft);
}

.webcam__link {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.webcam__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(32, 28, 24, 0.14);
}

.webcam__player img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.live-pill {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 8px;
  background: #e25d42;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.webcam__timestamp {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(18, 24, 19, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.webcam__copy {
  position: relative;
  padding: 18px 0 18px 12px;
}

.webcam__copy::after,
.app-section::after,
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 120px;
  height: 200px;
  opacity: 0.08;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 10%, var(--green) 0 8px, transparent 9px),
    radial-gradient(circle at 62% 34%, var(--green) 0 10px, transparent 11px),
    radial-gradient(circle at 43% 58%, var(--green) 0 12px, transparent 13px),
    linear-gradient(162deg, transparent 16%, var(--green) 16.6%, transparent 20%),
    linear-gradient(18deg, transparent 38%, var(--green) 38.6%, transparent 42%),
    linear-gradient(198deg, transparent 66%, var(--green) 66.6%, transparent 69%);
}

.webcam__copy p {
  max-width: 420px;
  color: var(--stone);
  font-size: 20px;
  line-height: 1.7;
}

.status-list {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.status-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.status-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.status-item__dot {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(17, 150, 71, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--white) 0 16px, transparent 17px),
    var(--green-soft);
}

.status-item__dot--live {
  background:
    radial-gradient(circle at center, #d4684a 0 16px, transparent 17px),
    rgba(212, 104, 74, 0.14);
}

.app-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
    var(--paper-strong);
}

.app-section::after {
  right: 32px;
  width: 140px;
  height: 240px;
}

.app-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.app-visual__card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.app-visual__card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.app-copy {
  position: relative;
}

.app-copy__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(17, 150, 71, 0.12);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
}

.app-copy p {
  margin-bottom: 28px;
  color: var(--stone);
  font-size: 21px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-button {
  min-height: 54px;
  padding: 0 20px;
  background: #111111;
  color: var(--white);
}

.store-button--dark {
  background: var(--green-deep);
}

.app-features {
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.app-features ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-features li {
  position: relative;
  padding-left: 24px;
  color: var(--stone);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.app-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.festival {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.festival__media,
.festival__overlay {
  position: absolute;
  inset: 0;
}

.festival__media img {
  height: 100%;
  object-fit: cover;
}

.festival__overlay {
  background:
    linear-gradient(180deg, rgba(32, 19, 13, 0.35), rgba(32, 19, 13, 0.72)),
    linear-gradient(180deg, rgba(32, 19, 13, 0.06), rgba(32, 19, 13, 0.12));
}

.festival__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.festival__lights {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 48px;
}

.festival__lights span {
  position: relative;
  display: block;
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.45);
}

.festival__lights span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #f6ca7c;
  box-shadow: 0 0 18px rgba(246, 202, 124, 0.4);
}

.festival__lights span:nth-child(3n)::after {
  background: #cc6944;
}

.festival__lights span:nth-child(4n)::after {
  background: var(--green);
}

.festival__content h2 {
  color: var(--white);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.festival__lead {
  margin: 0 auto 28px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.festival__dates {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
}

.festival__date-card {
  min-width: 220px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(251, 247, 240, 0.14);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.festival__date-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.festival__date-card strong {
  display: block;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.countdown__box {
  min-width: 126px;
  padding: 20px 18px 16px;
  border-radius: 12px;
  background: rgba(246, 240, 230, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.countdown__box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 44px;
  line-height: 1;
}

.countdown__box span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.festival__meta {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.festival__meta strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.contacts {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contacts__info {
  position: relative;
}

.contacts__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.6;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(81, 73, 63, 0.08);
  background: #edf0e7;
  box-shadow: var(--shadow-soft);
}

.map-card__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-card__label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.map-card__label strong {
  font-size: 30px;
}

.map-card__label span {
  color: var(--stone);
  font-size: 14px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.86);
  background: #31481b;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  object-fit: contain;
}

.site-footer__brand strong {
  display: block;
  margin-bottom: 2px;
  font-size: 24px;
}

.site-footer__brand p,
.site-footer__meta p {
  margin-bottom: 0;
  font-size: 14px;
}

.site-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a {
  font-size: 14px;
  font-weight: 700;
}

.site-footer__meta {
  text-align: right;
}

.swal-event-date,
.swal-event-copy {
  margin: 0;
  color: var(--stone);
  font-family: "Manrope", sans-serif;
}

.swal-event-date {
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swal-event-copy {
  font-size: 16px;
  line-height: 1.65;
}

.swal-leverone {
  border-radius: 24px;
  padding: 28px 28px 24px;
}

.swal-leverone__title {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  line-height: 0.95;
}

.swal-leverone__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 48px, 1080px);
  }

  .hero__grid,
  .webcam,
  .app-section__grid,
  .contacts,
  .site-footer__grid,
  .split-intro__grid {
    grid-template-columns: 1fr;
  }

  .section-card--intro h2,
  .webcam__copy h2,
  .app-copy h2,
  .festival__content h2,
  .section-heading h2,
  .contacts__info h2 {
    font-size: 54px;
  }

  .app-section__grid {
    gap: 24px;
  }

  .site-footer__grid,
  .site-footer__meta {
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__links {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .shell {
    width: calc(100% - 32px);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: 100svh;
    padding: 18px 0 40px;
  }

  .hero__topbar {
    align-items: center;
  }

  .brand__badge {
    width: 86px;
    height: 86px;
    border-radius: 22px;
  }

  .brand__badge img {
    width: 62px;
    height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(18, 24, 19, 0.92);
    box-shadow: var(--shadow-hero);
  }

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

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__copy {
    max-width: none;
    padding: 48px 0 0;
  }

  .hero__copy h1 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .hero__lead {
    max-width: none;
    margin-bottom: 24px;
    font-size: 18px;
  }

  .hero-event {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding: 18px;
  }

  .hero-event__badge {
    justify-self: start;
  }

  .hero-event__meta strong {
    font-size: 24px;
  }

  .hero__actions,
  .store-buttons,
  .contacts__actions {
    flex-direction: column;
  }

  .button,
  .store-button,
  .contacts__actions .button {
    width: 100%;
  }

  .hero__ornament {
    display: none;
  }

  .section-card--intro {
    padding: 40px 24px;
  }

  .section-card--intro h2,
  .webcam__copy h2,
  .app-copy h2,
  .festival__content h2,
  .section-heading h2,
  .contacts__info h2 {
    font-size: 42px;
  }

  .intro__text,
  .webcam__copy p,
  .app-copy p,
  .festival__lead {
    font-size: 18px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .webcam {
    gap: 24px;
  }

  .webcam__copy {
    padding: 0;
  }

  .webcam__timestamp {
    right: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    font-size: 11px;
    text-align: center;
  }

  .webcam__copy::after,
  .app-section::after,
  .contacts::after {
    display: none;
  }

  .status-list {
    flex-direction: column;
    gap: 16px;
  }

  .status-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 12px;
  }

  .countdown__box {
    min-width: calc(50% - 6px);
  }

  .festival__lights {
    display: none;
  }

  .festival__meta {
    flex-direction: column;
    gap: 14px;
  }

  .festival__date-card {
    width: 100%;
    min-width: 0;
  }

  .festival__date-card strong {
    font-size: 34px;
  }

  .map-card {
    min-height: 300px;
  }

  .map-card__label {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 24px;
  }

  .site-footer {
    padding: 36px 0;
  }

  .site-footer__links {
    gap: 12px;
  }

  .swal-leverone {
    padding: 20px 20px 18px;
  }

  .swal-leverone__title {
    font-size: 38px;
  }
}
