:root {
  --paper: #f4efe4;
  --ink: #111814;
  --muted: #67716a;
  --moss: #38584a;
  --ember: #d86d2d;
  --gold: #f2bd67;
  --ice: #e9f3f2;
  --night: #0d1213;
  --line: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
select {
  font: inherit;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -6;
  background:
    linear-gradient(90deg, rgba(8, 14, 15, 0.6), rgba(9, 13, 15, 0.08) 48%, rgba(8, 12, 14, 0.46)),
    linear-gradient(180deg, rgba(254, 219, 154, 0.2), rgba(7, 12, 13, 0.04) 36%, rgba(8, 9, 8, 0.74)),
    url("./assets/volcano-hero.png") center / cover no-repeat;
  filter: brightness(1.12) contrast(1.07) saturate(1.1) sepia(0.08);
  transform: scale(1.04);
  animation: slowReveal 16s ease-in-out infinite alternate, dawnGrade 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(ellipse at 50% 6%, rgba(255, 229, 178, 0.32), transparent 38%),
    radial-gradient(ellipse at 54% 30%, rgba(242, 189, 103, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 238, 205, 0.08), transparent 48%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
  animation: dawnSky 14s ease-in-out infinite alternate;
}

.volcanic-glow {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  z-index: -4;
  background:
    radial-gradient(ellipse at 28% 62%, rgba(242, 189, 103, 0.24), transparent 32%),
    radial-gradient(ellipse at 68% 46%, rgba(216, 109, 45, 0.16), transparent 28%);
  mix-blend-mode: screen;
  filter: blur(24px);
  opacity: 0.7;
  animation: glowPulse 7s ease-in-out infinite alternate;
}

.dawn-rise {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(255, 205, 122, 0.36), transparent 28%),
    radial-gradient(ellipse at 50% 72%, rgba(255, 132, 68, 0.2), transparent 35%),
    linear-gradient(180deg, transparent 12%, rgba(255, 228, 180, 0.08) 42%, transparent 70%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: translateY(30px) scale(1.03);
  animation: dawnLift 15s ease-in-out infinite alternate;
}

.bird-flock {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bird-flock span {
  position: absolute;
  left: -8%;
  top: 20%;
  width: 24px;
  height: 12px;
  opacity: 0.55;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.22));
  animation: birdFly 28s linear infinite;
}

.bird-flock span::before,
.bird-flock span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 13px;
  height: 7px;
  border-top: 2px solid rgba(16, 20, 18, 0.72);
}

.bird-flock span::before {
  left: 0;
  border-radius: 100% 0 0 0;
  transform: rotate(16deg);
  transform-origin: right center;
  animation: wingLeft 1.8s ease-in-out infinite alternate;
}

.bird-flock span::after {
  right: 0;
  border-radius: 0 100% 0 0;
  transform: rotate(-16deg);
  transform-origin: left center;
  animation: wingRight 1.8s ease-in-out infinite alternate;
}

.bird-flock span:nth-child(1) { top: 19%; animation-delay: -1s; transform: scale(0.92); }
.bird-flock span:nth-child(2) { top: 24%; animation-delay: -4s; transform: scale(0.68); }
.bird-flock span:nth-child(3) { top: 16%; animation-delay: -7s; transform: scale(0.55); }
.bird-flock span:nth-child(4) { top: 28%; animation-delay: -10s; transform: scale(0.82); }
.bird-flock span:nth-child(5) { top: 22%; animation-delay: -13s; transform: scale(0.48); }
.bird-flock span:nth-child(6) { top: 31%; animation-delay: -16s; transform: scale(0.62); }
.bird-flock span:nth-child(7) { top: 18%; animation-delay: -19s; transform: scale(0.74); }
.bird-flock span:nth-child(8) { top: 26%; animation-delay: -22s; transform: scale(0.52); }
.bird-flock span:nth-child(9) { top: 14%; animation-delay: -25s; transform: scale(0.6); }

.ash-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.ash-field span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 14px rgba(242, 189, 103, 0.68);
  animation: floatAsh 10s linear infinite;
}

.ash-field span:nth-child(1) { left: 9%; top: 72%; animation-delay: -1s; }
.ash-field span:nth-child(2) { left: 18%; top: 58%; animation-delay: -5s; }
.ash-field span:nth-child(3) { left: 31%; top: 80%; animation-delay: -8s; }
.ash-field span:nth-child(4) { left: 43%; top: 63%; animation-delay: -3s; }
.ash-field span:nth-child(5) { left: 55%; top: 76%; animation-delay: -9s; }
.ash-field span:nth-child(6) { left: 64%; top: 54%; animation-delay: -2s; }
.ash-field span:nth-child(7) { left: 73%; top: 69%; animation-delay: -6s; }
.ash-field span:nth-child(8) { left: 82%; top: 61%; animation-delay: -4s; }
.ash-field span:nth-child(9) { left: 91%; top: 75%; animation-delay: -7s; }
.ash-field span:nth-child(10) { left: 49%; top: 45%; animation-delay: -10s; }

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.hero-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 112px auto 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.hero-copy {
  max-width: 730px;
  padding-bottom: clamp(8px, 5vh, 54px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 13vw, 9.3rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 16px 52px rgba(0, 0, 0, 0.55);
}

.lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2.2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button:hover,
.reserve-button:hover,
.route-cta:hover {
  transform: translateY(-2px);
}

.reserve-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.primary,
.reserve-button {
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), #ff8f48);
  box-shadow: 0 18px 50px rgba(216, 109, 45, 0.28);
}

.ghost {
  border: 1px solid var(--line);
  color: white;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.booking-card {
  position: relative;
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(11, 17, 17, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.booking-head,
.booking-card label,
.field-row,
.reserve-button,
.booking-note {
  position: relative;
}

.booking-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
}

.booking-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.booking-head strong {
  color: var(--gold);
  white-space: nowrap;
}

.booking-card label {
  display: grid;
  gap: 8px;
}

.booking-card label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
}

.booking-card input,
.booking-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 13px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.booking-card input:focus,
.booking-card select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 189, 103, 0.2);
}

.booking-card select option {
  color: var(--ink);
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  margin: 2px 0 4px;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.booking-card .consent-field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.consent-field a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
}

.reserve-button {
  width: 100%;
}

.booking-note {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.45;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: 0.74;
}

.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: white;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.info-band {
  padding: clamp(58px, 10vw, 112px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #efe7d7, var(--paper)),
    radial-gradient(circle at 15% 20%, rgba(216, 109, 45, 0.16), transparent 34%);
}

.section-title {
  width: min(1080px, 100%);
  margin: 0 auto 28px;
}

.section-title p {
  margin-bottom: 8px;
  color: var(--ember);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title h2,
.route-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.feature-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 45px rgba(36, 33, 28, 0.08);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: white;
  background: var(--moss);
}

.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-grid p,
.route-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.photo-band {
  padding: clamp(58px, 9vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #f7f2e9, #e8ded0),
    radial-gradient(circle at 88% 18%, rgba(56, 88, 74, 0.18), transparent 34%);
}

.photo-head {
  width: min(1120px, 100%);
  margin: 0 auto 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.photo-head p {
  margin-bottom: 8px;
  color: var(--ember);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.photo-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  color: white;
  background: var(--moss);
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.photo-booking-link:hover {
  transform: translateY(-2px);
  background: #223e35;
}

.photo-showcase {
  width: min(1120px, 100%);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 16px;
}

.photo-main,
.photo-side {
  margin: 0;
}

.photo-main {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 62px rgba(34, 28, 20, 0.16);
}

.photo-main img,
.photo-side img,
.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 8px;
  padding: 10px 13px;
  color: white;
  background: rgba(11, 17, 17, 0.58);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.photo-side {
  display: grid;
  gap: 16px;
}

.photo-side img {
  min-height: 202px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(34, 28, 20, 0.12);
}

.photo-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 156px;
  grid-auto-flow: dense;
  gap: 12px;
}

.photo-grid img {
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(34, 28, 20, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.photo-showcase img.is-viewable,
.photo-grid img.is-viewable {
  cursor: zoom-in;
}

.photo-showcase img.is-viewable:focus-visible,
.photo-grid img.is-viewable:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.photo-showcase img.is-viewable:hover,
.photo-grid img.is-viewable:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 42px rgba(34, 28, 20, 0.18);
  filter: saturate(1.08) contrast(1.04);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(5, 8, 8, 0.86);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.photo-lightbox.is-open {
  opacity: 1;
}

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

.photo-lightbox-frame {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  width: min(1120px, 100%);
  max-height: min(86vh, 820px);
  gap: 12px;
}

.photo-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(86vh - 160px);
  object-fit: contain;
  border-radius: 8px;
  background: #111814;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.photo-lightbox-caption {
  margin: 0;
  padding-right: 86px;
  color: white;
  font-weight: 780;
  line-height: 1.45;
}

.photo-lightbox-counter {
  position: absolute;
  right: 0;
  bottom: 82px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.photo-lightbox-close,
.photo-lightbox-nav,
.photo-lightbox-thumb {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
}

.photo-lightbox-close:focus-visible,
.photo-lightbox-nav:focus-visible,
.photo-lightbox-thumb:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.photo-lightbox-close {
  top: 14px;
  right: 14px;
  font-size: 2rem;
  line-height: 1;
}

.photo-lightbox-nav {
  top: calc(50% - 56px);
  font-size: 2.6rem;
  line-height: 1;
}

.photo-lightbox-nav.prev {
  left: 14px;
}

.photo-lightbox-nav.next {
  right: 14px;
}

.photo-lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
}

.photo-lightbox-thumb {
  flex: 0 0 74px;
  height: 56px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  opacity: 0.58;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.photo-lightbox-thumb:hover,
.photo-lightbox-thumb.is-active {
  opacity: 1;
  transform: translateY(-1px);
}

.photo-lightbox-thumb.is-active {
  box-shadow: 0 0 0 3px var(--gold);
}

.route-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 26px;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(120deg, rgba(12, 18, 19, 0.96), rgba(37, 70, 62, 0.84)),
    radial-gradient(circle at 82% 14%, rgba(242, 189, 103, 0.36), transparent 30%);
}

.route-copy {
  max-width: 800px;
}

.dark {
  color: var(--gold);
}

.route-copy p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.route-cta {
  color: #1b130b;
  background: var(--gold);
  white-space: nowrap;
}

.policy-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 72px) 20px;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 109, 45, 0.16), transparent 26%),
    linear-gradient(180deg, #f7f2e9, #e8ded0);
}

.policy-back {
  display: inline-flex;
  margin: 0 0 18px calc((100% - min(860px, 100%)) / 2);
  color: var(--moss);
  font-weight: 850;
}

.policy-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(17, 24, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 62px rgba(34, 28, 20, 0.12);
}

.policy-card h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.3rem, 7vw, 4.8rem);
  line-height: 0.94;
  text-shadow: none;
}

.policy-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.policy-card p {
  color: var(--muted);
  line-height: 1.68;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: white;
  background: rgba(13, 18, 19, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-consent a {
  color: var(--gold);
  font-weight: 800;
}

.cookie-consent button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), #ff8f48);
  cursor: pointer;
  font-weight: 850;
}

.cookie-consent button:focus-visible {
  outline: 3px solid rgba(242, 189, 103, 0.5);
  outline-offset: 3px;
}

.contact-widget {
  position: absolute;
  top: 92px;
  right: clamp(20px, 5vw, 72px);
  z-index: 6;
  display: grid;
  gap: 8px;
  justify-items: end;
  color: white;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(13, 18, 19, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-messengers {
  display: flex;
  gap: 7px;
}

.contact-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(13, 18, 19, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-link:hover,
.contact-phone:hover {
  transform: translateY(-2px);
}

.contact-link:focus-visible,
.contact-phone:focus-visible {
  outline: 3px solid rgba(242, 189, 103, 0.55);
  outline-offset: 3px;
}

.contact-link:hover {
  border-color: rgba(242, 189, 103, 0.62);
  background:
    linear-gradient(145deg, rgba(242, 189, 103, 0.2), rgba(255, 255, 255, 0.05)),
    rgba(13, 18, 19, 0.82);
}

@keyframes slowReveal {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.09) translateY(-12px); }
}

@keyframes glowPulse {
  from { opacity: 0.46; }
  to { opacity: 0.9; }
}

@keyframes dawnLift {
  from {
    opacity: 0.34;
    transform: translateY(42px) scale(1.03);
  }
  to {
    opacity: 0.7;
    transform: translateY(-18px) scale(1.08);
  }
}

@keyframes dawnSky {
  from {
    opacity: 0.46;
  }
  to {
    opacity: 0.86;
  }
}

@keyframes dawnGrade {
  from {
    filter: brightness(1.05) contrast(1.06) saturate(1.04) sepia(0.04);
  }
  to {
    filter: brightness(1.18) contrast(1.08) saturate(1.16) sepia(0.1);
  }
}

@keyframes birdFly {
  from {
    left: -10%;
    translate: 0 0;
  }
  45% {
    translate: 0 -16px;
  }
  to {
    left: 110%;
    translate: 0 12px;
  }
}

@keyframes wingLeft {
  from { transform: rotate(10deg); }
  to { transform: rotate(26deg); }
}

@keyframes wingRight {
  from { transform: rotate(-10deg); }
  to { transform: rotate(-26deg); }
}

@keyframes floatAsh {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.6);
  }
  25% { opacity: 0.9; }
  to {
    opacity: 0;
    transform: translate3d(18px, -120px, 0) scale(1);
  }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .topbar {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    margin-top: 98px;
    margin-bottom: 72px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.65rem, 21vw, 6.6rem);
  }

  .lead {
    font-size: 1.04rem;
  }

  .booking-card {
    align-self: start;
  }

  .feature-grid,
  .route-band {
    grid-template-columns: 1fr;
  }

  .photo-head,
  .photo-showcase {
    grid-template-columns: 1fr;
  }

  .photo-head {
    display: grid;
    align-items: start;
  }

  .photo-booking-link {
    width: 100%;
  }

  .photo-main {
    min-height: 360px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
  }

  .photo-lightbox {
    padding: 16px;
  }

  .photo-lightbox-frame {
    max-height: 88vh;
  }

  .photo-lightbox-image {
    max-height: calc(88vh - 150px);
  }

  .feature-grid article {
    min-height: 0;
  }

  .route-cta {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .section-title h2,
  .photo-head h2,
  .route-copy h2 {
    font-size: 2.35rem;
  }

  .photo-main {
    min-height: 320px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 138px;
    gap: 10px;
  }

  .photo-grid img:nth-child(4n + 1),
  .photo-grid img:nth-child(7n + 3) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-lightbox {
    padding: 12px;
  }

  .photo-lightbox-caption {
    padding-right: 0;
    font-size: 0.94rem;
  }

  .photo-lightbox-counter {
    position: static;
    order: 3;
  }

  .photo-lightbox-close,
  .photo-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .photo-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .photo-lightbox-nav {
    top: calc(50% - 46px);
  }

  .photo-lightbox-nav.prev {
    left: 8px;
  }

  .photo-lightbox-nav.next {
    right: 8px;
  }

  .photo-lightbox-thumb {
    flex-basis: 62px;
    height: 48px;
  }

  .contact-widget {
    top: 78px;
    right: 14px;
  }

  .contact-phone {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.84rem;
  }

  .contact-link {
    width: 42px;
    height: 42px;
  }

  .cookie-consent {
    display: grid;
    gap: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .cookie-consent button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
