*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dusty-rose: #af7c74;
  --terracotta: #b78876;
  --sandy-peach: #c99e87;
  --light-peach: #d2a993;
  --light-sand: #d9b7a5;
  --cream: #f5efe8;
  --warm-white: #faf8f5;
  --deep-brown: #5a3e36;
  --medium-brown: #7a5c52;
  --soft-brown: #8b6f63;
  --text-dark: #3d2b24;
  --text-body: #5a4a43;
  --gold-accent: #c4a265;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; color: var(--soft-brown); font-weight: 300; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.overline {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dusty-rose); margin-bottom: 12px; font-weight: 400;
  font-family: 'Josefin Sans', sans-serif;
}

/* ========== TOP NAV ========== */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px;
  background: transparent;
  transition: all 0.3s;
}
.top-nav.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(90,62,54,0.08);
  padding: 14px 32px;
}
.top-nav a { text-decoration: none; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dark); font-weight: 400; transition: color 0.3s; }
.top-nav a:hover { color: var(--dusty-rose); }
.top-nav .nav-title { font-family: 'Great Vibes', cursive; font-size: 1.2rem; letter-spacing: 0; text-transform: none; color: var(--dusty-rose); }

/* ========== HERO ========== */
.travel-hero {
  padding: 160px 0 100px; text-align: center;
  background: var(--cream);
}
.travel-hero .overline { margin-bottom: 16px; }
.travel-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--soft-brown); font-weight: 300; line-height: 1.15; margin-bottom: 24px;
}
.travel-hero h1 em { font-style: italic; color: var(--dusty-rose); }
.travel-hero p {
  max-width: 600px; margin: 0 auto; font-size: 0.95rem; line-height: 1.9; color: var(--text-body);
}

/* ========== GETTING HERE ========== */
.getting-here { background: var(--light-sand); padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 300; margin-bottom: 8px; }
.getting-here-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  max-width: 1000px; margin: 0 auto;
}
.getting-here-text p { font-size: 0.95rem; line-height: 2; color: var(--text-body); margin-bottom: 20px; }
.getting-here-text strong { color: var(--text-dark); font-weight: 500; }
.getting-here-text blockquote {
  border-left: 3px solid var(--dusty-rose); padding-left: 20px; margin: 28px 0;
  font-style: italic; font-size: 0.9rem; line-height: 1.9; color: var(--soft-brown);
}
.airport-card {
  background: var(--warm-white); border-radius: 10px; padding: 36px;
  border: 1px solid rgba(175,124,116,0.08);
}
.airport-card .card-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dusty-rose); margin-bottom: 8px; }
.airport-card .card-code { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--dusty-rose); font-weight: 300; line-height: 1; margin-bottom: 4px; }
.airport-card .card-name { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); margin-bottom: 20px; }
.airport-card hr { border: none; border-top: 1px solid rgba(175,124,116,0.12); margin: 0 0 16px; }
.airport-info { display: flex; flex-direction: column; gap: 10px; }
.airport-info-row { display: flex; justify-content: space-between; font-size: 0.82rem; }
.airport-info-row .label { color: var(--soft-brown); }
.airport-info-row .value { font-weight: 500; color: var(--text-dark); text-align: right; }

/* ========== CAR SECTION ========== */
.car-section {
  background: var(--deep-brown); padding: 100px 0; text-align: center;
}
.car-section .car-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.car-section .car-icon svg { width: 48px; height: 48px; stroke: var(--dusty-rose); fill: none; stroke-width: 1.2; }
.car-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3rem); color: var(--light-sand); font-weight: 300; margin-bottom: 28px; }
.car-section p { max-width: 600px; margin: 0 auto 16px; font-size: 0.95rem; line-height: 1.9; color: rgba(217,183,165,0.75); }
.car-section .highlight { color: var(--dusty-rose); font-weight: 400; }

/* ========== SILVER COAST ========== */
.silver-coast { background: var(--warm-white); padding: 100px 0; text-align: center; }
.silver-coast .overline { color: var(--dusty-rose); font-style: italic; font-family: 'Great Vibes', cursive; font-size: 1.2rem; letter-spacing: 0; text-transform: none; }
.silver-coast h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.silver-coast-text { max-width: 700px; margin: 0 auto; }
.silver-coast-text p { font-size: 0.95rem; line-height: 2; color: var(--text-body); margin-bottom: 20px; }
.silver-coast hr { width: 60px; border: none; border-top: 2px solid var(--light-sand); margin: 24px auto; }
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 800px; margin: 60px auto 0;
}
.stat-item { text-align: center; padding: 32px 20px; border-right: 1px solid var(--light-sand); }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--dusty-rose); font-weight: 300; line-height: 1.2; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft-brown); margin-top: 6px; }

/* ========== THINGS TO DO ========== */
.things-to-do { background: var(--light-sand); padding: 100px 0; }
.things-to-do .section-header p { max-width: 600px; margin: 12px auto 0; font-size: 0.9rem; color: var(--text-body); line-height: 1.8; }
.attractions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1100px; margin: 60px auto 0;
}
.attraction-card {
  background: var(--warm-white); border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(175,124,116,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.attraction-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(90,62,54,0.12); }
.attraction-card img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.attraction-card-body { padding: 24px; }
.attraction-card-body .tag {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dusty-rose); margin-bottom: 6px; font-weight: 400;
}
.attraction-card-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400;
  color: var(--text-dark); margin-bottom: 12px;
}
.attraction-card-body h3 a:hover { color: var(--dusty-rose) !important; }
.attraction-card-body p { font-size: 0.82rem; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.attraction-card-body .map-link {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dusty-rose); text-decoration: none; font-weight: 400;
  transition: color 0.3s;
}
.attraction-card-body .map-link:hover { color: var(--terracotta); }

/* ========== OCEAN SECTION ========== */
.ocean-section { background: var(--deep-brown); padding: 100px 0; text-align: center; }
.ocean-section .overline { color: rgba(217,183,165,0.6); }
.ocean-section h2 { color: var(--light-sand); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 28px; }
.ocean-section p { max-width: 650px; margin: 0 auto 16px; font-size: 0.95rem; line-height: 1.9; color: rgba(217,183,165,0.7); }

/* ========== GOOD TO KNOW ========== */
.good-to-know { background: var(--warm-white); padding: 100px 0; }
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1000px; margin: 60px auto 0; }
.info-card {
  padding: 36px; border-radius: 10px; background: var(--cream);
  border: 1px solid rgba(175,124,116,0.06);
}
.info-card .card-icon { margin-bottom: 12px; display: flex; }
.info-card .card-icon svg { width: 32px; height: 32px; stroke: var(--dusty-rose); fill: none; stroke-width: 1.2; }
.info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-dark); font-weight: 400; margin-bottom: 12px; font-style: italic; }
.info-card p { font-size: 0.85rem; line-height: 1.9; color: var(--text-body); }
.info-card strong { color: var(--text-dark); font-weight: 500; }

/* ========== ACCOMMODATION ========== */
.accommodation-section { background: var(--cream); padding: 100px 0; }
.accommodation-text { max-width: 700px; margin: 0 auto; text-align: center; }
.accommodation-text p { font-size: 0.95rem; line-height: 2; color: var(--text-body); margin-bottom: 20px; }

/* ========== FOOTER ========== */
.travel-footer {
  background: var(--deep-brown); padding: 60px 0 40px; text-align: center;
}
.travel-footer .footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; }
.travel-footer .footer-links a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(217,183,165,0.5); text-decoration: none; transition: color 0.3s;
  padding: 12px 24px; border: 1px solid rgba(217,183,165,0.2); border-radius: 3px;
}
.travel-footer .footer-links a:hover { color: var(--light-sand); border-color: var(--light-sand); }
.travel-footer .footer-bottom { font-size: 0.7rem; color: rgba(217,183,165,0.3); padding-top: 24px; border-top: 1px solid rgba(217,183,165,0.1); }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .top-nav { padding: 14px 16px; }
  .getting-here-grid { grid-template-columns: 1fr; gap: 40px; }
  .attractions-grid { grid-template-columns: 1fr; max-width: 500px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--light-sand); padding: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .info-cards { grid-template-columns: 1fr; }
  .travel-footer .footer-links { flex-direction: column; align-items: center; gap: 12px; }
}

/* Lars' take button + modal */
.lars-take-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--dusty-rose, #af7c74);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.lars-take-btn:hover { opacity: 0.7; }

.lars-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 18, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}
.lars-modal-overlay.active { opacity: 1; visibility: visible; }
.lars-modal {
  background: #fdf8f5;
  color: #3a2b26;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 44px;
  border-radius: 4px;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.7;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.lars-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 18px;
}
.lars-modal p { margin: 0 0 14px; font-size: 1.02rem; }
.lars-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #3a2b26;
  cursor: pointer;
  opacity: 0.6;
}
.lars-modal-close:hover { opacity: 1; }
@media (max-width: 600px) {
  .lars-modal { padding: 32px 24px; }
}
