/* ── XPGhana — style.css ── */
:root {
  --gold: #B8860B;
  --gold-bright: #D4A017;
  --gold-star: #FFD700;
  --green-dark: #0F1F12;
  --green-brand: #1C3A20;
  --green-accent: #2E7D32;
  --black: #111111;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --cream: #F5F0E8;
  --cream-soft: #FFFDF7;
  --grey-mid: #555555;
  --grey-light: #AAAAAA;
  --red: #C0392B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --section-pad: 90px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black-soft); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section-label { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px; }
.gold-rule { width: 60px; height: 3px; background: var(--gold-bright); margin-bottom: 22px; }
.btn { display: inline-block; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; padding: 14px 32px; border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.2s ease; border: none; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ── NAVBAR ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15,31,18,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(184,134,11,0.2); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 900; line-height: 1; }
.nav-logo-name span:first-child { color: var(--gold-bright); }
.nav-logo-name span:last-child { color: var(--white); }
.nav-logo-tagline { font-size: 7px; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta { background: var(--gold); color: var(--white) !important; padding: 9px 22px; border-radius: 2px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--gold-bright) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--green-dark); padding: 24px 32px; z-index: 999; border-top: 1px solid rgba(184,134,11,0.2); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 15px; color: rgba(255,255,255,0.8); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:hover { color: var(--gold-bright); }

/* ── HERO ── */
#hero { min-height: 100vh; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 120px 32px 80px; }
.hero-map-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.06; pointer-events: none; }
.hero-map-bg svg { width: 70%; max-width: 700px; height: auto; }
.hero-gold-bar { width: 100%; height: 4px; background: var(--gold); position: absolute; bottom: 0; left: 0; }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 36px; animation: fadeUp 0.8s ease both; }
.hero-badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); border: 1px solid rgba(184,134,11,0.4); padding: 5px 16px; border-radius: 2px; margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
.hero-title { font-family: var(--font-display); font-size: clamp(42px, 7vw, 80px); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 8px; animation: fadeUp 0.9s ease 0.1s both; }
.hero-title .xp { color: var(--gold-bright); }
.hero-sub { font-family: var(--font-display); font-size: clamp(18px, 3vw, 28px); font-weight: 700; font-style: italic; color: var(--gold-star); margin-bottom: 20px; animation: fadeUp 1s ease 0.2s both; }
.hero-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 600px; margin: 0 auto 40px; animation: fadeUp 1s ease 0.3s both; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp 1s ease 0.4s both; }
.hero-pillars { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s ease 0.5s both; }
.hero-pill { font-size: 11px; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.12); padding: 5px 14px; border-radius: 99px; }

/* ── STATS ── */
#stats { background: var(--gold); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 20px 16px; border-right: 1px solid rgba(0,0,0,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.08em; color: rgba(0,0,0,0.6); text-transform: uppercase; }

/* ── PILLARS ── */
#pillars { background: var(--cream-soft); padding: var(--section-pad) 0; }
.pillars-intro { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.pillars-intro h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--black); line-height: 1.15; margin-bottom: 16px; }
.pillars-intro p { font-size: 16px; color: var(--grey-mid); line-height: 1.75; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 4px; padding: 36px 28px; transition: all 0.25s ease; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { border-color: rgba(184,134,11,0.2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pillar-num { font-family: var(--font-display); font-size: 42px; font-weight: 900; color: rgba(184,134,11,0.15); line-height: 1; margin-bottom: 14px; }
.pillar-icon { font-size: 28px; margin-bottom: 14px; }
.pillar-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.pillar-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.7; }
.pillar-tag { display: inline-block; margin-top: 14px; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,134,11,0.3); padding: 3px 10px; border-radius: 2px; }
.pillars-last-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }

/* ── MAGAZINE ── */
#magazine { background: var(--green-brand); padding: var(--section-pad) 0; }
.mag-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mag-text h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.mag-text p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 14px; }
.mag-text .btn { margin-top: 16px; margin-right: 12px; }
.mag-cover { background: var(--black); border-radius: 4px; padding: 32px 28px; border-left: 4px solid var(--gold); }
.mag-cover-header { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.mag-cover-logo-name { font-family: var(--font-display); font-size: 15px; font-weight: 900; }
.mag-cover-logo-name span:first-child { color: var(--gold-bright); }
.mag-cover-logo-name span:last-child { color: var(--white); }
.mag-cover-logo-sub { font-size: 6px; letter-spacing: 0.18em; color: rgba(255,255,255,0.35); }
.mag-rule { width: 52px; height: 3px; background: var(--gold); margin-bottom: 16px; }
.mag-headline-xp { font-family: var(--font-display); font-size: 44px; font-weight: 900; color: var(--gold-bright); line-height: 1; }
.mag-headline-rest { font-family: var(--font-display); font-size: 44px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.mag-edition { font-size: 10px; letter-spacing: 0.22em; color: var(--gold-bright); margin-bottom: 22px; }
.mag-toc { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.mag-toc-item { font-size: 11px; color: rgba(255,255,255,0.5); }
.mag-toc-item span { color: rgba(255,255,255,0.75); }
.mag-bar { background: var(--gold); padding: 8px 14px; margin-top: 20px; text-align: center; font-size: 9px; font-weight: 500; letter-spacing: 0.2em; color: var(--black); border-radius: 2px; }

/* ── DESTINATIONS ── */
#destinations { background: var(--white); padding: var(--section-pad) 0; }
.dest-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.dest-intro h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--black); line-height: 1.15; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dest-card { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; background: var(--black-soft); }
.dest-card.featured { grid-column: 1 / 3; grid-row: 1; }
.dest-card.tall { grid-column: 3; grid-row: 1 / 3; }
.dest-placeholder { width: 100%; display: block; }
.dest-card.featured .dest-placeholder { height: 320px; }
.dest-card:not(.featured):not(.tall) .dest-placeholder { height: 200px; }
.dest-card.tall .dest-placeholder { height: 100%; min-height: 536px; }
.dest-accra { background: linear-gradient(135deg, #1C3A20 0%, #0F1F12 100%); }
.dest-kumasi { background: linear-gradient(160deg, #B8860B 0%, #7A5000 100%); }
.dest-cape { background: linear-gradient(135deg, #1C4A22 0%, #0a1a0c 100%); }
.dest-volta { background: linear-gradient(135deg, #2a1500 0%, #7A4000 100%); }
.dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); padding: 28px 22px 22px; }
.dest-region { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 5px; }
.dest-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); }
.dest-card.featured .dest-name { font-size: 28px; }
.dest-card.tall .dest-name { font-size: 26px; }
.dest-desc { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── WATCH ── */
#watch { background: var(--black); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.watch-bg-map { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); opacity: 0.04; pointer-events: none; }
.watch-bg-map svg { width: 600px; height: auto; }
.watch-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.watch-text h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.watch-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.watch-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.watch-feature { display: flex; align-items: flex-start; gap: 14px; }
.watch-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.watch-feature-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.watch-feature-text strong { color: var(--white); font-weight: 500; }
.watch-screen { background: var(--green-dark); border-radius: 6px; border: 1px solid rgba(184,134,11,0.2); padding: 28px; text-align: center; }
.watch-coming { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; }
.watch-play { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; cursor: pointer; transition: all 0.2s; }
.watch-play:hover { background: rgba(184,134,11,0.1); transform: scale(1.05); }
.watch-play-icon { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid var(--gold); margin-left: 4px; }
.watch-screen h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.watch-screen p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 22px; }
.watch-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.watch-tag { font-size: 10px; padding: 4px 12px; border: 1px solid rgba(184,134,11,0.3); color: var(--gold-bright); border-radius: 99px; }

/* ── PARTNERS ── */
#partners { background: var(--cream-soft); padding: var(--section-pad) 0; }
.partners-intro { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.partners-intro h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--black); margin-bottom: 14px; }
.partners-intro p { font-size: 15px; color: var(--grey-mid); line-height: 1.75; }
.partners-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.partner-type { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 4px; padding: 32px 26px; transition: all 0.2s; }
.partner-type:hover { border-color: rgba(184,134,11,0.3); transform: translateY(-2px); }
.partner-type-icon { font-size: 26px; margin-bottom: 14px; }
.partner-type h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.partner-type p { font-size: 13px; color: var(--grey-mid); line-height: 1.65; }
.partners-cta { text-align: center; background: var(--white); border: 1px solid rgba(184,134,11,0.2); border-radius: 4px; padding: 44px; }
.partners-cta h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.partners-cta p { font-size: 14px; color: var(--grey-mid); margin-bottom: 24px; line-height: 1.7; }
.partners-cta .gold-rule { margin: 0 auto 20px; }

/* ── SUBSCRIBE ── */
#subscribe { background: var(--gold); padding: 80px 0; }
.subscribe-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.subscribe-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--black); line-height: 1.15; margin-bottom: 14px; }
.subscribe-text p { font-size: 15px; color: rgba(0,0,0,0.6); line-height: 1.75; }
.subscribe-form { display: flex; flex-direction: column; gap: 12px; }
.subscribe-form input,
.subscribe-form select { width: 100%; padding: 14px 18px; font-family: var(--font-body); font-size: 14px; border: none; border-radius: 2px; background: rgba(0,0,0,0.1); color: var(--black); outline: none; transition: background 0.2s; appearance: none; }
.subscribe-form input::placeholder { color: rgba(0,0,0,0.45); }
.subscribe-form input:focus,
.subscribe-form select:focus { background: rgba(0,0,0,0.15); }
.subscribe-form button { width: 100%; padding: 15px; font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.06em; background: var(--black); color: var(--white); border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.subscribe-form button:hover { background: var(--black-soft); }
.subscribe-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.subscribe-note { font-size: 11px; color: rgba(0,0,0,0.45); margin-top: 4px; }
#sub-message { font-size: 13px; padding: 10px 14px; border-radius: 2px; display: none; margin-top: 4px; }
#sub-message.show { display: block; }
#sub-message.success { background: rgba(28,58,32,0.15); color: #1C3A20; border: 1px solid rgba(28,58,32,0.3); }
#sub-message.error { background: rgba(192,57,43,0.12); color: #C0392B; border: 1px solid rgba(192,57,43,0.3); }

/* ── FOOTER ── */
footer { background: var(--black); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 14px 0 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-gold-bar { width: 100%; height: 3px; background: var(--gold); }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 4px; padding: 40px; max-width: 480px; width: 100%; position: relative; border-top: 4px solid var(--gold); }
.modal-box h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.modal-box p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 18px; color: var(--grey-light); cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--black); }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input,
.modal-form select,
.modal-form textarea { width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 14px; border: 1px solid rgba(0,0,0,0.15); border-radius: 2px; background: var(--white); color: var(--black); outline: none; transition: border-color 0.2s; appearance: none; }
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus { border-color: var(--gold); }
.modal-form button { width: 100%; padding: 14px; font-family: var(--font-body); font-size: 14px; font-weight: 500; background: var(--gold); color: var(--white); border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.modal-form button:hover { background: var(--gold-bright); }
.modal-form button:disabled { opacity: 0.7; cursor: not-allowed; }
#mag-message, #partner-message { font-size: 13px; padding: 10px 14px; border-radius: 2px; display: none; }
#mag-message.show, #partner-message.show { display: block; }
#mag-message.success, #partner-message.success { background: #E8F5EE; color: #1C3A20; border: 1px solid rgba(28,58,32,0.3); }
#mag-message.error, #partner-message.error { background: #FFF0F0; color: #C0392B; border: 1px solid rgba(192,57,43,0.3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillars-last-two { grid-template-columns: 1fr; }
  .mag-inner { grid-template-columns: 1fr; gap: 40px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.featured, .dest-card.tall { grid-column: 1; grid-row: auto; }
  .dest-card.tall .dest-placeholder { min-height: 260px; }
  .watch-inner { grid-template-columns: 1fr; gap: 44px; }
  .partners-types { grid-template-columns: 1fr; }
  .subscribe-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dest-intro { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .subscribe-inner { grid-template-columns: 1fr; }
}
