:root {
  --bg: #f7efe2;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: rgba(255, 252, 247, 0.96);
  --line: rgba(37, 30, 22, 0.1);
  --ink: #1f1b17;
  --muted: #68625b;
  --sand: #c9905d;
  --sea: #2a8098;
  --sea-deep: #16596f;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --shadow: 0 22px 60px rgba(27, 42, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 144, 93, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(54, 155, 182, 0.14), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #f8f0e4 50%, var(--bg) 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(28, 26, 23, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand), var(--sea));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-text {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.location-card a,
.review-plate,
.hero-photo,
.gallery-item img,
.button {
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.location-card a:hover,
.review-plate:hover {
  color: var(--sea-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.button:hover,
.hero-photo:hover,
.review-plate:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #13586d, #2e8aa2);
  color: #fffefb;
  box-shadow: 0 16px 30px rgba(31, 114, 139, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(37, 30, 22, 0.1);
}

.button-compact {
  min-height: 44px;
  padding: 0 18px;
}

.button-wide {
  width: 100%;
}

main {
  display: grid;
  gap: 24px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero,
.reviews,
.about,
.services,
.price,
.locations,
.videos,
.faq,
.cta {
  padding: 32px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 248, 237, 0.93), rgba(255, 250, 243, 0.58)),
    url("./assets/images/beach-6.jpg") center/cover;
  pointer-events: none;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
}

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

.subtitle,
.hero-note,
.feature-list p,
.service-card p,
.price-note,
.location-card p,
.videos-shell p,
.faq-list p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.subtitle {
  max-width: 680px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.hero-note {
  max-width: 640px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.hero-badges,
.hero-points,
.feature-list,
.service-grid,
.location-grid,
.location-thumbs,
.faq-list,
.cta-actions {
  display: grid;
}

.hero-badges {
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(37, 30, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.88);
  color: var(--sea-deep);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-points article,
.hero-card,
.service-card,
.feature-list article,
.price-table,
.location-card,
.videos-shell,
.reviews-shell,
.faq-list details,
.review-plate {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.hero-points article,
.hero-card,
.service-card,
.feature-list article,
.faq-list details {
  padding: 20px;
}

.hero-points strong,
.feature-list strong,
.service-card h3,
.location-card strong,
.price-row b,
.review-plate strong {
  display: block;
}

.hero-points strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.review-plate {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
  padding: 15px 18px;
  max-width: 320px;
  color: var(--sea-deep);
}

.review-plate span {
  font-size: 0.95rem;
  font-weight: 800;
}

.review-plate strong {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-photo {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(39, 46, 52, 0.18);
}

.hero-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(16, 79, 102, 0.96), rgba(52, 134, 159, 0.92));
  color: #f2fbfd;
}

.hero-card .card-label {
  margin-bottom: 12px;
  color: rgba(242, 251, 253, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

.hero-card h2 {
  margin-bottom: 14px;
  color: inherit;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

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

.reviews-shell {
  padding: 22px;
  width: 100%;
  margin: 0 auto;
}

.reviews-note {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  min-width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 30, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 12px 28px rgba(28, 26, 23, 0.12);
  color: var(--sea-deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.carousel-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.carousel-arrow-prev {
  left: 14px;
}

.carousel-arrow-next {
  right: 14px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 111, 136, 0.22);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--sea-deep);
}

.review-slide {
  padding: 6px;
}

.review-page-grid,
.video-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.review-shot {
  width: 100%;
  padding: 8px 17px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.96);
  cursor: zoom-in;
}

.review-shot img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(28, 26, 23, 0.12);
}

.section-head {
  margin-bottom: 20px;
}

.compact-head {
  margin-bottom: 16px;
}

.price-table {
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: none;
}

.price-meta {
  display: grid;
  gap: 5px;
}

.price-duration {
  color: var(--sea-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.price-row b {
  font-size: 1.15rem;
}

.price-note {
  margin-top: 14px;
}

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

.location-card {
  overflow: hidden;
  padding: 0;
}

.location-media {
  padding: 16px 16px 0;
  display: grid;
  gap: 12px;
}

.location-thumbs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-main img,
.location-thumbs img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-main img {
  height: 290px;
}

.location-thumbs img {
  height: 150px;
}

.location-body {
  padding: 20px;
}

.location-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sea-deep);
  font-weight: 600;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item:hover img {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(32, 47, 56, 0.16);
}

.videos-shell {
  padding: 22px;
  background: linear-gradient(180deg, rgba(18, 92, 117, 0.96), rgba(62, 149, 175, 0.92));
  color: #eef8fb;
}

.videos-shell p {
  margin-bottom: 14px;
  color: rgba(238, 248, 251, 0.82);
}

.videos-shell .carousel-viewport {
  border-radius: 26px;
}

.videos-shell .carousel-arrow {
  background: rgba(255, 255, 255, 0.92);
}

.video-slide {
  min-width: 100%;
}

.video-widget-card {
  min-width: 0;
  height: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.video-widget-card > div {
  min-height: 180px;
}

.faq-list {
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin-top: 12px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.cta-actions {
  gap: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 20, 24, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  width: min(1100px, calc(100% - 24px));
  margin: 24px auto;
  z-index: 1;
}

.lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 22px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 23, 27, 0.72);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .hero,
  .service-grid,
  .location-grid,
  .cta,
  .hero-badges,
  .hero-points {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .nav {
    display: none;
  }

  .review-page-grid,
  .video-page-grid {
    grid-template-columns: 1fr;
  }

  .reviews-shell {
    width: 100%;
  }
}

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

  .topbar {
    position: static;
    border-radius: 24px;
  }

  .hero,
  .reviews,
  .about,
  .services,
  .price,
  .locations,
  .videos,
  .faq,
  .cta {
    padding: 22px;
  }

  .topbar .button {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .review-plate {
    width: 100%;
    max-width: none;
  }

  .hero-image {
    height: 320px;
  }

  .location-main img {
    height: 240px;
  }

  .location-thumbs img {
    height: 140px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .carousel-arrow-prev {
    left: 10px;
  }

  .carousel-arrow-next {
    right: 10px;
  }
}
