:root {
  --ink: #172831;
  --white: #ffffff;
  --page: #e9f1ee;
  --line: #c7d8d3;
  --muted: #60716f;
  --accent: #2f7fa8;
  --accent-2: #1c3f4c;
  --alpine: #667f48;
  --sun: #d9aa44;
  --bg: #f7faf9;
  --panel: #ffffff;
  --panel-2: #dce9e4;
  --hero-a: #2f7fa8;
  --hero-b: #506d44;
  --hero-c: #d9aa44;
  --shadow: 0 22px 70px rgba(21, 56, 66, 0.13);
  color-scheme: light;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body,
.site-header,
.season-switch,
.season-switch::before,
.switch-option,
.hero-planner,
.itinerary-card,
.benefit-card,
.how-section,
.included-list li,
.cta-section,
.site-footer {
  transition:
    background-color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

:root[data-season="winter"] {
  --ink: #edf4f5;
  --page: #101a20;
  --line: #31454d;
  --muted: #b6c6ca;
  --accent: #86cfc3;
  --accent-2: #1e3d45;
  --bg: #142229;
  --panel: #172832;
  --panel-2: #1f343d;
  --hero-a: #06111d;
  --hero-b: #31536d;
  --hero-c: #d9edf4;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

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

button,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 24px;
  height: 74px;
  justify-content: space-between;
  left: 50%;
  max-width: 1240px;
  padding: 0 18px 0 24px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), 1240px);
  z-index: 20;
}

.brand,
.main-nav,
.header-actions {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 900;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  height: 14px;
  width: 14px;
}

.main-nav {
  gap: 26px;
  font-size: 15px;
  font-weight: 800;
}

.header-actions {
  gap: 12px;
}

.season-switch {
  align-items: center;
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--accent));
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 34px rgba(17, 38, 45, 0.1);
  cursor: pointer;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  isolation: isolate;
  min-height: 50px;
  overflow: hidden;
  padding: 6px;
  position: relative;
}

.season-switch::before {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 72%, #fff));
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 8px 18px color-mix(in srgb, var(--accent) 28%, transparent);
  content: "";
  height: calc(100% - 12px);
  left: 6px;
  position: absolute;
  top: 6px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
  width: calc(50% - 6px);
}

:root[data-season="winter"] .season-switch::before {
  transform: translateX(calc(100% + 0px));
}

:root[data-season="winter"] .season-switch {
  background:
    linear-gradient(180deg, rgba(23, 40, 50, 0.86), rgba(16, 28, 36, 0.74));
  border-color: rgba(134, 207, 195, 0.24);
}

:root[data-season="winter"] .season-switch::before {
  background:
    linear-gradient(135deg, #d7f4f8 0%, #8ed9df 56%, #5caeb9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 10px 22px rgba(86, 177, 190, 0.22);
}

.switch-option {
  align-items: center;
  color: color-mix(in srgb, var(--ink) 64%, var(--muted));
  display: flex;
  font-size: 14px;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  min-width: 92px;
  padding: 10px 16px;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.season-switch.large .switch-option {
  min-width: 116px;
}

.season-icon {
  flex: 0 0 auto;
  height: 28px;
  width: 28px;
}

.season-icon-summer {
  color: #587442;
}

.season-icon-winter {
  color: #65aeba;
}

:root[data-season="winter"] .switch-winter,
:root[data-season="winter"] .switch-winter .season-icon-winter {
  color: #0d2b35;
}

:root[data-season="winter"] .switch-summer .season-icon-summer {
  color: #98b487;
}

.header-cta,
.primary-button,
.planner-button {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1d1a;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1.14;
  max-width: 100%;
  min-width: 0;
  padding: 14px 18px;
  text-align: center;
  white-space: normal;
}

.header-profile {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1.14;
  max-width: 100%;
  min-width: 0;
  padding: 13px 16px;
  text-align: center;
  white-space: normal;
}

.compact {
  min-height: 40px;
  padding: 10px 14px;
}

.is-hidden {
  display: none !important;
}

.secondary-button {
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1d1a;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1.14;
  max-width: 100%;
  min-width: 0;
  padding: 14px 18px;
  text-align: center;
  white-space: normal;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 999px;
  height: 3px;
  width: 24px;
}

.hero {
  isolation: isolate;
  min-height: 790px;
  overflow: hidden;
  padding: 170px max(28px, calc((100% - 1240px) / 2)) 84px;
  position: relative;
}

.hero-bg,
.landscape,
.hero-shade {
  inset: 0;
  position: absolute;
}

.landscape {
  opacity: 0;
  transition: opacity 0.3s ease;
}

:root[data-season="summer"] .landscape-summer,
:root[data-season="winter"] .landscape-winter {
  opacity: 1;
}

.landscape-summer {
  background:
    radial-gradient(circle at 75% 18%, #f5e8c8 0 30px, #c99a4a 31px 74px, rgba(201, 154, 74, 0.3) 75px 96px, transparent 97px),
    radial-gradient(circle at 75% 18%, rgba(50, 68, 66, 0.12) 0 128px, transparent 129px),
    linear-gradient(180deg, #eee3d2 0%, #cfc0a8 58%, #a89b83 100%);
}

.landscape-summer::before,
.landscape-winter::before,
.landscape-summer::after,
.landscape-winter::after {
  content: "";
  inset: auto 0 0;
  position: absolute;
}

.landscape-summer::before {
  background: #324442;
  clip-path: polygon(0 52%, 18% 42%, 35% 46%, 52% 31%, 68% 44%, 86% 34%, 100% 38%, 100% 100%, 0 100%);
  height: 62%;
}

.landscape-summer::after {
  background: #8f9b85;
  clip-path: polygon(0 70%, 25% 64%, 48% 72%, 72% 66%, 100% 70%, 100% 100%, 0 100%);
  height: 44%;
}

.landscape-winter {
  background:
    radial-gradient(circle at 72% 18%, #e9f3fa 0 54px, transparent 55px),
    linear-gradient(#06111d 0, #122f4a 58%, #31536d);
}

.landscape-winter::before {
  background: #d9edf4;
  clip-path: polygon(0 58%, 16% 48%, 34% 52%, 50% 35%, 68% 50%, 85% 40%, 100% 43%, 100% 100%, 0 100%);
  height: 60%;
}

.landscape-winter::after {
  background: #f7fbfd;
  clip-path: polygon(0 72%, 24% 66%, 46% 72%, 70% 66%, 100% 68%, 100% 100%, 0 100%);
  height: 42%;
}

.hero-shade {
  background: linear-gradient(105deg, rgba(6, 17, 29, 0.78), rgba(6, 17, 29, 0.28) 54%, rgba(6, 17, 29, 0.06));
  z-index: -1;
}

.hero-content,
.hero-planner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 690px;
}

.hero .eyebrow {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.18);
  color: #f8fbf7;
  display: inline-flex;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  width: fit-content;
}

.eyebrow,
.section-kicker,
.form-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.97;
  margin: 18px 0 24px;
  max-width: 780px;
}

.hero-lead {
  color: #eaf4f7;
  font-size: 21px;
  line-height: 1.55;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hero-planner {
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-left: auto;
  margin-top: -110px;
  max-width: 456px;
  padding: 24px;
}

.hero-planner strong {
  display: block;
  font-size: 24px;
  margin: 8px 0 18px;
}

.planner-grid {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 0.75fr auto;
}

.hero-planner label {
  display: grid;
  gap: 6px;
}

.hero-planner label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-planner select {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  min-height: 48px;
  padding: 0 14px;
}

.planner-button {
  align-items: center;
  align-self: end;
  min-height: 48px;
  padding-block: 0;
}

.season-bar,
.section,
.booking-section,
.how-section,
.included-section,
.cta-section {
  padding: 76px max(28px, calc((100% - 1240px) / 2)) 0;
}

.benefits-band {
  margin: 0 auto;
  max-width: 1240px;
  padding: 76px 0 0;
}

.booking-section {
  padding-top: 76px;
}

.booking-section .section-heading {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.booking-section-inline {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  max-width: none;
  padding: 30px 0 0;
}

.booking-inline-heading {
  margin-bottom: 22px;
  max-width: 780px;
}

.booking-inline-heading h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 8px 0 12px;
}

.booking-inline-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.booking-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.95fr 1.05fr;
}

.booking-card,
.profile-card,
.profile-facts article,
.my-bookings,
.auth-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 36px rgba(6, 18, 26, 0.06);
}

.booking-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.booking-card header {
  display: grid;
  gap: 6px;
}

.booking-card header span,
.tour-choice span,
.booking-row span,
.admin-muted {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card header strong {
  font-size: 24px;
}

.ready-tours,
.place-list,
.booking-history {
  display: grid;
  gap: 12px;
}

.tour-choice,
.place-choice,
.booking-row {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.tour-choice h3,
.booking-row h4 {
  margin: 0;
}

.tour-choice p,
.place-choice p,
.booking-row p {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.tour-choice footer,
.builder-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

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

.constructor-controls label,
.auth-card label,
.admin-form label {
  display: grid;
  gap: 6px;
}

.constructor-controls span,
.auth-card label span,
.admin-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.constructor-controls input,
.constructor-controls select,
.auth-card input,
.admin-form input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 0 14px;
}

.place-choice {
  align-items: start;
  cursor: pointer;
  grid-template-columns: auto 1fr;
}

.place-choice input {
  margin-top: 4px;
}

.builder-summary {
  background: var(--panel-2);
  border-radius: 8px;
  font-weight: 900;
  padding: 16px;
}

.my-bookings {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
}

.profile-section {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.profile-main {
  padding: 140px max(28px, calc((100% - 1240px) / 2)) 80px;
}

.profile-page .profile-section {
  margin-top: 0;
}

.profile-card {
  align-items: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 207, 83, 0.22), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 96%, #ffffff), color-mix(in srgb, var(--panel-2) 32%, var(--panel)));
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px;
}

.profile-card h3 {
  font-size: 28px;
  margin: 6px 0 8px;
}

.profile-card h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  margin: 8px 0 12px;
}

.profile-card p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.profile-facts article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.profile-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-facts strong {
  overflow-wrap: anywhere;
}

.my-bookings h3 {
  font-size: 28px;
  margin: 6px 0 0;
}

.auth-dialog {
  background: transparent;
  border: 0;
  max-width: min(520px, calc(100vw - 28px));
  padding: 0;
}

.auth-dialog::backdrop {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 207, 83, 0.22), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(70, 166, 179, 0.24), transparent 30%),
    rgba(6, 18, 26, 0.58);
  backdrop-filter: blur(8px);
}

.auth-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.98)),
    #ffffff;
  border: 1px solid #ded4c4;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(8, 26, 35, 0.2);
  color: #1f1d1a;
  display: grid;
  gap: 14px;
  min-width: min(500px, calc(100vw - 28px));
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.auth-card::before {
  background: linear-gradient(90deg, #e2b94e, #62bbc4, #1f3c42);
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.auth-card h2 {
  font-size: 30px;
  margin: 0;
}

.auth-card label {
  display: grid;
  gap: 7px;
}

.auth-card label span {
  color: #756f65;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-card input {
  background: #ffffff;
  border: 1px solid #ded4c4;
  border-radius: 8px;
  color: #1f1d1a;
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.auth-card input:focus {
  background: color-mix(in srgb, #ffffff 92%, #eaf7f8);
  border-color: #62bbc4;
  box-shadow: 0 0 0 4px rgba(98, 187, 196, 0.18);
}

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

.dialog-close {
  background: #f3eee4;
  border: 1px solid #ded4c4;
  border-radius: 50%;
  color: #1f1d1a;
  cursor: pointer;
  font-size: 28px;
  height: 38px;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
}

.form-message {
  color: #756f65;
  margin: 0;
  min-height: 20px;
}

.season-bar {
  display: flex;
  justify-content: center;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 720px;
}

.section-heading h2,
.how-copy h2,
.included-section h2,
.cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  margin: 12px 0;
}

.section-heading p,
.how-copy p,
.included-section p,
.cta-section p {
  color: var(--muted);
  line-height: 1.6;
}

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

.tour-booking-panel {
  background: color-mix(in srgb, var(--panel) 92%, var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(18, 32, 42, 0.08);
  margin: 0 auto;
  max-width: 920px;
  padding: 18px;
}

.tour-booking-panel .tour-layout {
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(6, 18, 26, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 720px;
  overflow: hidden;
  padding-bottom: 24px;
}

.tour-booking-panel .itinerary-card {
  box-shadow: none;
  min-height: 0;
  padding-bottom: 16px;
}

.tour-booking-panel .itinerary-card header {
  padding: 20px 18px 16px;
}

.tour-booking-panel .itinerary-card h3 {
  font-size: 34px;
}

.tour-booking-panel .day-chip {
  margin: 16px 18px 8px;
}

.tour-booking-panel .itinerary-list {
  margin: 10px 18px 16px;
  max-height: 270px;
  padding-left: 30px;
}

.tour-booking-panel .itinerary-list li {
  gap: 12px;
  grid-template-columns: 40px 1fr;
  min-height: 98px;
}

.tour-booking-panel .itinerary-list i {
  height: 40px;
  width: 40px;
}

.tour-booking-panel .advantage,
.tour-booking-panel .price-box,
.tour-booking-panel .tour-select-button {
  margin-left: 18px;
  margin-right: 18px;
}

.tour-booking-panel .booking-card {
  box-shadow: none;
  min-width: 0;
}

.tour-select-button {
  margin: 0 28px;
}

.itinerary-card header {
  border-bottom: 1px solid var(--line);
  padding: 26px 24px 22px;
  text-align: center;
}

.itinerary-card header span {
  color: var(--muted);
  font-weight: 800;
}

.itinerary-card h3 {
  font-size: 42px;
  line-height: 1;
  margin: 8px 0 0;
}

.day-chip {
  align-items: center;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 999px;
  color: var(--accent-2);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  margin: 24px 0 10px 28px;
  padding: 9px 16px;
}

.day-chip span {
  background: var(--accent-2);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.itinerary-list {
  display: grid;
  gap: 18px;
  max-height: 300px;
  list-style: none;
  margin: 12px 28px 22px;
  overflow-y: auto;
  padding: 0 0 0 34px;
  position: relative;
  scrollbar-color: var(--accent) color-mix(in srgb, var(--line) 65%, transparent);
  scrollbar-width: thin;
}

.itinerary-list::-webkit-scrollbar {
  width: 8px;
}

.itinerary-list::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--line) 55%, transparent);
  border-radius: 999px;
}

.itinerary-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.itinerary-list::before {
  border-left: 3px dotted var(--line);
  bottom: 6px;
  content: "";
  left: 8px;
  position: absolute;
  top: 6px;
}

.itinerary-list li {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 46px 1fr;
  min-height: 112px;
}

.itinerary-list i {
  background: var(--accent);
  border-radius: 8px;
  display: block;
  height: 46px;
  width: 46px;
}

.itinerary-list strong {
  display: block;
}

.day-points {
  color: var(--muted);
  display: grid;
  gap: 5px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.day-points li {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  min-height: 0;
  padding-left: 14px;
  position: relative;
}

.day-points li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 5px;
}

.itinerary-list span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 2px;
}

.advantage {
  background: var(--panel-2);
  border-radius: 14px;
  color: color-mix(in srgb, var(--ink) 72%, var(--accent));
  font-weight: 900;
  margin: auto 28px 18px;
  padding: 16px 18px;
}

.price-box {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  margin: 0 76px;
  padding: 18px 22px;
}

.price-box span {
  color: var(--muted);
  font-weight: 900;
}

.price-box strong {
  font-size: 24px;
}

.benefit-grid {
  --benefit-card-width: 218px;
  --benefit-cycle-width: calc((var(--benefit-card-width) + 14px) * 6);
  --benefit-marquee-duration: 34s;
  animation: benefits-marquee var(--benefit-marquee-duration) linear infinite;
  cursor: grab;
  display: flex;
  gap: 14px;
  touch-action: pan-y;
  user-select: none;
  width: max-content;
  will-change: transform;
}

.benefits-band {
  overflow: hidden;
}

.benefits-band .section-heading {
  position: relative;
  z-index: 1;
}

.benefit-grid.is-manual {
  animation: none;
  cursor: grab;
  width: max-content;
}

.benefit-grid:active,
.benefit-grid.is-manual:active {
  cursor: grabbing;
}

@keyframes benefits-marquee {
  from {
    transform: translateX(calc(-1 * var(--benefit-cycle-width)));
  }
  to {
    transform: translateX(0);
  }
}

.benefit-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  flex: 0 0 var(--benefit-card-width);
  min-height: 134px;
  padding: 20px;
}

.benefit-icon {
  align-items: center;
  background: color-mix(in srgb, var(--accent-2) 12%, transparent);
  border-radius: 10px;
  color: var(--accent-2);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 16px;
  width: 44px;
}

.benefit-icon svg {
  height: 22px;
  width: 22px;
}

.benefit-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.how-section,
.included-section,
.cta-section {
  display: grid;
  gap: 40px;
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-section {
  display: grid;
  gap: 32px;
  grid-template-columns: 0.75fr 1.25fr;
  padding: 76px max(28px, calc((100% - 1240px) / 2)) 0;
}

.faq-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  margin: 12px 0;
}

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

.faq-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.faq-list h3 {
  margin: 0 0 8px;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.how-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 76px auto 0;
  max-width: 1240px;
  padding: 48px;
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.steps span {
  background: var(--accent);
  border-radius: 50%;
  color: #0b1620;
  display: grid;
  font-weight: 950;
  height: 36px;
  place-items: center;
  width: 36px;
}

.steps h3 {
  margin: 18px 0 8px;
}

.steps p {
  color: var(--muted);
  line-height: 1.45;
}

.included-section {
  align-items: start;
}

.included-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.included-list li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  padding: 18px;
}

.cta-section {
  align-items: center;
  background: var(--accent-2);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 76px;
  max-width: 1240px;
  padding: 56px;
}

.cta-section p,
.cta-section .section-kicker {
  color: #eaf4f7;
}

.site-footer {
  background: var(--accent-2);
  border-radius: 8px 8px 0 0;
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.55fr) minmax(320px, 1.25fr);
  margin-top: 76px;
  padding: 46px max(28px, calc((100% - 1240px) / 2));
}

.site-footer .brand {
  justify-content: start;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-column p,
.footer-column span,
.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.footer-column {
  align-content: start;
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.footer-column a {
  font-weight: 800;
}

.footer-contact-intro {
  margin: 0 0 4px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-contact-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-width: 0;
  padding: 11px 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.footer-phone {
  grid-column: 1 / -1;
}

.footer-contact-mark {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #fff !important;
  display: flex;
  font-size: 12px;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.footer-contact-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer-contact-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
}

.footer-contact-copy strong {
  color: #fff;
  font-size: 14px;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .site-header {
    height: 64px;
    top: 12px;
  }

  .main-nav,
  .header-cta,
  .header-profile,
  .header-actions > .season-switch {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header[data-open="true"] .main-nav {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: grid;
    gap: 14px;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 74px;
  }

  .hero {
    min-height: 790px;
    padding: 110px 20px 36px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-buttons {
    display: none;
  }

  .hero-planner {
    margin: 42px 0 0;
    max-width: none;
  }

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

  .season-bar,
  .section,
    .booking-section,
    .benefits-band,
    .trip-lab,
    .how-section,
    .included-section,
    .faq-section,
    .cta-section,
    .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tour-layout,
    .booking-grid,
    .trip-lab,
    .how-section,
    .included-section,
    .faq-section,
    .cta-section,
    .site-footer {
    grid-template-columns: 1fr;
  }

  .price-box {
    margin: 0 24px;
  }

  .how-section,
  .cta-section {
    padding: 28px;
  }

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

  .included-list {
    grid-template-columns: 1fr;
  }

  .constructor-controls {
    grid-template-columns: 1fr;
  }

  .profile-card {
    align-items: stretch;
    display: grid;
  }

  .profile-actions {
    justify-content: start;
  }

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

  .auth-name-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header {
    gap: 14px;
    padding: 0 14px 0 18px;
  }

  .main-nav {
    gap: 10px;
    font-size: 13px;
  }

  .main-nav a {
    padding-inline: 8px;
  }

  .header-cta {
    display: none;
  }

  .switch-option {
    min-width: 82px;
    padding-inline: 12px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 44px;
    width: 54px;
  }

  .brand span:last-child {
    max-width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .season-switch.large {
    width: 100%;
  }

  .switch-option {
    min-width: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .itinerary-card h3 {
    font-size: 34px;
  }

  .itinerary-list {
    margin-left: 20px;
    margin-right: 20px;
  }

  .benefit-grid {
    --benefit-card-width: 230px;
    cursor: grab;
    width: max-content;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-phone {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-grid {
    animation: none;
  }

  .hero-video {
    animation: none;
    transform: none;
    transition: opacity 0.2s ease;
  }
}

.admin-page {
  background: var(--page);
}

.admin-shell {
  padding: 32px max(24px, calc((100% - 1240px) / 2)) 80px;
}

.admin-topbar,
.admin-section,
.admin-stat-card,
.admin-booking-card,
.admin-user-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.admin-topbar h1,
.admin-section h2,
.admin-booking-card h3 {
  margin: 0;
}

.admin-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.admin-stat-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.admin-stat-card span,
.admin-booking-card header span,
.admin-user-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stat-card strong {
  font-size: 42px;
  line-height: 1;
}

.admin-stat-card p,
.admin-booking-card p,
.admin-user-card p {
  color: var(--muted);
  margin: 0;
}

.admin-section {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
}

.admin-section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.admin-bookings,
.admin-list {
  display: grid;
  gap: 14px;
}

.admin-booking-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-booking-card header,
.admin-user-card {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.admin-booking-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-booking-card select,
.admin-user-card input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 40px;
  padding: 0 12px;
}

.admin-booking-card details {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px 14px;
}

.admin-booking-card summary {
  cursor: pointer;
  font-weight: 900;
}

.admin-booking-card ul {
  color: var(--muted);
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.admin-form {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.admin-user-card {
  padding: 16px;
}

.admin-user-card form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .admin-topbar,
  .admin-booking-card header,
  .admin-user-card {
    display: grid;
  }

  .admin-stats,
  .admin-form {
    grid-template-columns: 1fr;
  }
}

/* Neutral ArcticAurora redesign */
.site-header {
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(18, 32, 42, 0.08);
  height: 72px;
}

.brand {
  gap: 12px;
}

.site-header .brand > span {
  color: #0b1f29;
  transition:
    color 0.38s ease,
    text-shadow 0.38s ease;
}

:root[data-season="winter"] .site-header .brand > span {
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(255, 255, 255, 0.14);
}

:root[data-season="summer"] .site-header .brand > span {
  color: #0b1f29;
  text-shadow: none;
}

.brand-logo {
  background: transparent;
  border-radius: 0;
  display: block;
  height: 52px;
  object-fit: contain;
  width: 64px;
}

.brand-mark {
  display: none;
}

.main-nav {
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  gap: 20px;
  font-size: 14px;
}

.main-nav a {
  border-radius: 999px;
  padding: 9px 11px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.main-nav a:hover {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--ink);
}

.mobile-menu-only {
  display: none;
}

.header-cta,
.primary-button,
.planner-button {
  border-radius: 6px;
  box-shadow: none;
}

.header-profile {
  border-radius: 6px;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  padding: 12px 15px;
}

.header-profile:hover {
  background: var(--panel-2);
  color: var(--ink);
}

.secondary-button {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.season-switch {
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 14px 34px rgba(18, 42, 48, 0.11);
}

.switch-option {
  font-size: 13px;
  min-width: 92px;
  padding: 8px 15px;
}

.season-icon {
  height: 23px;
  width: 23px;
}

.hero {
  min-height: 760px;
  padding-top: 160px;
}

.hero-bg,
.hero-shade {
  z-index: 0;
}

.hero-bg {
  background: #081521;
  overflow: hidden;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: none;
  transform-origin: center;
  transition: opacity 0.24s ease;
  width: 100%;
  z-index: 1;
}

.hero-video.is-visible {
  opacity: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 32, 27, 0.82), rgba(18, 32, 27, 0.48) 48%, rgba(18, 32, 27, 0.2)),
    linear-gradient(0deg, rgba(18, 32, 27, 0.36), transparent 55%);
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 0;
  line-height: 1;
}

.hero-lead {
  max-width: 690px;
}

.hero-planner {
  border-radius: 8px;
  margin-top: -78px;
}

.season-bar {
  display: none;
}

.visual-story {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 76px max(28px, calc((100% - 1240px) / 2)) 0;
}

.visual-story article {
  align-content: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.visual-story article.is-changing {
  opacity: 0.58;
  transform: translateY(8px);
}

.visual-story img {
  aspect-ratio: 16 / 10;
  display: block;
  height: clamp(260px, 20vw, 330px);
  object-fit: cover;
  transition:
    filter 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease;
  width: 100%;
}

:root[data-season="winter"] .visual-story img {
  filter: saturate(0.88) contrast(1.04);
}

.visual-story article:hover img {
  transform: scale(1.025);
}

.visual-story div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.visual-story span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.visual-story h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}

.visual-story p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.trip-lab {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  padding: 76px max(28px, calc((100% - 1240px) / 2)) 0;
}

.trip-lab-copy {
  align-content: center;
  display: grid;
  gap: 18px;
}

.trip-lab-copy h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  margin: 0;
}

.trip-lab-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.trip-tabs {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 6px;
}

.trip-tabs button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
  padding: 12px 14px;
}

.trip-tabs button.is-active {
  background: var(--accent);
  color: #1f1d1a;
}

.trip-lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trip-preview {
  align-items: stretch;
  background: var(--panel);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  height: 540px;
  min-height: 0;
  overflow: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.trip-preview.is-changing {
  opacity: 0.72;
  transform: translateY(8px);
}

.trip-preview-media {
  background: var(--panel-2);
  height: calc(100% + 2px);
  margin-top: -2px;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.trip-preview-media img {
  display: block;
  height: calc(100% + 24px);
  margin-top: -12px;
  min-height: 0;
  object-fit: cover;
  width: 100%;
}

.trip-preview-media span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 29, 26, 0.12);
  border-radius: 999px;
  color: #1f1d1a;
  font-size: 12px;
  font-weight: 950;
  left: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  position: absolute;
  top: 16px;
  white-space: normal;
}

.trip-preview-body {
  align-content: start;
  background: var(--panel);
  display: grid;
  gap: 12px;
  height: calc(100% + 2px);
  margin-top: -2px;
  min-height: 0;
  overflow: hidden;
  padding: 24px;
}

.trip-preview-body > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trip-preview h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.04;
  margin: 0;
}

.trip-preview p {
  color: var(--muted);
  line-height: 1.44;
  margin: 0;
}

.trip-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trip-metrics span {
  background: color-mix(in srgb, var(--accent) 14%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  padding: 8px 10px;
}

.trip-days {
  counter-reset: trip-day;
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trip-days li {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  font-weight: 850;
  gap: 10px;
  grid-template-columns: 34px 1fr;
  padding: 10px;
}

.trip-days li::before {
  background: var(--accent-2);
  border-radius: 50%;
  color: #fff;
  content: counter(trip-day);
  counter-increment: trip-day;
  display: grid;
  font-size: 13px;
  height: 34px;
  place-items: center;
  width: 34px;
}

.itinerary-card,
.booking-card,
.benefit-card,
.how-section,
.included-list li,
.cta-section,
.profile-card,
.profile-facts article,
.my-bookings {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(24, 38, 33, 0.06);
}

.day-chip,
.advantage,
.price-box,
.builder-summary {
  border-radius: 6px;
}

.cta-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 154, 74, 0.18), transparent 34%),
    linear-gradient(135deg, #324442, #1f1d1a);
}

:root[data-season="summer"] .site-header {
  background: color-mix(in srgb, #f8fcfa 92%, transparent);
  border-color: rgba(35, 86, 96, 0.18);
  box-shadow: 0 16px 46px rgba(15, 53, 66, 0.12);
}

:root[data-season="summer"] .header-cta,
:root[data-season="summer"] .primary-button,
:root[data-season="summer"] .planner-button {
  background: var(--accent);
  color: #ffffff;
}

:root[data-season="summer"] .header-cta:hover,
:root[data-season="summer"] .primary-button:hover,
:root[data-season="summer"] .planner-button:hover {
  background: #256c91;
}

:root[data-season="summer"] .secondary-button {
  background: #ffffff;
  border: 1px solid #b9cdc7;
  color: var(--accent-2);
}

:root[data-season="summer"] .season-switch {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 245, 242, 0.76));
  border-color: rgba(65, 112, 96, 0.24);
}

:root[data-season="summer"] .season-switch::before {
  background:
    linear-gradient(135deg, #f0d27d 0%, #dfae45 54%, #c79632 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 10px 22px rgba(111, 78, 22, 0.18);
}

:root[data-season="summer"] .switch-summer {
  color: #142a23;
}

:root[data-season="summer"] .switch-winter {
  color: #5d6f6c;
}

:root[data-season="summer"] .switch-summer .season-icon-summer {
  color: #405c32;
}

:root[data-season="summer"] .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 29, 40, 0.86), rgba(17, 52, 61, 0.5) 48%, rgba(18, 57, 67, 0.16)),
    linear-gradient(0deg, rgba(12, 38, 46, 0.38), transparent 58%);
}

:root[data-season="summer"] .hero .eyebrow {
  background:
    linear-gradient(135deg, rgba(217, 170, 68, 0.28), rgba(47, 127, 168, 0.16)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 199, 91, 0.34);
  color: #ffe59a;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

:root[data-season="summer"] .hero-planner,
:root[data-season="summer"] .tour-booking-panel,
:root[data-season="summer"] .booking-help,
:root[data-season="summer"] .profile-card {
  background: #f9fcfb;
  border-color: #bfd1cb;
  box-shadow: 0 20px 60px rgba(20, 58, 68, 0.14);
}

:root[data-season="summer"] .visual-story article,
:root[data-season="summer"] .itinerary-card,
:root[data-season="summer"] .booking-card,
:root[data-season="summer"] .benefit-card,
:root[data-season="summer"] .faq-list article,
:root[data-season="summer"] .profile-facts article,
:root[data-season="summer"] .my-bookings {
  background: #ffffff;
  border-color: #c7d8d3;
  box-shadow: 0 12px 36px rgba(23, 63, 75, 0.07);
}

:root[data-season="summer"] .section-kicker,
:root[data-season="summer"] .visual-story span {
  color: var(--alpine);
}

:root[data-season="summer"] .visual-story article:nth-child(1) {
  border-top: 0;
}

:root[data-season="summer"] .visual-story article:nth-child(2) {
  border-top: 0;
}

:root[data-season="summer"] .visual-story article:nth-child(3) {
  border-top: 0;
}

:root[data-season="summer"] .visual-story img {
  filter: saturate(1.06) contrast(1.04);
}

:root[data-season="summer"] .trip-preview {
  box-shadow: none;
}

:root[data-season="summer"] .trip-tabs button.is-active {
  color: #ffffff;
}

:root[data-season="summer"] .booking-steps b {
  color: #ffffff;
}

:root[data-season="summer"] .cta-section {
  background: var(--accent-2);
  border-top: 4px solid var(--sun);
}

:root[data-season="summer"] .auth-card::before {
  background: linear-gradient(90deg, var(--accent), var(--alpine), var(--sun));
}

:root[data-season="summer"] .auth-card input:focus {
  background: color-mix(in srgb, #ffffff 94%, var(--page));
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 127, 168, 0.16);
}

@media (max-width: 980px) {
  .site-header[data-open="true"] .main-nav .mobile-menu-only {
    display: grid;
  }

  .site-header[data-open="true"] .main-nav a.mobile-menu-only {
    display: block;
  }

  .visual-story {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .visual-story img {
    height: clamp(220px, 58vw, 320px);
  }

  .trip-lab {
    grid-template-columns: 1fr;
  }

  .trip-preview {
    grid-template-columns: 1fr;
    height: auto;
  }

  .trip-preview-media,
  .trip-preview-body {
    height: auto;
    margin-top: 0;
    min-height: 0;
  }

  .trip-preview-body {
    overflow: visible;
  }

  .trip-preview-media img {
    aspect-ratio: 16 / 10;
    height: auto;
    margin-top: 0;
    min-height: 0;
  }
}

.booking-wizard {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 220px 1fr;
}

.booking-steps {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
  position: sticky;
  top: 110px;
}

.booking-steps span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-weight: 900;
  gap: 10px;
}

.booking-steps b {
  background: var(--accent);
  border-radius: 50%;
  color: #111a1f;
  display: grid;
  height: 30px;
  place-items: center;
  width: 30px;
}

.booking-workspace {
  gap: 20px;
}

.booking-topline {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(130px, 0.7fr) minmax(230px, 1.3fr);
}

.booking-topline h3 {
  font-size: 30px;
  line-height: 1;
  margin: 6px 0 0;
}

.booking-mode {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  padding: 8px;
}

.booking-mode button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
  min-height: 46px;
}

.booking-mode button.is-active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(18, 32, 42, 0.08);
}

.booking-help {
  background: var(--panel-2);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.booking-help strong {
  font-size: 20px;
}

.booking-help p,
.booking-panel-head p,
.builder-summary small {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.booking-controls {
  grid-template-columns: 1fr 1fr 1fr;
}

.booking-controls:has([data-days-control].is-hidden) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-panel {
  display: grid;
  gap: 14px;
}

.booking-panel-head {
  display: grid;
  gap: 4px;
}

.booking-panel-head span {
  font-size: 18px;
  font-weight: 950;
}

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

.ready-tours.is-changing {
  animation: readyToursChange 0.34s ease;
}

.tour-choice {
  align-content: start;
  animation: tourCardIn 0.34s ease both;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 92%, var(--accent) 8%), var(--bg));
  border-color: color-mix(in srgb, var(--line) 78%, var(--accent) 22%);
  gap: 14px;
  min-height: 100%;
  padding: 18px;
}

@keyframes readyToursChange {
  0% {
    opacity: 0.55;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tourCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-choice-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.tour-choice-head strong {
  background: color-mix(in srgb, var(--accent) 18%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  border-radius: 999px;
  padding: 7px 10px;
  white-space: nowrap;
}

.tour-choice h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
}

.route-days {
  counter-reset: route-day;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.route-days li {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px 1fr;
  position: relative;
}

.route-days li:not(:last-child)::after {
  background: color-mix(in srgb, var(--accent-2) 34%, transparent);
  content: "";
  height: calc(100% - 24px);
  left: 17px;
  position: absolute;
  top: 38px;
  width: 1px;
}

.route-days b {
  background: var(--accent-2);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-size: 13px;
  height: 34px;
  place-items: center;
  width: 34px;
}

.route-days strong {
  display: block;
  margin-bottom: 4px;
}

.route-days p {
  font-size: 14px;
}

.tour-choice footer {
  margin-top: auto;
}

.place-list {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}

.place-choice {
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.place-choice:has(input:checked) {
  background: color-mix(in srgb, var(--accent) 14%, var(--panel));
  border-color: color-mix(in srgb, var(--accent) 70%, var(--line));
}

.place-choice {
  cursor: pointer;
  transform-origin: center;
}

.place-choice:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  transform: translateY(-2px);
}

.place-choice.is-tapped {
  animation: placeTap 0.42s ease;
}

.place-choice:has(input:checked) strong::after {
  background: var(--accent);
  border-radius: 999px;
  content: "Выбрано";
  display: inline-block;
  font-size: 11px;
  margin-left: 8px;
  padding: 4px 7px;
  vertical-align: middle;
}

@keyframes placeTap {
  0% {
    transform: scale(1);
  }
  42% {
    box-shadow: 0 18px 36px rgba(31, 29, 26, 0.16);
    transform: scale(1.025);
  }
  100% {
    transform: scale(1);
  }
}

.builder-summary > div {
  display: grid;
  gap: 4px;
}

.builder-summary [data-builder-total] {
  font-size: 18px;
}

.route-map-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  margin-top: 18px;
  padding: 22px;
}

.route-map-copy {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.route-map-copy h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin: 0;
}

.route-map-copy p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.route-map-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.route-map {
  background:
    radial-gradient(ellipse at 58% 55%, color-mix(in srgb, var(--accent) 20%, transparent) 0 10%, transparent 11%),
    linear-gradient(135deg, transparent 0 28%, color-mix(in srgb, var(--accent-2) 10%, transparent) 29% 31%, transparent 32%),
    linear-gradient(90deg, rgba(31, 29, 26, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 29, 26, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, color-mix(in srgb, var(--panel-2) 72%, #ffffff), var(--bg));
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.map-region {
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 74%, var(--muted));
  font-size: 12px;
  font-weight: 950;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
}

.map-region-city {
  left: 38%;
  top: 56%;
}

.map-region-lake {
  left: 54%;
  top: 50%;
}

.map-region-mountains {
  right: 8%;
  top: 18%;
}

.map-route-line {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-2) 42%, transparent), transparent);
  height: 5px;
  left: 12%;
  position: absolute;
  top: 58%;
  transform: rotate(-18deg);
  width: 78%;
}

.map-pin {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: 5px;
  justify-items: center;
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 2;
}

.map-pin span {
  background: var(--accent-2);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 20px rgba(31, 29, 26, 0.18);
  height: 22px;
  transform: rotate(-45deg);
  width: 22px;
}

.map-pin b {
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  max-width: 150px;
  overflow: hidden;
  padding: 5px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-pin.is-active span {
  background: var(--accent);
  height: 28px;
  width: 28px;
}

.map-pin.is-active b {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  font-weight: 950;
}

.route-map-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}

.route-map-list article {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px 1fr;
  padding: 12px;
}

.route-map-list article.is-active {
  background: color-mix(in srgb, var(--accent) 12%, var(--panel));
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
}

.route-map-list span {
  background: var(--accent-2);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-size: 12px;
  font-weight: 950;
  height: 34px;
  place-items: center;
  width: 34px;
}

.route-map-list strong {
  display: block;
}

.route-map-list p {
  color: var(--muted);
  line-height: 1.4;
  margin: 4px 0 6px;
}

.route-map-list a {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.map-page {
  height: 100vh;
  overflow: hidden;
}

.map-app {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100vh;
}

.map-topbar {
  align-items: center;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  padding: 14px 22px;
  position: relative;
  z-index: 10;
}

.map-brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 950;
  gap: 10px;
}

.map-brand::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 13px;
  width: 13px;
}

.map-heading {
  display: grid;
  gap: 2px;
}

.map-heading strong {
  font-size: clamp(20px, 2.2vw, 30px);
}

.map-heading span {
  color: var(--muted);
  font-weight: 800;
}

.map-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.map-toolbar button,
.map-toolbar a,
.map-zoom button,
.map-details a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  padding: 12px 14px;
}

.map-toolbar button.is-active,
.map-details a {
  background: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 72%, var(--line));
}

.full-map-stage {
  background: #dde6ea;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.leaflet-route-map {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.leaflet-route-map::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 74%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(235, 248, 255, 0.34), rgba(255, 255, 255, 0.18));
  background-size: 42px 42px, 68px 68px, 54px 54px, auto;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.35s ease;
  z-index: 450;
}

:root[data-season="summer"] .leaflet-tile-pane {
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

:root[data-season="winter"] .leaflet-tile-pane {
  filter: saturate(0.45) contrast(0.9) brightness(1.28) hue-rotate(165deg);
}

:root[data-season="winter"] .leaflet-route-map::after {
  opacity: 1;
}

.leaflet-container {
  background: #dde6ea;
  color: #1f1d1a;
  font: inherit;
}

.leaflet-control-attribution {
  display: none !important;
}

.aa-leaflet-pin {
  filter: drop-shadow(0 8px 10px rgba(31, 29, 26, 0.25));
}

.aa-leaflet-pin.is-active {
  filter: hue-rotate(145deg) saturate(1.15) drop-shadow(0 10px 12px rgba(31, 29, 26, 0.28));
  transform-origin: 12px 41px;
}

.aa-marker-tooltip {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 29, 26, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(31, 29, 26, 0.12);
  color: #1f1d1a;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
}

.aa-marker-tooltip::before {
  display: none;
}

@keyframes markerIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(31, 29, 26, 0.28), 0 0 0 0 rgba(201, 154, 74, 0.45);
  }
  55% {
    box-shadow: 0 12px 24px rgba(31, 29, 26, 0.28), 0 0 0 13px rgba(201, 154, 74, 0);
  }
}

.map-side-panel {
  bottom: 22px;
  display: block;
  gap: 12px;
  max-height: calc(100% - 44px);
  overflow: visible;
  pointer-events: none;
  position: absolute;
  right: 22px;
  top: 22px;
  width: min(430px, calc(100% - 44px));
  z-index: 5;
}

.map-details {
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(31, 29, 26, 0.12);
}

.map-details {
  display: grid;
  gap: 12px;
  overflow: hidden;
  pointer-events: auto;
  padding: 20px;
  position: relative;
}

.map-card-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 29, 26, 0.14);
  border-radius: 50%;
  color: #1f1d1a;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  z-index: 2;
}

.map-photo-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1.3fr 0.7fr;
  margin: -20px -20px 2px;
}

.map-photo-grid img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.map-photo-grid img:first-child {
  aspect-ratio: 16 / 10;
}

.map-details span,
.map-point-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-details h1 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  margin: 0;
}

.map-details p {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.map-details a {
  justify-self: start;
}

.map-card-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.map-card-meta span {
  background: color-mix(in srgb, var(--panel-2) 70%, var(--panel));
  border-radius: 999px;
  padding: 7px 10px;
}

.map-point-list {
  display: none;
}

.map-point-list button {
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 5px;
  padding: 14px;
  text-align: left;
  transform-origin: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.map-point-list button:hover {
  transform: translateY(-2px);
}

.map-point-list button.is-active {
  background: color-mix(in srgb, var(--accent) 16%, var(--panel));
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
}

.map-point-list button.is-tapped {
  animation: placeTap 0.42s ease;
}

.map-details.is-changing {
  animation: detailChange 0.28s ease;
}

.map-point-list strong {
  font-size: 18px;
}

.map-point-list small {
  color: var(--muted);
  line-height: 1.35;
}

.map-zoom {
  bottom: 22px;
  display: grid;
  gap: 8px;
  left: 22px;
  position: absolute;
  z-index: 6;
}

@keyframes detailChange {
  from {
    opacity: 0.45;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .tour-booking-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .tour-booking-panel .tour-layout {
    grid-template-columns: 1fr;
  }

  .booking-topline {
    grid-template-columns: 1fr;
  }

  .booking-wizard {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    position: static;
  }

  .ready-tours {
    grid-template-columns: 1fr;
  }

  .route-map-shell {
    grid-template-columns: 1fr;
  }

  .route-map {
    min-height: 420px;
  }

  .booking-controls {
    grid-template-columns: 1fr;
  }

  .map-topbar {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .map-toolbar {
    justify-content: start;
  }

  .map-side-panel {
    bottom: 16px;
    max-height: 46%;
    right: 16px;
    top: auto;
    width: calc(100% - 32px);
  }

  .map-details {
    padding: 16px;
  }
}

@media (max-width: 760px) {
  .hero {
    display: grid;
    min-height: auto;
    padding: 104px 20px 34px;
  }

  .hero-content {
    max-width: none;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.02;
    margin: 14px 0 18px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.48;
    margin: 0;
    max-width: none;
  }

  .hero-planner {
    margin: 28px 0 0;
    max-width: none;
    padding: 18px;
  }

  .hero-planner strong {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .map-topbar {
    gap: 10px;
    min-height: auto;
    padding: 12px 14px;
  }

  .map-toolbar button,
  .map-toolbar a,
  .map-zoom button,
  .map-details a {
    padding: 10px 12px;
  }

  .map-heading span {
    font-size: 13px;
  }

  .map-side-panel {
    max-height: 48%;
  }

  .map-point-list {
    display: none;
  }

  .map-zoom {
    bottom: calc(48% + 28px);
    left: 14px;
  }

  .map-page .map-zoom {
    display: none;
  }
}

@media (max-width: 760px) {
  .trip-lab {
    gap: 18px;
    padding-top: 56px;
  }

  .trip-lab-copy h2 {
    font-size: 36px;
  }

  .trip-lab-copy p {
    font-size: 16px;
  }

  .trip-tabs {
    border-radius: 8px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .trip-lab-actions .compact {
    flex: 1;
  }

  .trip-preview {
    min-height: 0;
  }

  .trip-preview-body {
    height: auto;
    overflow: visible;
    padding: 18px;
  }

  .trip-days li {
    align-items: start;
  }

}

@media (max-width: 1320px) and (min-width: 981px) {
  .site-header {
    gap: 14px;
    padding-left: 18px;
    padding-right: 14px;
  }

  .main-nav {
    gap: 10px;
    font-size: 13px;
  }

  .main-nav a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .header-cta {
    display: none;
  }

  .switch-option {
    min-width: 82px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 560px) {
  .header-cta,
  .header-profile,
  .primary-button,
  .secondary-button,
  .planner-button {
    overflow-wrap: anywhere;
    padding-left: 12px;
    padding-right: 12px;
  }

  .tour-choice footer,
  .builder-summary,
  .trip-lab-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tour-choice footer .compact,
  .builder-summary .compact,
  .trip-lab-actions .compact,
  .map-panel-button,
  [data-book-custom] {
    width: 100%;
  }
}

html[data-season="summer"] .site-header .brand > span {
  color: #07151c !important;
  text-shadow: none !important;
}

html[data-season="winter"] .site-header .brand > span {
  color: #ffffff !important;
  text-shadow: 0 8px 28px rgba(255, 255, 255, 0.14) !important;
}

.site-header .brand > span {
  transition:
    color 0.42s ease,
    text-shadow 0.42s ease;
}

.site-header .brand-logo {
  transition:
    opacity 0.42s ease;
}

.site-header .brand-logo-stack {
  display: block;
  flex: 0 0 64px;
  height: 52px;
  position: relative;
  width: 64px;
}

.site-header .brand-logo-stack .brand-logo {
  filter: none !important;
  height: 100%;
  inset: 0;
  object-fit: contain;
  opacity: 0;
  transform: translateZ(0);
  position: absolute;
  transition:
    opacity 0.42s ease,
    filter 0.42s ease;
  width: 100%;
}

html[data-season="summer"] .site-header .brand-logo-stack .brand-logo,
html[data-season="winter"] .site-header .brand-logo-stack .brand-logo {
  filter: drop-shadow(0 10px 24px rgba(42, 157, 164, 0.16)) !important;
}

html[data-season="summer"] .site-header .brand-logo-summer,
html[data-season="winter"] .site-header .brand-logo-winter {
  opacity: 1;
}

html[data-season="summer"] .site-header .brand-logo-winter,
html[data-season="winter"] .site-header .brand-logo-summer {
  opacity: 0;
}

@media (max-width: 560px) {
  .site-header .brand-logo-stack {
    flex-basis: 54px;
    height: 44px;
    width: 54px;
  }
}
