:root {
  --bg: #f6efe1;
  --bg-soft: #fff9ef;
  --text: #16211f;
  --muted: #57645f;
  --accent: #f0672f;
  --accent-deep: #cf4f1c;
  --ocean: #0f5f6a;
  --ocean-deep: #07353b;
  --sand: #e7c78a;
  --panel: rgba(255, 249, 239, 0.72);
  --border: rgba(22, 33, 31, 0.08);
  --shadow: 0 20px 70px rgba(22, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 103, 47, 0.18), transparent 28%),
    radial-gradient(circle at right 10% top 12%, rgba(15, 95, 106, 0.18), transparent 26%),
    linear-gradient(180deg, #f5eddc 0%, #f8f3e7 55%, #fff9ef 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto;
}

.hero,
.section,
.footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 28px;
  background:
    linear-gradient(140deg, rgba(255, 249, 239, 0.95), rgba(231, 199, 138, 0.7)),
    linear-gradient(180deg, rgba(15, 95, 106, 0.08), rgba(15, 95, 106, 0));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 95, 106, 0.22), transparent 60%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: end;
  margin-top: 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.price {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 8vw, 7rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
}

h3 {
  font-size: 1.25rem;
}

.lead,
.section p,
.timeline-item p,
.gallery-card p,
.price-note,
.footer p,
.panel p,
.check-list,
.stat-list span {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.hero-joke {
  max-width: 54ch;
  margin: 18px 0 0;
  font-weight: 700;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(15, 95, 106, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 26px rgba(207, 79, 28, 0.24);
}

.button-secondary {
  border: 1px solid rgba(15, 95, 106, 0.16);
  background: rgba(255, 249, 239, 0.72);
}

.hero-card,
.panel,
.timeline-item,
.gallery-card,
.price-card {
  border: 1px solid var(--border);
  border-radius: 24px;
}

.hero-photo-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #0b5f6b;
  box-shadow: 0 28px 60px rgba(7, 53, 59, 0.18);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 53, 59, 0.08), rgba(7, 53, 59, 0.1) 50%, rgba(7, 53, 59, 0.74));
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-stickers {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.92);
  color: var(--ocean-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(7, 53, 59, 0.16);
  transform: rotate(-3deg);
}

.hero-sticker-alt {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff8ee;
  transform: rotate(3deg);
}

.hero-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 22px;
  background: rgba(7, 53, 59, 0.7);
  backdrop-filter: blur(12px);
  color: #fff8ee;
}

.hero-caption strong {
  font-size: 1.1rem;
}

.hero-caption span {
  max-width: 42ch;
  color: rgba(255, 248, 238, 0.82);
  line-height: 1.55;
}

.hero-card {
  align-self: end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(15, 95, 106, 0.95), rgba(7, 53, 59, 0.94));
  color: #f6efe1;
}

.card-kicker,
.hero-card .stat-list span {
  color: rgba(246, 239, 225, 0.78);
}

.stat-list {
  display: grid;
  gap: 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.stat-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.section {
  margin-top: 18px;
  padding: 34px 28px;
  background: var(--panel);
}

.intro-strip {
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  background: linear-gradient(140deg, rgba(255, 249, 239, 0.84), rgba(240, 103, 47, 0.12));
}

.intro-strip p {
  max-width: 48ch;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.spotlight-section {
  color: #fff8ee;
  background:
    radial-gradient(circle at top left, rgba(126, 226, 235, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(6, 47, 55, 0.98), rgba(11, 96, 107, 0.92));
}

.spotlight-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.spotlight-section .eyebrow {
  color: rgba(255, 248, 238, 0.72);
}

.spotlight-section h2,
.spotlight-section h3,
.spotlight-section p {
  color: #fff8ee;
}

.spotlight-copy,
.spotlight-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 24px;
}

.spotlight-copy {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.spotlight-lead {
  max-width: 50ch;
  margin: 22px 0 0;
  color: rgba(255, 248, 238, 0.84);
}

.spotlight-note {
  margin: 28px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.spotlight-visual {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 340px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(7, 53, 59, 0.08), rgba(7, 53, 59, 0.82)),
    radial-gradient(circle at 18% 22%, rgba(176, 242, 248, 0.8), transparent 20%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(140deg, #2ea7ba, #0a5662 48%, #062f37 100%);
}

.spotlight-visual::before {
  content: "";
  position: absolute;
  inset: 14% 8% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 62%);
  filter: blur(4px);
}

.spotlight-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 238, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight-visual h3 {
  max-width: 18ch;
  line-height: 1.08;
}

.spotlight-visual p {
  max-width: 32ch;
  margin: 16px 0 0;
  color: rgba(255, 248, 238, 0.82);
}

.grid-two,
.offer-layout,
.included-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.timeline-item,
.gallery-card,
.price-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.panel.soft {
  background: rgba(255, 249, 239, 0.9);
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(15, 95, 106, 0.08), rgba(15, 95, 106, 0.02)),
    rgba(255, 249, 239, 0.82);
}

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

.timeline-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.offer-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.price-card {
  background:
    linear-gradient(180deg, rgba(15, 95, 106, 0.9), rgba(7, 53, 59, 1)),
    rgba(15, 95, 106, 0.92);
  color: #fff8ee;
}

.price-label,
.price-note {
  margin: 0;
}

.price-card p,
.price-card h3,
.price-card .price {
  color: #fff8ee;
}

.price-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: rgba(255, 248, 238, 0.72);
}

.price {
  margin: 14px 0 12px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

.price-card .price-note {
  color: rgba(255, 248, 238, 0.78);
}

.included-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

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

.gallery-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-size: cover;
  background-position: center;
  color: #fff8ee;
}

.gallery-card p {
  color: rgba(255, 248, 238, 0.82);
}

.gallery-card.sand {
  background:
    linear-gradient(180deg, rgba(22, 33, 31, 0.08), rgba(22, 33, 31, 0.68)),
    linear-gradient(140deg, #e8c98f, #cf8b42);
}

.gallery-card.ocean {
  background:
    linear-gradient(180deg, rgba(7, 53, 59, 0.16), rgba(7, 53, 59, 0.75)),
    linear-gradient(140deg, #3ea4b2, #0d4b55);
}

.gallery-card.sunset {
  background:
    linear-gradient(180deg, rgba(22, 33, 31, 0.1), rgba(22, 33, 31, 0.7)),
    linear-gradient(140deg, #ffb36c, #e15b39, #7e3c2d);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 28px;
  padding: 32px 28px;
  background:
    radial-gradient(circle at top right, rgba(240, 103, 47, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(255, 249, 239, 0.94), rgba(231, 199, 138, 0.7));
}

@media (max-width: 960px) {
  .hero-layout,
  .offer-layout,
  .timeline,
  .gallery-grid,
  .included-grid,
  .grid-two,
  .spotlight-layout,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer {
    justify-content: start;
  }

  .hero-photo-card,
  .hero-photo {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .section,
  .footer {
    border-radius: 22px;
  }

  .hero,
  .section,
  .footer {
    padding: 22px 18px;
  }

  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    gap: 10px 14px;
  }

  .hero-layout {
    margin-top: 48px;
  }

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

  .hero-photo-card {
    display: flex;
    flex-direction: column;
  }

  .hero-photo-card::after {
    display: none;
  }

  .hero-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-caption {
    position: static;
    z-index: auto;
    padding: 16px;
    border: 0;
    border-top: 1px solid rgba(255, 248, 238, 0.12);
    border-radius: 0;
    background: rgba(7, 53, 59, 0.96);
    backdrop-filter: none;
  }

  .hero-caption span {
    max-width: none;
  }

  .hero-stickers {
    top: 14px;
    left: 14px;
    right: 14px;
    gap: 8px;
  }

  .hero-sticker {
    padding: 16px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
