/* ============================================================
   DOMINICAN ISLAND — style.css
   A complete, production-quality stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --teal:       #006B8F;
  --teal-light: #0089b5;
  --teal-dark:  #004f6b;
  --coral:      #E8652A;
  --coral-light:#ef7d45;
  --coral-dark: #c4501f;
  --gold:       #F4C430;
  --gold-dark:  #d4a800;
  --cream:      #FDF6E3;
  --cream-dark: #f5ead0;
  --dark:       #1a1a2e;
  --dark-mid:   #16213e;
  --dark-light: #2d2d4e;
  --white:      #ffffff;
  --gray-100:   #f8f9fa;
  --gray-200:   #e9ecef;
  --gray-400:   #adb5bd;
  --gray-600:   #6c757d;
  --gray-800:   #343a40;
  --text-main:  #2c2c3e;
  --text-muted: #5a5a78;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.24);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, -apple-system, sans-serif;
  --max-width:  1200px;
  --nav-height: 72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }

p {
  line-height: 1.8;
  color: var(--text-muted);
}

/* ── Utility Container ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 101, 42, 0.4);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 101, 42, 0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1rem;
}

/* ── Fade-In Animation ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--card-delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Shared Styles ────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  color: var(--dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
}

.logo-text strong {
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 22px;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&auto=format&fit=crop&q=85');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12) translateX(-12px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 46, 0.72) 0%,
    rgba(0, 79, 107, 0.55) 50%,
    rgba(26, 26, 46, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: heroFadeUp 1s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-icon {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  80%       { top: 18px; opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   DISCOVER SECTION
   ============================================================ */
.discover-section {
  background: var(--cream);
}

/* ── Card Grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image-tall {
  height: 280px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.07);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.card-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.card-tag-teal {
  background: var(--teal);
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
  color: var(--coral);
}

.card-icon-teal {
  color: var(--teal);
}

.card-title {
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.card-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 0.75rem;
  top: 3px;
}

/* ============================================================
   ADVENTURES SECTION
   ============================================================ */
.adventures-section {
  background: var(--white);
}

.adventure-grid {
  align-items: start;
}

.beach-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.beach-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.beach-item strong {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 700;
}

.beach-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   EXPERIENCE BANNER
   ============================================================ */
.experience-banner {
  position: relative;
  padding: 100px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1582648373881-52f5b3e7b41b?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 79, 107, 0.88), rgba(26, 26, 46, 0.88));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--dark);
}

.gallery-section .section-header {
  padding: 0 24px;
}

.gallery-section .section-eyebrow {
  color: var(--gold);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-desc {
  color: rgba(255,255,255,0.65);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin: 0 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

.gallery-item-tall {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   GETTING HERE
   ============================================================ */
.getting-here-section {
  background: var(--cream);
}

.getting-here-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.info-block-full {
  grid-column: 1 / -1;
}

.info-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.info-title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}

/* Airports */
.airport-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.airport-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.airport-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.airport-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.airport-code {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 52px;
}

.airport-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.airport-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 64px;
}

/* Season Grid */
.season-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.season-item {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid transparent;
}

.season-best {
  background: rgba(244, 196, 48, 0.08);
  border-left-color: var(--gold);
}

.season-shoulder {
  background: rgba(0, 107, 143, 0.06);
  border-left-color: var(--teal);
}

.season-value {
  background: rgba(232, 101, 42, 0.06);
  border-left-color: var(--coral);
}

.season-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 2px;
}

.season-months {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.season-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.climate-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

/* Transport Grid */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.transport-item {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.transport-item:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.transport-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.transport-item h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.transport-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  padding: 80px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.footer-links-col h4,
.footer-info-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-col ul,
.footer-info-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-facts li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-facts li strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.25) !important;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 72px 0;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  /* Hero mobile */
  .hero-stats {
    gap: 16px;
    padding: 16px 20px;
    flex-direction: row;
  }

  .stat {
    padding: 0 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 220px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    margin: 0 16px;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .gallery-item-tall {
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  /* Getting Here */
  .getting-here-grid {
    grid-template-columns: 1fr;
  }

  .info-block-full {
    grid-column: auto;
  }

  .transport-grid {
    grid-template-columns: 1fr 1fr;
  }

  .airport-item p {
    padding-left: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* CTA */
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

  /* Banner */
  .banner-bg {
    background-attachment: scroll;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .transport-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: auto;
  }
}
