@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&family=Patrick+Hand&family=Special+Elite&family=Baloo+2:wght@700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #0b0620;
  --bg-deep-2: #150a33;
  --cyan: #4bf3ff;
  --pink: #ff4fd8;
  --violet: #8a5cff;
  --yellow: #ffd23f;
  --text: #f4f1ff;
  --text-dim: #b9aee0;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-head);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ---------- Ticker ---------- */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
  background-size: 200% 100%;
  animation: tickerBg 6s linear infinite;
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker__track {
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #100821;
  letter-spacing: 0.02em;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tickerBg {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(10px);
  background: rgba(220, 38, 38, 0.55);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.nav__logo {
  display: block;
  height: 34px;
  width: auto;
}
.nav__links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.nav__links a { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.35); transition: color .2s; }
.nav__links a:hover { color: var(--yellow); }
.nav__cta {
  background: #17110d;
  color: #fff !important;
  text-shadow: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: #2b2018; transform: translateY(-2px); }

/* ---------- Sections base ---------- */
.section {
  position: relative;
  min-height: 100vh;
  padding: 140px 6vw 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.section--dark { background: var(--bg-deep-2); }
#destinations { min-height: auto; padding-bottom: 120px; }
#fleet { min-height: auto; padding-bottom: 120px; }
#booking { min-height: auto; padding-bottom: 120px; }
#reviews { min-height: auto; padding-bottom: 120px; }
.section--booking { background: radial-gradient(circle at 50% 20%, #1c0f45, var(--bg-deep) 70%); }

main { scroll-snap-type: y proximity; }

.section__head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin-bottom: 56px;
}
.section__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.section__head p { color: var(--text-dim); font-size: 16px; line-height: 1.5; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero ---------- */
.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  scroll-snap-align: start;
  background: var(--bg-deep);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0 -60px;
  background-image: url('assets/background2.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  animation: bgDrift 9s ease-in-out infinite;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,4,20,0.15) 0%, rgba(8,4,20,0.05) 30%, rgba(8,4,20,0.35) 100%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 900px; height: 900px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,79,216,0.35), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__glow--alt {
  background: radial-gradient(circle, rgba(75,243,255,0.25), transparent 60%);
  top: -200px;
}
.cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  filter: blur(2px);
  pointer-events: none;
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: inherit;
}
.cloud--4 { width: 220px; height: 60px; top: 8%; right: 15%; opacity: 0.5; }
.cloud--4::before { width: 110px; height: 90px; top: -50px; left: 25px; }

@keyframes planeFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -18px; }
}
@keyframes planeDrift {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(16px); }
  75% { transform: translateX(-16px); }
}
@keyframes bgDrift {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(7px); }
  75% { transform: translateX(-7px); }
}

.hero__logo {
  display: block;
  width: min(340px, calc(100vw - 40px));
  margin: 0 auto 6px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}
.hero__logo { cursor: pointer; }
.hero__plane-wrap { position: relative; }
.propeller-spin {
  position: absolute;
  left: 3.7%;
  top: 43%;
  width: 6.5%;
  height: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(235,235,235,0.6) 0%, rgba(200,200,200,0.28) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(1.5px);
  animation: propSpin 0.09s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes propSpin {
  0%, 100% { transform: translate(-50%, -50%) scaleX(1); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) scaleX(0.35); opacity: 0.5; }
}
.hero__plane-photo {
  display: block;
  width: min(960px, calc(100vw - 40px));
  margin: 46px auto 36px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.55));
  animation: planeFloat 5s ease-in-out infinite, planeDrift 9s ease-in-out infinite;
}
@media (min-width: 721px) {
  .hero__plane-photo {
    width: min(1440px, calc(100vw - 40px));
    margin: 116px auto 36px;
  }
}
.hero__plane-photo.is-turbulent {
  animation: planeFloat 5s ease-in-out infinite, turbulenceShake 0.15s linear infinite;
}
@keyframes turbulenceShake {
  0% { transform: translate(0,0) rotate(0deg); }
  10% { transform: translate(-7px, 5px) rotate(-1.3deg); }
  20% { transform: translate(6px, -6px) rotate(1.1deg); }
  30% { transform: translate(-5px, 7px) rotate(-0.9deg); }
  40% { transform: translate(7px, -4px) rotate(1.4deg); }
  50% { transform: translate(-6px, -5px) rotate(-1.1deg); }
  60% { transform: translate(5px, 6px) rotate(1deg); }
  70% { transform: translate(-7px, -3px) rotate(-1.2deg); }
  80% { transform: translate(6px, 5px) rotate(1.1deg); }
  90% { transform: translate(-4px, -6px) rotate(-0.8deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
.turbulence-clouds {
  position: absolute;
  inset: -20% -30%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  z-index: 3;
}
.turbulence-clouds.is-active { opacity: 1; }
.turbulence-cloud {
  position: absolute;
  height: 50px;
  width: 220px;
  background: rgba(255,255,255,0.6);
  filter: blur(12px);
  border-radius: 999px;
  animation: cloudSweep 0.55s linear infinite;
}
.turbulence-cloud--1 { top: 8%; left: -35%; animation-duration: 0.45s; opacity: 0.85; }
.turbulence-cloud--2 { top: 32%; left: -55%; animation-duration: 0.6s; animation-delay: 0.1s; opacity: 0.6; }
.turbulence-cloud--3 { top: 58%; left: -40%; animation-duration: 0.5s; animation-delay: 0.18s; opacity: 0.75; }
.turbulence-cloud--4 { top: 80%; left: -60%; animation-duration: 0.58s; animation-delay: 0.05s; opacity: 0.55; }
@keyframes cloudSweep {
  from { transform: translateX(0); }
  to { transform: translateX(180vw); }
}

.hero__content { position: relative; z-index: 2; text-align: center; width: 100%; max-width: 1500px; padding: 0 20px; }
.hero__eyebrow, .hero__tagline { max-width: 780px; margin-left: auto; margin-right: auto; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  color: #fff;
  background: #d61f1f;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(214, 31, 31, 0.4);
}
.hero__tagline {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s, box-shadow .25s, background .25s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 8px 30px rgba(255,79,216,0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,79,216,0.5); }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn--wide { width: 100%; text-align: center; }

/* ---------- Fleet ---------- */
.fleet-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #f0bcd7 0%, #dd94bd 45%, #a6668f 100%);
  overflow: hidden;
}
.fleet-blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.fleet-blueprint__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(90,20,60,0.10) 0, rgba(90,20,60,0.10) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(90,20,60,0.10) 0, rgba(90,20,60,0.10) 1px, transparent 1px, transparent 40px);
}
.fleet-blueprint__plane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 130vw);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}
.fleet-photo {
  position: relative;
  z-index: 2;
  margin: 44px auto 0;
  width: fit-content;
  max-width: 300px;
  background: #fffaf0;
  padding: 14px 14px 40px;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(75,243,255,0.15);
  transform: rotate(2deg);
  transition: transform .3s;
}
.fleet-photo:hover { transform: rotate(0deg) scale(1.02); }
.fleet-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.fleet-photo figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  color: #2b2440;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.fleet-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: transform .3s, border-color .3s;
}
.fleet-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.fleet-card__icon { font-size: 34px; margin-bottom: 14px; }
.fleet-card h3 { font-size: 18px; margin-bottom: 14px; color: var(--cyan); }
.fleet-card__spec { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; line-height: 1.5; }

.fleet-section .section__kicker { color: #7a2a55; }
.fleet-section .section__head h2 { color: #3a1030; }
.fleet-section .section__head p { color: #5c2a4a; font-weight: 600; }
.fleet-section .fleet-card {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.6);
}
.fleet-section .fleet-card:hover { border-color: #a6216f; }
.fleet-section .fleet-card h3 { color: #a6216f; }
.fleet-section .fleet-card__spec { color: #4a2a3c; }

/* ---------- Flight tracker ---------- */
.tracker {
  min-height: auto;
  padding: 90px 6vw 70px;
  background: #050b14;
  overflow: hidden;
}
.tracker__map {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tracker__grid {
  position: absolute;
  inset: -20% -20% -20% -20%;
  background-image:
    repeating-linear-gradient(0deg, rgba(75,243,255,0.09) 0, rgba(75,243,255,0.09) 1px, transparent 1px, transparent 44px),
    repeating-linear-gradient(90deg, rgba(75,243,255,0.09) 0, rgba(75,243,255,0.09) 1px, transparent 1px, transparent 44px);
}
.tracker__coast {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.tracker__dot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(75,243,255,0.6);
}
.tracker__dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(75,243,255,0.6);
}
.tracker__dot--sf { top: 22%; left: 36%; }
.tracker__dot--lax { top: 54%; left: 41%; }
.tracker__dot--sna { top: 62%; left: 45%; }
.tracker__dot--san { top: 74%; left: 49%; }
.tracker__path {
  position: absolute;
  top: 30%;
  left: 38%;
  width: 130px;
  height: 170px;
  border: 2px dashed rgba(255, 210, 63, 0.4);
  border-left: none;
  border-bottom: none;
  border-radius: 0 100px 0 0;
  transform: rotate(8deg);
}
.tracker__pin {
  position: absolute;
  top: 54%;
  left: 41%;
  font-size: 28px;
  transform: translate(-50%, -50%) rotate(35deg);
  filter: drop-shadow(0 0 12px rgba(255,210,63,0.8));
  z-index: 2;
  animation: planeFloat 4s ease-in-out infinite;
}
.tracker__pulse {
  position: absolute;
  top: 54%;
  left: 41%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 210, 63, 0.5);
  animation: trackerPulse 2.2s ease-out infinite;
}
@keyframes trackerPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,210,63,0.5); opacity: 1; }
  100% { box-shadow: 0 0 0 40px rgba(255,210,63,0); opacity: 0; }
}
.tracker__scan {
  position: absolute;
  top: 54%;
  left: 41%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, rgba(75,243,255,0.25), transparent 25%);
  border-radius: 50%;
  animation: trackerScan 4s linear infinite;
  mix-blend-mode: screen;
}
@keyframes trackerScan {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.tracker__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
.tracker__title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.tracker__tagline {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 34px;
  line-height: 1.5;
}

/* ---------- Careers ---------- */
.careers-section {
  min-height: auto;
  padding-bottom: 120px;
  background: var(--bg-deep-2);
}
.careers-photo {
  display: block;
  width: min(340px, 82vw);
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.5));
}

/* ---------- Ground transportation ---------- */
.transport-section {
  min-height: auto;
  padding-bottom: 120px;
  background:
    linear-gradient(180deg, rgba(15,10,20,0.55) 0%, rgba(15,10,20,0.4) 45%, rgba(15,10,20,0.85) 100%),
    url('assets/mv.webp');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
}
.transport-photo {
  display: block;
  width: min(420px, 82vw);
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.5));
}
.moto-facts {
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 26px 28px;
}
.moto-facts p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.moto-facts p:last-child { margin-bottom: 0; }
.moto-facts p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
}

/* ---------- Hooters: full-bleed orange feature section ---------- */
.hooters-feature {
  padding: 0 0 100px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 55%),
    linear-gradient(165deg, #ffae3d 0%, #ff8c14 45%, #ff6a00 100%);
  overflow: hidden;
}
.hooters-feature__photo {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #06111c;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hooters-spotlight__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hooters-spotlight__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(10,6,2,0.75) 100%);
  pointer-events: none;
}
.hooters-bubble {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  text-align: center;
  padding: 0 20px;
  font-family: 'Baloo 2', 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 9vw, 87px);
  line-height: 1.15;
  color: #ffa53a;
  -webkit-text-stroke: 3px #7a3b00;
  text-shadow:
    4px 4px 0 #c85a00,
    8px 8px 0 #7a3b00,
    0 14px 30px rgba(0,0,0,0.55);
  pointer-events: none;
}
.hooters-feature__content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  width: 100%;
  padding: 40px 6vw 0;
  text-align: center;
}
.hooters-badge {
  display: inline-block;
  background: #2b1400;
  color: #ffb84d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Hooters archival photo frame ---------- */
.hooters-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hooters-frame {
  margin: 0 auto;
  width: fit-content;
  max-width: 380px;
  background: #fffaf0;
  padding: 14px 14px 44px;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(168,93,0,0.25);
  transform: rotate(-2deg);
  transition: transform .3s;
}
.hooters-frame:hover { transform: rotate(0deg) scale(1.02); }
.hooters-frame--side {
  max-width: 230px;
  flex-shrink: 0;
}
.hooters-frame--side:nth-of-type(1) { transform: rotate(-4deg); }
.hooters-showcase .hooters-certificate { margin-top: 0; flex: 1 1 420px; max-width: 480px; }
.hooters-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.hooters-frame figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: #7a5200;
}

/* ---------- Hooters certificate ---------- */
.hooters-certificate {
  position: relative;
  margin-top: 30px;
  background: #fffaf0;
  border: 3px double #a85d00;
  border-radius: 6px;
  padding: 40px 30px 30px;
  text-align: center;
  color: #3a1c00;
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}
.hooters-certificate__seal {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fffaf0;
  border: 3px solid #b8860b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transform: rotate(8deg);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}
.hooters-certificate__seal span {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #7a5200;
  line-height: 1.2;
  margin-top: 2px;
}
.hooters-certificate__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a85d00;
  margin-bottom: 16px;
}
.hooters-certificate__body {
  font-family: Georgia, serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a1c00;
  margin-bottom: 10px;
}
.hooters-certificate__body strong { color: #a85d00; }
.hooters-certificate__name {
  font-family: 'Patrick Hand', cursive;
  font-size: 40px;
  color: #2b1400;
  margin: 6px 0 14px;
  line-height: 1;
}
.hooters-certificate__sign {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid #d8c4a0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a5200;
}

/* ---------- Hub ---------- */
.hub-section {
  min-height: auto;
  padding-bottom: 120px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.25) 0%, transparent 65%),
    linear-gradient(180deg, #1fae3c 0%, #29d64a 45%, #1fae3c 100%);
}
.hub-section .section__head h2 { color: #0a0a0a; }
.hub-section .section__head p { color: #0a0a0a; font-weight: 700; }
.hub-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
}
.hub-showcase__portrait {
  width: min(460px, 92vw);
  height: auto;
  transform: rotate(-7deg);
  transition: transform .3s;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.4));
}
.hub-showcase__portrait:hover { transform: rotate(-3deg) scale(1.03); }
.hub-frame {
  background: #fffaf0;
  padding: 14px 14px 40px;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
  transition: transform .3s;
  max-width: 380px;
  width: 100%;
}
.hub-frame:hover { transform: rotate(0deg) scale(1.02); }
.hub-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.hub-frame figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: #1a5c28;
}
.hub-facts {
  margin-top: 44px;
  max-width: 640px;
  width: 100%;
  background: rgba(10, 10, 10, 0.12);
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 16px;
  padding: 26px 28px;
}
.hub-facts p {
  font-size: 14.5px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.hub-facts p:last-child { margin-bottom: 0; }
.hub-facts p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0a0a0a;
}

/* ---------- Environment ---------- */
.environment-section {
  min-height: auto;
  padding-bottom: 120px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(75,243,255,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0d2b3d 0%, #163a2e 100%);
}
.environment-frame {
  position: relative;
  z-index: 2;
  margin: 0 auto 40px;
  width: fit-content;
  max-width: 640px;
  background: #fffaf0;
  padding: 14px 14px 22px;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(75,243,255,0.15);
  transform: rotate(-1.5deg);
  transition: transform .3s;
}
.environment-frame:hover { transform: rotate(0deg) scale(1.01); }
.environment-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.environment-section .hub-facts {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.environment-section .hub-facts p { color: var(--text); }
.environment-section .hub-facts p::before { background: var(--cyan); }

/* ---------- Departure board ---------- */
.board {
  width: 100%;
  max-width: 900px;
  background: #05030f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 10px;
  font-family: var(--font-mono);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 40px rgba(75,243,255,0.05);
}
.board__row {
  display: grid;
  grid-template-columns: 1fr 2.4fr 1.2fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  font-size: 13px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: var(--cyan);
  letter-spacing: 0.03em;
}
.board__row:last-child { border-bottom: none; }
.board__row--head {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.status { font-weight: 700; }
.status--ok { color: #3ef29a; }
.status--delay { color: var(--pink); animation: flicker 2s infinite; }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Reviews: pilot's desk + notebook ---------- */
.desk {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%),
    repeating-linear-gradient(90deg, #7a4a28 0px, #86532e 3px, #6e4223 6px, #7d4c2a 40px),
    linear-gradient(180deg, #5c3821, #3f2716);
  position: relative;
  overflow: hidden;
}
.desk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(255,220,160,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.desk__prop {
  position: absolute;
  font-size: 46px;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.5));
  opacity: 0.92;
  pointer-events: none;
}
.desk__prop--mug { top: 14%; left: 10%; transform: rotate(-8deg); font-size: 52px; }
.desk__prop--glasses { top: 20%; right: 12%; transform: rotate(10deg); }
.desk__prop--compass { bottom: 16%; right: 15%; transform: rotate(-6deg); font-size: 50px; }
.desk__prop--pen { bottom: 12%; left: 14%; transform: rotate(28deg); }
.desk__prop--clip { top: 44%; left: 6%; transform: rotate(-20deg); font-size: 32px; opacity: 0.8; }

.notebook {
  position: relative;
  z-index: 2;
  width: min(680px, 92vw);
  background: #fbf3df;
  border-radius: 6px 14px 14px 6px;
  padding: 40px 34px 30px 56px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.05);
  transform: rotate(-1.2deg);
  font-family: 'Patrick Hand', cursive;
}
.notebook::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 34px;
  width: 2px;
  background: rgba(220, 70, 90, 0.35);
}
.notebook::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 14px;
  width: 14px;
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 3.5px, transparent 4px);
  background-size: 100% 34px;
  background-repeat: repeat-y;
  background-position: 0 10px;
}
.notebook__title {
  font-size: 34px;
  color: #2b2440;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.notebook__subtitle {
  font-size: 16px;
  color: #6b6455;
  margin-bottom: 18px;
}
.notebook__lines {
  max-height: none;
  overflow-y: visible;
  padding-right: 6px;
}
.notebook__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px;
  border-bottom: 1.5px solid #b9d3e8;
  text-decoration: none;
  transition: transform .15s, color .15s;
}
.notebook__line:hover { transform: translateX(4px); }
.notebook__line:hover .notebook__name { color: var(--violet); }
.notebook__num { font-size: 14px; color: #a89f8c; min-width: 20px; }
.notebook__name {
  font-size: 21px;
  color: #2b2440;
  font-weight: 700;
  flex: 1;
  transition: color .15s;
}
.notebook__route {
  font-size: 16px;
  color: #6b6455;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
  max-width: 45%;
}

/* ---------- Memo pages ---------- */
body.memo-page {
  min-height: 100vh;
  margin: 0;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%),
    repeating-linear-gradient(90deg, #7a4a28 0px, #86532e 3px, #6e4223 6px, #7d4c2a 40px),
    linear-gradient(180deg, #5c3821, #3f2716);
}
body.memo-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255,220,160,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.memo-wrap { position: relative; z-index: 2; width: min(640px, 100%); }
.memo__back {
  display: inline-block;
  margin-bottom: 20px;
  color: #f4f1ff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.memo__back:hover { background: rgba(255,255,255,0.22); transform: translateX(-3px); }
.memo {
  position: relative;
  background: #fbf6ea;
  background-image: repeating-linear-gradient(#fbf6ea 0px, #fbf6ea 33px, #e9dfc7 34px);
  border-radius: 3px;
  padding: 40px 36px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transform: rotate(-0.6deg);
  font-family: 'Special Elite', var(--font-mono);
  color: #2c2418;
}
.memo__stamp {
  position: absolute;
  top: 28px;
  right: 34px;
  width: 92px;
  height: 92px;
  border: 3px solid #b23b3b;
  border-radius: 50%;
  color: #b23b3b;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(14deg);
  opacity: 0.75;
  pointer-events: none;
}
.memo__letterhead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #2c2418;
}
.memo__letterhead span { font-weight: 400; font-size: 15px; opacity: 0.75; }
.memo__fields { font-size: 15px; line-height: 1.9; margin-bottom: 10px; }
.memo__fields span { font-weight: 700; display: inline-block; width: 72px; }
.memo__rule { border-top: 1px dashed #a89f8c; margin: 18px 0 22px; }
.memo__body p { font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; white-space: pre-line; }
.memo__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed #a89f8c;
}
.memo__photo-link {
  display: block;
  cursor: pointer;
}
.memo__photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  background: #fff;
  padding: 8px 8px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transform: rotate(var(--r, 0deg));
  transition: transform .2s;
}
.memo__photo-link:hover .memo__photo { transform: rotate(0deg) scale(1.04); }
@media (max-width: 480px) {
  .memo__stamp { width: 64px; height: 64px; font-size: 10px; top: 20px; right: 20px; }
  .memo__letterhead { font-size: 17px; padding-right: 74px; }
}

/* ---------- Booking form ---------- */
.booking-form {
  width: 100%;
  max-width: 560px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.booking-form__row { display: flex; gap: 16px; margin-bottom: 18px; }
.booking-form label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}
.booking-form input, .booking-form select {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}
.booking-form input:focus, .booking-form select:focus {
  outline: none;
  border-color: var(--cyan);
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 60px 20px 40px;
  color: var(--text-dim);
  background: var(--bg-deep-2);
}
.footer__logo { display: block; height: 46px; width: auto; margin: 0 auto 14px; }
.footer p { font-size: 13px; margin-bottom: 6px; }
.footer__fine { opacity: 0.6; font-size: 11px; margin-top: 14px; }

/* ---------- Booking confirmation ---------- */
.confirm-card {
  text-align: center;
}
.confirm-card__icon { font-size: 46px; margin-bottom: 16px; }
.confirm-card h1 {
  font-family: var(--font-head);
  font-size: 26px;
  margin-bottom: 14px;
  color: #2c2418;
}
.confirm-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { gap: 14px; font-size: 12px; }
  .nav__links a:not(.nav__cta) { display: none; }
}
@media (max-width: 720px) {
  .board__row { grid-template-columns: 1fr 1.6fr 1fr; font-size: 11px; }
  .board__row span:nth-child(3) { display: none; }
  .booking-form__row { flex-direction: column; }
  .notebook__line { flex-wrap: wrap; }
  .notebook__route { max-width: 100%; text-align: left; flex-basis: 100%; padding-left: 32px; font-size: 14px; }
}
