:root {
  --ink: #141414;
  --muted: #626262;
  --line: #e7e2da;
  --paper: #fff;
  --soft: #f6f3ee;
  --accent: #fff4de;
  --brand: #c6803f;
  --radius: 24px;
  --max: 1290px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  transform: translateX(-50%);
  padding: 32px clamp(40px, 5vw, 96px);
  background: linear-gradient(180deg, rgba(10,10,10,.5), rgba(10,10,10,0));
  color: #fff;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  padding: 18px clamp(40px, 5vw, 96px);
  background: rgba(16,16,16,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.brand img { width: 180px; transition: width .35s ease; }
.site-header.scrolled .brand img { width: 150px; }
.site-nav { display: flex; gap: 34px; align-items: center; font-weight: 600; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { right: 0; }
.menu-toggle { display: none; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: transparent; color: #fff; padding: 10px 16px; }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  width: calc(100vw - 48px);
  max-width: 1520px;
  margin: 0 auto 130px;
  border-radius: 40px;
  min-height: 720px;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 6000ms ease;
}
.hero-bg.active { opacity: 1; transform: scale(1.12); }
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.84), rgba(20,20,20,.28));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 190px 30px 80px;
  text-align: center;
}
.pill, .eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: inherit;
  font-weight: 700;
  letter-spacing: .02em;
}
.eyebrow { color: var(--brand); border-color: var(--line); background: #fff; }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -0.05em; }
h1 { font-size: clamp(54px, 8vw, 116px); font-weight: 500; }
h2 { font-size: clamp(42px, 6vw, 80px); font-weight: 500; }
h3 { font-size: 28px; letter-spacing: -0.03em; }
h1 span, h2 span { color: var(--muted); }
.hero h1 span { color: var(--accent); font-family: "Playfair Display", serif; }
.hero-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  text-align: left;
}
.hero-row p { max-width: 560px; margin: 0; color: rgba(255,255,255,.86); font-size: 18px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.65); }
.btn { transition: transform .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.cta .btn { background: #fff; color: var(--ink); }
.cta .btn:hover { background: var(--brand); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 130px;
}
.section.muted {
  max-width: none;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2)) 130px;
  background: var(--soft);
  margin-bottom: 130px;
}
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 18px; }
.destination-grid, .post-grid, .package-grid {
  display: grid;
  gap: 22px;
}
.destination-grid { grid-template-columns: 1.2fr .9fr .9fr; }
.destination-card {
  min-height: 440px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 30px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}
.destination-card:hover { transform: translateY(-8px); box-shadow: 0 30px 55px rgba(20,20,20,.25); }
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 62%);
  transition: background .4s ease;
}
.destination-card:hover::before { background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 70%); }
.destination-card > * { position: relative; z-index: 1; }
.destination-card p { margin: 8px 0 0; }
.destination-card span {
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: 10px 16px;
  transition: background .25s ease, border-color .25s ease;
}
.destination-card:hover span { background: #fff; color: var(--ink); border-color: #fff; }

.package-grid { grid-template-columns: repeat(3, 1fr); }
.package-card, .contact-cards article, .card-form, .post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.package-card, .contact-cards article, .post-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.package-card:hover, .contact-cards article:hover, .post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(20,20,20,.10);
  border-color: transparent;
}
.package-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.package-card .eyebrow { margin-bottom: 22px; }
.package-card p { color: var(--muted); }
.package-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-badge.accent { background: var(--accent); color: var(--brand); }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.feature-list { display: grid; gap: 4px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.feature-item .icon-badge { width: 46px; height: 46px; font-size: 17px; margin-bottom: 0; }
.feature-item h3 { font-size: 21px; margin-bottom: 8px; }
.feature-item p { margin: 0; color: var(--muted); font-size: 17px; }

.post-grid { grid-template-columns: repeat(2, 1fr); }
.post-card { overflow: hidden; }
.post-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .6s ease; }
.post-card:hover img { transform: scale(1.06); }
.post-card div { padding: 30px; }
.post-card time { color: var(--muted); font-size: 14px; }
.post-card h2, .post-card h3 { margin: 12px 0; line-height: 1.1; }
.post-card p { color: var(--muted); }
.text-link { color: var(--brand); font-weight: 800; }
.text-link { transition: opacity .2s ease; }
.text-link:hover { opacity: .7; }

.cta {
  max-width: var(--max);
  margin: 0 auto 130px;
  padding: 80px 24px;
  border-radius: 34px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta h2 { max-width: 850px; margin: 0 auto 28px; }

.page-hero.compact {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 90px 30px;
  text-align: center;
  background: url("../images/hero-canada.jpg") center/cover;
}
.contact-hero { background-image: url("../images/hero-island.jpg"); }
.page-hero > * { position: relative; z-index: 1; }
.breadcrumb {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.page-hero p { max-width: 720px; color: rgba(255,255,255,.86); }
.breadcrumb a { text-decoration: underline; }

.article { max-width: 980px; margin: 0 auto 120px; padding: 0 24px; }
.article-hero { text-align: center; padding: 80px 0 40px; }
.article-hero h1 { color: var(--ink); font-size: clamp(42px, 7vw, 86px); }
.article-hero p { color: var(--muted); font-size: 20px; }
.article-image { width: 100%; max-height: 520px; object-fit: cover; border-radius: 28px; margin-bottom: 45px; }
.article-content { font-size: 19px; color: #333; }
.article-content h3 { margin: 38px 0 14px; line-height: 1.15; }
.article-content hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }
.article-foot { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); }

.card-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}
.card-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
.card-form input, .card-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}
.contact-cards { display: grid; gap: 18px; }
.contact-cards article { padding: 26px; }
.contact-cards p { color: var(--muted); margin-bottom: 0; }
.map-wrap { max-width: var(--max); margin: 0 auto 130px; padding: 0 24px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; border-radius: 28px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 50px;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255,255,255,.78);
}
.footer-logo { width: 150px; margin-bottom: 18px; }
.site-footer h2 { font-size: 22px; letter-spacing: 0; color: #fff; margin-bottom: 16px; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.78); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 78px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(320px, calc(100vw - 48px));
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(20,20,20,.94);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
  }
  .site-nav.open { display: flex; }
  .hero, .page-hero { width: calc(100vw - 32px); margin-bottom: 80px; min-height: 560px; border-radius: 28px; }
  .hero-content { padding-top: 130px; }
  .hero-row, .split, .site-footer { grid-template-columns: 1fr; }
  .hero-row { text-align: center; }
  .destination-grid, .post-grid, .package-grid { grid-template-columns: 1fr; }
  .section, .section.muted { padding-bottom: 80px; margin-bottom: 80px; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .destination-card, .package-card, .post-card, .contact-cards article, .post-card img, .btn, .site-nav a::after {
    transition: none !important;
  }
}
