:root {
  --ink: #142129;
  --muted: #5f6c70;
  --sea: #0b7990;
  --deep: #083f55;
  --leaf: #3f6f48;
  --gold: #cda34f;
  --mist: #eef7f6;
  --paper: #fffdf7;
  --line: rgba(20, 33, 41, 0.14);
  --shadow: 0 22px 60px rgba(5, 31, 44, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 12px 35px rgba(7, 39, 51, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Cinzel, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #24363f;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  padding: 12px 14px;
  border-radius: 8px;
}

nav a:hover {
  background: rgba(11, 121, 144, 0.1);
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.nav-call {
  background: var(--deep);
  color: white;
}

.nav-call svg,
.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 144px max(24px, calc((100vw - 1120px) / 2)) 72px;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 24, 35, 0.78), rgba(3, 24, 35, 0.42) 45%, rgba(3, 24, 35, 0.08)),
    linear-gradient(0deg, rgba(3, 24, 35, 0.54), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  color: var(--deep);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.button.primary {
  background: var(--gold);
  color: #172018;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.light {
  background: white;
  color: var(--deep);
}

.button.review {
  background: var(--leaf);
  color: white;
}

.peek-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 72px;
  z-index: 3;
  width: 218px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.peek-panel span,
.peek-panel small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.peek-panel strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--deep);
  font-size: 34px;
}

section {
  padding: 86px max(24px, calc((100vw - 1120px) / 2));
}

.pricing-section {
  background: linear-gradient(180deg, #fffdf7, var(--mist));
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.experience-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.price-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(9, 70, 87, 0.08);
}

.price-card span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  margin: 12px 0 2px;
  color: var(--deep);
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.price-card.featured {
  background: var(--deep);
  color: white;
  transform: translateY(-10px);
}

.price-card.featured span,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card.featured strong {
  color: white;
}

.experience {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #26383d;
  font-weight: 800;
}

.feature-list svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--sea);
}

.stacked-photos {
  min-height: 560px;
  position: relative;
}

.stacked-photos img {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stacked-photos img:first-child {
  top: 0;
  right: 0;
  width: 78%;
  height: 74%;
}

.stacked-photos img:last-child {
  left: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1;
}

.gallery-section {
  background: #f5faf7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.82fr;
  grid-auto-rows: 235px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #d8e7e4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

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

.gallery-item.flyer {
  grid-row: span 2;
}

.booking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--deep);
  color: white;
}

.booking-strip h2 {
  color: white;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--paper);
}

.location-copy {
  max-width: 620px;
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.location-card {
  width: min(100%, 420px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 36px rgba(9, 70, 87, 0.08);
}

.location-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  margin: 10px 0 22px;
  color: var(--deep);
  font-size: 25px;
}

.location-card .button {
  width: 100%;
}

.location-review {
  margin-top: 12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: #0b1f28;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.visitor-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.visitor-count strong {
  margin-left: 6px;
  color: white;
}

.lightbox {
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(3, 16, 22, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 32px);
  object-fit: contain;
  border-radius: 8px;
}

.close-lightbox {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.close-lightbox svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    font-size: 15px;
  }

  nav {
    display: none;
  }

  .nav-call span {
    display: none;
  }

  .nav-call {
    width: 48px;
    padding: 0;
  }

  .hero {
    min-height: 86svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 120px 20px 34px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .peek-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    width: min(100%, 230px);
  }

  .price-grid,
  .experience,
  .gallery-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 20px;
  }

  .price-card.featured {
    transform: none;
  }

  .stacked-photos {
    min-height: 480px;
  }

  .stacked-photos img:first-child {
    width: 100%;
    height: 68%;
  }

  .stacked-photos img:last-child {
    width: 58%;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-item.tall,
  .gallery-item.flyer {
    grid-row: span 1;
  }

  .booking-strip,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .strip-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }
}
