/* ============================================================
   INTO LEBANON — main.css
   ============================================================ */

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

:root {
  --cedar:       #5C3D2E;
  --cedar-dark:  #3B2A1A;
  --sand:        #C9A96E;
  --sand-light:  #E8D5B0;
  --terracotta:  #A0522D;
  --cream:       #F5EFE0;
  --warm-white:  #FAF7F2;
  --olive:       #6B6B4A;
  --dusk:        #2A1C10;
  --mist:        #E8DECE;
  --accent:      #D4845A;
  --text:        #2A1C10;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dusk);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  letter-spacing: 0.1em; color: var(--cream);
  margin-bottom: 1.5rem;
}
.preloader-logo span { color: var(--sand); font-style: italic; }
.preloader-bar {
  width: 180px; height: 1px;
  background: rgba(201,169,110,0.2);
  margin: 0 auto;
}
.preloader-fill {
  height: 100%; width: 0%;
  background: var(--sand);
  animation: preload-fill 1.6s var(--ease-out) forwards;
}
@keyframes preload-fill { to { width: 100%; } }

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
#main-nav.scrolled {
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.18);
}
#main-nav.scrolled .nav-logo { color: var(--cedar); }
#main-nav.scrolled .nav-links a { color: var(--cedar); }
#main-nav.scrolled .nav-burger span { background: var(--cedar); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--cream);
  text-decoration: none; z-index: 2;
  transition: color 0.3s;
}
.nav-logo span { font-style: italic; color: var(--sand); }

.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: 0.76rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(250,247,242,0.8);
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { color: var(--sand); opacity: 1; }

.nav-cta {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  color: var(--warm-white); background: var(--cedar);
  padding: 0.52rem 1.35rem; border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--cedar-dark); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 2;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.nav-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(26,14,6,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 160;
  width: min(320px, 85vw);
  background: var(--dusk);
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--cream);
  font-size: 1.25rem; cursor: pointer; opacity: 0.6;
  transition: opacity 0.2s;
}
.mobile-close:hover { opacity: 1; }

.mobile-menu ul { list-style: none; margin-bottom: auto; }
.mobile-menu ul li { border-bottom: 1px solid rgba(201,169,110,0.12); }
.mobile-link {
  display: block; padding: 1.1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--cream); text-decoration: none;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--sand); }

.mobile-studio {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
  margin-top: 2rem;
}
.mobile-studio span { color: var(--sand); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transition: transform 0.1s linear;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,10,4,0.72) 0%,
    rgba(20,10,4,0.45) 50%,
    rgba(20,10,4,0.3) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5rem;
  max-width: 700px;
}

.hero-tag {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: var(--sand);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.04;
  color: var(--cream); margin-bottom: 1.75rem;
}
.hero-title em { font-style: italic; color: var(--sand); }

.hero-subtitle {
  font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: rgba(245,239,224,0.7);
  max-width: 44ch; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll-hint span {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,239,224,0.45);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(245,239,224,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-cards {
  position: absolute; bottom: 3rem; right: 5rem; z-index: 2;
  display: flex; gap: 1rem;
}
.hero-stat-card {
  background: rgba(245,239,224,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 4px;
  padding: 1rem 1.4rem;
  text-align: center;
}
.hsc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300;
  color: var(--sand); line-height: 1;
  margin-bottom: 0.25rem;
}
.hsc-label {
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,239,224,0.5);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--cedar);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 2.5rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300;
  letter-spacing: 0.08em; color: rgba(201,169,110,0.7);
}
.marquee-track span:not(:last-child):nth-child(even) { color: rgba(201,169,110,0.35); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 7rem 5rem; }
.section-alt { background: var(--cream); }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--cedar); line-height: 1.15;
}
.section-title em { font-style: italic; }
.section-title.dark { color: var(--cream); }

.section-link {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px; white-space: nowrap;
  transition: opacity 0.2s;
}
.section-link:hover { opacity: 0.65; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dest-card {
  border-radius: 6px; overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  background: var(--cream);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(42,28,16,0.16);
}

.dest-visual {
  position: relative; overflow: hidden;
  height: 260px;
}
.dest-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.dest-card:hover .dest-visual img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,4,0.55) 0%, transparent 55%);
}
.dest-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--sand); color: var(--cedar-dark);
  padding: 0.3rem 0.7rem; border-radius: 2px;
  font-weight: 500;
}

.dest-info { padding: 1.4rem 1.5rem 1.5rem; }
.dest-region {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 0.3rem;
}
.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400;
  color: var(--cedar); margin-bottom: 0.5rem;
}
.dest-desc {
  font-size: 0.83rem; font-weight: 300;
  line-height: 1.7; color: var(--olive);
  margin-bottom: 1rem;
}
.dest-cta {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--terracotta);
  transition: color 0.2s;
}
.dest-cta:hover { color: var(--cedar); }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.exp-card {
  padding: 2.25rem 1.75rem;
  border-top: 2px solid var(--sand);
  transition: border-color 0.25s;
}
.exp-card:hover { border-color: var(--terracotta); }
.exp-icon { width: 2.25rem; height: 2.25rem; margin-bottom: 1.4rem; color: var(--sand); }
.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--cedar); margin-bottom: 0.65rem; line-height: 1.2;
}
.exp-body {
  font-size: 0.85rem; font-weight: 300;
  line-height: 1.8; color: var(--olive); margin-bottom: 1.35rem;
}
.exp-link {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--terracotta); transition: color 0.2s;
}
.exp-link:hover { color: var(--cedar); }

/* ============================================================
   COAST BANNER
   ============================================================ */
.coast-banner {
  position: relative; height: 520px; overflow: hidden;
  margin: 0;
}
.coast-parallax-img {
  position: absolute; inset: -80px 0;
  will-change: transform;
}
.coast-parallax-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
}
.coast-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(18,8,2,0.78) 0%, rgba(18,8,2,0.2) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 5rem;
}
.coast-text { max-width: 42ch; }
.coast-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--cream);
  line-height: 1.15; margin: 0.5rem 0 1.1rem;
}
.coast-text h2 em { font-style: italic; }
.coast-text p {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.8; color: rgba(245,239,224,0.65);
  margin-bottom: 1.75rem;
}

/* ============================================================
   SEASONS TABS
   ============================================================ */
.seasons-tabs { max-width: 900px; }
.season-tab-buttons {
  display: flex; border-bottom: 1px solid var(--mist);
  margin-bottom: 2.5rem;
}
.season-btn {
  flex: 1; padding: 0.85rem 1rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300;
  color: var(--olive); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color 0.2s, border-color 0.2s;
}
.season-btn.active { color: var(--cedar); border-bottom-color: var(--cedar); }
.season-btn:hover:not(.active) { color: var(--cedar); }

.season-content { min-height: 160px; }
.season-panel-content { display: none; }
.season-panel-content.active {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem; align-items: start;
  animation: fade-in 0.35s ease;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }

.season-months-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 0.5rem;
}
.season-temp {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--cedar);
  line-height: 1;
}
.season-temp sub { font-size: 1.2rem; }
.season-activities { display: flex; flex-direction: column; gap: 0.75rem; }
.season-activity {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.6; color: var(--olive);
}
.season-activity::before {
  content: '→'; color: var(--sand); flex-shrink: 0;
  margin-top: 0.05em;
}

/* ============================================================
   FOOD BANNER
   ============================================================ */
.food-banner {
  background: var(--dusk);
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.food-left .section-eyebrow { color: var(--sand); }
.food-body {
  font-size: 0.93rem; font-weight: 300;
  line-height: 1.9; color: rgba(245,239,224,0.58);
  margin: 1.2rem 0 2.25rem;
}
.food-dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.dish-tile {
  aspect-ratio: 1; border-radius: 6px;
  overflow: hidden; position: relative; cursor: pointer;
}
.dish-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
.dish-tile:hover img { transform: scale(1.1); }
.dish-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,8,2,0.72) 0%, transparent 55%);
  pointer-events: none;
}
.dish-name {
  position: absolute; bottom: 0.6rem; left: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem; font-weight: 400;
  color: var(--cream); z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ============================================================
   TIPS
   ============================================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tip-card {
  background: var(--cream);
  border-radius: 4px; padding: 1.75rem 1.9rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 1px solid var(--mist);
  transition: border-color 0.2s, transform 0.25s;
}
.tip-card:hover { border-color: var(--sand); transform: translateY(-3px); }
.tip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem; font-weight: 300;
  color: var(--mist); line-height: 1; flex-shrink: 0;
}
.tip-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--cedar); margin-bottom: 0.45rem;
}
.tip-content p {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.75; color: var(--olive);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--terracotta);
  padding: 7rem 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg-text {
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 22rem; color: rgba(255,255,255,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap; user-select: none;
}
.cta-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(250,247,242,0.55);
  margin-bottom: 1.2rem; position: relative;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 300; color: var(--cream);
  line-height: 1.12; margin-bottom: 1.4rem; position: relative;
}
.cta-title em { font-style: italic; }
.cta-body {
  font-size: 0.93rem; font-weight: 300;
  line-height: 1.8; color: rgba(250,247,242,0.65);
  max-width: 46ch; margin: 0 auto 3rem; position: relative;
}
.cta-buttons { display: flex; gap: 1.25rem; justify-content: center; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--cedar-dark);
  padding: 4.5rem 5rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--cream); margin-bottom: 0.85rem;
}
.footer-brand span { color: var(--sand); font-style: italic; }
.footer-tagline {
  font-size: 0.81rem; font-weight: 300;
  line-height: 1.75; color: rgba(245,239,224,0.38);
  max-width: 28ch; margin-bottom: 1.5rem;
}
.footer-studio {
  font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 1rem;
}
.footer-studio span { color: var(--sand); }

.footer-col h5 {
  font-size: 0.64rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  font-size: 0.81rem; font-weight: 300;
  color: rgba(245,239,224,0.4); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.68rem; color: rgba(245,239,224,0.25); letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.28); text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--sand); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--warm-white); background: var(--terracotta);
  padding: 0.85rem 2rem; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--cedar); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(245,239,224,0.85);
  border-bottom: 1px solid rgba(245,239,224,0.4);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--sand); border-color: var(--sand); }

.btn-light {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--terracotta); background: var(--cream);
  padding: 0.85rem 2.25rem; border-radius: 2px; font-weight: 500;
  transition: background 0.2s;
}
.btn-light:hover { background: var(--warm-white); }

.btn-outline-light {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.42);
  padding: 0.85rem 2.25rem; border-radius: 2px;
  transition: border-color 0.2s;
}
.btn-outline-light:hover { border-color: var(--cream); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cards { display: none; }
}

@media (max-width: 860px) {
  #main-nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #main-nav.scrolled .nav-logo { color: var(--cedar); }

  .hero-content { padding: 0 1.5rem; }
  .hero { align-items: center; padding-bottom: 3rem; }

  .section { padding: 4rem 1.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

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

  .coast-banner { height: 380px; }
  .coast-overlay { padding: 0 2rem; }

  .season-panel-content.active { grid-template-columns: 1fr; gap: 1.5rem; }

  .food-banner { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }
  .tips-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 5rem 1.5rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .map-wrapper { flex-direction: column; height: auto; }
  .map-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--mist); max-height: 200px; overflow-y: auto; }
  #lebanon-map { height: 400px; }
}
