:root {
  --ink: #06111f;
  --ink-2: #0d1f33;
  --night: #07111d;
  --night-soft: #0c1d2f;
  --ocean: #0b7896;
  --aqua: #39d6d0;
  --orange: #ff7a00;
  --orange-2: #ff9e2d;
  --sand: #ffe0a6;
  --cream: #fff7ea;
  --muted: #6f8292;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(7,17,29,.12);
  --shadow: 0 30px 80px rgba(4, 11, 20, .32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--night);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top right, rgba(255,122,0,.18), transparent 32rem), var(--cream);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(255,122,0,.26); }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-full { min-height: 100svh; }
.hidden { display: none !important; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,17,29,.64);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
  color: white;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.topbar.scrolled { background: rgba(7,17,29,.9); border-color: rgba(255,255,255,.12); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; background: white; padding: 4px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { letter-spacing: .02em; }
.brand small { color: rgba(255,255,255,.68); font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2vw, 26px); color: rgba(255,255,255,.78); font-size: .93rem; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: white; }
.nav-cta { padding: 13px 20px; background: white; color: var(--night); border-radius: 999px; font-weight: 800; box-shadow: 0 10px 30px rgba(255,255,255,.16); }

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  background: var(--night);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7,17,29,.84), rgba(7,17,29,.35) 48%, rgba(7,17,29,.68)), url('/assets/scene-hero.svg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--cream), transparent);
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18) 0 1px, transparent 1px), radial-gradient(circle at 80% 70%, rgba(255,255,255,.14) 0 1px, transparent 1px);
  background-size: 38px 38px, 52px 52px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .46fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding-top: 112px;
  padding-bottom: 72px;
}
.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--ocean); }
.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255,122,0,.18);
}
h1, h2, h3 { margin: 0; letter-spacing: -.055em; line-height: .94; }
h1 { font-size: clamp(4rem, 9vw, 8.9rem); max-width: 890px; }
h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); }
h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
p { line-height: 1.72; }
.hero-lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}
.hero-actions, .dashboard-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-actions { margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--night);
  box-shadow: 0 18px 45px rgba(255,122,0,.28);
}
.button-primary:hover { box-shadow: 0 24px 60px rgba(255,122,0,.34); }
.button-ghost { border-color: rgba(255,255,255,.22); color: white; background: rgba(255,255,255,.08); }
.button-dark { background: var(--night); color: white; border-color: var(--night); }
.button-wide { width: 100%; }
.quick-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}
.quick-stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.quick-stats strong { display: block; font-size: clamp(1.4rem, 2vw, 2rem); }
.quick-stats span { color: rgba(255,255,255,.66); font-weight: 700; font-size: .9rem; }
.glass-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.09));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.hero-panel { padding: clamp(22px, 4vw, 34px); align-self: end; }
.hero-logo { width: min(310px, 100%); margin: 0 auto 26px; border-radius: 28px; background: white; padding: 12px; }
.panel-line { height: 1px; background: var(--line); margin: 10px 0 24px; }
.panel-kicker { color: var(--orange-2); margin: 0 0 8px; font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero-panel h2 { font-size: clamp(1.9rem, 3.2vw, 3.5rem); }
.hero-panel p { color: rgba(255,255,255,.72); }
.mini-link { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-2); font-weight: 900; }
.mini-link span { transition: transform .2s ease; }
.mini-link:hover span { transform: translateX(4px); }
.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255,255,255,.56);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust-strip {
  background: var(--night);
  color: white;
  position: relative;
  z-index: 3;
  padding: 18px 0;
}
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.strip-grid span { padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: rgba(255,255,255,.76); font-weight: 800; text-align: center; }

.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; max-width: 700px; }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.price-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(7,17,29,.08);
  box-shadow: 0 28px 80px rgba(7,17,29,.1);
}
.price-card.premium { background: #07111d; color: white; }
.card-image { min-height: 290px; background-size: cover; background-position: center; }
.card-image.reef { background-image: url('/assets/scene-reef.svg'); }
.card-image.stonetown { background-image: url('/assets/scene-stonetown.svg'); }
.price-body { padding: clamp(24px, 4vw, 42px); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.tag-row span { padding: 9px 13px; border-radius: 999px; background: rgba(255,122,0,.12); color: var(--orange); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.premium .tag-row span { background: rgba(255,122,0,.18); color: var(--orange-2); }
.price-card p { color: var(--muted); }
.premium p { color: rgba(255,255,255,.68); }
.price { display: flex; align-items: start; gap: 4px; margin: 26px 0; font-size: clamp(3.8rem, 7vw, 6rem); font-weight: 1000; letter-spacing: -.08em; line-height: .8; }
.price span { font-size: .4em; padding-top: .15em; color: var(--orange); }
ul { padding-left: 18px; margin: 0 0 28px; }
li { margin: 10px 0; color: inherit; line-height: 1.5; }
.premium li { color: rgba(255,255,255,.78); }

.experience { color: white; background: radial-gradient(circle at 80% 15%, rgba(255,122,0,.22), transparent 30rem), linear-gradient(135deg, #06111f, #09263c 54%, #09394c); }
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.experience-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.journey-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.step { padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.step span { display: inline-flex; margin-bottom: 22px; color: var(--orange-2); font-weight: 1000; letter-spacing: .16em; }
.step strong { display: block; font-size: 1.35rem; }
.step p { margin-bottom: 0; color: rgba(255,255,255,.66); }

.booking-section { background: linear-gradient(180deg, var(--cream), #edf9fa); }
.booking-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(28px, 6vw, 70px); align-items: start; }
.booking-intro { position: sticky; top: 118px; }
.booking-intro p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.contact-card { margin-top: 30px; padding: 24px; border-radius: 26px; background: var(--night); color: white; display: grid; gap: 10px; box-shadow: 0 24px 60px rgba(7,17,29,.16); }
.contact-card span { color: var(--orange-2); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.contact-card a { color: white; font-weight: 800; }
.booking-card { position: relative; padding: clamp(22px, 4vw, 36px); background: rgba(255,255,255,.76); border-color: rgba(7,17,29,.08); color: var(--ink); }
.booking-topline { display: grid; grid-template-columns: 1fr 220px; gap: 18px; align-items: end; }
.form-label { display: block; color: var(--muted); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 9px; }
.package-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.package-tab {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  background: white;
  text-align: left;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.package-tab small { color: var(--muted); font-weight: 800; }
.package-tab.active { border-color: rgba(255,122,0,.85); box-shadow: 0 12px 35px rgba(255,122,0,.14); transform: translateY(-1px); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(255,122,0,.75); box-shadow: 0 0 0 5px rgba(255,122,0,.12); }
.slot-header { margin-top: 26px; display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.slot-header p { margin: 0; color: var(--muted); font-size: .94rem; }
.icon-button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--dark-line); background: white; color: var(--ink); font-weight: 900; }
.slot-grid { margin: 18px 0 26px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; min-height: 64px; }
.slot-pill {
  min-height: 48px;
  border: 1px solid rgba(7,17,29,.1);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.slot-pill:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--orange); }
.slot-pill.selected { background: var(--orange); color: var(--night); border-color: var(--orange); }
.slot-pill:disabled { cursor: not-allowed; opacity: .45; background: #eef1f3; text-decoration: line-through; }
.slot-loading, .slot-empty { grid-column: 1 / -1; padding: 18px; border-radius: 16px; background: rgba(7,17,29,.05); color: var(--muted); }
.guest-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.booking-card label { display: block; margin-bottom: 16px; }
.booking-summary { margin: 8px 0 18px; padding: 16px 18px; border-radius: 18px; background: var(--night); color: white; font-weight: 800; }
.microcopy { margin: 12px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.booking-message { margin-top: 16px; border-radius: 18px; font-weight: 800; }
.booking-message.success, .admin-message.success { padding: 16px; background: rgba(16,166,120,.12); color: #075f47; border: 1px solid rgba(16,166,120,.22); }
.booking-message.error, .admin-message.error { padding: 16px; background: rgba(220,38,38,.1); color: #991b1b; border: 1px solid rgba(220,38,38,.2); }
.booking-message a { color: var(--ocean); text-decoration: underline; }

.safety-section { background: var(--night); color: white; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 6vw, 80px); align-items: center; }
.safety-visual { min-height: 560px; border-radius: var(--radius-xl); background-image: linear-gradient(180deg, rgba(7,17,29,.05), rgba(7,17,29,.7)), url('/assets/scene-launch.svg'); background-size: cover; background-position: center; box-shadow: var(--shadow); }
.safety-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.safety-list { display: grid; gap: 14px; margin-top: 30px; }
.safety-list div { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.safety-list strong { display: block; margin-bottom: 6px; color: var(--orange-2); }
.safety-list span { color: rgba(255,255,255,.72); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-grid figure { margin: 0; border-radius: 26px; overflow: hidden; background: white; box-shadow: 0 26px 60px rgba(7,17,29,.1); }
.gallery-grid img { width: 100%; height: 360px; object-fit: cover; }
.gallery-grid figcaption { padding: 18px 20px; font-weight: 900; }
.route { background: linear-gradient(180deg, #edf9fa, var(--night)); color: white; }
.route-card { display: grid; grid-template-columns: .75fr 1fr; gap: 24px; align-items: stretch; padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-xl); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); }
.route-card p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.route-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: 28px; }
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
details { border-radius: 22px; background: white; border: 1px solid rgba(7,17,29,.08); box-shadow: 0 18px 45px rgba(7,17,29,.07); overflow: hidden; }
summary { cursor: pointer; padding: 22px 24px; font-weight: 950; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 24px 24px; color: var(--muted); }
.final-cta { background: linear-gradient(135deg, var(--night), #0b3750); color: white; }
.final-card { display: grid; grid-template-columns: 150px 1fr auto; gap: clamp(20px, 4vw, 38px); align-items: center; padding: clamp(24px, 5vw, 50px); border-radius: var(--radius-xl); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.final-card img { border-radius: 26px; background: white; padding: 8px; }
.final-card h2 { font-size: clamp(2.3rem, 4.6vw, 4.8rem); }

.footer { background: #030912; color: white; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr repeat(3, minmax(0, .7fr)); gap: 32px; }
.footer img { width: 140px; border-radius: 22px; background: white; padding: 6px; margin-bottom: 18px; }
.footer p, .footer a { color: rgba(255,255,255,.66); line-height: 1.7; }
.footer a { display: block; margin: 8px 0; }
.footer h3 { font-size: 1rem; letter-spacing: .02em; margin-bottom: 16px; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .9rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.admin-body { min-height: 100svh; background: radial-gradient(circle at 15% 10%, rgba(255,122,0,.23), transparent 30rem), radial-gradient(circle at 80% 5%, rgba(57,214,208,.22), transparent 34rem), var(--night); color: white; }
.admin-shell { width: min(1240px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 70px; }
.admin-login { width: min(520px, 100%); margin: min(9vh, 80px) auto 0; padding: 34px; }
.admin-login img { width: 180px; border-radius: 28px; background: white; padding: 8px; margin-bottom: 26px; }
.admin-login p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.admin-login label { display: block; margin: 24px 0 16px; }
.dashboard { display: grid; gap: 18px; }
.dashboard-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px; }
.dashboard-brand { display: flex; align-items: center; gap: 18px; }
.dashboard-brand img { width: 84px; height: 84px; border-radius: 22px; object-fit: cover; background: white; padding: 6px; }
.dashboard-brand h1 { font-size: clamp(2.2rem, 5vw, 4.6rem); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stat-card { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.stat-card span { color: rgba(255,255,255,.62); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; }
.stat-card strong { display: block; margin-top: 12px; font-size: clamp(1.8rem, 4vw, 3.5rem); letter-spacing: -.06em; }
.filters { display: grid; grid-template-columns: repeat(3, minmax(170px, 1fr)) auto auto; gap: 14px; align-items: end; padding: 20px; }
.filters label { margin: 0; }
.bookings-panel { padding: 20px; }
.panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.panel-heading h2 { font-size: clamp(2rem, 4vw, 4rem); }
.admin-message { min-width: 220px; }
.table-wrap { overflow: auto; border-radius: 22px; border: 1px solid rgba(255,255,255,.12); }
.bookings-table { width: 100%; border-collapse: collapse; min-width: 1050px; background: rgba(3,9,18,.54); }
.bookings-table th, .bookings-table td { text-align: left; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.1); vertical-align: top; }
.bookings-table th { color: rgba(255,255,255,.64); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.bookings-table td { color: rgba(255,255,255,.86); }
.bookings-table tr:last-child td { border-bottom: 0; }
.status-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; font-size: .78rem; font-weight: 1000; text-transform: uppercase; letter-spacing: .08em; }
.status-reserved { background: rgba(255,158,45,.17); color: #ffd08f; }
.status-confirmed { background: rgba(57,214,208,.16); color: #a8fffb; }
.status-completed { background: rgba(34,197,94,.16); color: #a9f7c5; }
.status-cancelled { background: rgba(248,113,113,.16); color: #ffb4b4; }
.row-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.row-actions button, .row-actions a { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: white; border-radius: 999px; padding: 8px 11px; font-size: .8rem; font-weight: 900; }
.row-actions button.danger { background: rgba(248,113,113,.15); border-color: rgba(248,113,113,.22); }
.muted { color: rgba(255,255,255,.52); font-size: .88rem; }
.guest-name { font-weight: 950; }
.contact-links a { display: block; color: #a8fffb; margin-bottom: 6px; }
.notes-cell { max-width: 280px; white-space: pre-wrap; }

@media (max-width: 980px) {
  .topbar { top: 10px; border-radius: 26px; align-items: flex-start; }
  .nav-links { display: none; }
  .hero-content, .booking-layout, .experience-grid, .safety-grid, .route-card { grid-template-columns: 1fr; }
  .hero-panel, .booking-intro { position: static; }
  .price-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .final-card { grid-template-columns: 1fr; }
  .final-card img { width: 160px; }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .hero-content { padding-top: 128px; }
  .quick-stats, .strip-grid, .journey-steps, .booking-topline, .guest-grid, .stats-grid, .filters { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brand img { width: 46px; height: 46px; }
  .brand small { display: none; }
  .nav-cta { padding: 12px 14px; }
  .scroll-cue { display: none; }
  .dashboard-header { align-items: flex-start; flex-direction: column; }
  .dashboard-actions { width: 100%; }
  .dashboard-actions .button { flex: 1; }
  .panel-heading { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

.slot-grid-hourly { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hour-slot-pill { display: grid; gap: 5px; align-content: center; text-align: center; min-height: 74px; padding: 10px; }
.hour-slot-pill strong { display: block; font-size: .95rem; }
.hour-slot-pill small { color: var(--muted); font-weight: 800; font-size: .76rem; line-height: 1.25; }
.hour-slot-pill.selected small { color: rgba(7,17,29,.7); }
.hour-slot-pill:disabled small { color: rgba(111,130,146,.85); }
@media (max-width: 680px) { .slot-grid-hourly { grid-template-columns: 1fr; } }


/* --- v6 design refresh overrides --- */
:root {
  --night: #07111c;
  --ink: #0b1320;
  --ocean: #0f2e49;
  --orange: #d4a320;
  --orange-2: #f3d56b;
  --sand: #f4e2ad;
  --cream: #fbf8f1;
  --muted: #5f6d7e;
  --line: rgba(255,255,255,.18);
  --dark-line: rgba(7,17,29,.10);
  --shadow: 0 24px 80px rgba(4, 11, 20, .18);
}
html { scroll-padding-top: 110px; }
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(212,163,32,.16), transparent 26rem),
    radial-gradient(circle at 100% 10%, rgba(15,46,73,.10), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, #f8f5ec 42%, #eef5f7 100%);
}
button { appearance: none; -webkit-appearance: none; }
.topbar {
  background: linear-gradient(135deg, rgba(7,17,28,.92), rgba(15,46,73,.82));
  border-color: rgba(243,213,107,.16);
  box-shadow: 0 18px 70px rgba(5,10,18,.22);
}
.topbar.scrolled { background: linear-gradient(135deg, rgba(7,17,28,.96), rgba(10,27,44,.94)); }
.brand img { background: linear-gradient(180deg, #ffffff, #f4f1e8); padding: 4px; box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.nav-links a { font-weight: 700; }
.nav-cta {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: var(--night);
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(212,163,32,.28);
}
.nav-cta:hover { transform: translateY(-1px); }
.hero-bg {
  background-image:
    linear-gradient(100deg, rgba(7,17,29,.88) 0%, rgba(7,17,29,.52) 48%, rgba(7,17,29,.76) 100%),
    radial-gradient(circle at 78% 18%, rgba(212,163,32,.24), transparent 18rem),
    url('/assets/scene-hero.svg');
}
h1, h2, h3 { text-wrap: balance; }
.hero-lede { max-width: 700px; }
.button-primary { color: var(--night); }
.button-ghost {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}
.quick-stats div {
  border-color: rgba(243,213,107,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
}
.quick-stats strong { color: white; }
.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border-color: rgba(243,213,107,.14);
}
.hero-logo { background: linear-gradient(180deg, #ffffff, #f6f0de); }
.panel-kicker { color: var(--orange-2); }
.strip-grid span {
  border-color: rgba(243,213,107,.08);
  background: rgba(255,255,255,.03);
}
.price-card,
.gallery-grid figure,
.route-card,
.final-card,
.booking-card {
  box-shadow: 0 26px 80px rgba(7,17,29,.10);
}
.price-card { transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 34px 90px rgba(7,17,29,.15); }
.card-image { position: relative; }
.card-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(7,17,29,.18));
}
.package-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.package-tab {
  min-height: 84px;
  justify-content: center;
  align-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,241,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.package-tab strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.package-tab small {
  display: block;
  margin-top: 3px;
  font-size: .86rem;
  line-height: 1.2;
}
.package-tab.active {
  background: linear-gradient(135deg, rgba(243,213,107,.34), rgba(212,163,32,.18));
  border-color: rgba(212,163,32,.85);
  box-shadow: 0 16px 36px rgba(212,163,32,.18);
}
.slot-header { align-items: center; }
.slot-grid {
  gap: 12px;
}
.slot-pill {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.slot-pill strong { display: block; font-size: 1rem; letter-spacing: -.02em; }
.slot-pill.selected {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: var(--night);
  box-shadow: 0 14px 30px rgba(212,163,32,.24);
}
.slot-pill:disabled {
  background: #f0f2f4;
  opacity: .42;
  text-decoration: none;
}
.hour-slot-pill { min-height: 58px; padding: 8px; }
.hour-slot-pill small { display: none; }
.booking-summary {
  background: linear-gradient(135deg, #07111c, #0f2e49);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.contact-card,
.button-dark,
.final-cta,
.footer {
  background: linear-gradient(135deg, #07111c, #0f2e49);
}
.gallery-grid figure { transition: transform .25s ease, box-shadow .25s ease; }
.gallery-grid figure:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(7,17,29,.14); }
.route-card img { background: white; }
.final-card img, .footer img { background: linear-gradient(180deg, #ffffff, #f4f1e8); }
.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(37,211,102,.28);
}
.floating-wa .wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}
.floating-wa .wa-icon svg { width: 24px; height: 24px; }
@media (max-width: 980px) {
  .topbar { top: 10px; align-items: center; }
  .hero-content { padding-top: 132px; }
  .booking-intro { order: 2; }
  .booking-card { order: 1; }
}
@media (max-width: 680px) {
  .topbar {
    width: calc(100% - 20px);
    padding: 10px 12px;
    gap: 10px;
    border-radius: 26px;
  }
  .brand { min-width: 0; gap: 10px; }
  .brand strong { font-size: 1.05rem; }
  .nav-cta { padding: 12px 16px; min-height: 46px; }
  .hero-content { padding-top: 112px; padding-bottom: 40px; gap: 20px; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); line-height: .92; }
  .hero-lede { margin-top: 18px; font-size: 1.02rem; }
  .hero-actions { margin-top: 28px; flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .quick-stats { margin-top: 28px; gap: 10px; }
  .hero-panel { padding: 18px; }
  .booking-card { padding: 20px; border-radius: 28px; }
  .package-tabs { grid-template-columns: 1fr; }
  .slot-grid, .slot-grid-hourly { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slot-pill, .hour-slot-pill { min-height: 52px; padding: 8px 6px; }
  .slot-pill strong { font-size: .92rem; }
  .guest-grid { gap: 12px; }
  .contact-card { padding: 20px; }
  .floating-wa { display: inline-flex; }
}
@media (max-width: 420px) {
  .container { width: calc(100% - 22px); }
  .brand strong { font-size: .98rem; }
  .nav-cta { padding: 11px 14px; font-size: .92rem; }
  .slot-grid, .slot-grid-hourly { gap: 8px; }
}
