:root {
  --ink: #171a1f;
  --muted: #5c646b;
  --paper: #ffffff;
  --soft: #f3f6f5;
  --coral: #d95d47;
  --coral-dark: #a83e2e;
  --teal: #1f6b68;
  --gold: #f1b34c;
  --line: #dce3e1;
  --max: 1160px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 13px;
}
nav { display: flex; justify-content: center; gap: 26px; }
nav a { color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--coral);
  border-radius: 6px;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-1px); }
.button-small { min-height: 40px; padding: 8px 14px; font-size: 14px; }
.button-secondary { border-color: rgba(255,255,255,.8); color: #fff; background: transparent; }
.button-secondary:hover { border-color: #fff; background: rgba(0,0,0,.28); }
.button-secondary-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.button-secondary-dark:hover { color: #fff; background: var(--ink); }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(8, 16, 17, 0.58); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 88px;
  color: #fff;
}
.hero h1 { max-width: 820px; margin: 8px 0 16px; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; }
.hero-content > p:not(.eyebrow):not(.hero-note) { max-width: 640px; margin: 0 0 28px; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 16px 0 0; color: rgba(255,255,255,.82); font-size: 14px; }

.eyebrow { margin: 0 0 8px; color: var(--teal); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.hero .eyebrow { color: #ffd889; }
.offer-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 30px;
  align-items: center;
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--teal);
}
.offer-band div { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: baseline; }
.offer-band strong { font-size: 22px; }
.offer-band small { color: rgba(255,255,255,.82); text-align: right; }

.booking-panel,
.packages-section,
.gallery-section,
.steps-section,
.faq-section,
.location-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}
.booking-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: end; }
.section-heading { max-width: 700px; }
.section-heading h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; }
.section-heading p:last-child { margin: 0; color: var(--muted); }
.booking-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 800; }
input, select {
  min-width: 0;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #bcc8c5;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
input:focus, select:focus { outline: 3px solid rgba(31,107,104,.18); border-color: var(--teal); }

.packages-section { padding-top: 36px; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.package-card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.package-featured { border: 2px solid var(--teal); box-shadow: 0 12px 32px rgba(21,61,60,.12); }
.package-label { margin: 0 0 10px; color: var(--teal); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.package-card h3 { margin: 0; font-size: 26px; }
.price { min-height: 58px; margin: 10px 0 18px; color: var(--muted); }
.price span { color: var(--ink); font-size: 30px; font-weight: 900; }
.package-card ul { min-height: 116px; margin: 0 0 24px; padding-left: 20px; color: var(--muted); }

.gallery-section { width: 100%; padding: 76px max(24px, calc((100vw - var(--max)) / 2)); background: var(--soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.gallery-grid figure { display: grid; grid-template-rows: 420px auto; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption { padding: 12px 14px; color: var(--muted); font-size: 14px; font-weight: 700; }
.gallery-feature { grid-column: span 2; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 34px 0 0; padding: 0; list-style: none; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps li > span { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; color: #fff; background: var(--gold); font-weight: 900; }
.steps h3 { margin: 2px 0 5px; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 20px 0; cursor: pointer; font-weight: 800; }
details p { margin: -6px 0 20px; color: var(--muted); }

.location-section { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; border-top: 1px solid var(--line); }
.location-section h2 { margin: 0 0 10px; font-size: 36px; }
.location-section p { margin: 4px 0; color: var(--muted); }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }

footer { padding: 32px max(24px, calc((100vw - var(--max)) / 2)); color: rgba(255,255,255,.76); background: var(--ink); }
footer p { margin: 3px 0; }
footer a { color: #fff; }

@media (max-width: 900px) {
  nav { display: none; }
  .booking-panel, .faq-section { grid-template-columns: 1fr; gap: 28px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card ul, .price { min-height: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure { grid-template-rows: 360px auto; }
  .location-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { grid-template-columns: 1fr auto; padding: 10px 16px; }
  .site-header > .button { display: none; }
  .hero { min-height: 72svh; }
  .hero-content { width: calc(100% - 32px); padding: 64px 0 54px; }
  .hero h1 { font-size: 42px; }
  .hero-content > p:not(.eyebrow):not(.hero-note) { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .offer-band { grid-template-columns: 1fr; padding: 20px 16px; }
  .offer-band small { text-align: left; }
  .booking-panel, .packages-section, .steps-section, .faq-section, .location-section { width: calc(100% - 32px); padding: 58px 0; }
  .booking-fields, .steps { grid-template-columns: 1fr; }
  .gallery-section { padding: 58px 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature { grid-column: auto; }
  .gallery-grid figure { grid-template-rows: 300px auto; }
  .location-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
