:root {
  --ink: #0e1a1c;
  --ink-soft: #2a3b3e;
  --cream: #f6f1e8;
  --sand: #e8dcc8;
  --paper: #fffdf8;
  --teal: #0d4f56;
  --teal-mid: #16707a;
  --teal-light: #2a9aa6;
  --gold: #c4a35a;
  --gold-soft: #e2c98a;
  --sea: #1b6b7a;
  --white: #ffffff;
  --muted: #6b7779;
  --line: rgba(14,26,28,.1);
  --shadow: 0 20px 50px rgba(14,26,28,.12);
  --radius: 18px;
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(246,241,232,.86);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .02em;
}
.brand span { color: var(--teal); font-style: italic; font-weight: 400; font-size: .92em; }
.nav-links { display: flex; gap: 22px; align-items: center; font-size: .92rem; }
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: #fff !important;
  padding: 10px 16px; border-radius: 999px; font-weight: 600;
}
.lang {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 10px; font-size: .78rem; color: var(--muted); cursor: pointer;
  background: transparent;
}
.burger { display: none; background: none; border: 0; font-size: 1.4rem; }

/* HERO */
.hero {
  position: relative; min-height: 92vh;
  display: grid; place-items: end start;
  overflow: hidden; color: #fff;
  background:
    linear-gradient(180deg, rgba(8,20,22,.15) 0%, rgba(8,20,22,.72) 100%),
    url("https://images.unsplash.com/photo-1533105079780-fdcd753d16e8?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}
.hero-content { padding: 0 0 80px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  letter-spacing: .22em; text-transform: uppercase;
  font-size: .72rem; color: var(--gold-soft); margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: .95; font-weight: 500; max-width: 14ch;
}
.hero p { max-width: 42ch; margin: 22px 0 28px; font-size: 1.12rem; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 13px 20px; font-weight: 650; border: 0; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* STRIP */
.strip {
  background: var(--teal); color: #e8f4f5;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.strip div { padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.strip strong { display: block; font-family: var(--font-serif); font-size: 1.35rem; color: #fff; }
.strip span { font-size: .82rem; opacity: .8; }

/* SECTIONS */
section { padding: 88px 0; }
.kicker { color: var(--teal-mid); letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; font-weight: 700; }
h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1; font-weight: 500; margin: 8px 0 18px;
}
.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 68ch; }

.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.card {
  background: var(--paper); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(14,26,28,.05);
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card h3 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 8px; }
.tag { display: inline-block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 8px; }
.soft { color: var(--muted); font-size: .94rem; }

.photo-panel {
  border-radius: 28px; min-height: 420px;
  background: url("https://images.unsplash.com/photo-1613395877344-13d4a8e0d49e?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.list-check { list-style: none; margin-top: 18px; }
.list-check li { padding: 8px 0 8px 26px; position: relative; }
.list-check li:before { content: ""; position: absolute; left: 0; top: 16px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

/* BEACHES */
.beach-hero-card { position: relative; min-height: 280px; border-radius: 22px; overflow: hidden; color: #fff; }
.beach-hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.beach-hero-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8,20,22,.78));
}
.beach-hero-card .txt { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.partner-note {
  margin-top: 10px; padding: 10px 12px; border-left: 3px solid var(--gold);
  background: rgba(196,163,90,.12); font-size: .88rem; color: var(--ink-soft);
}

/* TICKET BANNER — discreet monetize */
.ticket-bar {
  background: linear-gradient(90deg, #0d4f56, #1a6d78);
  color: #fff; border-radius: 20px; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.ticket-bar p { opacity: .88; font-size: .95rem; max-width: 52ch; }
.ticket-bar h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 4px; }

/* ITINERARY */
.days { display: grid; gap: 14px; }
.day {
  display: grid; grid-template-columns: 90px 1fr; gap: 16px;
  background: var(--paper); border-radius: 16px; padding: 18px 20px; border: 1px solid var(--line);
}
.day b { color: var(--teal); font-family: var(--font-serif); font-size: 1.2rem; }

/* BLOG */
.blog-card img { height: 180px; object-fit: cover; width: 100%; }
.meta { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }

/* PARTNERS */
.partners { background: #efe7d8; }
.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.partner {
  background: #fff; border-radius: 16px; padding: 22px; border: 1px dashed rgba(13,79,86,.25);
}
.partner h3 { font-family: var(--font-serif); margin: 6px 0 8px; }
.badge { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 800; }

/* FOOTER */
footer { background: var(--ink); color: #d7e0e1; padding: 60px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
footer h4 { color: #fff; font-family: var(--font-serif); margin-bottom: 12px; }
footer a { display: block; color: #b7c4c6; margin: 6px 0; font-size: .94rem; }
.legal { margin-top: 36px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: #8a9799; display: flex; justify-content: space-between; }

/* PAGE HERO */
.page-hero {
  padding: 90px 0 50px;
  background:
    linear-gradient(180deg, rgba(14,26,28,.45), rgba(14,26,28,.55)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem,5vw,4rem); }

article.post { max-width: 760px; margin: 0 auto; }
article.post p { margin: 0 0 16px; }
article.post h2 { font-size: 1.8rem; margin-top: 28px; }
article.post img { border-radius: 16px; margin: 18px 0 8px; }

.notice {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin: 24px 0;
  font-size: .92rem; color: var(--ink-soft);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 18px; border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
  .strip, .grid-2, .grid-3, .grid-4, .foot-grid, .partner-grid { grid-template-columns: 1fr; }
  .strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ticket-bar, .day { display: block; }
  .hero { min-height: 80vh; }
}
