/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #2C2C2C;
  line-height: 1.6;
  background: #FAF7F2;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; color:#0B3D2E; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.lead { font-size: 1.15rem; max-width: 800px; margin: 0 auto 2rem; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  color: #0B6E4F;
  margin-bottom: .8rem;
  font-weight: 500;
}
.section-eyebrow.gold, .hero-eyebrow.gold { color: #C9A961; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .85rem;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: #0B6E4F; color: #fff; }
.btn-primary:hover { background: #0B3D2E; }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #0B3D2E; }
.btn-gold { background: #C9A961; color: #fff; }
.btn-gold:hover { background: #A88840; }
.btn-nav {
  background: #0B6E4F; color: #fff;
  padding: .5rem 1.2rem !important;
  border-radius: 2px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(250,247,242,.97);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,.05);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: .5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: #0B3D2E; }
.logo-icon { color: #C9A961; font-size: 1.3rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 500; transition: color .3s; }
.nav-links a:hover, .nav-links a.active { color: #C9A961; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('https://images.unsplash.com/photo-1546708973-c9a6f16b56a1?w=1920') center/cover;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  margin-top: 70px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)); }
.hero-overlay.dark { background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)); }
.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 900px; }
.hero-eyebrow { color: #C9A961; letter-spacing: 4px; text-transform: uppercase; font-size: .85rem; margin-bottom: 1rem; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; font-style: italic; margin-bottom: 1.5rem; }
.hero-copy { max-width: 700px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  margin-top: 70px;
}
.page-hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.page-hero h1 { color: #fff; }
.page-hero p { font-size: 1.2rem; font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ============ INTRO / STATS ============ */
.intro { text-align: center; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.stat h3 { font-size: 3rem; color: #C9A961; margin-bottom: .3rem; }
.stat p { font-size: .9rem; text-transform: uppercase; letter-spacing: 2px; color: #666; }

/* ============ CARDS ============ */
.cards-grid, .tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card, .tour-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  transition: transform .4s, box-shadow .4s;
}
.card:hover, .tour-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,.15); }
.card-img, .tour-img {
  height: 220px;
  background-size: cover; background-position: center;
}
.card-body, .tour-body { padding: 1.5rem; }
.card-body p { color: #666; font-size: .95rem; margin-bottom: 0; }
.tag {
  display: inline-block;
  background: #E8F0EC;
  color: #0B6E4F;
  padding: .3rem .8rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.tag.gold { background: #F5EBD3; color: #A88840; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #C9A961; margin: 1rem 0; font-weight: 600; }

/* ============ NOBLEISLE PROMO ============ */
.nobleisle-promo { background: linear-gradient(135deg, #0B3D2E 0%, #0B6E4F 100%); color: #fff; }
.nobleisle-promo h2 { color: #fff; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.promo-img { height: 400px; background-size: cover; background-position: center; border-radius: 4px; }
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li { padding: .5rem 0; }

/* ============ DESTINATIONS PAGE ============ */
.destination-list { display: flex; flex-direction: column; gap: 3rem; }
.destination-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.destination-item.reverse { direction: rtl; }
.destination-item.reverse .dest-body { direction: ltr; }
.dest-img { height: 350px; background-size: cover; background-position: center; border-radius: 4px; }
.dest-body h2 { margin: .5rem 0 1rem; }

/* ============ GUIDES PAGE ============ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin: 3rem 0;
}
.feature {
  background: #fff; padding: 2rem;
  border-radius: 4px; text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,.05);
}
.feature-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.pricing-box {
  background: #0B3D2E; color: #fff;
  padding: 3rem; border-radius: 4px; text-align: center;
  margin-top: 3rem;
}
.pricing-box h3 { color: #fff; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.price-card {
  background: rgba(255,255,255,.1);
  padding: 2rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2);
}
.price-card.featured { background: #C9A961; }
.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; }
.price-tag span { font-size: 1rem; opacity: .8; }
.fine-print { font-size: .8rem; opacity: .7; }

/* ============ RENTALS PAGE ============ */
.fleet-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  background: #fff; border-radius: 4px; overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,.05);
}
.fleet-table th, .fleet-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #eee; }
.fleet-table th { background: #0B3D2E; color: #fff; font-weight: 500; letter-spacing: 1px; }
.fleet-table tr:hover { background: #f8f5f0; }

.adventure-grid, .transfer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.adv-card, .transfer-card {
  background: #fff; padding: 1.5rem; text-align: center;
  border-radius: 4px; box-shadow: 0 3px 10px rgba(0,0,0,.05);
}
.adv-card .price, .transfer-card p { color: #C9A961; font-weight: 600; }

.included-box {
  background: #E8F0EC; padding: 2rem; border-radius: 4px; margin-top: 3rem;
}
.check-list { list-style: none; }
.check-list li { padding: .5rem 0; }

/* ============ CONTACT FORM ============ */
.contact { background: #f8f5f0; }
.contact-form {
  max-width: 700px; margin: 2rem auto 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 1rem; border: 1px solid #ddd; border-radius: 2px;
  font-family: inherit; font-size: 1rem; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: #0B6E4F;
}

/* ============ FOOTER ============ */
.footer { background: #0B3D2E; color: #fff; padding: 3rem 0 1rem; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer h4 { color: #C9A961; margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; font-size: .9rem; letter-spacing: 2px; text-transform: uppercase; }
.footer ul { list-style: none; }
.footer ul li { padding: .3rem 0; opacity: .8; }
.footer ul li a:hover { color: #C9A961; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  font-size: .85rem; opacity: .7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 2rem; gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
  }
  .nav-links.active { display: flex; }
  .two-col, .destination-item, .destination-item.reverse {
    grid-template-columns: 1fr; direction: ltr;
  }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}