/* ============================================================
   GENTLE MOON STAYS — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Bitter:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:     #1c1b18;
  --cream:     #f5f1e8;
  --warm-grey: #e6e0d4;
  --navy:      #1d2c3a;
  --lime:      #c8df2e;
  --lime-dark: #6b8a00;
  --text:      #2b2926;
  --text-mid:  #78706a;
  --nav-h:     64px;
  --max-w:     1180px;
  --sec-v:     clamp(64px, 9vw, 120px);
  --pad-h:     clamp(20px, 5vw, 60px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Bitter', Georgia, serif;
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Shrikhand', serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.section { padding: var(--sec-v) 0; }

/* Backgrounds */
.bg-cream     { background: var(--cream); color: var(--text); }
.bg-grey      { background: var(--warm-grey); color: var(--text); }
.bg-black     { background: var(--black); color: var(--cream); }
.bg-navy      { background: var(--navy); color: var(--cream); }
.bg-lime      { background: var(--lime); color: var(--black); }

.bg-black h1,.bg-black h2,.bg-black h3,.bg-black h4,
.bg-navy  h1,.bg-navy  h2,.bg-navy  h3,.bg-navy  h4 { color: var(--cream); }
.bg-lime  h1,.bg-lime  h2,.bg-lime  h3 { color: var(--black); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}

.nav--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.nav__logo {
  font-family: 'Shrikhand', serif;
  font-size: 1.25rem;
  color: var(--cream);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links > li > a,
.nav__links > li > button {
  font-family: 'Bitter', serif;
  font-size: 0.9rem;
  color: rgba(245,241,232,0.78);
  background: none;
  border: none;
  padding: 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links > li > a:hover,
.nav__links > li > button:hover { color: var(--lime); }

/* Dropdown */
.nav__item--dropdown { position: relative; }

.nav__dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav__dropdown-toggle::after {
  content: '↓';
  font-size: 0.7em;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav__item--dropdown.open .nav__dropdown-toggle::after { transform: rotate(180deg); }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.open .nav__dropdown { display: block; }

.nav__dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.875rem;
  color: rgba(245,241,232,0.75);
  transition: color 0.2s, background 0.2s;
}
.nav__dropdown li a:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.06);
}

/* Nav CTA button */
.nav__cta {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--black) !important;
  font-family: 'Bitter', serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: #b5cc20 !important; color: var(--black) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  padding: 32px var(--pad-h) 48px;
  overflow-y: auto;
  z-index: 199;
}
.nav__mobile.open { display: block; }

.nav__mobile ul { list-style: none; }
.nav__mobile > ul > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav__mobile a {
  display: block;
  padding: 18px 0;
  font-family: 'Shrikhand', serif;
  font-size: 1.6rem;
  color: var(--cream);
}
.nav__mobile .sub a {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  color: rgba(245,241,232,0.65);
  padding: 10px 0 10px 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero--short { min-height: 68vh; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,27,24,0.28) 0%,
    rgba(28,27,24,0.55) 55%,
    rgba(28,27,24,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 80px) var(--pad-h);
  max-width: calc(var(--max-w) + 2 * var(--pad-h));
  width: 100%;
  margin: 0 auto;
}

.hero__content h1 {
  color: var(--cream);
  max-width: 820px;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero__content p {
  color: rgba(245,241,232,0.88);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Bitter', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn--primary:hover { background: #2e2c27; border-color: #2e2c27; }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,241,232,0.55);
}
.btn--outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.08); }

.btn--lime {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}
.btn--lime:hover { background: #b5cc20; border-color: #b5cc20; }

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-dark:hover { background: var(--black); color: var(--cream); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.split--img-right .split__text { order: 1; }
.split--img-right .split__image { order: 2; }

.split__image { overflow: hidden; position: relative; }
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
}

.split__text .section-label { margin-bottom: 16px; }
.split__text h2 { margin-bottom: 24px; }
.split__text h3 { margin-bottom: 16px; }
.split__text p { margin-bottom: 16px; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 12px;
}
.bg-black .section-label,
.bg-navy  .section-label { color: rgba(245,241,232,0.45); }

/* ============================================================
   EXPERIENCE CARDS (3-col home grid)
   ============================================================ */
.experiences { display: grid; grid-template-columns: repeat(3, 1fr); }

.exp-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.exp-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.exp-card:hover .exp-card__bg { transform: scale(1.06); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(28,27,24,0.9) 0%,
    rgba(28,27,24,0.35) 50%,
    transparent 100%
  );
  transition: background 0.4s;
}
.exp-card:hover .exp-card__overlay {
  background: linear-gradient(to top,
    rgba(28,27,24,0.95) 0%,
    rgba(28,27,24,0.5) 55%,
    rgba(28,27,24,0.1) 100%
  );
}

.exp-card__body {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  color: var(--cream);
}

.exp-card__body h3 {
  color: var(--cream);
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.exp-card__body p {
  font-size: 0.9rem;
  opacity: 0.82;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--black);
  padding: clamp(48px, 6vw, 80px) 0;
}

.stats-band__inner {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 7vw, 100px);
  flex-wrap: wrap;
  text-align: center;
}

.stat { display: flex; flex-direction: column; gap: 8px; }

.stat__number {
  font-family: 'Shrikhand', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--lime);
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(245,241,232,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   PULL QUOTES
   ============================================================ */
.quote-block {
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 0;
}

.quote-block blockquote {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 14px;
}

.bg-black .quote-block blockquote,
.bg-navy  .quote-block blockquote { color: rgba(245,241,232,0.88); }

.quote-block cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-mid);
}
.bg-black .quote-block cite,
.bg-navy  .quote-block cite { color: rgba(245,241,232,0.5); }

.quote-inline {
  border-left: 3px solid var(--lime);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

.bg-black .quote-inline,
.bg-navy  .quote-inline { color: rgba(245,241,232,0.65); }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lime-dark);
  font-weight: 700;
}

.bg-black .feature-list li::before,
.bg-navy  .feature-list li::before { color: var(--lime); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: clamp(64px, 8vw, 112px) 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: 16px; }

.cta-band p {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ============================================================
   WEEK / SAMPLE ITINERARY
   ============================================================ */
.week-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.week-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  align-items: baseline;
}

.bg-black .week-item,
.bg-navy  .week-item { border-bottom-color: rgba(255,255,255,0.09); }

.week-item:last-child { border-bottom: none; }

.week-item__day {
  font-family: 'Shrikhand', serif;
  font-size: 1rem;
  color: var(--lime-dark);
  line-height: 1.3;
}
.bg-black .week-item__day,
.bg-navy  .week-item__day { color: var(--lime); }

.week-item__body { font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   DESTINATIONS GRID
   ============================================================ */
.destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.dest-item {
  padding: 28px 24px;
  background: var(--warm-grey);
}

.bg-black .dest-item,
.bg-navy  .dest-item { background: rgba(255,255,255,0.05); }

.dest-item h4 {
  font-family: 'Shrikhand', serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.bg-black .dest-item h4,
.bg-navy  .dest-item h4 { color: var(--cream); }

.dest-item .dist {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lime-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.bg-black .dest-item .dist,
.bg-navy  .dest-item .dist { color: var(--lime); }

.dest-item p { font-size: 0.875rem; line-height: 1.65; margin: 0; opacity: 0.8; }

/* ============================================================
   PHOTO GRID
   ============================================================ */
.photo-row {
  display: grid;
  gap: 4px;
}
.photo-row--3 { grid-template-columns: repeat(3, 1fr); }
.photo-row--2 { grid-template-columns: 1fr 1fr; }

.photo-row img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.photo-row--3 img { height: clamp(200px, 25vw, 340px); }
.photo-row--2 img { height: clamp(260px, 35vw, 480px); }

/* ============================================================
   PROSE (text-heavy sections)
   ============================================================ */
.prose {
  max-width: 720px;
}

.prose h3 { margin-top: 40px; margin-bottom: 16px; }
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; }

/* Two-col prose layout */
.prose-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* ============================================================
   SAFEGUARDING / CALLOUT BOX
   ============================================================ */
.callout {
  background: rgba(200,223,46,0.12);
  border: 1px solid rgba(200,223,46,0.35);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 32px 0;
}
.bg-black .callout,
.bg-navy  .callout {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.callout h4 { margin-bottom: 14px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid rgba(43,41,38,0.18);
  border-radius: 4px;
  font-family: 'Bitter', serif;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  font-weight: 400;
  cursor: pointer;
}

.form-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid rgba(43,41,38,0.25);
  border-radius: 3px;
  padding: 0;
  accent-color: var(--black);
}

.contact-photo { position: relative; }
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  min-height: 400px;
}
.contact-photo-stack {
  display: grid;
  gap: 4px;
}
.contact-photo-stack img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(43,41,38,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.bg-black .trust-badge,
.bg-navy  .trust-badge {
  border-color: rgba(255,255,255,0.2);
  color: var(--cream);
}

.trust-badge .star { color: var(--lime-dark); }
.bg-black .trust-badge .star,
.bg-navy  .trust-badge .star { color: var(--lime); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  color: rgba(245,241,232,0.6);
  padding: clamp(56px, 7vw, 96px) 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer__brand .brand-name {
  font-family: 'Shrikhand', serif;
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer__brand .insta {
  display: inline-block;
  margin-top: 16px;
  color: var(--lime);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.footer__brand .insta:hover { opacity: 0.8; }

.footer__col h4 {
  font-family: 'Shrikhand', serif;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 18px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 0.875rem;
  color: rgba(245,241,232,0.55);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--lime); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer__bottom a { color: var(--lime); transition: opacity 0.2s; }
.footer__bottom a:hover { opacity: 0.8; }

/* ============================================================
   PAGE HEADER (simple page intros)
   ============================================================ */
.page-header {
  background: var(--black);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  margin-top: var(--nav-h);
}

.page-header .section-label { color: rgba(245,241,232,0.45); }
.page-header h1 { color: var(--cream); margin-bottom: 20px; max-width: 760px; }
.page-header p { color: rgba(245,241,232,0.8); max-width: 620px; font-size: 1.05rem; }

/* ============================================================
   UTILITY
   ============================================================ */
.mt-sm  { margin-top: 20px; }
.mt-md  { margin-top: 36px; }
.mt-lg  { margin-top: 56px; }
.mb-sm  { margin-bottom: 20px; }
.mb-md  { margin-bottom: 36px; }

.text-lime { color: var(--lime-dark); }
.bg-black .text-lime,
.bg-navy  .text-lime { color: var(--lime); }

.text-muted { color: var(--text-mid); }
.bg-black .text-muted,
.bg-navy  .text-muted { color: rgba(245,241,232,0.55); }

.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 40px 0;
}
.bg-black .divider,
.bg-navy  .divider { border-top-color: rgba(255,255,255,0.1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split--img-right .split__text { order: 2; }
  .split--img-right .split__image { order: 1; }

  .split__image { min-height: 360px; }

  .experiences { grid-template-columns: 1fr; }
  .exp-card { min-height: 360px; }

  .destinations { grid-template-columns: repeat(2, 1fr); }

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

  .prose-cols { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { background-attachment: scroll; }
  .hero--short { min-height: 55vh; }

  .form-row { grid-template-columns: 1fr; }

  .photo-row--3 { grid-template-columns: 1fr; }
  .photo-row--2 { grid-template-columns: 1fr; }

  .stats-band__inner { gap: 28px; }

  .week-item { grid-template-columns: 90px 1fr; gap: 16px; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .split__text { padding: clamp(32px, 5vw, 56px) var(--pad-h); }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 2.2rem; }
  .exp-card { min-height: 300px; }
  .stats-band__inner { flex-direction: column; align-items: center; gap: 24px; }
}
