/*
 Theme Name:   MondoTickets
 Theme URI:    https://mondotickets.com
 Description:  Editorial travel design — Prototype H. Bildedrevet destinasjonsgrid
               med mood-filtrering, Atkinson Hyperlegible + Source Serif 4.
 Author:       MondoTickets
 Author URI:   https://mondotickets.com
 Template:     oceanwp

 Version:      3.4.0
 License:      Proprietary
 Text Domain:  mondotickets
*/

/* ============================================================
   DESIGN TOKENS (from Prototype H)
   ============================================================ */

:root {
  /* Palette */
  --cream:    #F6EFE2;
  --cream-2:  #EBE1CD;
  --ink:      #1A1612;
  --ink-soft: #3D3429;
  --terra:    #B7513C;
  --sun:      #E8B64C;
  --sage:     #697959;

  /* Typography scale */
  --text-xs:  14px;
  --text-sm:  16px;
  --text-base: 19px;
  --text-lg:  22px;
  --text-xl:  28px;
  --text-2xl: 40px;
  --text-3xl: 56px;
  --text-4xl: clamp(60px, 9vw, 160px);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  60px;
  --space-2xl: 80px;
  --space-3xl: 120px;

  /* Layout */
  --max-width: 1600px;
  --content-width: 760px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(.2,.8,.2,1);
  --t-fast: 0.2s;
  --t-med:  0.5s;
  --t-slow: 1.2s;
}

/* ============================================================
   RESET & GLOBALS
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Atkinson Hyperlegible', 'Source Sans 3', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: var(--text-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   TYPOGRAPHY CLASSES
   ============================================================ */

.display {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  letter-spacing: -0.025em;
  line-height: 0.94;
  font-weight: 400;
}

.wonk {
  font-style: italic;
  font-variation-settings: 'opsz' 48;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  padding: 20px var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(246, 239, 226, 0.6);
}

.site-header--bordered {
  background: rgba(246, 239, 226, 0.75);
  border-bottom: 1px solid rgba(26, 22, 18, 0.05);
}

.logo {
  font-family: 'Source Serif 4', 'Georgia', serif !important;
  font-variation-settings: 'opsz' 48;
  font-weight: 400 !important;
  font-size: 28px !important;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.site-header .logo {
  color: #1A1612 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.logo em {
  color: #B7513C !important;
  font-style: normal;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.main-nav a:hover { color: var(--terra); }

.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ============================================================
   HERO (FRONT PAGE)
   ============================================================ */

.hero {
  min-height: 100vh;
  padding: var(--space-lg) var(--space-lg) var(--space-2xl);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-copy { position: relative; z-index: 2; }

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terra);
  margin-bottom: 28px;
}

.hero .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--terra);
}

.hero h1 {
  font-size: clamp(56px, 7.5vw, 124px);
  margin-bottom: 32px;
}

.hero h1 .wonk { color: var(--terra); }

.hero h1 .counter {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  color: var(--sun);
  font-variation-settings: 'opsz' 48;
  font-size: 0.7em;
  display: inline-block;
  background: var(--ink);
  padding: 0 20px;
  border-radius: var(--radius-md);
  transform: rotate(-2deg);
  margin: 0 6px;
}

.hero-sub {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.5;
  max-width: 460px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  font-variation-settings: 'opsz' 48;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-full);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 20px;
  cursor: pointer;
  border: 0;
  transition: background var(--t-fast), gap var(--t-fast);
}

.hero-cta:hover { background: var(--terra); gap: 24px; }

/* ============================================================
   PHOTO COLLAGE (HERO)
   ============================================================ */

.collage {
  position: relative;
  height: 700px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
}

.tile {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  position: relative;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s;
}

.tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(26, 22, 18, 0.2);
  z-index: 10;
}

.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.tile:hover img { transform: scale(1.08); }

.tile .caption {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(26, 22, 18, 0.82);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.tile:hover .caption { opacity: 1; transform: translateY(0); }

.tile.t1 { grid-column: 1 / span 2; grid-row: 1 / span 3; }
.tile.t2 { grid-column: 3 / span 2; grid-row: 1 / span 2; }
.tile.t3 { grid-column: 5 / span 2; grid-row: 1 / span 3; transform: translateY(20px); }
.tile.t4 { grid-column: 3 / span 2; grid-row: 3 / span 2; }
.tile.t5 { grid-column: 1 / span 2; grid-row: 4 / span 3; transform: translateY(20px); }
.tile.t6 { grid-column: 5 / span 2; grid-row: 4 / span 3; }
.tile.t7 { grid-column: 3 / span 2; grid-row: 5 / span 2; }

.badge-stamp {
  position: absolute;
  top: 8%; right: 10%;
  background: var(--sun);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 15px;
  font-variation-settings: 'opsz' 48;
  transform: rotate(8deg);
  box-shadow: 0 10px 24px rgba(26, 22, 18, 0.18);
  z-index: 5;
  white-space: nowrap;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */

.search-section {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  padding: 0 var(--space-lg);
}

/* Sticky search bar — stays visible on scroll */
.search-section.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  margin: 0;
  padding: 12px var(--space-lg);
  z-index: 90;
  background: rgba(246, 239, 226, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(26, 22, 18, 0.15);
  animation: slideDown 0.3s ease;
}

.search-section.is-sticky .search-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  border-radius: 16px;
}

.search-section.is-sticky .search-tabs {
  margin-bottom: 12px;
}

/* Hide the site-header when search is sticky to avoid double bar */
body.mt-search-sticky .site-header {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Placeholder for sticky spacer */
.search-section-spacer {
  display: none;
}

body.mt-search-sticky .search-section-spacer {
  display: block;
}

.search-inner {
  background: var(--ink);
  color: var(--cream);
  padding: 32px var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(26, 22, 18, 0.2);
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.search-tabs button {
  background: transparent;
  border: 1px solid rgba(246, 239, 226, 0.25);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  opacity: 0.75;
}

.search-tabs button.active {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  opacity: 1;
}

.fields {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.fields.flights { grid-template-columns: 1.2fr 1.2fr 1fr 1fr 0.8fr auto; }
.fields.hotels  { grid-template-columns: 2fr 1fr 1fr 1fr auto; }

.cell {
  background: rgba(246, 239, 226, 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.cell label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
}

.cell input,
.cell select {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  width: 100%;
  outline: 0;
}

.cell input::placeholder { color: rgba(246, 239, 226, 0.5); }

/* Fix date inputs — force light text on dark background */
.cell input[type="date"] {
  color: #F6EFE2 !important;
  color-scheme: dark;
}

.cell input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.submit-btn {
  padding: 14px 28px;
  background: var(--terra);
  color: var(--cream);
  border: 0;
  border-radius: var(--radius-md);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  cursor: pointer;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.submit-btn:hover { background: var(--sun); color: var(--ink); }

.pane { display: none; }
.pane.active { display: block; }

/* Style embedded search widgets */
.mt-widget-wrap { min-height: 80px; }
.mt-widget-wrap iframe { border-radius: var(--radius-md); }

/* Override external widget colors to blend with our theme */
.search-inner .TP-search-widget,
.search-inner [class*="TP-"] {
  background: transparent !important;
}

/* ============================================================
   STICKY SEARCH (DESTINATION PAGE)
   ============================================================ */

.sticky-search {
  position: sticky;
  top: 68px;
  z-index: 40;
  background: var(--ink);
  color: var(--cream);
  padding: 14px var(--space-lg);
}

.sticky-search-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr auto;
  gap: 10px;
  align-items: center;
}

.sticky-search .cell {
  background: rgba(246, 239, 226, 0.08);
  border-radius: 10px;
  padding: 8px 14px;
}

.sticky-search .cell label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1px;
}

.sticky-search .cell input,
.sticky-search .cell select {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  outline: 0;
}

.sticky-search button {
  padding: 14px 28px;
  background: var(--terra);
  color: var(--cream);
  border: 0;
  border-radius: 10px;
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.sticky-search button:hover { background: var(--sun); color: var(--ink); }

/* ============================================================
   DREAM GRID (DESTINATIONS)
   ============================================================ */

.dreams {
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  margin-bottom: 56px;
  align-items: end;
}

.section-header h2 { font-size: clamp(48px, 7vw, 108px); }
.section-header h2 .wonk { color: var(--terra); }
.section-header .eyebrow { color: var(--terra); margin-bottom: 14px; }
.section-header p { color: var(--ink-soft); font-size: var(--text-sm); line-height: 1.7; max-width: 460px; }

.filter-row {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  padding-bottom: 28px;
  margin-bottom: 32px;
}

.filter-pill {
  padding: 8px 16px;
  border: 1px solid rgba(26, 22, 18, 0.2);
  border-radius: var(--radius-full);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.filter-pill:hover { border-color: var(--terra); }
.filter-pill.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.dream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: var(--space-sm);
}

.dream {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out);
}

.dream:hover { transform: translateY(-8px); }

.dream img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.dream:hover img { transform: scale(1.1); }

.dream::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 22, 18, 0.85) 100%);
}

.dream-meta {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  color: var(--cream);
  z-index: 2;
}

.dream-meta .eyebrow {
  font-size: 10px;
  color: var(--sun);
  margin-bottom: 6px;
}

.dream-meta h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-variation-settings: 'opsz' 48;
  font-size: var(--text-xl);
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin-bottom: 4px;
}

.dream-meta h3 .wonk { color: var(--sun); }

.dream-meta .price {
  font-size: 13px;
  opacity: 0.85;
}

.dream-meta .price em {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 48;
  color: var(--sun);
  font-size: 18px;
  margin: 0 3px;
}

.dream.wide { grid-column: span 2; }
.dream.tall { grid-row: span 2; }

/* ============================================================
   FULL-BLEED EMOTION SECTION
   ============================================================ */

.bleed {
  position: relative;
  min-height: 85vh;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bleed .inner { max-width: 1100px; }

.bleed blockquote {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.bleed blockquote em {
  font-style: italic;
  color: var(--sun);
  font-variation-settings: 'opsz' 48;
}

.bleed .sig {
  margin-top: 32px;
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  opacity: 0.8;
  font-variation-settings: 'opsz' 48;
}

/* ============================================================
   MOOD STRIP
   ============================================================ */

.strip {
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.strip-card {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out);
}

.strip-card:hover { transform: translateY(-10px); }
.strip-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.strip-card:hover img { transform: scale(1.08); }

.strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 22, 18, 0.9) 100%);
}

.strip-card .m {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  color: var(--cream);
  z-index: 2;
}

.strip-card .m-eye {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 4px;
}

.strip-card .m h4 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 48;
  font-size: 26px;
  letter-spacing: -0.02em;
}

/* ============================================================
   STORIES MOSAIC
   ============================================================ */

.mosaic {
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, 340px);
  gap: 20px;
}

.story {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out);
}

.story:hover { transform: translateY(-8px); }
.story img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.story:hover img { transform: scale(1.08); }

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.08) 0%, rgba(26, 22, 18, 0.8) 100%);
}

.story.tinted { background: var(--terra); }
.story.tinted::after { background: none; }

.story-text {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--cream);
  z-index: 2;
}

.story-text .eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--sun);
  font-weight: 600;
}

.story-text h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-variation-settings: 'opsz' 48;
  font-size: 30px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.story-text h3 em {
  font-style: italic;
  color: var(--sun);
  font-variation-settings: 'opsz' 48;
}

.story.big { grid-column: 1; grid-row: 1 / span 2; }
.story.big .story-text h3 { font-size: 48px; }
.story.big .story-text p { font-size: var(--text-xs); opacity: 0.85; max-width: 380px; }

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */

.final-cta {
  margin-top: 100px;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  color: var(--cream);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.final-cta .inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.final-cta .eyebrow {
  color: var(--sun);
  margin-bottom: 20px;
}

.final-cta h2 {
  font-size: clamp(48px, 7vw, 112px);
  max-width: 900px;
  margin-bottom: 32px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--sun);
  font-variation-settings: 'opsz' 48;
}

.newsletter-form {
  display: flex;
  max-width: 540px;
  background: var(--cream);
  padding: 6px;
  border-radius: var(--radius-full);
}

.newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 24px;
  color: var(--ink);
  font-size: 15px;
  outline: 0;
  font-family: inherit;
}

.newsletter-form button {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  cursor: pointer;
}

.newsletter-form button:hover { background: var(--terra); }

/* ============================================================
   DESTINATION HERO
   ============================================================ */

.dest-hero {
  position: relative;
  min-height: 92vh;
  padding: 100px var(--space-lg) var(--space-xl);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}

.dest-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.15) 0%, rgba(26, 22, 18, 0.25) 50%, rgba(26, 22, 18, 0.85) 100%);
  z-index: 0;
}

.dest-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.dest-hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: end;
  position: relative;
  z-index: 1;
}

.dest-crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sun);
  margin-bottom: 32px;
}

.dest-crumbs a:hover { color: var(--cream); }

.dest-hero h1 {
  font-size: clamp(70px, 11vw, 200px);
  margin-bottom: var(--space-md);
}

.dest-hero h1 .wonk { color: var(--sun); }

.dest-hero .stand {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  font-weight: 300;
  font-size: var(--text-lg);
  line-height: 1.5;
  max-width: 540px;
  color: rgba(246, 239, 226, 0.9);
  margin-bottom: var(--space-lg);
}

.dest-hero .stand em {
  font-style: italic;
  color: var(--sun);
  font-variation-settings: 'opsz' 48;
}

.dest-hero .byline {
  font-size: 12px;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

.dest-hero .byline b { color: var(--sun); font-weight: 500; }

/* Facts card */
.facts-card {
  background: rgba(26, 22, 18, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(246, 239, 226, 0.15);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.facts-card h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 20px;
}

.fact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-sm);
  padding: 12px 0;
  border-top: 1px solid rgba(246, 239, 226, 0.15);
  font-size: var(--text-xs);
  align-items: baseline;
}

.fact-row:first-of-type { border-top: 0; padding-top: 0; }
.fact-row .k { opacity: 0.75; }

.fact-row .v {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 48;
  color: var(--sun);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */

.article {
  max-width: var(--content-width);
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-lg);
}

.article-eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.article-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--terra);
}

.article h2.chapter {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 56px 0 var(--space-md);
}

.article h2.chapter em {
  font-style: italic;
  font-variation-settings: 'opsz' 48;
  color: var(--terra);
}

.article p {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}

.article p.lead {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 48;
}

.article p a {
  color: var(--terra);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article p a:hover { text-decoration-thickness: 2px; }
.article p strong { color: var(--ink); font-weight: 500; }

.article p em {
  font-style: italic;
  color: var(--terra);
  font-variation-settings: 'opsz' 48;
}

/* Pullquote */
.pullquote {
  margin: 48px -80px;
  padding: 48px 80px;
  border-top: 1px solid rgba(26, 22, 18, 0.15);
  border-bottom: 1px solid rgba(26, 22, 18, 0.15);
  text-align: center;
}

.pullquote blockquote {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  font-weight: 300;
  font-size: var(--text-2xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pullquote blockquote em {
  font-style: italic;
  font-variation-settings: 'opsz' 48;
  color: var(--terra);
}

/* Inline figures */
.figure {
  margin: 48px -80px;
}

.figure img { width: 100%; display: block; border-radius: var(--radius-sm); }

.figure figcaption {
  margin-top: 12px;
  padding: 0 80px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
}

.figure.full { margin: 48px calc(-50vw + 50%); }
.figure.full img { border-radius: 0; }

.figure-pair {
  margin: 48px -80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.figure-pair img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-sm); }

/* Tip card */
.tip {
  margin: 48px -40px;
  padding: 32px var(--space-lg);
  background: var(--cream-2);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--terra);
}

.tip h4 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 48;
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--terra);
  margin-bottom: 12px;
}

.tip p { font-size: 17px; margin-bottom: 10px; }

.tip ul { list-style: none; padding: 0; display: grid; gap: var(--space-xs); margin-top: 12px; }

.tip ul li {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}

.tip ul li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  color: var(--sun);
}

/* ============================================================
   PLACES TO STAY
   ============================================================ */

.places {
  max-width: var(--max-width);
  margin: 100px auto var(--space-xl);
  padding: 0 var(--space-lg);
}

.places-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  margin-bottom: 48px;
  align-items: end;
}

.places-head h2 { font-size: clamp(40px, 5vw, 72px); }
.places-head h2 em { font-style: italic; font-variation-settings: 'opsz' 48; color: var(--terra); }
.places-head p { font-size: var(--text-sm); line-height: 1.7; color: var(--ink-soft); max-width: 420px; }

.place-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 28px;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(26, 22, 18, 0.12);
  align-items: center;
}

.place-row:last-child { border-bottom: 1px solid rgba(26, 22, 18, 0.12); }

.place-row img {
  width: 260px; height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.place-row h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.place-row p { color: var(--ink-soft); font-size: var(--text-xs); max-width: 560px; }

.place-row .right { text-align: right; display: grid; gap: 6px; }

.place-row .price {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--terra);
  font-variation-settings: 'opsz' 48;
  font-weight: 400;
}

.place-row .price-unit { font-size: 12px; opacity: 0.6; }

.book-btn {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-full);
  font-size: 12px;
  letter-spacing: 0.02em;
  display: inline-block;
}

.book-btn:hover { background: var(--terra); }

/* ============================================================
   RELATED DESTINATIONS
   ============================================================ */

.related {
  max-width: var(--max-width);
  margin: var(--space-2xl) auto var(--space-xl);
  padding: 0 var(--space-lg);
}

.related h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: var(--space-lg);
}

.related h2 em { font-style: italic; color: var(--terra); font-variation-settings: 'opsz' 48; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.rel-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out);
}

.rel-card:hover { transform: translateY(-8px); }
.rel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.rel-card:hover img { transform: scale(1.08); }

.rel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26, 22, 18, 0.9) 100%);
}

.rel-meta {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  color: var(--cream);
  z-index: 2;
}

.rel-meta .eyebrow {
  font-size: 10px;
  color: var(--sun);
  margin-bottom: 6px;
}

.rel-meta h3 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  font-weight: 400;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.rel-meta h3 em { font-style: italic; color: var(--sun); font-variation-settings: 'opsz' 48; }

/* ============================================================
   NEWSLETTER (DESTINATION PAGE)
   ============================================================ */

.newsletter-section {
  background: var(--ink);
  color: var(--cream);
  padding: 100px var(--space-lg);
  text-align: center;
  margin-top: var(--space-2xl);
}

.newsletter-section h2 {
  font-size: clamp(40px, 5vw, 80px);
  max-width: 900px;
  margin: 0 auto 28px;
}

.newsletter-section h2 em { font-style: italic; color: var(--sun); font-variation-settings: 'opsz' 48; }

.newsletter-section .newsletter-form {
  margin: 0 auto;
}

.newsletter-section .newsletter-form button { background: var(--terra); }
.newsletter-section .newsletter-form button:hover { background: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.site-footer .logo { color: var(--cream); font-size: 34px; display: block; margin-bottom: 18px; }
.site-footer .logo em { color: var(--sun); }

.footer-grid p { opacity: 0.7; font-size: var(--text-xs); line-height: 1.7; max-width: 340px; }

.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { font-size: var(--text-xs); opacity: 0.75; }
.footer-grid a:hover { opacity: 1; color: var(--sun); }

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(246, 239, 226, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.55;
}

/* ============================================================
   OVERRIDE OCEANWP ELEMENTS SITE-WIDE
   ============================================================ */

/* Hide OceanWP's original header, top bar, mobile menu, page header */
#site-header,
#top-bar-wrap,
#site-navigation-wrap,
.oceanwp-mobile-menu-icon,
#mobile-fullscreen,
#mobile-dropdown,
.sidr,
#page-header,
.page-header,
#ocean-sticky-header,
#ocean-sticky-header-holder {
  display: none !important;
}

/* Hide OceanWP's original footer */
#footer,
#footer-widgets,
#footer-bottom,
.footer-widgets-inner,
#scroll-top {
  display: none !important;
}

/* Make Elementor content area full-width on all pages */
#content-wrap {
  padding: 0 !important;
  max-width: 100% !important;
}

#content-wrap .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Style Elementor page content areas */
.elementor-page .elementor-section-wrap,
.elementor-page .elementor {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg) var(--space-2xl);
}

/* Full-width sections in Elementor should still stretch */
.elementor-section-full_width,
.elementor-section[data-settings*="full_width"] {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Ensure sidebar is always hidden */
#sidebar,
#right-sidebar,
#left-sidebar {
  display: none !important;
}

#primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* ============================================================
   BLOG & PAGE CONTENT — readable editorial typography
   ============================================================ */

/* Blog listing cards */
.blog-entry .blog-entry-header h2 a {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-variation-settings: 'opsz' 48;
  color: var(--ink);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.blog-entry .blog-entry-header h2 a:hover {
  color: var(--terra);
}

/* Page/post title */
.single-post .entry-title,
.page .entry-title,
.single .entry-title {
  font-family: 'Source Serif 4', 'Georgia', serif !important;
  font-variation-settings: 'opsz' 48;
  font-weight: 400 !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  letter-spacing: -0.025em;
  color: var(--ink) !important;
  line-height: 1.1 !important;
  margin-bottom: var(--space-lg) !important;
  max-width: var(--content-width);
}

/* Entry content — the article body */
.single-post .entry-content,
.page .entry-content,
.single .entry-content,
.elementor-widget-theme-post-content .elementor-widget-container,
.entry-content {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Paragraphs — generous spacing */
.entry-content p,
.elementor-widget-text-editor p {
  margin-bottom: 1.5em !important;
  font-size: 19px !important;
  line-height: 1.75 !important;
  color: var(--ink-soft) !important;
  max-width: 70ch;
}

/* First paragraph can be slightly larger */
.entry-content > p:first-of-type {
  font-size: 21px !important;
  line-height: 1.6 !important;
  color: var(--ink) !important;
}

/* Headings — clear hierarchy with generous top margin */
.entry-content h2,
.elementor-widget-text-editor h2 {
  font-family: 'Source Serif 4', 'Georgia', serif !important;
  font-variation-settings: 'opsz' 48;
  font-weight: 400 !important;
  font-size: 32px !important;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
  margin: 3em 0 1em !important;
  padding-top: 0.5em;
  border-top: 1px solid rgba(26, 22, 18, 0.1);
  line-height: 1.2 !important;
}

/* First h2 doesn't need border-top */
.entry-content > h2:first-child,
.entry-content > p + h2:first-of-type {
  border-top: none;
  margin-top: 2em !important;
}

.entry-content h3,
.elementor-widget-text-editor h3 {
  font-family: 'Source Serif 4', 'Georgia', serif !important;
  font-variation-settings: 'opsz' 48;
  font-weight: 400 !important;
  font-size: 26px !important;
  letter-spacing: -0.015em;
  color: var(--ink) !important;
  margin: 2.5em 0 0.8em !important;
  line-height: 1.25 !important;
}

.entry-content h4,
.elementor-widget-text-editor h4 {
  font-family: 'Atkinson Hyperlegible', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--terra) !important;
  margin: 2em 0 0.6em !important;
}

/* Links — underlined, terra color */
.entry-content a,
.elementor-widget-text-editor a {
  color: var(--terra) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  text-decoration-thickness: 2px;
}

/* Lists — generous spacing */
.entry-content ul,
.entry-content ol,
.elementor-widget-text-editor ul,
.elementor-widget-text-editor ol {
  margin: 1.5em 0 !important;
  padding-left: 1.5em !important;
}

.entry-content li,
.elementor-widget-text-editor li {
  margin-bottom: 0.6em !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
  color: var(--ink-soft) !important;
}

/* Blockquotes */
.entry-content blockquote,
.elementor-widget-text-editor blockquote {
  margin: 2.5em 0 !important;
  padding: 1.5em 2em !important;
  border-left: 4px solid var(--terra) !important;
  background: var(--cream-2) !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Source Serif 4', 'Georgia', serif !important;
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.5 !important;
  color: var(--ink) !important;
}

/* Images in content */
.entry-content img,
.elementor-widget-text-editor img {
  border-radius: var(--radius-sm);
  margin: 2em 0 !important;
  max-width: 100%;
  height: auto;
}

.entry-content figure {
  margin: 2.5em 0 !important;
}

.entry-content figcaption {
  font-size: 14px !important;
  color: var(--ink-soft) !important;
  font-style: italic;
  text-align: center;
  margin-top: 8px !important;
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0 !important;
  font-size: 16px;
}

.entry-content th {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 12px 16px !important;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.entry-content td {
  padding: 12px 16px !important;
  border-bottom: 1px solid rgba(26, 22, 18, 0.1);
  color: var(--ink-soft);
}

.entry-content tr:hover td {
  background: var(--cream-2);
}

/* Strong/bold — slightly darker */
.entry-content strong {
  color: var(--ink) !important;
  font-weight: 600;
}

/* Horizontal rules */
.entry-content hr {
  border: none !important;
  border-top: 1px solid rgba(26, 22, 18, 0.12) !important;
  margin: 3em 0 !important;
}

/* Elementor sections — limit width for readability */
.elementor-section .elementor-container {
  max-width: var(--max-width) !important;
}

.elementor-widget-text-editor .elementor-widget-container {
  max-width: var(--content-width);
}

/* Page header (for single posts/pages) */
.single-post #content-wrap,
.page #content-wrap {
  padding-top: var(--space-lg) !important;
}

/* ============================================================
   INLINE SEARCH CTA (blog articles)
   ============================================================ */

.mt-article-search {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--ink);
  border-radius: var(--radius-xl);
  color: var(--cream);
  text-align: center;
}

.mt-article-search-inner {
  max-width: 600px;
  margin: 0 auto;
}

.mt-article-search-title {
  font-family: 'Source Serif 4', 'Georgia', serif !important;
  font-variation-settings: 'opsz' 48;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 32px !important;
  letter-spacing: -0.02em;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border: none !important;
  color: #F6EFE2 !important;
}

.mt-article-search-sub {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-bottom: var(--space-md);
  color: var(--cream) !important;
}

.mt-article-search-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mt-article-search-btn {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--t-fast), color var(--t-fast);
}

.mt-article-search-btn--flight {
  background: #B7513C !important;
  color: #F6EFE2 !important;
  text-decoration: none !important;
}

.mt-article-search-btn--flight:hover {
  background: #E8B64C !important;
  color: #1A1612 !important;
}

.mt-article-search-btn--hotel {
  text-decoration: none !important;
  background: transparent;
  color: var(--cream) !important;
  border: 1px solid rgba(246, 239, 226, 0.3);
}

.mt-article-search-btn--hotel:hover {
  background: var(--cream);
  color: var(--ink) !important;
  border-color: var(--cream);
}

/* ============================================================
   CLEANUP: hide any script text leaked after footer
   ============================================================ */

.site-footer ~ script,
.site-footer ~ * script,
body > script[id="mt-hotel-replace"] {
  display: none !important;
}

/* Hide any raw text nodes after the footer (leaked inline JS) */
.footer-bottom ~ * {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* But don't hide actual wp_footer scripts */
.footer-bottom ~ script,
.footer-bottom ~ link,
.footer-bottom ~ style,
.footer-bottom ~ noscript {
  display: block;
  font-size: inherit;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tileIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding-top: var(--space-lg); }
  .collage { height: 560px; }
  .dream-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .dream.wide { grid-column: span 2; }
  .strip-row { grid-template-columns: repeat(3, 1fr); }
  .strip-row > :nth-child(n+4) { display: none; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .story.big { grid-column: span 2; grid-row: auto; min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-header { grid-template-columns: 1fr; }

  /* Destination page */
  .dest-hero-grid { grid-template-columns: 1fr; }
  .sticky-search-inner { grid-template-columns: 1fr 1fr; }
  .sticky-search button { grid-column: span 2; }
  .article .pullquote,
  .article .figure,
  .article .figure-pair { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
  .article .figure.full { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
  .article .figure-pair img { height: 280px; }
  .places-head { grid-template-columns: 1fr; }
  .place-row { grid-template-columns: 1fr; gap: 12px; }
  .place-row img { width: 100%; height: 220px; }
  .place-row .right { text-align: left; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-grid > :nth-child(3) { grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  .fields.flights,
  .fields.hotels { grid-template-columns: 1fr 1fr; }
  .submit-btn { grid-column: span 2; }
  .dream-grid { grid-template-columns: 1fr; }
  .dream.wide,
  .dream.tall { grid-column: span 1; grid-row: auto; }
  .strip-row { grid-template-columns: 1fr 1fr; }
  .collage { grid-template-rows: repeat(4, 1fr); height: 440px; }
  .tile.t7 { display: none; }

  /* Mobile header — stack logo over nav, keep nav visible */
  .site-header {
    flex-direction: column;
    gap: 12px;
    padding: 14px var(--space-md);
  }
  .logo { font-size: 24px !important; }
  .main-nav {
    display: flex;
    width: 100%;
    gap: 16px;
    font-size: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .nav-cta { padding: 8px 14px; }

  /* Destination page */
  .sticky-search-inner { grid-template-columns: 1fr; }
  .sticky-search button { grid-column: 1; }
  .article { padding: 0 24px; }
  .pullquote blockquote { font-size: var(--text-xl); }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid > :nth-child(3) { grid-column: 1; }
}
