:root {
  --ocean: #2c8c8a;
  --ocean-dark: #1f6664;
  --palm: #4a6741;
  --sand: #f4ede1;
  --sand-deep: #e8ddc7;
  --ink: #2b2b28;
  --ink-soft: #5a564d;
  --white: #ffffff;
  --terracotta: #c9714a;
  --radius: 18px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Assistant", "Poppins", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Frank Ruhl Libre", serif;
  font-weight: 600;
  margin: 0 0 .5em;
  line-height: 1.25;
}

p { margin: 0 0 1em; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--sand { background: var(--sand); }
.section--ocean { background: var(--ocean-dark); color: var(--white); }
.section--ocean h2 { color: var(--white); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: .6em;
  display: block;
}

.section--ocean .eyebrow { color: var(--sand-deep); }

.center { text-align: center; }

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 60px 24px;
  background:
    linear-gradient(180deg, rgba(20,50,48,.35), rgba(15,40,38,.72)),
    var(--hero-photo, linear-gradient(135deg, #1f6664, #2c8c8a 45%, #4a6741));
  background-size: cover;
  background-position: center;
}

.hero-inner { max-width: 760px; }

.hero .eyebrow { color: var(--sand); opacity: .9; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
}

.hero .dates {
  font-size: 1.15rem;
  letter-spacing: .03em;
  margin-bottom: 1.6em;
  color: var(--sand);
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover { background: #b5613b; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid currentColor;
}

/* Intro */
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
}

/* Included grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(43, 43, 40, .06);
}

.card .mark {
  color: var(--terracotta);
  font-size: 1.3rem;
  margin-inline-end: .5em;
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 28px;
}

.included-list li {
  display: flex;
  gap: .6em;
  align-items: flex-start;
}

.included-list .mark { color: var(--terracotta); font-size: 1.1rem; line-height: 1.5; }

/* Hosts */
.hosts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.host-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--palm));
  margin-bottom: 18px;
}

.host h3 { margin-bottom: .2em; }
.host .role { color: var(--terracotta); font-weight: 600; font-size: .9rem; margin-bottom: .8em; display: block; }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.price-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.price-card h3 { font-size: 1.05rem; margin-bottom: 1em; }

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--sand-deep);
  font-size: .95rem;
}

.price-row:first-of-type { border-top: none; }

.price-row .label { color: var(--ink-soft); }
.price-row .value { font-weight: 700; }
.price-row.early .value { color: var(--terracotta); }

.badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.policy {
  max-width: 640px;
  margin: 40px auto 0;
  font-size: .92rem;
  color: var(--sand-deep);
}

.policy dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  margin: 0;
}
.policy dt { color: var(--sand-deep); }
.policy dd { margin: 0; font-weight: 700; color: var(--white); text-align: end; }

/* Form */
.form {
  max-width: 560px;
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}

.form input, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--sand-deep);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

.form textarea { min-height: 120px; resize: vertical; }

.form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .form .row2 { grid-template-columns: 1fr; }
}

footer {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  padding: 40px 24px;
  font-size: .9rem;
}

footer a { color: var(--sand); }

/* Banner (full-bleed photo) */
.banner {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,28,0) 40%, rgba(15,25,23,.75));
}

.banner-caption {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  width: 100%;
  text-align: center;
  font-size: .95rem;
  letter-spacing: .04em;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.gallery .g-tall { grid-row: span 2; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
