/* =========================================================
   Kanoka Travel — Homepage redesign
   Brand: deep navy · bright orange · soft gold · white
   ========================================================= */

:root {
  --navy: #0b1b33;
  --navy-2: #0e2340;
  --navy-3: #122a4a;
  --navy-deep: #06101f;
  --orange: #f15a24;
  --orange-hot: #ff6a30;
  --orange-deep: #d4481a;
  --gold: #e8b86d;
  --cream: #f7f4ef;
  --cream-2: #efeae2;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-dark: rgba(11, 27, 51, 0.65);
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px rgba(6, 16, 31, 0.28);
  --header-h: 78px;
  --font: "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --script: "Great Vibes", cursive;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.icon-btn:focus-visible,
a:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--orange);
  color: #111;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.75rem;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
}

.section-title.dark {
  color: var(--navy);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.text-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.text-link.dark {
  color: var(--navy);
}

.text-link span {
  color: var(--orange);
}

.text-link:hover {
  color: var(--orange);
}

.accent {
  color: var(--orange);
}

.script-em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: 0.02em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 27, 51, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 16, 31, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand-logo {
  width: 200px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.primary-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.35rem 0;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--white);
}

.primary-nav a.is-active::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-btn {
  background: none;
  border: 0;
  color: var(--white);
  padding: 0.35rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
}

.login-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.login-link:hover {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.82) 0%, rgba(6, 16, 31, 0.45) 48%, rgba(6, 16, 31, 0.25) 100%),
    linear-gradient(180deg, rgba(6, 16, 31, 0.35) 0%, transparent 30%, rgba(6, 16, 31, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 2rem;
  padding-block: 4.5rem 5rem;
}

.hero-logo {
  width: 320px;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 1.35rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-sub {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-script {
  justify-self: end;
  align-self: end;
  font-family: var(--script);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
  text-align: right;
  transform: rotate(-6deg);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  position: relative;
  padding-bottom: 0.4rem;
}

.hero-script::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange));
  opacity: 0.85;
}

/* ---------- Value props ---------- */
.value-props {
  background: var(--navy-2);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  padding: 1.75rem 1.5rem;
  align-items: start;
  align-content: center;
}

.value-item + .value-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.value-icon {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--orange);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.value-item h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.value-item p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Destinations ---------- */
.section-light {
  background: var(--cream);
  color: var(--navy);
  padding: 4.25rem 0;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.dest-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-2) center / cover no-repeat;
  background-image: var(--img);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: transform 0.25s ease;
}

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 16, 31, 0.88) 100%);
}

.dest-card:hover {
  transform: translateY(-4px);
}

.dest-name,
.dest-arrow {
  position: relative;
  z-index: 1;
}

.dest-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.dest-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ---------- Lifestyle banner ---------- */
.lifestyle {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  background: url("assets/lifestyle.jpg") center / cover no-repeat;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 31, 0.82) 0%, rgba(6, 16, 31, 0.55) 55%, rgba(6, 16, 31, 0.25) 100%);
}

.lifestyle-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: max(calc((100% - var(--max)) / 2), 1.25rem);
  margin-right: auto;
  padding: 4.5rem 1.25rem;
  width: min(100% - 2.5rem, 560px);
}

.lifestyle-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lifestyle-copy {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
}

/* ---------- Trips ---------- */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trip-card {
  background: var(--navy-2);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.trip-media {
  position: relative;
  min-height: 210px;
  background: center / cover no-repeat;
}

.trip-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(6, 16, 31, 0.82);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trip-body {
  padding: 1.25rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.trip-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.trip-meta {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.trip-meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trip-meta svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.trip-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.25rem;
}

.trip-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.trip-sample {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 184, 109, 0.85);
  margin-top: -0.25rem;
}

.trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.spots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.spots-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.25);
}

/* ---------- Community ---------- */
.community {
  background: var(--navy);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  min-height: 560px;
}

.community-panel {
  position: relative;
  overflow: hidden;
  display: flex;
}

.panel-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
}

.panel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 31, 0.72), rgba(6, 16, 31, 0.88));
}

.panel-shade.mid {
  background: linear-gradient(180deg, rgba(6, 16, 31, 0.45), rgba(6, 16, 31, 0.78));
}

.panel-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.community-panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.panel-copy {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34rem;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  margin: 0.5rem 0 0.75rem;
}

.icon-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.community-rules {
  background: var(--navy-2);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.rules-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.age-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 1.45rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(241, 90, 36, 0.35);
}

.rules-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.35rem 0;
}

.rules-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(241, 90, 36, 0.15);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.rules-tagline {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* ---------- Waitlist ---------- */
.waitlist {
  background: var(--navy-deep);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.waitlist-copy p {
  color: var(--muted);
  margin-top: 0.85rem;
  max-width: 34rem;
}

.form-note {
  font-size: 0.82rem !important;
  color: var(--gold) !important;
}

.waitlist-form {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: 0.95rem;
}

.waitlist-form label,
.waitlist-form fieldset {
  display: grid;
  gap: 0.35rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.waitlist-form span,
.waitlist-form legend {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font: inherit;
}

.waitlist-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.waitlist-form .radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.form-alt {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-alt a {
  color: var(--orange);
  text-decoration: underline;
}

.form-success {
  color: #9be7a8;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Footer CTA ---------- */
.footer-cta {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: url("assets/footer.jpg") center / cover no-repeat;
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 31, 0.82), rgba(6, 16, 31, 0.55) 50%, rgba(6, 16, 31, 0.78));
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 3.25rem;
}

.footer-cta-center {
  text-align: center;
}

.footer-cta-center h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-script {
  justify-self: center;
  transform: none;
  text-align: center;
  color: var(--orange);
  margin: 0.35rem 0 1.25rem;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.footer-script::after {
  display: none;
}

.footer-social {
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
  margin-top: 0.55rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: var(--orange-hot);
}

/* ---------- Site footer bar ---------- */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.footer-bar nav a:hover {
  color: var(--orange);
}

.adults-only {
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trip-grid .trip-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-rules {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .icon-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-social {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-script {
    justify-self: start;
    text-align: left;
    transform: rotate(-4deg);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "actions actions";
  }

  .brand { grid-area: brand; }
  .nav-toggle { grid-area: toggle; }
  .header-actions {
    grid-area: actions;
    justify-content: flex-end;
    padding-bottom: 0.75rem;
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem 1.25rem;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-item + .value-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .waitlist-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .dest-grid,
  .trip-grid {
    grid-template-columns: 1fr;
  }

  .trip-grid .trip-card:last-child {
    max-width: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .icon-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1rem;
  }

  .icon-row li:nth-child(4),
  .icon-row li:nth-child(5) {
    /* keep centered-ish on last row */
  }

  .trip-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .trip-footer .btn {
    width: 100%;
  }

  .header-actions .login-link {
    display: none;
  }

  .brand-logo {
    width: 160px;
    max-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
