:root {
  color-scheme: light;
  --ink: #0d1b24;
  --paper: #eef7fc;
  --warm: #ffffff;
  --line: rgba(0, 110, 177, 0.2);
  --blue: #078bd8;
  --blue-deep: #005f9f;
  --blue-soft: #d9f1ff;
  --blue-quiet: #eef9ff;
  --fjord: #0f6f93;
  --moss: #587046;
  --brass: #d7a536;
  --red: var(--blue);
  --pink: #bfe8ff;
  --shadow: 0 18px 42px rgba(0, 79, 130, 0.14);
  --font-body: "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
dd,
dt,
button,
a {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
}

.menu-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.74;
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
  border-radius: 6px;
}

.header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
}

nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

nav a {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

nav a:hover {
  background: var(--blue-soft);
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 2px;
  border: 1px solid rgba(0, 95, 159, 0.24);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 16px rgba(0, 54, 92, 0.08);
}

.language-switch button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 5px 8px;
  background: transparent;
  color: var(--blue-deep);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 950;
  cursor: pointer;
}

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

.language-switch button:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 41, 72, 0.82) 0%, rgba(0, 76, 125, 0.5) 42%, rgba(0, 95, 159, 0.06) 82%),
    linear-gradient(0deg, rgba(0, 31, 54, 0.68), transparent 42%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 48px));
  padding: 110px 24px 82px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a9e7ff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 5.8rem;
}

h2 {
  font-size: 3.35rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.08;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  font-weight: 620;
}

.hero-actions,
.panel-topline,
.site-footer {
  display: flex;
  align-items: center;
}

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

.button,
.small-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(0, 64, 106, 0.28);
  border-radius: 8px;
  padding: 11px 18px;
  background: var(--warm);
  color: var(--blue-deep);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 54, 92, 0.18);
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.88);
}

.small-button {
  min-height: 38px;
  padding: 8px 12px;
  border-width: 1px;
  box-shadow: none;
}

.small-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.hero-ribbon {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1180px, calc(100% - 56px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px auto 0;
}

.hero-ribbon div {
  min-height: 86px;
  border: 1px solid rgba(7, 139, 216, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-ribbon dt {
  color: var(--fjord);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-ribbon dd {
  margin: 6px 0 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.band {
  padding: 76px 28px;
  border-bottom: 1px solid var(--line);
}

.split,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 46px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.big-copy {
  display: grid;
  gap: 18px;
  font-size: 1.24rem;
  font-weight: 650;
}

.big-copy p,
.section-head p,
.calendar-note {
  margin: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.section-head p {
  max-width: 420px;
  font-weight: 720;
}

.section-head p a {
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.photo-band {
  background: #062d49;
  color: var(--warm);
}

.photo-band .eyebrow,
.photo-band .section-head p {
  color: #a9e7ff;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.photo-mosaic figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 241, 255, 0.52);
  border-radius: 8px;
  background: #03243c;
  box-shadow: 0 18px 34px rgba(0, 15, 30, 0.24);
}

.photo-mosaic figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.photo-mosaic figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.photo-mosaic figure:nth-child(3),
.photo-mosaic figure:nth-child(4),
.photo-mosaic figure:nth-child(5) {
  grid-column: span 4;
}

.photo-mosaic figure:nth-child(6),
.photo-mosaic figure:nth-child(7) {
  grid-column: span 6;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-mosaic figure:nth-child(1) img,
.photo-mosaic figure:nth-child(3) img {
  object-position: center 62%;
}

.photo-mosaic figure:nth-child(2) img {
  object-position: center 58%;
}

.photo-mosaic figure:nth-child(4) img {
  object-position: center 43%;
}

.photo-mosaic figure:nth-child(7) img {
  object-position: center 42%;
}

.photo-mosaic figure.is-clickable,
.interior-gallery figure.is-clickable {
  cursor: zoom-in;
}

.photo-mosaic figure.is-clickable:focus-visible,
.interior-gallery figure.is-clickable:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.photo-mosaic figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(0, 61, 103, 0.78);
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-band {
  background: var(--blue-soft);
}

.booking-layout {
  align-items: start;
}

.availability-panel,
.platform-panel {
  border: 1px solid rgba(0, 95, 159, 0.24);
  border-radius: 8px;
  padding: 22px;
  background: var(--warm);
  box-shadow: var(--shadow);
}

.panel-topline {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.label {
  display: block;
  color: var(--fjord);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

#availability-status {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.calendar-legend i {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 95, 159, 0.24);
  border-radius: 5px;
}

.bookable-key {
  background: var(--blue-soft);
}

.unavailable-key {
  background: repeating-linear-gradient(135deg, #eef2f5 0 6px, #d8e2e8 6px 12px);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

#calendar-month {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekday,
.calendar-day {
  min-height: 44px;
  border-radius: 7px;
  padding: 6px;
  text-align: left;
}

.calendar-weekday {
  min-height: 24px;
  color: var(--fjord);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 850;
}

.calendar-day.unavailable {
  border-color: rgba(81, 100, 113, 0.18);
  background: repeating-linear-gradient(135deg, #eef2f5 0 7px, #d8e2e8 7px 14px);
  color: #5e6c76;
}

.calendar-day.open {
  border-color: rgba(7, 139, 216, 0.32);
  background: var(--blue-quiet);
  color: var(--blue-deep);
}

.calendar-day.today {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 2px var(--blue);
}

.calendar-day.outside-month {
  opacity: 0.62;
}

.calendar-note {
  margin-top: 14px;
  color: rgba(13, 27, 36, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
}

.platform-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    linear-gradient(160deg, rgba(7, 139, 216, 0.12), transparent 48%),
    var(--warm);
}

.platform-panel h3 {
  max-width: 11ch;
  font-size: 2.35rem;
}

.platform-panel p {
  max-width: 25rem;
  margin: 0;
  color: rgba(13, 27, 36, 0.72);
  font-weight: 720;
}

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

.inside-band {
  background: var(--paper);
}

.interior-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto 24px;
}

.interior-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 95, 159, 0.18);
  border-radius: 8px;
  background: #062d49;
  box-shadow: var(--shadow);
}

.interior-gallery figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.interior-gallery figure:nth-child(2),
.interior-gallery figure:nth-child(3) {
  grid-column: span 5;
}

.interior-gallery figure:nth-child(4),
.interior-gallery figure:nth-child(5) {
  grid-column: span 6;
}

.interior-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-gallery figure:nth-child(1) img {
  object-position: center 52%;
}

.interior-gallery figure:nth-child(2) img,
.interior-gallery figure:nth-child(5) img {
  object-position: center 58%;
}

.interior-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: fit-content;
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(0, 73, 124, 0.82);
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid,
.town-grid {
  display: grid;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

article {
  min-height: 190px;
  border: 1px solid rgba(0, 95, 159, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: var(--warm);
  box-shadow: var(--shadow);
}

article span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

article p {
  margin: 0;
  font-weight: 650;
}

.wild-band {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    radial-gradient(circle at 16% 18%, rgba(7, 139, 216, 0.2), transparent 34%),
    linear-gradient(135deg, #031624 0%, #062d49 58%, #05304b 100%);
  color: var(--warm);
  isolation: isolate;
}

.wild-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 42px;
  width: min(1180px, 100%);
  min-height: 280px;
  margin: 0 auto;
}

.wild-copy {
  max-width: 680px;
}

.wild-copy .eyebrow {
  color: #9bdcff;
}

.wild-copy h2 {
  max-width: 12ch;
}

.wild-copy p:not(.eyebrow) {
  max-width: 40rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 700;
}

.wild-video {
  position: relative;
  margin: 16px 0 -28px;
  overflow: hidden;
  border: 1px solid rgba(169, 231, 255, 0.34);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: #031624;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  transform: rotate(1.4deg) translateY(10px);
}

.wild-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.78) contrast(1.06) brightness(0.86);
}

.wild-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 22, 36, 0.42)),
    radial-gradient(circle at 72% 24%, rgba(169, 231, 255, 0.15), transparent 42%);
  pointer-events: none;
}

.wild-video figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(0, 61, 103, 0.76);
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.aurora-lines {
  position: absolute;
  inset: 4% -10% auto;
  z-index: 0;
  height: 300px;
  opacity: 1;
  pointer-events: none;
}

.aurora-lines span {
  position: absolute;
  left: -8%;
  width: 118%;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(91, 217, 156, 0.08) 18%, rgba(98, 229, 176, 0.42) 42%, rgba(245, 117, 178, 0.24) 66%, transparent 100%);
  filter: blur(18px);
  transform: rotate(-4deg);
  animation: auroraDrift 9s ease-in-out infinite alternate;
}

.aurora-lines span:nth-child(1) {
  top: 34px;
}

.aurora-lines span:nth-child(2) {
  top: 92px;
  height: 72px;
  background: linear-gradient(90deg, transparent 0%, rgba(169, 231, 255, 0.1) 20%, rgba(85, 204, 170, 0.3) 46%, rgba(255, 142, 184, 0.2) 72%, transparent 100%);
  animation-delay: -4s;
}

.aurora-lines span:nth-child(3) {
  top: 142px;
  height: 68px;
  opacity: 0.62;
  animation-delay: -7s;
}

@keyframes auroraDrift {
  from {
    transform: translate3d(-2%, 0, 0) rotate(-4deg) scaleY(0.88);
  }

  to {
    transform: translate3d(2%, 12px, 0) rotate(-2deg) scaleY(1.04);
  }
}

.town-band {
  background: #fff;
}

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

.town-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(217, 241, 255, 0.62), transparent 54%),
    var(--warm);
}

.town-grid article span {
  margin-bottom: 6px;
  color: var(--blue-deep);
}

.town-grid article:nth-child(2) span,
.town-grid article:nth-child(4) span {
  color: var(--fjord);
}

.town-grid article:nth-child(3) span,
.town-grid article:nth-child(6) span {
  color: var(--brass);
}

.town-grid h3 {
  font-size: 1.42rem;
}

.town-grid a {
  width: fit-content;
  margin-top: 6px;
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.town-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 22, 36, 0.92);
}

.lightbox-open {
  overflow: hidden;
}

.photo-lightbox figure {
  display: grid;
  gap: 12px;
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  margin: 0;
}

.photo-lightbox img {
  display: block;
  width: auto;
  max-width: min(1200px, 94vw);
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.photo-lightbox figcaption {
  color: white;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 9px 13px;
  background: white;
  color: var(--blue-deep);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  background: #062d49;
  color: var(--warm);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.footer-credit {
  color: #a9e7ff;
  font-size: 0.95rem;
  font-weight: 760;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
    padding: 10px 18px;
  }

  .brand img {
    width: 126px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    padding: 6px 7px;
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 10px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy {
    padding-top: 92px;
  }

  .hero-ribbon,
  .split,
  .booking-layout,
  .section-head,
  .feature-grid,
  .town-grid,
  .photo-mosaic,
  .interior-gallery {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .hero-ribbon {
    width: calc(100% - 48px);
  }

  .feature-grid,
  .town-grid,
  .photo-mosaic,
  .interior-gallery {
    width: 100%;
  }

  .photo-mosaic,
  .interior-gallery {
    grid-auto-rows: auto;
  }

  .photo-mosaic figure,
  .photo-mosaic figure:nth-child(1),
  .photo-mosaic figure:nth-child(2),
  .photo-mosaic figure:nth-child(3),
  .photo-mosaic figure:nth-child(4),
  .photo-mosaic figure:nth-child(5),
  .photo-mosaic figure:nth-child(6),
  .photo-mosaic figure:nth-child(7),
  .interior-gallery figure,
  .interior-gallery figure:nth-child(1),
  .interior-gallery figure:nth-child(2),
  .interior-gallery figure:nth-child(3),
  .interior-gallery figure:nth-child(4),
  .interior-gallery figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .wild-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .wild-copy {
    max-width: 760px;
  }

  .wild-video {
    width: min(540px, 100%);
    margin: 0;
    aspect-ratio: 16 / 10;
    transform: rotate(0.8deg);
  }
}

@media (max-width: 620px) {
  .site-header,
  .band,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    padding: 84px 18px 34px;
  }

  .hero-text,
  .big-copy {
    font-size: 1.05rem;
  }

  .hero-ribbon {
    width: calc(100% - 36px);
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  #calendar-month {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 4px;
  }

  #previous-month {
    grid-column: 1;
    grid-row: 2;
  }

  #next-month {
    grid-column: 2;
    grid-row: 2;
  }

  .calendar-day {
    min-height: 38px;
    padding: 5px;
    font-size: 0.82rem;
  }

  .calendar-weekday {
    font-size: 0.65rem;
  }

  .availability-panel,
  .platform-panel {
    padding: 16px;
  }

  .platform-panel h3 {
    max-width: none;
    font-size: 1.95rem;
  }

  .wild-band {
    min-height: 0;
  }

  .wild-copy h2 {
    max-width: 13ch;
  }

  .wild-video {
    aspect-ratio: 4 / 3;
    transform: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
  }

  nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 124px;
  }

  nav {
    justify-content: flex-start;
    gap: 8px;
  }

  .header-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .aurora-lines span {
    animation: none;
  }
}
