:root {
  --ink: #16201d;
  --soft: #46534d;
  --muted: #6c7770;
  --paper: #f8f4ec;
  --paper-2: #efe6d6;
  --white: #ffffff;
  --steam: rgba(255, 255, 255, 0.72);
  --line: rgba(22, 32, 29, 0.14);
  --basalt: #111816;
  --pool: #107b83;
  --pool-dark: #07585f;
  --clay: #a45c39;
  --gold: #f1b45f;
  --sage: #7e8f70;
  --shadow: 0 24px 70px rgba(20, 28, 24, 0.18);
}

* {
  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.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 18, 16, 0.78), rgba(10, 18, 16, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f8fffb 0 18%, #52c8c9 19% 43%, #07585f 44% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 760;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--basalt);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.88) 0%, rgba(7, 14, 13, 0.58) 42%, rgba(7, 14, 13, 0.05) 80%),
    linear-gradient(0deg, rgba(7, 14, 13, 0.84) 0%, rgba(7, 14, 13, 0.18) 52%, rgba(7, 14, 13, 0.06) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 170px 0 150px;
}

.crumb,
.eyebrow,
.label,
.micro,
.tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.crumb {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 0;
}

.dek {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 54px;
  z-index: 4;
  width: min(420px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(14, 24, 22, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-card h2 {
  margin: 8px 0 16px;
  font-size: 28px;
  line-height: 1.05;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.label {
  color: #a8e5e4;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.fact-grid div {
  min-height: 78px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.fact-grid span,
.snapshot span,
.micro {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
}

.fact-grid span {
  color: rgba(255, 255, 255, 0.56);
}

.fact-grid strong {
  font-size: 20px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  width: min(1220px, calc(100% - 36px));
  margin: -50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 120px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.wrap {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--pool-dark);
  background: rgba(16, 123, 131, 0.1);
}

.eyebrow.light {
  color: #cffafa;
  background: rgba(255, 255, 255, 0.12);
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.prose p,
.section-head p,
.step p,
.booking-card p,
.source-ledger p,
.modules span {
  color: var(--soft);
  font-size: 18px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.photo-story {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 24, 22, 0.94), rgba(17, 24, 22, 0.98)),
    radial-gradient(circle at 15% 10%, rgba(16, 123, 131, 0.32), transparent 28%);
}

.photo-story .eyebrow {
  color: #cffafa;
  background: rgba(255, 255, 255, 0.1);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-head > div {
  max-width: 740px;
}

.section-head p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-head.compact p {
  color: var(--soft);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #1a2421;
}

.photo-card.large {
  grid-row: span 2;
  min-height: 746px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(10, 18, 16, 0.72);
  backdrop-filter: blur(18px);
}

.caption span {
  display: block;
  margin-bottom: 6px;
  color: #a8e5e4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caption strong {
  display: block;
  font-size: 20px;
  line-height: 1.18;
}

.plan {
  background: var(--paper-2);
}

.plan-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 88, 95, 0.96), rgba(17, 24, 22, 0.98)),
    var(--pool-dark);
  box-shadow: var(--shadow);
}

.sticky-panel h2 {
  font-size: 42px;
}

.snapshot {
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 0;
  margin: 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  list-style: none;
}

.snapshot li {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.snapshot span {
  color: rgba(255, 255, 255, 0.6);
}

.snapshot strong {
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.step > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.08;
}

.step p {
  margin-bottom: 0;
}

.book {
  background: var(--paper);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.booking-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(20, 28, 24, 0.08);
}

.booking-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 88, 95, 0.94), rgba(17, 24, 22, 0.98)),
    var(--pool-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--pool-dark);
  background: rgba(16, 123, 131, 0.1);
}

.booking-card.featured .tag {
  color: #cffafa;
  background: rgba(255, 255, 255, 0.12);
}

.booking-card h3 {
  margin: 18px 0 10px;
  font-size: 32px;
  line-height: 1.04;
}

.booking-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 15px;
  border-radius: 8px;
  color: var(--white);
  background: var(--pool-dark);
  text-decoration: none;
  font-weight: 900;
}

.booking-card.featured a {
  color: var(--ink);
  background: var(--gold);
}

.template {
  color: var(--white);
  background: #1b211d;
}

.module-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}

.template .eyebrow {
  color: #cffafa;
  background: rgba(255, 255, 255, 0.1);
}

.modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.modules div {
  min-height: 138px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.modules strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.modules span {
  color: rgba(255, 255, 255, 0.72);
}

.source-ledger {
  padding: 80px 0;
  background: var(--white);
}

.source-ledger h2 {
  max-width: 760px;
}

.source-ledger p {
  max-width: 780px;
  margin: 18px 0 26px;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ledger-grid a {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--pool-dark);
  background: #f8fbf7;
  font-weight: 800;
  text-decoration: none;
}

.ledger-grid a:hover {
  border-color: rgba(16, 123, 131, 0.42);
  background: rgba(16, 123, 131, 0.08);
}

.footer {
  padding: 28px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--basalt);
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding: 142px 0 300px;
  }

  .hero-card {
    left: 18px;
    right: 18px;
    bottom: 28px;
    width: auto;
  }

  .trust-strip,
  .split,
  .gallery,
  .plan-grid,
  .cards,
  .module-grid,
  .ledger-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    max-width: none;
    margin-top: 16px;
  }

  .photo-card.large,
  .photo-card {
    min-height: 430px;
  }

  .sticky-panel {
    position: relative;
    top: auto;
  }

  .modules {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-top {
    min-height: 64px;
  }

  .brand {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding-bottom: 322px;
  }

  .button {
    width: 100%;
  }

  .fact-grid,
  .step {
    grid-template-columns: 1fr;
  }

  .step > span {
    width: 48px;
    height: 48px;
  }

  .photo-card.large,
  .photo-card {
    min-height: 360px;
  }

  .caption {
    inset: auto 10px 10px;
  }
}
