/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2f2f2f;
  background: #f9f3eb;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --sand:    #e9d7bf;
  --sand2:   #d4bc9b;
  --cream:   #f9f3eb;
  --white:   #ffffff;
  --navy:    #141741;
  --navy2:   #1e2355;
  --text:    #2f2f2f;
  --muted:   #6e655a;
  --orange:  #ff7a1a;
  --orange2: #ff9d2f;
  --shadow:  0 8px 32px rgba(10,15,30,.10);
  --shadow2: 0 20px 50px rgba(10,15,30,.14);
  --radius:  22px;
  --max:     1180px;
}

/* ===== UTILITIES ===== */
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05; color: var(--navy); font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted); line-height: 1.8;
  max-width: 680px; font-size: 1rem;
}
.divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 16px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  border: 0; cursor: pointer; font-family: inherit;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: .04em;
  padding: 15px 28px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(255,122,26,.30);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,122,26,.38); }
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.10);
  color: #fff; font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  cursor: pointer; font-family: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.6); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy); font-weight: 700; font-size: .9rem;
  padding: 12px 22px; border-radius: 999px;
  transition: background .2s, color .2s;
  cursor: pointer; font-family: inherit;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ===== TOPBAR / NAV ===== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(233,215,191,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,23,65,.09);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 16px;
}
.brand img { width: 160px; height: auto; display: block; }

/* desktop menu */
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-size: .88rem; font-weight: 700; color: var(--navy);
  padding: 8px 12px; border-radius: 10px;
  opacity: .82;
  transition: opacity .15s, background .15s;
}
.nav-links a:hover { opacity: 1; background: rgba(20,23,65,.06); }
.nav-links .btn { padding: 11px 20px; font-size: .88rem; opacity: 1; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px;
  background: none; border: none; cursor: pointer;
  border-radius: 10px; padding: 6px;
  transition: background .15s;
}
.hamburger:hover { background: rgba(20,23,65,.08); }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(20,23,65,.55);
  backdrop-filter: blur(4px);
}
.mobile-menu.open { display: block; }
.mobile-drawer {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: var(--cream);
  box-shadow: -8px 0 40px rgba(10,15,30,.18);
  display: flex; flex-direction: column;
  padding: 28px 24px;
  overflow-y: auto;
}
.drawer-logo { margin-bottom: 32px; }
.drawer-logo img { width: 130px; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drawer-links a {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  padding: 13px 14px; border-radius: 14px;
  transition: background .15s;
}
.drawer-links a:hover { background: rgba(20,23,65,.07); }
.drawer-links .btn { margin-top: 12px; width: 100%; }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(20,23,65,.08);
  font-size: 1.1rem; cursor: pointer;
  display: grid; place-items: center; color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex; align-items: center;
  background:
    linear-gradient(110deg, rgba(8,10,26,.78) 0%, rgba(8,10,26,.44) 55%, rgba(8,10,26,.20) 100%),
    url('../images/hero/hero-img.jpg') center/cover no-repeat;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 36px;
  align-items: center;
  padding: 80px 0 120px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 9px 16px; border-radius: 999px;
  font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: .93; font-weight: 700;
  margin-bottom: 22px;
}
.hero-text {
  font-size: 1.08rem; line-height: 1.78;
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border-radius: 26px;
  padding: 26px;
}
.hero-card-title {
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 16px;
  text-align: center;
}
.stat-box strong { display: block; font-size: 1.5rem; font-weight: 800; }
.stat-box span { font-size: .8rem; color: rgba(255,255,255,.72); }

/* ===== HOME INTRO ===== */
.home-intro { background: var(--cream); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
}
.intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow2); }
.intro-img img { width: 100%; height: 420px; object-fit: cover; }
.intro-text h2 { color: var(--navy); }
.intro-text p { color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.intro-text p:last-of-type { margin-bottom: 28px; }

/* ===== VIDEO SECTION ===== */
.videos-section { background: var(--white); }
.video-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 36px;
}
.video-box {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  min-height: 200px; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow2); color: #fff;
}
.video-tag {
  font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.video-box strong { font-size: 1rem; font-weight: 700; }
.video-box p { font-size: .88rem; color: rgba(255,255,255,.65); margin-top: 6px; line-height: 1.6; }

/* ===== TOUR CARDS (booking section) ===== */
.tours-section { background: var(--cream); }
.tour-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px; margin-top: 36px;
}
.tour-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(20,23,65,.06);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.tour-card img { width: 100%; height: 200px; object-fit: cover; }
.tour-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange);
}
.tour-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); line-height: 1.3; }
.price-row { font-weight: 700; font-size: .95rem; color: var(--text); }
.price-row span { color: var(--muted); font-weight: 500; font-size: .88rem; }
.tour-body .btn { margin-top: auto; display: block; text-align: center; font-size: .88rem; padding: 12px 18px; }

/* ===== TOURS INFO ===== */
.tours-info-section { background: var(--white); }
.info-tabs {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 36px;
}
.info-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(20,23,65,.06);
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 8px;
}
.info-card .time-badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.info-card ul { padding-left: 0; }
.info-card ul li {
  position: relative; padding-left: 22px;
  font-size: .95rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 6px;
}
.info-card ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}
.info-note {
  margin-top: 16px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,122,26,.07); border: 1px solid rgba(255,122,26,.16);
  color: #5f4632; font-size: .9rem; line-height: 1.7;
}

/* ===== HIGHLIGHTS / STOPS ===== */
.highlights-section { background: var(--cream); }
.highlight-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-top: 36px;
}
.highlight-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; min-height: 360px; box-shadow: var(--shadow2);
}
.highlight-card img { width: 100%; height: 100%; object-fit: cover; }
.highlight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.88) 0%, rgba(10,15,30,.12) 55%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.highlight-overlay .num {
  font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.highlight-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 10px;
}
.highlight-overlay p {
  font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.85);
}

/* ===== PRICES ===== */
.prices-section { background: var(--white); }
.price-wrapper {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 36px;
}
.price-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--navy); margin-bottom: 18px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table td {
  padding: 9px 0; font-size: .94rem;
  border-bottom: 1px solid rgba(20,23,65,.07);
  color: var(--muted);
}
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.price-table tr:last-child td { border-bottom: none; }
.payment-block {
  margin-top: 28px; background: var(--cream); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(20,23,65,.06);
}
.payment-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--navy); margin-bottom: 18px;
}
.bank-row {
  background: #fff7ed; border: 1px solid rgba(255,122,26,.18);
  border-radius: 16px; padding: 16px 18px;
  font-size: .93rem; line-height: 1.9; color: #5f4632;
  margin: 14px 0;
}
.payment-block ul li {
  position: relative; padding-left: 20px;
  font-size: .95rem; line-height: 1.8; color: var(--muted);
}
.payment-block ul li::before { content: '•'; position: absolute; left: 0; color: var(--orange); }

/* ===== GOOD TO KNOW ===== */
.know-section { background: var(--cream); }
.know-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 36px;
}
.know-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.know-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--navy); margin-bottom: 18px;
}
.know-card ul { display: grid; gap: 10px; }
.know-card ul li {
  position: relative; padding-left: 24px;
  font-size: .95rem; line-height: 1.7; color: var(--muted);
}
.know-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 800;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 36px;
}
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.04); }
.g-item.wide { grid-row: span 2; }
.g-item.tall { grid-row: span 2; }
.g-cap {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(10,15,30,.55); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  backdrop-filter: blur(6px);
}
.gallery-note {
  margin-top: 20px; text-align: center;
  color: var(--muted); font-style: italic; font-size: .95rem;
}

/* ===== REVIEW ===== */
.review-section {
  background:
    linear-gradient(135deg, rgba(20,23,65,.94), rgba(20,23,65,.84)),
    url('../images/gallery/gallery-bedouin-camp.png') center/cover no-repeat;
  color: #fff;
}
.review-section .section-title { color: #fff; }
.review-section .section-sub { color: rgba(255,255,255,.75); }
.review-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
  margin-top: 36px;
}
.review-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px; backdrop-filter: blur(8px);
}
.review-stars { color: #ffd67b; font-size: 1.1rem; letter-spacing: .12em; margin-bottom: 14px; }
.review-card p { line-height: 1.8; color: rgba(255,255,255,.88); font-size: .96rem; }
.review-card cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; color: rgba(255,255,255,.65); font-size: .88rem; }
.review-cta { margin-top: 36px; text-align: center; }

/* ===== BOOKING ===== */
.booking-section { background: var(--cream); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px;
  margin-top: 36px;
}
.booking-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.booking-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 16px;
}
.booking-info-card ol {
  padding-left: 18px; display: grid; gap: 10px;
}
.booking-info-card ol li { line-height: 1.75; color: var(--muted); font-size: .95rem; }
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 6px;
}
.form-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 24px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { display: grid; gap: 6px; }
.f-field.full { grid-column: 1 / -1; }
label { font-size: .86rem; font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%; border: 1.5px solid rgba(20,23,65,.12); border-radius: 14px;
  padding: 13px 15px; font: inherit; font-size: .96rem;
  color: var(--text); background: #fff;
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--orange);
}
textarea { min-height: 110px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.form-actions .btn { font-size: .9rem; padding: 13px 22px; }
.ghost-btn {
  border: 1.5px solid rgba(20,23,65,.14); background: #fff; color: var(--navy);
  font-weight: 700; font-size: .88rem;
  padding: 12px 18px; border-radius: 999px;
  cursor: pointer; font-family: inherit;
  transition: background .2s, border-color .2s;
}
.ghost-btn:hover { background: var(--cream); border-color: rgba(20,23,65,.26); }
.code-box {
  display: none; margin-top: 18px; padding: 18px 20px; border-radius: 16px;
  background: #fff7ed; border: 1px solid rgba(255,122,26,.20);
  color: #5f4632; line-height: 1.8; font-size: .93rem;
  white-space: pre-wrap;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 36px;
}
.contact-card {
  background: var(--cream); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.contact-photo {
  width: 100%; height: 240px; object-fit: cover;
}
.contact-body { padding: 28px; }
.contact-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 18px;
}
.c-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid rgba(20,23,65,.08);
}
.c-item:first-child { border-top: none; padding-top: 0; }
.c-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #fff3e8; color: var(--orange);
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 800;
}
.c-item-text strong { display: block; color: var(--navy); font-size: .94rem; margin-bottom: 2px; }
.c-item-text span { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.c-item-text a { color: var(--orange); text-decoration: underline; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: rgba(255,255,255,.65);
  padding: 40px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer img { width: 120px; filter: brightness(0) invert(1) opacity(.7); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-copy { font-size: .85rem; width: 100%; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .tour-grid { grid-template-columns: repeat(3,1fr); }
  .price-wrapper { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .info-tabs { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .know-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item.wide, .g-item.tall { grid-row: span 1; }
  .section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 60px 0 100px; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .price-wrapper { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .f-field.full { grid-column: 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .tour-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .brand img { width: 130px; }
  .hero-badge { font-size: .75rem; padding: 7px 12px; }
  .form-actions { flex-direction: column; }
  .form-actions > * { width: 100%; text-align: center; }
  .section { padding: 50px 0; }
}
