/* ============================================================
   JAIPUR FRONTIER SAFARI & CAMPS — Main Stylesheet
   Edit colors, fonts, and spacing here
   ============================================================ */

/* ---- VARIABLES — Change brand colors here ---- */
:root {
  --rust: #c0622a;
  --rust-light: #d97c42;
  --rust-dark: #8b3e14;
  --cream: #f5ede0;
  --dark: #0f0a06;
  --dark2: #1a1108;
  --dark3: #231608;
  --text: #c9b89a;
  --text-light: #e5d5bc;
  --gold: #d4a84b;
  --gold-light: #e8c070;
  --white: #fdf8f2;
  --green: #5a7c4e;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ---- GRAIN TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .3;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(15,10,6,0.98), rgba(15,10,6,0));
  padding: 12px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s;
}
.site-nav.scrolled {
  background: rgba(10,7,3,0.97);
  border-bottom: 1px solid rgba(192,98,42,0.2);
}
.nav-logo img {
  height: 64px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #aa9070; transition: color .2s; font-weight: 500;
}
.nav-links a:hover { color: var(--cream); }
.btn-nav {
  background: var(--rust); color: var(--cream) !important;
  padding: 9px 20px; border-radius: 2px;
  font-family: 'Cinzel', serif; font-size: 11px !important;
  letter-spacing: 2px !important; transition: background .2s !important;
}
.btn-nav:hover { background: var(--rust-light) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 24px; cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 2px;
  cursor: pointer; transition: all .2s; border: none;
}
.btn-primary { background: var(--rust); color: var(--cream); }
.btn-primary:hover {
  background: var(--rust-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,98,42,0.3);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(212,168,75,0.5); color: var(--gold);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212,168,75,0.08); transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; display: block; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.site-section { padding: 80px 6%; position: relative; z-index: 1; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rust-light); margin-bottom: 10px; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 50px); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.section-title em { color: var(--rust-light); font-style: italic; }
.section-title--center { text-align: center; }
.section-desc { font-size: 15px; color: #997755; line-height: 1.9; max-width: 640px; }
.section-desc--center { margin: 0 auto; text-align: center; }
.ornament { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.ornament--center { justify-content: center; }
.ornament .line { flex: 1; max-width: 60px; height: 1px; background: var(--rust); }
.ornament .dot { width: 6px; height: 6px; background: var(--rust); transform: rotate(45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background-size: cover; background-position: center 40%; background-repeat: no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 6% 80px; position: relative;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,6,2,0.65) 0%, rgba(15,10,5,0.45) 40%, rgba(10,6,2,0.88) 100%);
}
.hero-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--dark));
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(192,98,42,0.5); color: var(--rust-light);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 30px; margin-bottom: 28px;
  background: rgba(192,98,42,0.08); font-weight: 500;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow {
  font-family: 'Cinzel', serif; font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 5px; color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp .8s ease .25s both;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 7vw, 82px); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 12px;
  animation: fadeUp .8s ease .15s both;
}
.hero-heading em { color: var(--rust-light); font-style: italic; }
.hero-desc {
  font-size: 15px; color: #b09070; max-width: 540px;
  margin: 0 auto 36px; animation: fadeUp .8s ease .35s both; line-height: 1.85;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s ease .45s both; position: relative; z-index: 1;
}
.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px; position: relative; z-index: 1;
  animation: fadeUp .8s ease .55s both;
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rust-light); margin-top: 4px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--dark2); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img {
  border-radius: 4px; overflow: hidden; height: 520px; position: relative;
  background-size: cover; background-position: center;
}
.why-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,98,42,0.12), transparent);
}
.why-img-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(192,98,42,0.25); border-radius: 2px; z-index: 1;
}
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.why-feat {
  background: rgba(192,98,42,0.06); border: 1px solid rgba(192,98,42,0.15);
  border-left: 3px solid var(--rust); padding: 16px 14px; border-radius: 2px;
  transition: background .2s;
}
.why-feat:hover { background: rgba(192,98,42,0.1); }
.why-feat .icon { font-size: 20px; margin-bottom: 7px; }
.why-feat h4 {
  font-family: 'Cinzel', serif; font-size: 12px;
  color: var(--white); margin-bottom: 4px; font-weight: 600;
}
.why-feat p { font-size: 12px; color: #886644; line-height: 1.5; }

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section { background: var(--dark); }
.pkg-selector { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.pkg-sel-btn {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid rgba(192,98,42,0.3); border-radius: 2px;
  color: #664422; cursor: pointer; transition: all .25s; background: transparent;
}
.pkg-sel-btn.active, .pkg-sel-btn:hover {
  background: var(--rust); color: var(--cream); border-color: var(--rust);
}
.pkg-panel { display: none; }
.pkg-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }

/* Package Card */
.pkg-card {
  background: var(--dark2); border: 1px solid rgba(192,98,42,0.2);
  border-radius: 4px; overflow: hidden;
}
.pkg-card.featured { border-color: var(--rust); }
.pkg-hero-img {
  height: 260px; position: relative;
  background-size: cover; background-position: center;
}
.pkg-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,6,2,0.1) 0%, rgba(10,6,2,0.75) 100%);
}
.pkg-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; z-index: 1; }
.pkg-tag {
  display: inline-block; background: var(--rust); color: var(--cream);
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 2px; margin-bottom: 8px;
}
.pkg-tag.gold { background: var(--gold); color: #2a1500; }
.pkg-code {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  font-weight: 700; color: var(--white); line-height: 1;
}
.pkg-name { font-size: 13px; color: var(--rust-light); margin-top: 2px; }
.pkg-body { padding: 26px 22px; }
.pkg-title {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 5px;
}
.pkg-subtitle { font-style: italic; font-size: 13px; color: #886644; margin-bottom: 18px; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pkg-meta-item {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: #aa8855;
  background: rgba(192,98,42,0.08); border: 1px solid rgba(192,98,42,0.15);
  padding: 4px 11px; border-radius: 20px;
}
.pkg-price-box {
  background: rgba(192,98,42,0.1); border: 1px solid rgba(192,98,42,0.25);
  border-radius: 4px; padding: 14px 18px; margin-bottom: 20px;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.pkg-price-box .amount {
  font-family: 'Cormorant Garamond', serif; font-size: 34px;
  font-weight: 700; color: var(--rust-light);
}
.pkg-price-box .amount.gold { color: var(--gold); }
.pkg-price-box .details { font-size: 12px; color: #886644; line-height: 1.6; }

/* Package Tabs */
.pkg-tabs {
  display: flex; gap: 0; margin-bottom: 18px;
  border-bottom: 1px solid rgba(192,98,42,0.15);
}
.pkg-tab {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #664422; padding: 8px 14px; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-weight: 600; transition: color .2s, border-color .2s;
}
.pkg-tab.active { color: var(--rust-light); border-bottom-color: var(--rust); }
.pkg-tab-content { display: none; }
.pkg-tab-content.active { display: block; }

/* Itinerary */
.itinerary { list-style: none; }
.itin-item { display: flex; gap: 14px; margin-bottom: 16px; }
.itin-time {
  font-family: 'Cinzel', serif; font-size: 10px; color: var(--rust-light);
  min-width: 68px; padding-top: 3px; letter-spacing: .5px; font-weight: 600; flex-shrink: 0;
}
.itin-content {
  flex: 1; border-left: 1px dashed rgba(192,98,42,0.25);
  padding-left: 14px; padding-bottom: 12px;
}
.itin-content h5 {
  font-family: 'Cinzel', serif; font-size: 11px;
  color: var(--white); margin-bottom: 6px; font-weight: 600;
}
.itin-day-label {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
  color: var(--gold); padding: 4px 0 8px; text-transform: uppercase;
}
.itin-content ul { list-style: none; }
.itin-content ul li {
  font-size: 12px; color: #886644; padding: 2px 0;
  display: flex; align-items: flex-start; gap: 7px;
}
.itin-content ul li::before { content: '—'; color: var(--rust); flex-shrink: 0; }

/* Inclusions */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inc-col h5 {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 10px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(192,98,42,0.2);
}
.inc-col ul { list-style: none; }
.inc-col ul li {
  font-size: 12px; color: #886644; padding: 3px 0;
  display: flex; align-items: flex-start; gap: 7px;
}
.inc-col ul.yes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.inc-col ul.no li::before { content: '✕'; color: #8b3030; font-weight: 700; flex-shrink: 0; }

/* Policy */
.policy-block { margin-bottom: 16px; }
.policy-block h5 {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
  color: var(--rust-light); margin-bottom: 8px; text-transform: uppercase;
}
.policy-block ul { list-style: none; }
.policy-block ul li {
  font-size: 12px; color: #886644; padding: 2px 0;
  display: flex; gap: 7px;
}
.policy-block ul li::before { content: '·'; color: var(--rust); font-size: 16px; line-height: 1; flex-shrink: 0; }

/* Package footer */
.pkg-footer { padding-top: 20px; border-top: 1px solid rgba(192,98,42,0.15); margin-top: 6px; }
.ideal-for { font-size: 11px; color: #664422; letter-spacing: 1px; margin-bottom: 12px; }
.ideal-for span { color: var(--rust-light); font-weight: 600; }

/* Package detail panel */
.pkg-detail-panel {}
.detail-img { width: 100%; height: 300px; border-radius: 4px; overflow: hidden; margin-bottom: 20px; position: relative; }
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(192,98,42,0.1), transparent); }
.detail-quote {
  background: var(--dark2); border: 1px solid rgba(192,98,42,0.2);
  border-left: 3px solid var(--rust); padding: 20px 22px; border-radius: 2px; margin-bottom: 20px;
}
.detail-quote p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--text-light); line-height: 1.6;
}
.detail-quote cite { font-size: 11px; color: var(--rust-light); letter-spacing: 2px; display: block; margin-top: 10px; }
.highlight-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 11px; color: var(--rust-light); letter-spacing: 1px;
  background: rgba(192,98,42,0.08); border: 1px solid rgba(192,98,42,0.2);
  padding: 5px 14px; border-radius: 20px;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section { background: var(--dark); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.exp-card {
  background: var(--dark2); border: 1px solid rgba(192,98,42,0.12);
  padding: 24px 20px; border-radius: 4px; transition: border-color .2s, transform .2s;
}
.exp-card:hover { border-color: rgba(192,98,42,0.35); transform: translateY(-4px); }
.exp-card .ico { font-size: 28px; margin-bottom: 12px; }
.exp-card h4 { font-family: 'Cinzel', serif; font-size: 13px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.exp-card p { font-size: 13px; color: #886644; line-height: 1.7; }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  background: var(--rust-dark); padding: 40px 6%;
  border-top: 1px solid rgba(192,98,42,0.3);
  border-bottom: 1px solid rgba(192,98,42,0.3); position: relative; z-index: 1;
}
.trust-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,98,42,0.3), rgba(139,62,20,0.5));
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center; position: relative; z-index: 1;
}
.trust-item .num {
  font-family: 'Cormorant Garamond', serif; font-size: 46px;
  font-weight: 700; color: var(--cream); line-height: 1;
}
.trust-item .lbl {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,237,224,0.6); margin-top: 6px;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--dark2); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 10px; margin-top: 40px;
}
.gallery-item { overflow: hidden; border-radius: 3px; position: relative; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s, opacity .3s; opacity: .75;
}
.gallery-item:hover img { transform: scale(1.07); opacity: 1; }
.gallery-item.wide { grid-column: span 2; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { background: var(--dark2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.testi-card {
  background: var(--dark); border: 1px solid rgba(192,98,42,0.15);
  border-radius: 4px; padding: 26px 22px;
  transition: border-color .3s, transform .3s; position: relative;
}
.testi-card:hover { border-color: rgba(192,98,42,0.4); transform: translateY(-4px); }
.testi-card::before {
  content: '"'; position: absolute; top: 12px; right: 18px;
  font-family: 'Cormorant Garamond', serif; font-size: 80px;
  color: rgba(192,98,42,0.08); line-height: 1;
}
.stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: #aa8866; line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--rust-dark), var(--rust));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 13px; color: var(--cream);
}
.testi-name { font-family: 'Cinzel', serif; font-size: 13px; color: var(--white); font-weight: 600; }
.testi-loc { font-size: 11px; color: #664422; margin-top: 2px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--dark); }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-img {
  height: 480px; border-radius: 4px; position: sticky; top: 100px;
  background-size: cover; background-position: center;
}
.faq-item { border-bottom: 1px solid rgba(192,98,42,0.12); }
.faq-q {
  padding: 16px 0; font-family: 'Cinzel', serif; font-size: 12px;
  color: var(--text-light); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; letter-spacing: .5px; transition: color .2s;
}
.faq-q:hover { color: var(--rust-light); }
.faq-q .arrow { color: var(--rust); font-size: 18px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q { color: var(--rust-light); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { font-size: 13px; color: #886644; line-height: 1.9; padding-bottom: 16px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center; padding: 100px 6%;
  background-size: cover; background-position: center; background-attachment: fixed;
  position: relative;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,6,2,0.94), rgba(10,6,2,0.98));
}
.cta-content { position: relative; z-index: 1; }
.cta-section p { font-size: 15px; color: #886644; max-width: 520px; margin: 0 auto 36px; line-height: 1.9; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-bar {
  margin-top: 36px; display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap; font-size: 13px; color: #664422;
}
.contact-bar span { color: var(--rust-light); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #070402; padding: 48px 6% 24px;
  border-top: 1px solid rgba(192,98,42,0.2); position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.footer-logo img {
  height: 72px; margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rust-light); margin-bottom: 16px; font-weight: 600;
}
.footer-col p, .footer-col a {
  font-size: 13px; color: #554433; line-height: 2; display: block; transition: color .2s;
}
.footer-col a:hover { color: var(--rust-light); }
.footer-bottom {
  border-top: 1px solid rgba(192,98,42,0.1); padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11px; color: #332211; letter-spacing: 1px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .why-inner, .faq-inner { grid-template-columns: 1fr; }
  .why-img, .faq-img { height: 280px; position: static; }
  .pkg-panel.active { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .exp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links .hide-mob { display: none; }
}
@media (max-width: 600px) {
  .site-section { padding: 60px 5%; }
  .pkg-sel-btn { font-size: 9px; padding: 8px 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .inc-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 88px; left: 0; right: 0; background: rgba(10,7,3,0.98); padding: 20px 5%; border-bottom: 1px solid rgba(192,98,42,0.2); }
  .nav-links.open { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
