:root {
  --ink: #102f35;
  --ink-soft: #36575b;
  --sand: #f5f0e8;
  --sand-deep: #e8ddcd;
  --ivory: #fdfbf7;
  --white: #fff;
  --gold: #b59055;
  --gold-dark: #8e6b38;
  --lagoon: #4c9ba0;
  --line: rgba(16, 47, 53, .14);
  --shadow: 0 24px 70px rgba(16, 47, 53, .13);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}
body, button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 92px;
  padding: 17px max(24px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.site-header.is-solid {
  position: relative;
  background: var(--ink);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 57px;
  height: 57px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
}
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.brand small { margin-top: 4px; opacity: .8; letter-spacing: .12em; text-transform: uppercase; font-size: .63rem; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 11px 13px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}
.main-nav a:hover { opacity: .72; }
.main-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: transparent;
  color: inherit;
}
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin: 5px; background: currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero-media, .page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,25,28,.35), rgba(7,25,28,.05) 35%, rgba(7,25,28,.78)),
    linear-gradient(90deg, rgba(7,25,28,.28), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 82px;
}
.eyebrow {
  margin: 0 0 16px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  max-width: 870px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.8vw, 7.3rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.025em;
}
.hero-copy { max-width: 610px; margin: 0 0 28px; font-size: 1.08rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--white); }
.button-secondary { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.button-light { background: var(--white); color: var(--ink); }

.intro {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  padding: 110px 0;
  align-items: start;
}
.intro h2, .section-heading h2, .split-copy h2, .form-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}
.intro-copy { max-width: 690px; }
.intro-copy > p { margin: 0 0 28px; color: var(--ink-soft); font-size: 1.1rem; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promise { padding-top: 18px; border-top: 1px solid var(--line); }
.promise strong { display: block; margin-bottom: 6px; }
.promise span { color: var(--ink-soft); font-size: .9rem; }

.section { padding: 96px 0; }
.section-sand { background: var(--sand); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-heading p { max-width: 500px; margin: 0; color: var(--ink-soft); }
.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}
.destination-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 2px;
  color: var(--white);
}
.destination-card:nth-child(n+2) { min-height: 430px; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.destination-card:hover img { transform: scale(1.035); }
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,28,31,.85));
}
.destination-card-content { position: absolute; z-index: 2; inset: auto 26px 24px; }
.destination-card h3 { margin: 5px 0 7px; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; }
.destination-card p { margin: 0 0 12px; color: rgba(255,255,255,.82); font-size: .92rem; }
.text-link { font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.resort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resort-card { background: var(--white); box-shadow: 0 16px 50px rgba(16,47,53,.07); }
.resort-card-image { position: relative; height: 300px; overflow: hidden; }
.resort-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.resort-card:hover img { transform: scale(1.035); }
.resort-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  background: rgba(253,251,247,.92);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
}
.resort-card-body { padding: 24px; }
.resort-card h3 { margin: 5px 0 8px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.resort-card p { color: var(--ink-soft); }
.resort-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 20px; color: var(--ink-soft); font-size: .78rem; }
.resort-meta span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(30px, 7vw, 105px); background: var(--ink); color: var(--white); }
.split-copy p { color: rgba(255,255,255,.76); }
.split-copy .feature-list { margin: 26px 0 30px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.split-copy .feature-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); }

.page-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  color: var(--white);
}
.page-hero-content { position: relative; z-index: 2; padding: 190px 0 66px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.4rem); }
.page-hero p { max-width: 650px; font-size: 1.06rem; color: rgba(255,255,255,.88); }
.facts-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-30px);
  position: relative;
  z-index: 3;
}
.fact { padding: 24px 28px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact small { display: block; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }
.fact strong { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; }

.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; padding: 70px 0 110px; }
.detail-content h2 { font-family: var(--serif); font-size: 2.8rem; font-weight: 400; }
.detail-content p { color: var(--ink-soft); }
.feature-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0; }
.feature-chips span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; }
.quote-box { position: sticky; top: 24px; padding: 28px; background: var(--sand); }
.quote-box h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.quote-box p { color: var(--ink-soft); }

.form-page { padding: 150px 0 100px; background: linear-gradient(135deg, var(--sand), var(--ivory)); }
.form-heading { margin-bottom: 40px; }
.form-heading p { max-width: 680px; color: var(--ink-soft); }
.form-shell { background: var(--white); padding: clamp(25px, 5vw, 55px); box-shadow: var(--shadow); }
.form-section { padding: 0 0 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.form-section h2 { font-family: var(--serif); font-weight: 400; font-size: 2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label, .field-label { font-weight: 600; font-size: .86rem; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--ivory);
}
.notice { padding: 14px 17px; margin-bottom: 25px; border-left: 3px solid var(--lagoon); background: rgba(76,155,160,.09); }
.notice.error { border-color: #a83d35; background: rgba(168,61,53,.08); }
.success-panel { padding: 50px; text-align: center; background: var(--white); box-shadow: var(--shadow); }
.success-panel h1 { font-family: var(--serif); font-size: 3.5rem; font-weight: 400; }

.site-footer { padding: 90px max(24px, calc((100vw - 1180px)/2)) 24px; background: #09262a; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 70px; padding-bottom: 65px; }
.footer-main h2 { max-width: 650px; margin: 0 0 16px; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; line-height: 1.08; }
.footer-main p { max-width: 620px; color: rgba(255,255,255,.7); }
.footer-main h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-main a:not(.button) { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.58); font-size: .78rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 950px) {
  .site-header { position: absolute; min-height: 78px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav .nav-cta { margin: 4px 0 0; border-color: var(--ink); text-align: center; }
  .intro, .detail-layout { grid-template-columns: 1fr; gap: 35px; }
  .destination-grid { grid-template-columns: 1fr 1fr; }
  .destination-card:first-child { grid-column: 1 / -1; }
  .resort-grid { grid-template-columns: 1fr 1fr; }
  .split-feature { grid-template-columns: 1fr; }
  .split-image { height: 480px; }
  .facts-bar { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .quote-box { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container, .narrow, .hero-content { width: min(100% - 28px, 1180px); }
  .brand img { width: 48px; height: 48px; }
  .hero { min-height: 88svh; }
  .hero h1 { font-size: 3.2rem; }
  .intro, .section { padding-top: 70px; padding-bottom: 70px; }
  .promise-grid, .destination-grid, .resort-grid, .form-grid, .check-grid { grid-template-columns: 1fr; }
  .destination-card:first-child { grid-column: auto; }
  .destination-card, .destination-card:nth-child(n+2) { min-height: 420px; }
  .section-heading { align-items: start; flex-direction: column; }
  .facts-bar { transform: none; grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .split-image { height: 360px; }
  .field-wide { grid-column: auto; }
  .form-page { padding-top: 120px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
