:root {
  --gold: #C8922A;
  --gold-light: #E8B96A;
  --gold-pale: #F5E6C8;
  --earth: #3B2A1A;
  --earth-mid: #5C3D22;
  --sand: #F0E4CC;
  --sand-light: #FAF6EE;
  --charcoal: #1A1410;
  --ash: #8A7968;
  --white: #FEFDF9;
  --green-deep: #1E2B1A;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--charcoal); color: var(--sand); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background .4s, padding .3s;
  isolation: isolate;
  background: #000000;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(26,20,16,.42), rgba(26,20,16,.14) 62%, rgba(26,20,16,0));
  transition: opacity .3s;
}
nav.scrolled {
  background: rgba(26,20,16,.94);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(200,146,42,.18);
}
nav.scrolled::before { opacity: 0; }
.nav-logo { display: flex; align-items: center; width: 170px; text-decoration: none; }
.nav-logo-img { display: block; width: 100%; height: auto; filter: drop-shadow(0 3px 10px rgba(0,0,0,.42)); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--sand); text-decoration: none; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; opacity: .85; transition: opacity .2s, color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold-light); padding: .6rem 1.6rem; font-family: var(--ff-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: background .25s, color .25s; }
.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,20,16,.1) 0%, rgba(26,20,16,0) 30%, rgba(26,20,16,.72) 85%, rgba(26,20,16,1) 100%),
    url('../images/hero/serengeti-elephant-hero.jpg') center/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-noise { position: absolute; inset: 0; opacity: .35; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(0,0,0,.15)'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; padding: 0 4rem 6rem; max-width: 780px; animation: rise .9s cubic-bezier(.22,1,.36,1) .2s both; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.eyebrow-text { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); }
.hero-title { font-family: var(--ff-display); font-size: clamp(3.2rem,6.5vw,6rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 1.6rem; }
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: .95rem; font-weight: 300; line-height: 1.8; color: rgba(240,228,204,.8); max-width: 500px; margin-bottom: 2.8rem; letter-spacing: .03em; }
.btns { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.btn-p { background: var(--gold); color: var(--charcoal); padding: 1rem 2.4rem; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .25s, transform .2s; display: inline-block; }
.btn-p:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-g { border: 1px solid rgba(240,228,204,.4); color: var(--sand); padding: 1rem 2.4rem; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: border-color .25s, color .25s; display: inline-block; }
.btn-g:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-trust { position: absolute; right: 4rem; bottom: 6rem; z-index: 2; display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; animation: rise .9s cubic-bezier(.22,1,.36,1) .5s both; }
.ht { display: flex; align-items: center; gap: .7rem; }
.ht-num { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 600; color: var(--gold-light); }
.ht-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,228,204,.65); line-height: 1.3; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 2; cursor: pointer; background: transparent; border: 0; font: inherit; }
.hero-scroll span { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--ash); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* SECTIONS SHARED */
section { padding: 7rem 4rem; }
.content-shell, .footer-inner { width: 100%; max-width: 1180px; margin: 0 auto; }
.wide-shell { max-width: 1280px; }
.sec-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.sec-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.sec-eyebrow-text { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.sec-title { font-family: var(--ff-display); font-size: clamp(2.2rem,3.5vw,3.5rem); font-weight: 300; line-height: 1.15; color: var(--white); }
.sec-title em { color: var(--gold-light); font-style: italic; }
.sec-intro { font-size: .92rem; line-height: 1.85; color: var(--ash); max-width: 520px; margin-top: 1.2rem; font-weight: 300; }

/* ABOUT */
.about-strip { background: var(--sand-light); padding: 6rem 4rem; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-strip .sec-title { color: var(--earth); }
.about-strip .sec-eyebrow-text { color: var(--earth-mid); }
.about-strip .sec-eyebrow::before { background: var(--earth-mid); }
.about-text { font-size: .93rem; line-height: 1.9; color: var(--earth-mid); font-weight: 300; margin-top: 1.4rem; }
.about-img-wrap { position: relative; }
.about-img-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(to bottom, rgba(26,20,16,.08), rgba(26,20,16,.38)), url('../images/about/safari-vehicle-serengeti.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; color: var(--gold-pale); font-family: var(--ff-display); font-size: 1.2rem; font-style: italic; letter-spacing: .05em; }
.about-badge { position: absolute; bottom: -2rem; left: -2rem; background: var(--gold); padding: 1.5rem 2rem; font-family: var(--ff-display); font-size: 1.4rem; color: var(--charcoal); font-weight: 400; line-height: 1.2; min-width: 160px; }
.about-badge small { display: block; font-family: var(--ff-body); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .3rem; opacity: .7; }

/* DESTINATIONS */
.destinations { background: var(--charcoal); }
.dest-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(200,146,42,.08); }
.dest-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: var(--earth); }
.dest-card:first-child { grid-row: span 2; aspect-ratio: unset; }
.dest-bg { position: absolute; inset: 0; transition: transform .6s cubic-bezier(.25,.46,.45,.94); background-size: cover; background-position: center; }
.dest-card:hover .dest-bg { transform: scale(1.06); }
.dest-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,.88) 0%, rgba(26,20,16,.12) 60%); transition: opacity .4s; }
.dest-card:hover .dest-ov { opacity: .78; }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; z-index: 2; transform: translateY(6px); transition: transform .4s; }
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-dur { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .3rem; }
.dest-name { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400; color: var(--white); }
.dest-card:first-child .dest-name { font-size: 2.2rem; }
.dest-desc { font-size: .82rem; color: rgba(240,228,204,.7); line-height: 1.6; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s; opacity: 0; margin-top: .5rem; }
.dest-card:hover .dest-desc { max-height: 80px; opacity: 1; }
.dest-arrow { display: inline-flex; align-items: center; color: var(--gold-light); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; margin-top: .8rem; opacity: 0; transform: translateX(-8px); transition: opacity .3s .1s, transform .3s .1s; }
.dest-card:hover .dest-arrow { opacity: 1; transform: translateX(0); }

/* DAY TRIPS */
.day-trips { background: var(--green-deep); padding: 6rem 4rem; }
.dt-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(200,146,42,.1); margin-top: 3.5rem; }
.dt-card { padding: 2rem 1.5rem; background: rgba(30,43,26,.85); border-bottom: 2px solid transparent; transition: border-color .3s, background .3s; cursor: pointer; }
.dt-card:hover { border-color: var(--gold); background: rgba(200,146,42,.07); }
.dt-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.dt-name { font-family: var(--ff-display); font-size: 1.1rem; color: var(--white); margin-bottom: .4rem; font-weight: 400; }
.dt-region { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.dt-text { font-size: .78rem; color: var(--ash); line-height: 1.6; font-weight: 300; }

/* SERVICES */
.services { background: var(--sand-light); padding: 7rem 4rem; }
.services .sec-title { color: var(--earth); }
.services .sec-eyebrow-text { color: var(--earth-mid); }
.services .sec-eyebrow::before { background: var(--earth-mid); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; background: rgba(59,42,26,.1); margin-top: 4rem; }
.svc-card { background: var(--white); padding: 2.5rem 2rem; border-top: 2px solid transparent; transition: border-color .3s; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0; background: var(--earth); transition: height .4s; z-index: 0; }
.svc-card:hover { border-color: var(--gold); }
.svc-card:hover::after { height: 100%; }
.svc-tag, .svc-title, .svc-text, .svc-list li { position: relative; z-index: 1; transition: color .3s; }
.svc-card:hover .svc-tag { color: var(--gold-light); }
.svc-card:hover .svc-title, .svc-card:hover .svc-list li { color: var(--sand); }
.svc-card:hover .svc-text { color: rgba(240,228,204,.7); }
.svc-tag { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: block; }
.svc-title { font-family: var(--ff-display); font-size: 1.4rem; color: var(--earth); margin-bottom: .8rem; font-weight: 400; line-height: 1.2; }
.svc-text { font-size: .82rem; line-height: 1.75; color: var(--earth-mid); font-weight: 300; }
.svc-list { list-style: none; margin-top: 1rem; }
.svc-list li { font-size: .78rem; color: var(--ash); padding: .3rem 0 .3rem 1rem; position: relative; }
.svc-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; }

/* PREMIUM */
.premium { background: var(--charcoal); padding: 7rem 4rem; }
.premium-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.prem-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.prem-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s cubic-bezier(.25,.46,.45,.94); filter: brightness(.7); }
.prem-card:hover .prem-bg { transform: scale(1.08); filter: brightness(.5); }
.prem-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,.96) 0%, transparent 50%); }
.prem-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; }
.prem-label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.prem-title { font-family: var(--ff-display); font-size: 1.6rem; color: var(--white); font-weight: 300; line-height: 1.2; margin-bottom: .6rem; }
.prem-desc { font-size: .8rem; color: rgba(240,228,204,.65); line-height: 1.6; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .4s; }
.prem-card:hover .prem-desc { max-height: 80px; }

/* WHY US */
.why-us { background: #2A1E12; padding: 6rem 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 3.5rem; }
.why-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(200,146,42,.18); text-align: center; }
.why-item:last-child { border-right: none; }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-name { font-family: var(--ff-display); font-size: 1.05rem; color: var(--sand); font-weight: 400; margin-bottom: .5rem; }
.why-text { font-size: .78rem; color: rgba(240,228,204,.5); line-height: 1.65; font-weight: 300; }

/* COMMUNITY */
.community { background: var(--earth); padding: 7rem 4rem; }
.comm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.comm-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.comm-img { aspect-ratio: 1; background-size: cover; background-position: center; background-color: var(--earth-mid); }
.comm-img:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.community .sec-title { color: var(--sand); }
.community .sec-eyebrow-text { color: var(--gold-light); }
.community .sec-eyebrow::before { background: var(--gold-light); }
.comm-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.comm-feat { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid rgba(200,146,42,.2); }
.comm-feat:last-child { border-bottom: none; }
.cf-icon { font-size: 1.4rem; flex-shrink: 0; }
.cf-name { font-family: var(--ff-display); font-size: 1.05rem; color: var(--sand); font-weight: 400; margin-bottom: .2rem; }
.cf-text { font-size: .8rem; color: var(--ash); font-weight: 300; line-height: 1.6; }

/* RETREAT */
.retreat { background: linear-gradient(135deg, var(--green-deep) 0%, #0D1A0A 100%); padding: 7rem 4rem; text-align: center; }
.retreat-inner { max-width: 700px; margin: 0 auto; }
.retreat-title { font-family: var(--ff-display); font-size: clamp(2.5rem,4vw,4rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.retreat-title em { color: var(--gold-light); font-style: italic; }
.retreat-text { font-size: .92rem; line-height: 1.9; color: var(--ash); font-weight: 300; margin-bottom: 3rem; }
.retreat-tags { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.r-tag { border: 1px solid rgba(200,146,42,.35); padding: .6rem 1.4rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }

/* TESTIMONIALS */
.testimonials { background: var(--charcoal); padding: 7rem 4rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(200,146,42,.06); margin-top: 4rem; }
.testi-card { background: var(--charcoal); padding: 3rem 2.5rem; border-top: 1px solid rgba(200,146,42,.14); transition: background .3s; }
.testi-card:hover { background: rgba(200,146,42,.04); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1.5rem; letter-spacing: .1em; }
.testi-quote { font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.7; color: rgba(240,228,204,.85); font-weight: 300; font-style: italic; margin-bottom: 2rem; }
.testi-name { font-size: .8rem; font-weight: 500; color: var(--white); letter-spacing: .05em; }
.testi-origin { font-size: .7rem; color: var(--ash); letter-spacing: .1em; }

/* CTA */
.cta { background: var(--gold); padding: 7rem 4rem; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cta-title { font-family: var(--ff-display); font-size: clamp(2.2rem,3.5vw,3.5rem); color: var(--charcoal); font-weight: 300; line-height: 1.1; }
.cta-sub { font-size: .9rem; color: rgba(26,20,16,.7); margin-top: 1rem; line-height: 1.7; font-weight: 300; }
.cta-wa { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; text-decoration: none; color: var(--earth); font-size: .82rem; opacity: .75; transition: opacity .2s; }
.cta-wa:hover { opacity: 1; }
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.cta-form input, .cta-form select, .cta-form textarea { background: rgba(26,20,16,.08); border: 1px solid rgba(26,20,16,.2); padding: .9rem 1.2rem; font-family: var(--ff-body); font-size: .85rem; color: var(--earth); outline: none; width: 100%; transition: border-color .3s; }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: var(--earth); }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(59,42,26,.5); }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cta-btn { background: var(--charcoal); color: var(--gold-light); border: none; padding: 1.1rem 2rem; font-family: var(--ff-body); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; font-weight: 500; transition: background .25s, transform .2s; }
.cta-btn:hover { background: var(--earth); transform: translateY(-2px); }
.cta-btn:disabled { cursor: wait; opacity: .82; transform: none; }
.cta-btn.is-loading { background: var(--earth); }
.form-flash { margin-bottom: 1rem; border: 1px solid rgba(26,20,16,.22); padding: .9rem 1.2rem; color: var(--earth); font-size: .82rem; line-height: 1.5; }
.form-flash-success { background: rgba(30,43,26,.09); }
.form-flash-error { background: rgba(110,25,12,.1); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* FOOTER */
footer { background: #0D0A08; padding: 5rem 4rem 2rem; border-top: 1px solid rgba(200,146,42,.1); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.foot-brand { font-family: var(--ff-display); font-size: 1.6rem; color: var(--gold-light); font-weight: 300; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.foot-tag { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); margin-bottom: 1.5rem; }
.foot-about { font-size: .82rem; color: var(--ash); line-height: 1.75; font-weight: 300; }
.foot-col-title { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 500; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.foot-links a { font-size: .82rem; color: var(--ash); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--gold-light); }
.foot-ci { margin-bottom: .8rem; }
.foot-ci span { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.foot-ci a, .foot-ci p { font-size: .82rem; color: var(--ash); text-decoration: none; transition: color .2s; line-height: 1.6; }
.foot-ci a:hover { color: var(--gold-light); }
.foot-bottom { border-top: 1px solid rgba(200,146,42,.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.foot-copy { font-size: .72rem; color: rgba(138,121,104,.45); letter-spacing: .08em; }
.foot-socials { display: flex; gap: 1.5rem; }
.foot-socials a { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); text-decoration: none; transition: color .2s; }
.foot-socials a:hover { color: var(--gold-light); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: .9rem 1.5rem; }
  .nav-logo { width: 145px; }
  .nav-links { display: none; }
  section, .about-strip, .day-trips, .community, .retreat, .testimonials, .cta, footer { padding: 4rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 5rem; }
  .hero-trust { right: 1.5rem; bottom: 5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: span 2; }
  .dt-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .premium-grid { grid-template-columns: 1fr; }
  .comm-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cta-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav-logo { width: 128px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dt-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
