﻿/*
Theme Name: PassioneAsia
Theme URI: https://example.com/passioneasia
Author: PassioneAsia
Description: Custom travel website theme for PassioneAsia, with destination, itinerary, and inspiration layouts.
Version: 1.4.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: passioneasia
*/

:root {
  --ink: #121212;
  --muted: #69665e;
  --paper: #fffdf8;
  --soft: #f7f3ea;
  --line: #e8e1d2;
  --lime: #d9f000;
  --lime-dark: #a4b900;
  --shadow: 0 18px 50px rgba(30, 27, 20, .12);
  --shadow-soft: 0 10px 28px rgba(31, 27, 19, .07);
  --radius: 8px;
  --max: 1180px;
  --hand: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", cursive;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 56px);
  background: rgba(255, 253, 248, .92);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  backdrop-filter: blur(16px);
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(to bottom, rgba(0,0,0,.46), transparent);
  box-shadow: none;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 18vw, 270px);
  min-width: 0;
  white-space: nowrap;
}

.brand__logo { width: 100%; height: auto; }
.brand__logo--light { display: none; }
.site-header--overlay .brand__logo--dark { display: none; }
.site-header--overlay .brand__logo--light { display: block; }

.menu-panel { justify-self: center; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: #fff;
  color: transparent;
  position: relative;
  cursor: pointer;
  z-index: 3;
  justify-self: end;
}
.site-header--overlay .menu-toggle {
  border-color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.28);
}
.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease, top .18s ease;
}
.site-header--overlay .menu-toggle span { background: #fff; }
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }
.site-header.is-menu-open .menu-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .menu-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.menu-toggle::before {
  content: "";
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  font-weight: 750;
  font-size: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li { margin: 0; }

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn--primary { background: var(--lime); color: var(--ink); }
.btn--primary:hover { background: #c8df00; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(164,185,0,.2); }
.btn--dark { background: #111; color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.86); color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--light { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--light:hover { border-color: var(--lime-dark); transform: translateY(-1px); }

.hero {
  min-height: min(760px, calc(100vh - 0px));
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
}

.hero--blog { min-height: 560px; }
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero--home .hero__image { object-position: 58% center; }
.hero--blog .hero__image { object-position: center top; }
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18) 58%, rgba(0,0,0,.08)),
    linear-gradient(0deg, rgba(0,0,0,.38), transparent 42%);
  z-index: -1;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  gap: 48px;
  padding-block: 118px 92px;
}

.hero__copy h1,
.trip-hero h1 {
  margin: 0 0 24px;
  font-family: var(--hand);
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: .98;
  max-width: 680px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,.18);
  overflow-wrap: anywhere;
}

.trip-hero h1 {
  text-shadow: none;
}

.hero__copy h1::after,
.trip-hero h1::after,
.section h2::after,
.section-head h2::after {
  content: "";
  display: block;
  width: var(--underline-width, 190px);
  max-width: min(100%, 520px);
  height: 7px;
  margin-top: 6px;
  background: var(--lime);
  border-radius: 999px;
  transform: rotate(-2deg);
}

.hero__copy p {
  margin: 0 0 24px;
  max-width: min(100%, 520px);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.hero--home .hero__copy h1 { max-width: 610px; }

.eyebrow {
  color: var(--lime);
  font-family: var(--hand);
  font-weight: 900;
  text-transform: uppercase;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 22px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 22px;
}
.trust-strip span,
.archive-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.social-proof { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.social-proof span:last-child { color: rgba(255,255,255,.82); }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: linear-gradient(135deg, #f4c7a5, #5f7c5c);
}
.avatar-stack span:first-child { margin-left: 0; }
.scribble {
  align-self: end;
  justify-self: end;
  margin-bottom: 70px;
  font-family: var(--hand);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-8deg);
}

.section { padding: clamp(54px, 6vw, 82px) 0; }
.section--tight { padding-top: 36px; }
.section--soft { background: var(--soft); }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  min-width: 0;
}

h2 {
  font-family: var(--hand);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 24px;
  overflow-wrap: anywhere;
}

.section-head h2 { margin: 0; }
.section-head h2 { min-width: 0; max-width: 100%; }
.round-actions { display: flex; gap: 14px; }
.round-actions button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--lime-dark);
  border-radius: 50%;
  background: transparent;
  font-weight: 900;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.destination-card {
  min-height: 330px;
  aspect-ratio: 1.15 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 28px;
  color: #fff;
  background: #123;
  text-align: center;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease;
}
.destination-card:hover,
.trip-card:hover,
.inspiration-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.destination-card::after,
.inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.04) 58%);
}
.destination-card img,
.inspiration-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.destination-card:hover img,
.inspiration-card:hover img { transform: scale(1.04); }
.destination-card:nth-child(1) img { object-position: 26% 30%; }
.destination-card:nth-child(2) img { object-position: 52% 28%; }
.destination-card:nth-child(3) img { object-position: 84% 62%; }
.destination-card span {
  position: relative;
  z-index: 1;
  font-family: var(--hand);
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.28);
}
.destination-card p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  min-height: 44px;
  margin: 8px 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.destination-card em {
  position: relative;
  z-index: 1;
  font-style: normal;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  transition: background-color .18s ease, transform .18s ease;
}
.destination-card:hover em { background: var(--lime); transform: translateY(-1px); }

.text-link { font-weight: 850; text-transform: uppercase; font-size: 13px; }
.text-link:hover { color: var(--lime-dark); }
.trip-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.trip-card,
.article-card,
.sidebar-card,
.newsletter,
.info-card,
.price-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(31, 27, 19, .08);
}
.trip-card { overflow: hidden; padding-bottom: 18px; }
.trip-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.trip-card__image { aspect-ratio: 1.38 / 1; position: relative; overflow: hidden; background: #d8d0c0; }
.trip-card__image img { width: 100%; height: 100%; object-fit: cover; }
.trip-card__image span,
.pill,
.article-card span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.trip-card h3,
.trip-card p,
.trip-card strong,
.trip-card small { margin-left: 16px; margin-right: 16px; }
.trip-card h3 { margin-top: 18px; margin-bottom: 6px; font-size: 18px; line-height: 1.25; overflow-wrap: anywhere; }
.trip-card p { color: var(--muted); margin-top: 0; min-height: 24px; }
.trip-card strong { display: block; font-size: 18px; margin-top: auto; margin-bottom: 12px; }
.trip-card small { color: var(--muted); }
.trip-card__cta {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 16px 10px;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 56px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card,
.filter-empty,
.final-cta {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.step-card {
  padding: 26px 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 27, 19, .1);
}
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 900;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.why-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(164,185,0,.5);
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
}
.why-item {
  min-height: 100%;
  padding: 22px 18px;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.why-item h3 { margin: 0 0 8px; text-transform: uppercase; font-size: 13px; text-decoration: underline var(--lime) 4px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.polaroid {
  background: #fff;
  padding: 18px 18px 24px;
  transform: rotate(4deg);
  box-shadow: var(--shadow);
  font-family: var(--hand);
  font-weight: 900;
  border-radius: var(--radius);
}
.polaroid img { height: 190px; width: 100%; object-fit: cover; object-position: 60% 70%; border-radius: 6px; }

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.inspiration-card {
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease;
}
.inspiration-card span { position: relative; z-index: 1; max-width: 220px; }

.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(135deg, #fbf8ef, #eef5f2);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 58px;
}
.page-hero h1 {
  margin: 0 0 20px;
  max-width: 660px;
  font-family: var(--hand);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.page-hero h1::after {
  content: "";
  display: block;
  width: var(--underline-width, 190px);
  max-width: min(100%, 520px);
  height: 7px;
  margin-top: 8px;
  background: var(--lime);
  border-radius: 999px;
  transform: rotate(-2deg);
}
.page-hero p:not(.eyebrow) {
  max-width: 590px;
  color: #3c3933;
  font-size: 18px;
  line-height: 1.65;
}
.archive-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.archive-badges span {
  border-color: rgba(164,185,0,.3);
  background: rgba(255,255,255,.65);
  color: var(--ink);
}
.page-hero img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.about-hero {
  overflow: hidden;
  padding-bottom: 86px;
}
.about-hero h1 {
  font-size: clamp(38px, 4.5vw, 64px);
}
.about-hero__media {
  position: relative;
  padding-right: 34px;
  padding-bottom: 46px;
}
.about-hero__media > img {
  min-height: 430px;
  object-position: 52% center;
}
.about-polaroid {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(260px, 74%);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.about-stats div {
  padding: 20px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(31, 27, 19, .06);
}
.about-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 46px;
  align-items: start;
}
.about-story__copy h2,
.team-card h3 {
  margin-top: 16px;
}
.about-story__copy p {
  color: #3c3933;
  font-size: 17px;
  line-height: 1.72;
}
.about-story__stack {
  display: grid;
  gap: 18px;
}
.about-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  overflow: hidden;
  padding: 0 0 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(31, 27, 19, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(31, 27, 19, .11);
}
.team-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  height: auto;
  object-fit: cover;
}
.team-card h3,
.team-card p {
  margin-left: 24px;
  margin-right: 24px;
}
.team-card__role {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.team-card p:not(.team-card__role) {
  color: var(--muted);
  line-height: 1.65;
}
.about-values .why-grid {
  grid-template-columns: repeat(2, 1fr);
}
.about-gallery .photo-tile--large img {
  object-position: center;
}

.destination-list {
  display: grid;
  gap: 34px;
}
.destination-feature {
  display: grid;
  grid-template-columns: minmax(320px, 440px) 1fr;
  gap: 44px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(31, 27, 19, .07);
  scroll-margin-top: 110px;
}
.destination-feature img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  border-radius: 10px;
}
.destination-feature h2 {
  margin-top: 12px;
}
.destination-feature p {
  color: #3f3b35;
  line-height: 1.65;
  font-size: 17px;
}
.pill-static {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.clean-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
  color: var(--muted);
}
.clean-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius);
  background: #fff;
}
.clean-list li::before {
  content: "";
  width: 12px;
  height: 7px;
  margin-top: 6px;
  border-left: 3px solid var(--lime-dark);
  border-bottom: 3px solid var(--lime-dark);
  transform: rotate(-45deg);
}
.clean-list--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.clean-list--cards li {
  min-height: 72px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  padding: 58px 0 24px;
  background: #10110f;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}
.footer-brand .brand {
  width: 230px;
  margin-bottom: 20px;
}
.footer-brand p,
.footer-contact p,
.footer-bottom p {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.footer-brand p {
  max-width: 390px;
  margin-bottom: 24px;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}
.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  font-family: var(--hand);
  font-size: 28px;
  text-transform: uppercase;
}
.footer-links h2::after,
.footer-contact h2::after {
  content: "";
  display: block;
  width: var(--underline-width, 70px);
  height: 5px;
  margin-top: 5px;
  background: var(--lime);
  border-radius: 999px;
  transform: rotate(-2deg);
}
.site-footer a {
  color: rgba(255,255,255,.82);
  font-weight: 750;
}
.site-footer a:hover { color: var(--lime); }
.footer-newsletter {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.footer-newsletter label {
  color: #fff;
  font-weight: 850;
}
.footer-newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 8px;
}
.footer-newsletter input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.55); }
.footer-newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.footer-newsletter button:hover { background: #c8df00; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.breadcrumb { padding: 18px 0; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--ink); font-weight: 700; }
.breadcrumb a:hover { color: var(--lime-dark); }
.trip-hero {
  min-height: 480px;
  position: relative;
  color: var(--ink);
  display: grid;
  align-items: center;
  overflow: visible;
  padding: 58px 0;
  background: linear-gradient(135deg, #fbf8ef, #edf6f3);
}
.trip-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  align-items: center;
}
.trip-hero__copy { max-width: 610px; }
.trip-hero__copy p { font-size: 18px; line-height: 1.6; font-weight: 650; }
.trip-meta { display: flex; flex-wrap: wrap; gap: 24px; font-weight: 800; margin-top: 28px; }
.price-card {
  color: var(--ink);
  padding: 34px 30px;
  align-self: end;
  margin-bottom: 0;
  z-index: 2;
  position: sticky;
  top: 116px;
}
.price-card small { color: var(--muted); text-transform: uppercase; font-weight: 850; }
.price-card strong { display: block; font-size: 38px; margin: 8px 0 2px; }
.price-card ul { list-style: none; padding: 18px 0; margin: 0; display: grid; gap: 13px; color: #504d46; }
.price-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.price-card li::before {
  content: "";
  width: 12px;
  height: 7px;
  margin-top: 7px;
  border-left: 3px solid var(--lime-dark);
  border-bottom: 3px solid var(--lime-dark);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; }
.save-btn { margin-top: 14px; width: 100%; border: 0; background: transparent; color: var(--muted); cursor: pointer; }

.gallery-strip,
.trip-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 34px;
}
.gallery-strip img { height: 145px; width: 100%; object-fit: cover; border-radius: var(--radius); }
.trip-photo-grid {
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 154px;
}
.photo-tile {
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd4c2;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(31, 27, 19, .08);
  min-height: 0;
}
.photo-tile--large { grid-row: span 2; }
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}
.photo-tile:hover img { transform: scale(1.04); }
.tab-nav {
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  margin-top: 48px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.tab-nav button {
  border: 0;
  background: transparent;
  padding: 0 4px 18px;
  font-family: var(--hand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  white-space: nowrap;
  cursor: pointer;
}
.tab-nav button.active { box-shadow: inset 0 -5px 0 var(--lime); }
.tab-nav button:hover { color: var(--lime-dark); }
.trip-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: start;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.trip-main h2,
.info-card h2,
.sidebar-card h2,
.newsletter h2 { font-size: 26px; }
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  text-align: center;
}
.icon-grid span { font-size: 34px; display: block; }
.icon-grid p { color: var(--muted); font-size: 13px; }
.accordion { display: grid; gap: 10px; }
.accordion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 20px;
}
.accordion-actions .btn {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}
.accordion-item {
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-item button,
.accordion > button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 48px;
  width: 100%;
  border: 0;
  background: #fff;
  padding: 0 18px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}
.accordion-marker {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft);
  font-size: 22px;
  line-height: 1;
}
.accordion > button { border: 1px solid rgba(0,0,0,.05); border-radius: var(--radius); }
.accordion > button.open,
.accordion-item button:hover,
.accordion-item.open button { background: var(--soft); }
.accordion-item p,
.accordion-content {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}
.accordion-item.open p,
.accordion-item.open .accordion-content { display: block; }
.accordion-content p {
  display: block;
  padding: 0;
  margin: 0 0 14px;
}
.accordion-content p:last-child { margin-bottom: 0; }
.accordion-content ul,
.accordion-content ol {
  margin: 0 0 14px 22px;
  padding: 0;
}
.accordion-content img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: cover;
  margin: 14px 0;
  border-radius: var(--radius);
}
.info-card {
  padding: 36px;
  background: #fbf9f4;
  align-self: start;
}
.trip-content__grid > .info-card {
  position: sticky;
  top: 116px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 30px; }
.tag-row span { border: 1px solid var(--lime-dark); border-radius: 999px; padding: 6px 10px; font-size: 11px; text-transform: uppercase; font-weight: 800; }
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(31, 27, 19, .06);
}
.split-cta img { width: 100%; height: 330px; object-fit: cover; }
.split-cta div { padding: 34px; }
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.84)),
    url("assets/images/boat.jpg") center/cover;
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #3c3933;
  line-height: 1.65;
}
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.82);
}
.gallery-modal[hidden] { display: none; }
.gallery-modal img {
  max-width: min(100%, 1040px);
  max-height: 86vh;
  border-radius: 12px;
  object-fit: contain;
}
.gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px;
}
.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(31, 27, 19, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.featured-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(31, 27, 19, .12);
}
.featured-article__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.featured-article__content {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 4vw, 54px);
}
.featured-article__content span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.featured-article__content h2 { margin: 0; }
.featured-article__content p {
  color: #46423b;
  line-height: 1.65;
  margin: 0;
}
.featured-article__content small { color: var(--muted); font-weight: 750; }
.filter-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.filter-row button,
.filter-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.filter-row button.active,
.filter-row a.active,
.filter-row button:hover,
.filter-row a:hover { background: var(--lime); border-color: var(--lime); }
.filter-empty {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 28px auto 0;
  padding: 30px;
  text-align: center;
}
.filter-empty[hidden] { display: none; }
.filter-empty h2 {
  margin: 0;
  font-size: 28px;
}
.filter-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.text-filter {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lime-dark);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.text-filter:hover { color: var(--ink); }
.nav-links {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.nav-links ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-links a.page-numbers,
.nav-links span.page-numbers,
.nav-links button.page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}
.nav-links span.page-numbers.current,
.nav-links button.page-numbers.current,
.nav-links a.page-numbers:hover,
.nav-links button.page-numbers:hover {
  background: var(--lime);
  border-color: var(--lime);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(31, 27, 19, .12);
}
.article-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.article-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  height: auto;
  object-fit: cover;
  background: #ddd4c2;
}
.article-card span {
  position: static;
  display: inline-block;
  margin: 16px 18px 0;
  color: var(--lime-dark);
  background: transparent;
  padding: 0;
  letter-spacing: 0;
}
.article-card h3 {
  margin: 10px 18px;
  font-size: 19px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.article-card p {
  margin: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.article-card small {
  display: block;
  margin: auto 18px 0;
  color: var(--muted);
  line-height: 1.35;
}
.blog-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
  position: sticky;
  top: 116px;
}
.search-box { position: relative; display: block; }
.search-box input,
.newsletter input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 48px 0 18px;
  background: #fff;
}
.search-box span { position: absolute; right: 18px; top: 15px; font-size: 22px; color: var(--muted); }
.sidebar-card,
.newsletter { padding: 28px; }
.sidebar-card p { color: #504d46; margin: 12px 0 0; }
.sidebar-card a { color: var(--lime-dark); font-weight: 850; }
.mini-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink) !important;
  margin-top: 16px;
  padding: 8px;
  margin-inline: -8px;
  border-radius: var(--radius);
  transition: background-color .18s ease, transform .18s ease;
}
.mini-post:hover {
  background: rgba(217,240,0,.14);
  transform: translateX(2px);
}
.mini-post img {
  width: 70px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}
.mini-post span {
  display: grid;
  gap: 4px;
  line-height: 1.25;
}
.mini-post small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.newsletter { background: #fbfad8; }
.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 8px;
}
.newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  font-weight: 900;
  cursor: pointer;
}
.newsletter button:hover {
  background: #c8df00;
}

.article-hero {
  padding: 72px 0 58px;
  background: linear-gradient(135deg, #fbf8ef, #eef5f2);
}
.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 58px;
  align-items: center;
}
.article-hero h1,
.page .section h1 {
  font-family: var(--hand);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}
.article-hero h1::after {
  content: "";
  display: block;
  width: var(--underline-width, 190px);
  max-width: min(100%, 520px);
  height: 7px;
  margin-top: 8px;
  background: var(--lime);
  border-radius: 999px;
  transform: rotate(-2deg);
}
.article-hero p {
  color: #3c3933;
  font-size: 18px;
  line-height: 1.65;
}
.article-hero small { color: var(--muted); font-weight: 800; }
.article-hero__image img {
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 64px;
  align-items: start;
}
.single-article {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.78;
}
.single-article h2,
.single-article h3 {
  margin-top: 34px;
  font-family: var(--hand);
  text-transform: uppercase;
}
.single-article p { color: #332f29; }
.single-article ul,
.single-article ol { color: #332f29; padding-left: 24px; }
.single-article img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.single-article blockquote {
  margin: 30px 0;
  padding: 24px 28px;
  border-left: 6px solid var(--lime);
  background: #fbf9f4;
  border-radius: var(--radius);
  color: #3d3932;
}
.single-article blockquote p {
  margin: 0;
}
.article-cta {
  margin-top: 44px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 14px;
  background: linear-gradient(135deg, #fbf8ef, #eef5f2);
  box-shadow: var(--shadow-soft);
}
.article-cta h2 {
  margin-top: 0;
}
.article-cta p {
  max-width: 580px;
}
.article-cta .btn {
  margin-top: 8px;
}
.article-aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 10px;
}
.article-aside .btn {
  margin-top: 14px;
}
.single-article__image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 32px;
}
.single-article__meta {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero--home .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero--home .hero__copy {
    max-width: 720px;
  }
  .hero--home .scribble {
    display: none;
  }
  .trip-carousel,
  .steps-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .featured-article,
  .blog-layout,
  .article-hero__grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .blog-layout,
  .article-layout {
    gap: 36px;
  }
  .blog-sidebar,
  .article-aside {
    position: static;
  }
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-article__image img {
    min-height: 260px;
    max-height: 340px;
  }
  .featured-article__content {
    padding: 28px;
  }
  .article-hero {
    padding: 54px 0 42px;
  }
  .article-hero__image img {
    height: 320px;
  }
  .why-layout {
    align-items: start;
    gap: 30px;
  }
  .polaroid {
    max-width: 380px;
    transform: rotate(2deg);
  }
  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 22px;
    padding-block: 16px;
  }
  .brand { max-width: calc(100vw - 96px); }
  .menu-toggle { display: block; }
  .menu-panel {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    justify-self: stretch;
    padding: 12px 0 0;
  }
  .site-header.is-menu-open .menu-panel { display: block; }
  .main-nav {
    width: 100%;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 40px rgba(31, 27, 19, .12);
  }
  .site-header--overlay .main-nav {
    background: rgba(18,18,18,.9);
    border-color: rgba(255,255,255,.18);
  }
  .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }
  .main-nav a::after { display: none; }
  .main-nav a:hover {
    background: var(--lime);
    color: var(--ink);
  }
  .header-cta { display: none; }
  .hero {
    min-height: auto;
  }
  .hero__content {
    padding-block: 86px 70px;
  }
  .hero__copy {
    max-width: 680px;
  }
  .hero__copy p {
    max-width: 600px;
  }
  .hero--home .hero__image {
    object-position: 64% center;
  }
  .scribble {
    display: none;
  }
  .trust-strip,
  .social-proof {
    max-width: 640px;
  }
  .hero__content,
  .page-hero__grid,
  .featured-article,
  .article-hero__grid,
  .destination-feature,
  .trip-hero__grid,
  .why-layout,
  .article-layout,
  .trip-content__grid,
  .blog-layout,
  .split-cta { grid-template-columns: 1fr; }
  .about-story,
  .about-team { grid-template-columns: 1fr; }
  .destination-grid,
  .trip-carousel,
  .why-grid,
  .steps-grid,
  .inspiration-grid,
  .gallery-strip,
  .icon-grid,
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values .why-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card {
    min-height: 300px;
  }
  .destination-card span {
    font-size: 38px;
  }
  .why-layout {
    align-items: start;
  }
  .about-hero {
    padding-bottom: 58px;
  }
  .about-hero__media {
    padding-right: 0;
    padding-bottom: 0;
  }
  .about-hero__media > img {
    min-height: 320px;
  }
  .about-polaroid {
    position: static;
    width: 100%;
    margin-top: 18px;
    transform: rotate(0deg);
  }
  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-story {
    gap: 30px;
  }
  .about-team {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .team-card h3,
  .team-card p {
    margin-left: 18px;
    margin-right: 18px;
  }
  .final-cta {
    grid-template-columns: 1fr;
  }
  .final-cta__actions {
    justify-content: flex-start;
  }
  .price-card { margin-bottom: 0; max-width: 420px; position: static; }
  .trip-content__grid > .info-card { position: static; }
  .blog-sidebar { position: static; }
  .article-aside { position: static; }
  .gallery-strip { padding-top: 32px; }
  .page-hero { padding-top: 46px; }
  .trip-photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .photo-tile--large { grid-row: span 1; grid-column: span 2; }
  .clean-list--cards { grid-template-columns: 1fr; }
  .two-column-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero--blog {
    min-height: 520px;
  }
  .hero--blog .hero__content {
    padding-block: 72px 58px;
  }
  .featured-article {
    border-radius: 10px;
  }
  .featured-article__image img {
    min-height: 220px;
    max-height: 260px;
  }
  .featured-article__content {
    padding: 22px;
  }
  .featured-article__content h2 {
    font-size: 28px;
    line-height: 1.08;
  }
  .blog-layout {
    gap: 32px;
  }
  .blog-sidebar {
    gap: 18px;
  }
  .sidebar-card,
  .newsletter {
    padding: 22px;
  }
  .mini-post {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .mini-post img {
    width: 64px;
    height: 54px;
  }
  .article-hero {
    padding: 46px 0 34px;
  }
  .article-hero h1,
  .page .section h1 {
    font-size: 38px;
  }
  .article-hero p,
  .single-article {
    font-size: 16px;
  }
  .article-hero__image img {
    height: 240px;
  }
  .article-layout {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  html #wpadminbar {
    min-width: 0 !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  body.admin-bar {
    min-width: 0 !important;
  }
  main,
  .site-header,
  .site-footer {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container { width: min(100% - 28px, var(--max)); }
  .site-header { padding: 14px 18px; }
  .menu-toggle {
    display: grid !important;
    place-items: center;
    position: absolute;
    top: 16px;
    right: 18px;
  }
  .menu-toggle span { display: block; }
  .menu-toggle::before { content: none; }
  .brand { width: 190px; }
  .hero { min-height: 620px; }
  .site-header--overlay ~ main .hero .hero__content { padding-top: 154px; }
  .hero--home .hero__image { object-position: 62% center; }
  .hero__copy h1, .trip-hero h1 { font-size: 39px; }
  .hero__copy p { font-size: 16px; }
  .trust-strip span,
  .archive-badges span { min-height: 32px; font-size: 11px; }
  .about-stats,
  .about-values .why-grid { grid-template-columns: 1fr; }
  .about-hero__media > img { min-height: 240px; }
  .about-team { grid-template-columns: 1fr; }
  .hero__copy { min-width: 0; }
  .hero__copy p { max-width: 100%; }
  .scribble { display: none; }
  .social-proof { flex-wrap: wrap; max-width: 100%; }
  h2 { font-size: 30px; }
  .hero__actions, .section-head, .footer-grid { align-items: flex-start; flex-direction: column; }
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-snap-type: x proximity;
  }
  .filter-row button,
  .filter-row a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .destination-grid,
  .trip-carousel,
  .why-grid,
  .inspiration-grid,
  .gallery-strip,
  .icon-grid,
  .article-grid { grid-template-columns: 1fr; }
  .hero--blog {
    min-height: 500px;
  }
  .hero--blog .hero__image {
    object-position: 52% center;
  }
  .blog-section {
    padding-top: 46px;
  }
  .article-card a {
    padding-bottom: 18px;
  }
  .article-card img {
    aspect-ratio: 1.35 / 1;
  }
  .newsletter div {
    grid-template-columns: minmax(0, 1fr) 52px;
  }
  .newsletter input {
    min-width: 0;
  }
  .article-cta .btn,
  .article-aside .btn {
    width: 100%;
  }
  .destination-card { min-height: 250px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .destination-feature { padding: 18px; gap: 22px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .trip-meta { gap: 12px; flex-direction: column; }
  .tab-nav { gap: 22px; }
  .trip-photo-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .photo-tile--large { grid-column: span 1; }
  .accordion-content img { max-height: 280px; }
  .accordion-item button,
  .accordion > button { grid-template-columns: minmax(0, 1fr) auto; padding: 0 12px; font-size: 15px; }
  .accordion-item p { padding: 0 12px 16px; }
  .split-cta img { height: 240px; }
  .final-cta {
    grid-template-columns: 1fr;
  }
  .final-cta__actions {
    justify-content: stretch;
  }
}

@media (max-width: 420px) {
  .brand { width: 170px; }
  .hero__copy h1,
  .trip-hero h1 { font-size: 34px; }
  .hero__copy p { font-size: 15px; line-height: 1.55; }
  h2 { font-size: 26px; }
  .btn { width: 100%; padding-inline: 18px; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .text-link { text-align: center; }
  .social-proof { display: grid; grid-template-columns: auto 1fr; }
  .social-proof span:last-child { grid-column: 1 / -1; }
}

