:root {
  --ink: #1E293B;
  --muted: #64748B;
  --paper: #FAFAF8;
  --surface: #ffffff;
  --section: #EEF1F5;
  --warm: #F4B400;
  --warm-2: #FFE39B;
  --blue: #081F4D;
  --green: #0F766E;
  --line: rgba(30, 41, 59, 0.12);
  --shadow: 0 22px 60px rgba(8, 31, 77, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 180, 0, 0.16), rgba(250, 250, 248, 0) 460px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: 190px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.header-cta {
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 12px;
}

.nav-links a:hover {
  background: rgba(8, 31, 77, 0.07);
}

.header-cta {
  color: white !important;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.section,
.strip,
.booking-section,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  min-height: calc(100vh - 78px);
  padding: 86px 0 52px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  color: var(--blue);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 610px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 21px;
}

.hero-actions,
.contact-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button.primary {
  color: white;
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  border-color: rgba(8, 31, 77, 0.2);
  background: white;
}

.hero-actions {
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.hero-metrics div,
.audience-grid article,
.plan-card,
.amenity-grid div,
.image-placeholder,
.image-frame,
.booking-form,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 16px;
}

.hero-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
}

.hero-metrics span,
.section-heading p,
.audience-grid p,
.amenity-grid p,
.plan-note,
.booking-copy p,
.site-footer p {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 31, 77, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(8, 31, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 31, 77, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.45;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 31, 77, 0.08), rgba(244, 180, 0, 0.16)),
    linear-gradient(45deg, rgba(15, 124, 102, 0.08), transparent 54%),
    var(--surface);
}

.image-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(8, 31, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 31, 77, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.38;
}

.image-placeholder > div:not(.visual-note) {
  position: relative;
  z-index: 1;
  max-width: 260px;
  padding: 20px;
  border: 1px solid rgba(8, 31, 77, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  box-shadow: var(--shadow);
}

.image-placeholder span {
  display: block;
  color: var(--blue);
  font-weight: 900;
}

.image-placeholder p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.image-frame {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-image img {
  position: absolute;
  inset: 0;
}

.tall-image img {
  min-height: 100%;
}

.visual-note {
  position: absolute;
  z-index: 2;
  right: 22px;
  padding: 10px 13px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.visual-note.top {
  top: 22px;
}

.visual-note.bottom {
  bottom: 22px;
  right: auto;
  left: 22px;
  color: var(--ink);
  background: var(--warm-2);
}

.strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-bottom: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.strip span {
  padding: 17px 12px;
  background: white;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 82px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.experience-section {
  display: grid;
  gap: 34px;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.tall-image {
  min-height: 100%;
}

.audience-grid,
.amenity-grid,
.pricing-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

.audience-grid article,
.amenity-grid div,
.plan-card {
  padding: 24px;
}

.audience-grid p,
.amenity-grid p {
  margin-top: 10px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.pricing-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--section);
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card.featured {
  color: white;
  border-color: rgba(8, 31, 77, 0.45);
  background: var(--blue);
}

.plan-card.featured h3,
.plan-card.featured .price,
.plan-card.featured .plan-note,
.plan-card.featured li,
.plan-card.featured .plan-kicker {
  color: white;
}

.plan-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--blue);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  margin-right: 6px;
  font-size: 21px;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 6px 0 8px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: var(--ink);
}

.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.plan-card.featured li::before {
  color: var(--warm-2);
}

.plan-card .button {
  margin-top: auto;
}

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

.gallery-section {
  width: 100%;
  max-width: none;
  padding-top: 44px;
  padding-inline: max(16px, calc((100% - var(--max)) / 2));
  background: var(--section);
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.gallery-grid .image-placeholder:first-child,
.gallery-grid .image-frame:first-child {
  min-height: 380px;
}

.amenity-grid span {
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  gap: 38px;
  align-items: stretch;
}

address {
  margin-top: 22px;
  color: var(--ink);
  font-style: normal;
  font-size: 19px;
}

.contact-list {
  margin-top: 24px;
}

.contact-list a,
.footer-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px 12px;
  color: var(--blue);
  font-weight: 800;
}

.map-card {
  min-height: 390px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 42px;
  margin-block: 50px 86px;
  padding: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #061535);
}

.booking-section h2,
.booking-section .eyebrow,
.booking-copy p {
  color: white;
}

.booking-copy p {
  margin-top: 18px;
  opacity: 0.76;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-brand img {
  width: 260px;
  height: 64px;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

.wa-fab svg {
  width: 31px;
  height: 31px;
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.wa-tooltip::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .split,
  .experience-layout,
  .location-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: 0;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .tall-image {
    min-height: 320px;
  }

  .booking-section {
    padding: 26px;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 166px;
    height: 42px;
  }

  .footer-brand img {
    width: 220px;
    height: 54px;
  }

  .hero-metrics,
  .audience-grid,
  .pricing-grid,
  .amenity-grid,
  .gallery-grid,
  .booking-form,
  .strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .booking-form {
    padding: 18px;
  }

  .site-footer {
    align-items: start;
  }

  .wa-fab {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .wa-tooltip {
    display: none;
  }
}
