/* Modern island travel styling */
:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050814;
  color: #f7f7fb;
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
body, html { margin: 0; padding: 0; min-height: 100%; }
img { display: block; width: 100%; height: auto; }
.page-shell { overflow-x: hidden; }
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 3rem; align-items: center; padding: 4rem 5vw 2rem; min-height: 90vh; background: radial-gradient(circle at top left, rgba(72, 175, 221, 0.2), transparent 35%), linear-gradient(180deg, #06111f 0%, #050812 38%, #081426 100%);
}
.hero-copy { max-width: 610px; }
.eyebrow { margin: 0 0 1rem; color: #8bd6ff; letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.86rem; }
.hero h1 { margin: 0; font-size: clamp(3rem, 5vw, 4.2rem); line-height: 0.95; letter-spacing: -0.04em; }
.hero p { margin: 1.5rem 0 0; max-width: 46rem; font-size: 1.05rem; line-height: 1.9; color: #d6e7ff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 1.65rem; background: linear-gradient(135deg, #6bc5ff, #5a8dff); color: #050a16; border: none; border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(43, 117, 255, 0.2); }
.button-secondary { background: rgba(255,255,255,0.08); color: #eef3ff; }
.hero-image { position: relative; overflow: hidden; border-radius: 32px; box-shadow: 0 35px 80px rgba(0,0,0,0.35); }
.hero-image img { aspect-ratio: 1 / 1; object-fit: cover; }
.intro { padding: 4rem 5vw; display: grid; gap: 2.5rem; }
.intro-panel { max-width: 680px; }
.intro-panel h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05; }
.intro-panel p { margin: 0; font-size: 1.07rem; line-height: 1.9; color: #cfd9ef; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.stat { padding: 1.75rem 1.5rem; border-radius: 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.stat strong { display: block; font-size: 2rem; margin-bottom: 0.5rem; }
.stat span { color: #a8b6d9; }
.section-heading { padding: 0 5vw 1rem; max-width: 780px; margin: 0 auto; }
.section-label { display: inline-flex; margin-bottom: 1rem; color: #7bc9ff; text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.82rem; }
.section-heading h2 { margin: 0 0 1rem; font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.05; }
.section-heading p { margin: 0; color: #c6d4ee; font-size: 1rem; line-height: 1.9; }
.gallery-section { padding: 2rem 5vw 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.gallery-card { background: rgba(6, 13, 28, 0.88); border: 1px solid rgba(255,255,255,0.08); border-radius: 28px; overflow: hidden; transform: translateY(30px); opacity: 0; transition: transform 0.75s ease, opacity 0.75s ease; }
.gallery-card.reveal.visible { transform: translateY(0); opacity: 1; }
.gallery-media { overflow: hidden; position: relative; }
.gallery-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 24, 0.5) 95%); }
.gallery-card img { transition: transform 0.25s ease; }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-copy { padding: 1.25rem 1.3rem 1.5rem; }
.gallery-copy h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.gallery-copy p { margin: 0; color: #b8c8e6; font-size: 0.95rem; line-height: 1.7; }
.site-footer { padding: 2rem 5vw 3rem; border-top: 1px solid rgba(255,255,255,0.08); color: #8f9ec9; text-align: center; }
@media (max-width: 1024px) { .hero { grid-template-columns: 1fr; padding: 3rem 4vw 2rem; } .hero-image { order: -1; } .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: 1fr; } .intro { padding: 3rem 4vw; } .hero { padding: 3rem 4vw 2rem; } }
