:root {
  --navy: #12315b;
  --navy-deep: #0b1f3c;
  --gold: #c7912a;
  --gold-light: #e0b558;
  --ink: #16202e;
  --muted: #5a6879;
  --paper: #f7f5f1;
  --white: #fff;
  --line: #e4e0d8;
  --wrap: 1160px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.narrow { width: min(760px, 92vw); }
.center { text-align: center; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--navy);
  color: #fff; padding: .7rem 1.2rem; z-index: 100;
}
.skip:focus { left: 0; }

h1, h2, h3, .brand strong {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}
.h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--navy-deep); }
.sub { color: var(--muted); max-width: 62ch; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.center.sub { margin-inline: auto; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,241,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy-deep); }
.brand img { width: 58px; height: 58px; }
.brand strong { display: block; font-size: 1.2rem; font-weight: 900; margin: 0; letter-spacing: .02em; }
.brand em { display: block; font-style: normal; font-size: .68rem; font-weight: 700; letter-spacing: .24em; color: var(--gold); text-transform: uppercase; }
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__menu a { text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--navy-deep); }
.nav__menu a:hover { color: var(--gold); }
.nav__toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy-deep); margin: 5px 0; transition: .25s; }

.btn {
  display: inline-block; background: var(--navy); color: #fff; text-decoration: none;
  padding: .85rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid var(--navy); cursor: pointer; transition: .2s;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--sm { padding: .55rem 1.3rem; font-size: .88rem; }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Hero */
.hero {
  background:
    radial-gradient(1000px 520px at 78% -10%, rgba(199,145,42,.22), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 62%, #16406f);
  color: #fff; padding: clamp(4rem, 10vw, 7.5rem) 0 4.5rem;
}
.hero__inner { max-width: 880px; }
.eyebrow { letter-spacing: .24em; text-transform: uppercase; font-size: .72rem; color: var(--gold-light); margin: 0 0 1.2rem; font-weight: 600; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); font-weight: 900; color: #fff; }
.hero h1 span { color: var(--gold-light); }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #d7dfea; max-width: 64ch; font-weight: 400; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 3rem; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--ghost:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }

.stats { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2rem 0 0; margin: 0; border-top: 1px solid rgba(255,255,255,.18); }
.stats strong { display: block; font-family: Montserrat, sans-serif; font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--gold-light); }
.stats span { font-size: .82rem; color: #c4cfdd; letter-spacing: .05em; }

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.pills { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.pills li { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 12px; padding: 1rem 1.2rem; font-size: .93rem; color: var(--muted); }
.pills b { display: block; color: var(--navy-deep); font-family: Montserrat, sans-serif; margin-bottom: .2rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: .25s; }
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(18,49,91,.1); }
.card h3 { font-size: 1.15rem; color: var(--navy-deep); }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Destinations */
.dest { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.dcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .25s; }
.dcard:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(18,49,91,.13); }
.dcard__img { height: 210px; position: relative; display: flex; align-items: flex-end; padding: 1rem 1.3rem; overflow: hidden; background: var(--navy-deep); }
.dcard__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dcard:hover .dcard__img img { transform: scale(1.06); }
.dcard__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,60,.86), rgba(11,31,60,.15) 55%, rgba(11,31,60,.35)); }
.dcard__img h3 { position: relative; z-index: 1; color: #fff; margin: 0; font-size: 1.4rem; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.dcard__tag { position: absolute; top: .9rem; right: 1rem; z-index: 1; background: rgba(255,255,255,.94); color: var(--navy-deep); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: .25rem .7rem; border-radius: 999px; }
.dcard__body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; gap: .9rem; }
.dcard__body > p { margin: 0; color: var(--muted); font-size: .92rem; }
.dcard__body h4 { margin: 0; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-family: Montserrat, sans-serif; }
.spots { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.spots li { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .28rem .75rem; font-size: .8rem; color: var(--ink); }

/* Process */
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; }
.steps li { background: var(--paper); border-top: 3px solid var(--gold); border-radius: 12px; padding: 1.3rem; font-size: .92rem; color: var(--muted); }
.steps b { display: block; font-family: Montserrat, sans-serif; color: var(--navy-deep); margin-bottom: .4rem; font-size: .95rem; }

/* FAQ */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.3rem; margin-bottom: .8rem; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy-deep); font-family: Montserrat, sans-serif; font-size: .98rem; }
.faq details[open] summary { color: var(--gold); }
.faq p { margin: .7rem 0 0; color: var(--muted); font-size: .93rem; }

/* CTA / form */
.cta { background: linear-gradient(160deg, var(--navy-deep), var(--navy)); color: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center; }
.cta .h2 { color: #fff; }
.cta .sub { color: #c4cfdd; }
.form { display: grid; gap: 1rem; text-align: left; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: grid; gap: .35rem; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #b9c6d6; font-weight: 600; }
.form input, .form select, .form textarea {
  font: inherit; text-transform: none; letter-spacing: normal; color: var(--ink);
  background: #fff; border: 1px solid transparent; border-radius: 10px; padding: .8rem 1rem; width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold-light); outline-offset: 1px; }
.form .btn { justify-self: start; background: var(--gold); border-color: var(--gold); }
.form .btn:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }
.form .btn:disabled { opacity: .6; cursor: wait; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__note { margin: 0; font-size: .9rem; color: var(--gold-light); min-height: 1.4em; }
.form__note a { color: inherit; }
.contact-alt { margin-top: 1.6rem; color: #c4cfdd; font-size: .95rem; }
.contact-alt a { color: var(--gold-light); }

/* Footer */
.foot { background: #0a1a33; color: #9fb0c4; padding: 3rem 0 2rem; }
.foot__inner { display: grid; gap: 1.5rem; justify-items: center; text-align: center; }
.foot img { width: 104px; height: 104px; margin: 0 auto 1rem; }
.foot p { margin: 0; font-size: .9rem; }
.foot nav { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.foot nav a { color: #cfdae7; text-decoration: none; font-size: .9rem; }
.foot nav a:hover { color: var(--gold-light); }
.foot__copy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; width: 100%; font-size: .82rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; inset: 100% 0 auto; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 0 6vw;
    border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__menu a { padding: .9rem 0; width: 100%; }
  .nav__menu.open { max-height: 380px; padding-bottom: 1rem; }
  .form .row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
