:root {
  --ink: #14211f;
  --muted: #5c6864;
  --paper: #fbf8f0;
  --mist: #e7f1ed;
  --pine: #173f36;
  --teal: #0b6b70;
  --coral: #d85b45;
  --sun: #f3b64a;
  --line: rgba(20, 33, 31, 0.16);
  --shadow: 0 22px 60px rgba(18, 31, 29, 0.18);
}

* {
  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);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 248, 240, 0.94);
  box-shadow: 0 12px 35px rgba(18, 31, 29, 0.09);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.filter-bar,
.contact-band,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.8rem;
}

.site-nav {
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  text-decoration: none;
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.muted-social {
  opacity: 0.72;
}

.icon-button svg,
.primary-action svg,
.secondary-action svg,
.footer-socials svg {
  width: 18px;
  height: 18px;
}

.social-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon path:last-child {
  fill: currentColor;
  stroke: none;
}

.social-fallback {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.icon-button .social-icon + .social-fallback,
.footer-socials .social-icon + .social-fallback {
  display: none;
}

[data-tooltip]::after {
  position: absolute;
  right: 0;
  bottom: -36px;
  padding: 7px 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  content: attr(data-tooltip);
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(9, 18, 17, 0.45);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero-content {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 86px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(3.1rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  line-height: 1.55;
}

.route-stamp {
  display: inline-grid;
  gap: 2px;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  color: #fff;
  background: rgba(20, 33, 31, 0.28);
  text-transform: uppercase;
  transform: rotate(-2deg);
  backdrop-filter: blur(10px);
}

.route-stamp span {
  font-size: 0.66rem;
  font-weight: 850;
}

.route-stamp strong {
  font-size: 0.95rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.primary-action {
  border: 0;
  color: #fff;
  background: var(--coral);
  cursor: pointer;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.featured-reel-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--teal);
}

.featured-reel-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
}

.featured-reel-band .eyebrow {
  color: var(--sun);
}

.featured-reel-band .primary-action {
  flex: 0 0 auto;
  background: var(--coral);
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 34px;
  padding: 13px 0;
  color: #fff;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  position: relative;
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-track span::after {
  position: absolute;
  right: -22px;
  color: var(--sun);
  content: "/";
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-45%);
  }
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  min-height: 126px;
  padding: 26px clamp(18px, 4vw, 52px);
  background: var(--mist);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 8px;
  color: var(--pine);
  font-size: 1.2rem;
}

.stats-band span,
.route-card p,
.story-copy p,
.contact-band p,
.planner-output {
  color: var(--muted);
  line-height: 1.62;
}

.passport-section {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(251, 248, 240, 0.94), rgba(251, 248, 240, 0.82)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.passport-card {
  max-width: 980px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(20, 33, 31, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.passport-topline,
.passport-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.passport-topline {
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.passport-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.passport-card p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.62;
}

.passport-stamps {
  margin-top: 20px;
}

.passport-stamps span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--pine);
  background: var(--mist);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section,
.planner {
  padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 70px);
}

.reels-section {
  background: #fff;
}

.reels-intro {
  max-width: 860px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 690px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reel-card {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.reel-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(rgba(20, 33, 31, 0.05), rgba(20, 33, 31, 0.74));
}

.reel-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.reel-card:hover img {
  transform: scale(1.04);
}

.reel-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.reel-card span svg {
  width: 18px;
  height: 18px;
}

.reel-card h3 {
  max-width: 320px;
  margin-bottom: 0;
  color: #fff;
}

.reel-card-featured {
  grid-column: span 2;
  min-height: 520px;
  border: 1px solid rgba(243, 182, 74, 0.55);
}

.reel-card-featured::before {
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  content: "";
}

.reel-card-featured::after {
  background:
    linear-gradient(110deg, rgba(216, 91, 69, 0.32), transparent 42%),
    linear-gradient(rgba(20, 33, 31, 0.08), rgba(20, 33, 31, 0.82));
}

.reel-card-featured h3 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.filter-bar {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(18, 31, 29, 0.08);
}

.route-card[hidden] {
  display: none;
}

.route-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.route-card div {
  padding: 22px;
}

.route-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visited-section {
  padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 70px);
  background: #fff;
}

.visited-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 18px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(23, 63, 54, 0.92), rgba(11, 107, 112, 0.74)),
    url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.visited-hero div {
  max-width: 780px;
}

.visited-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.visited-hero h3 {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.visited-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.visited-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.visited-columns article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.place-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.place-chip-grid span {
  padding: 8px 10px;
  border: 1px solid rgba(11, 107, 112, 0.2);
  border-radius: 8px;
  color: var(--pine);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

.place-chip-grid.compact span {
  color: #fff;
  background: var(--teal);
}

.visited-note {
  margin-top: 20px;
  padding: 18px;
  border-left: 5px solid var(--coral);
  background: #fff;
}

.visited-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pine);
}

.visited-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.future-section {
  padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 70px);
  background: var(--mist);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.future-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(18, 31, 29, 0.08);
}

.future-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.future-card span {
  display: inline-block;
  margin: 20px 20px 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.future-card h3 {
  min-height: 62px;
  margin: 0;
  padding: 0 20px 22px;
}

.future-card-night {
  color: #fff;
  background: var(--ink);
}

.future-card-night span {
  color: var(--sun);
}

.story-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  padding: clamp(60px, 10vw, 120px) clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--pine);
}

.story-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.inline-reel-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--sun);
  font-weight: 900;
  text-decoration: none;
}

.inline-reel-link svg {
  width: 18px;
  height: 18px;
}

.reel-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reel-wall article,
.featured-reel-tile {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.featured-reel-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(11, 107, 112, 0.08), rgba(20, 33, 31, 0.56));
}

.reel-wall img,
.featured-reel-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-wall span,
.featured-reel-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(20, 33, 31, 0.72);
  font-weight: 850;
}

.featured-reel-tile svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.planner {
  background: #fff;
}

.planner-form {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) minmax(180px, 0.9fr) minmax(90px, 0.35fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.planner-output {
  display: block;
  min-height: 84px;
  padding: 20px;
  border-left: 5px solid var(--sun);
  background: var(--mist);
  font-weight: 700;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 70px);
  background: var(--paper);
}

.booking-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.62;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(18, 31, 29, 0.08);
}

.booking-dm,
.booking-submit,
.booking-note,
.booking-message {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.booking-note {
  margin: 0;
  padding: 16px;
  border-left: 5px solid var(--teal);
  color: var(--muted);
  background: var(--mist);
  line-height: 1.58;
  font-weight: 750;
}

.contact-band {
  justify-content: space-between;
  gap: 28px;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(rgba(20, 33, 31, 0.62), rgba(20, 33, 31, 0.62)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact-band div {
  max-width: 720px;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--ink);
}

.site-footer > div:first-child {
  display: grid;
  gap: 4px;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(20, 33, 31, 0.68), rgba(20, 33, 31, 0.68)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.success-panel {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 48px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.success-panel h1 {
  color: var(--pine);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
}

.success-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.62;
}

.footer-socials a {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.footer-socials a:first-child {
  background: var(--coral);
  border-color: var(--coral);
}

.support-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.support-launcher svg {
  width: 24px;
  height: 24px;
}

.support-launcher-fallback {
  display: none;
  font-weight: 950;
}

.support-chat {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 20;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.support-chat.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: var(--pine);
}

.support-header span,
.support-header strong {
  display: block;
}

.support-header span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.support-header strong {
  font-size: 0.96rem;
}

.support-header button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.support-header button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.support-messages {
  display: grid;
  max-height: 270px;
  gap: 10px;
  overflow-y: auto;
  padding: 14px;
  background: var(--paper);
}

.support-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.support-message.bot {
  color: var(--ink);
  background: var(--mist);
}

.support-message.user {
  justify-self: end;
  color: #fff;
  background: var(--teal);
}

.support-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 0;
}

.support-quick button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--pine);
  background: #fff;
  cursor: pointer;
  font-weight: 850;
}

.support-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px;
}

.support-form input {
  min-height: 42px;
}

.support-form button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  cursor: pointer;
  font-weight: 900;
}

.support-dm {
  display: block;
  padding: 13px 14px 15px;
  color: var(--teal);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 880px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(20, 33, 31, 0.14);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(251, 248, 240, 0.98);
    box-shadow: 0 16px 35px rgba(18, 31, 29, 0.14);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: var(--mist);
  }

  .menu-toggle {
    display: grid;
  }

  .stats-band,
  .section-heading,
  .route-grid,
  .reels-grid,
  .future-grid,
  .visited-columns,
  .story-strip,
  .planner-form,
  .booking-section,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .reel-card,
  .reel-card-featured {
    grid-column: auto;
    min-height: 360px;
  }

  .route-card {
    min-height: auto;
  }

  .story-strip {
    align-items: start;
  }

  .reel-wall {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    padding-bottom: 10px;
  }

  .reel-wall article {
    min-height: 360px;
  }

  .contact-band,
  .featured-reel-band,
  .visited-hero,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 128px;
    white-space: normal;
    line-height: 1.05;
  }

  .header-socials .muted-social {
    display: none;
  }

  .support-chat {
    right: 12px;
    bottom: 86px;
  }

  .support-launcher {
    right: 14px;
    bottom: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .route-card img {
    height: 260px;
  }
}
