@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(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.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: #2b2440; transition: color .2s; }
.nav__links a:hover { color: var(--violet); }
.nav__cta {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- 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); }
.section--booking { background: radial-gradient(circle at 50% 20%, #1c0f45, var(--bg-deep) 70%); }

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

.section__head {
  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: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  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: cover;
  background-position: center 35%;
  pointer-events: none;
  animation: bgDrift 9s ease-in-out infinite;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(8,4,20,0.25) 0%, rgba(8,4,20,0.72) 70%),
    linear-gradient(180deg, rgba(8,4,20,0.6) 0%, rgba(8,4,20,0.2) 30%, rgba(8,4,20,0.75) 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; }
.cloud--5 { width: 200px; height: 55px; top: 12%; left: 12%; opacity: 0.4; }
.cloud--5::before { width: 100px; height: 80px; top: -45px; left: 20px; }
.cloud--6 { width: 210px; height: 58px; top: 10%; right: 8%; opacity: 0.45; }
.cloud--6::before { width: 105px; height: 85px; top: -48px; left: 22px; }

@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__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__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 {
  font-family: var(--font-mono);
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.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-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; }

/* ---------- Sister airlines ---------- */
.sister-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.sister-card {
  position: relative;
  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;
}
.sister-card:hover { transform: translateY(-6px); }
.sister-card__icon { font-size: 34px; margin-bottom: 14px; }
.sister-card h3 { font-size: 18px; margin-bottom: 10px; }
.sister-card__tagline { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; margin-bottom: 6px; }

.sister-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(120deg, #ff8c14, #ff4fd8);
  color: #1a0f00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Hooters: full-bleed orange feature section ---------- */
.hooters-feature {
  padding: 120px 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: 320px;
  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: 18px;
  text-align: center;
  padding: 0 20px;
  font-family: 'Baloo 2', 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(19px, 3vw, 29px);
  line-height: 1.2;
  color: #ffa53a;
  -webkit-text-stroke: 1.5px #7a3b00;
  text-shadow:
    2px 2px 0 #c85a00,
    4px 4px 0 #7a3b00,
    0 8px 18px rgba(0,0,0,0.5);
  pointer-events: none;
}
.hooters-feature__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  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-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hooters-wordmark span {
  font-family: 'Baloo 2', 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  -webkit-text-stroke: 1.5px #7a3b00;
  text-shadow: 3px 3px 0 #7a3b00;
  letter-spacing: 0.01em;
}
.hooters-wordmark em {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: #2b1400;
}
.hooters-tagline {
  font-size: 17px;
  color: #2b1400;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hooters-specs { display: inline-block; text-align: left; }
.hooters-specs p {
  font-size: 14.5px;
  color: #3a1c00;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.hooters-specs p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2b1400;
}
.hooters-quote {
  margin: 26px 0 0;
  padding: 18px 22px;
  background: rgba(43, 20, 0, 0.12);
  border-left: 4px solid #2b1400;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #2b1400;
  line-height: 1.5;
  text-align: left;
}
.hooters-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 0.75;
}

/* ---------- 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: 55vh;
  overflow-y: auto;
  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;
  white-space: nowrap;
}

/* ---------- 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 { font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.footer__logo span { color: var(--cyan); }
.footer p { font-size: 13px; margin-bottom: 6px; }
.footer__fine { opacity: 0.6; font-size: 11px; margin-top: 14px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 2, 15, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__card {
  background: linear-gradient(160deg, #1c1044, #100826);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px;
  max-width: 380px;
  text-align: center;
  transform: scale(0.9);
  transition: transform .3s;
}
.modal.is-open .modal__card { transform: scale(1); }
.modal__icon { font-size: 46px; margin-bottom: 16px; }
.modal__card h3 { margin-bottom: 12px; }
.modal__card p { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav__links { gap: 14px; font-size: 12px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .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; }
}
