/* ============================================
   VIARETREAT — CURATED JOURNEYS
   Brand colors from logo:
   - Navy:  #1C2B4A
   - Orange: #D35400
   - Light sand: #F7F5F0
   - Off-white: #FAFAF8
   - Warm gray: #6B6B6B
============================================ */

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

:root {
  --navy:     #1C2B4A;
  --navy-mid: #243660;
  --orange:   #D35400;
  --orange-lt: #E8682A;
  --sand:     #F7F5F0;
  --white:    #FAFAF8;
  --gray:     #6B6B6B;
  --gray-lt:  #B0ADA8;
  --dark-bg:  #13203A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container.narrow {
  max-width: 860px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--orange);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary:hover {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.cta-section.dark .btn-primary {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}
.cta-section.dark .btn-primary:hover {
  background: transparent;
  color: #fff;
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-speak {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 1px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-speak:hover { opacity: 0.7; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 43, 74, 0.1);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(28, 43, 74, 0.1);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.logo-link { flex-shrink: 0; }
.logo {
  height: 44px;
  width: auto;
}
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.main-nav > ul > li > a:hover { color: var(--orange); }
.caret { font-size: 0.6rem; opacity: 0.5; }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(28,43,74,0.12);
  box-shadow: 0 8px 32px rgba(28,43,74,0.12);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.dropdown:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover {
  background: var(--sand);
  color: var(--orange);
}

.header-cta { margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  display: block;
  transition: transform 0.25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(19,32,58,0.65) 0%, rgba(19,32,58,0.5) 60%, rgba(19,32,58,0.7) 100%),
    url('images/japan.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 4rem;
  color: #fff;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 6rem 2rem;
  background: var(--white);
  text-align: center;
}
.intro-text {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 1.4rem;
}
.intro-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
}

/* ===== DESTINATIONS ===== */
.destinations-section {
  padding: 5rem 2rem 6rem;
  background: var(--sand);
}
.destinations-section .section-heading,
.destinations-section .section-eyebrow {
  text-align: center;
}
.destinations-intro {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.dest-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/5;
  cursor: pointer;
}
.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.dest-card:hover .dest-img {
  transform: scale(1.05);
}
.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,32,58,0.82) 0%, rgba(19,32,58,0.1) 60%);
  transition: opacity 0.4s;
}
.dest-card:hover .dest-img::after {
  opacity: 0.9;
}
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.75rem;
  z-index: 1;
  color: #fff;
}
.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.dest-info p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.destinations-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--gray);
  font-style: italic;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 6rem 2rem 4rem;
  background: var(--white);
  text-align: center;
}
.process-intro {
  font-size: 1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--sand);
  max-width: 1100px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(28,43,74,0.12);
  text-align: center;
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 2rem;
  background: var(--sand);
  text-align: center;
}
.cta-section.dark {
  background: var(--dark-bg);
  color: #fff;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: inherit;
}
.cta-inner p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.cta-section.dark .cta-inner p { color: rgba(255,255,255,0.7); }

/* ===== DETAILED STEPS ===== */
.detailed-steps {
  padding: 6rem 2rem;
  background: var(--white);
}
.detail-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 6rem;
}
.detail-step:last-child { margin-bottom: 0; }
.detail-step.reverse {
  direction: rtl;
}
.detail-step.reverse > * { direction: ltr; }

.step-num-lg {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(211, 84, 0, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.detail-step-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.detail-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 1rem;
}
.detail-step-content p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.85;
}
.detail-step-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  min-height: 380px;
}

/* ===== INCLUDES SECTION ===== */
.includes-section {
  padding: 6rem 2rem;
  background: var(--navy);
  color: #fff;
}
.includes-section .section-heading {
  color: #fff;
  margin-bottom: 2.5rem;
}
.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}
.includes-list li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===== STORIES SECTION ===== */
.stories-section {
  padding: 6rem 2rem;
  background: var(--sand);
}
.stories-intro {
  font-size: 1rem;
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.85;
}
.traveler-voices-box {
  background: var(--white);
  border: 1px solid rgba(28,43,74,0.12);
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.voices-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.voices-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

/* ===== FOOTER ===== */
.site-footer-el {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}
.footer-logo { height: 38px; width: auto; filter: brightness(10); opacity: 0.9; }
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.footer-nav ul li a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== DESTINATION PAGES ===== */
.dest-hero {
  margin-top: 72px;
  height: 70vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.dest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.dest-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,32,58,0.85) 0%, rgba(19,32,58,0.15) 65%);
}
.dest-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  color: #fff;
}
.dest-hero-content .section-eyebrow { margin-bottom: 0.5rem; }
.dest-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
}
.dest-page-content {
  padding: 5rem 2rem;
}
.dest-page-content p {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.9;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.dest-page-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.dest-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
}
.highlight-card {
  background: var(--sand);
  padding: 2rem;
}
.highlight-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.highlight-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0;
}
.dest-cta {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.dest-cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ===== DESIGN YOUR JOURNEY PAGE ===== */
.page-hero {
  margin-top: 72px;
  padding: 6rem 2rem 4rem;
  background: var(--navy);
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: #fff;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 5rem 2rem;
  background: var(--white);
}
.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.form-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(28,43,74,0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--navy);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.form-radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--orange);
}
.form-type-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(28,43,74,0.2);
}
.form-type-tab {
  flex: 1;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray);
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}
.form-type-tab.active {
  background: var(--navy);
  color: #fff;
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-submit { margin-top: 2rem; }
.form-submit .btn-primary { width: 100%; text-align: center; font-size: 0.875rem; padding: 1rem; }
.form-privacy {
  font-size: 0.8rem;
  color: var(--gray-lt);
  margin-top: 1rem;
  line-height: 1.6;
}
.form-privacy a { color: var(--orange); }
.form-note {
  font-size: 0.8rem;
  color: var(--gray-lt);
  margin-top: 0.4rem;
  font-style: italic;
}

/* ===== PHILOSOPHY PAGE ===== */
.philosophy-content {
  padding: 5rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.philosophy-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.philosophy-content p {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.philosophy-quote {
  border-left: 3px solid var(--orange);
  padding: 1.2rem 2rem;
  margin: 2.5rem 0;
  background: var(--sand);
}
.philosophy-quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  margin: 0;
}

/* ===== TRAVELER VOICES PAGE ===== */
.voices-grid {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.voice-card {
  background: var(--white);
  border: 1px solid rgba(28,43,74,0.1);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.voice-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.voice-card .voice-attr {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}
.voice-card .voice-dest {
  font-size: 0.8rem;
  color: var(--gray-lt);
  margin-top: 0.2rem;
}

/* ===== STATIC PAGES ===== */
.static-page {
  margin-top: 72px;
  padding: 5rem 2rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.static-page h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
  margin-top: 72px;
}
.static-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.static-page p, .static-page li {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-step {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .detail-step.reverse { direction: ltr; }
  .detail-step-img { min-height: 300px; }
  .includes-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-cta { display: none; }
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    overflow-y: auto;
    padding: 2rem;
    z-index: 99;
  }
  .main-nav.open > ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav.open > ul > li > a {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(28,43,74,0.1);
  }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--sand);
  }
  .hamburger { display: flex; }
  .destinations-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(28,43,74,0.12); }
  .process-step:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
