:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5b6773;
  --line: #d8e2e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --sea: #087c91;
  --sea-dark: #045b68;
  --sun: #d49a35;
  --leaf: #54735d;
  --shadow: 0 18px 55px rgba(15, 30, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(9, 18, 26, 0.74), rgba(9, 18, 26, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border: 3px solid var(--white);
  border-top-color: var(--sun);
  border-radius: 50%;
}

.nav {
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(6, 18, 25, 0.2);
  backdrop-filter: blur(8px);
}

.language-button {
  min-width: 36px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 24, 0.84), rgba(7, 17, 24, 0.38) 45%, rgba(7, 17, 24, 0.08)),
    linear-gradient(0deg, rgba(251, 250, 247, 0.88), rgba(251, 250, 247, 0) 18%);
}

.hero-content {
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 56px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.primary {
  color: var(--white);
  background: var(--sea);
  box-shadow: var(--shadow);
}

.primary:hover,
.primary:focus-visible {
  background: var(--sea-dark);
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.dark {
  background: var(--ink);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(60px, 9vw, 108px) 0;
}

.compact {
  padding-top: clamp(48px, 8vw, 86px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0 clamp(34px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}

.intro-kicker .eyebrow,
.details-section .eyebrow {
  color: var(--sea);
}

.intro-copy {
  align-self: end;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-highlight {
  padding-left: 18px;
  border-left: 4px solid var(--sun);
  color: var(--ink);
  font-weight: 800;
}

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

.section-heading .eyebrow,
.location-section .eyebrow,
.booking-band .eyebrow,
.thanks-panel .eyebrow {
  color: var(--sea);
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  font-weight: 900;
}

.feature-card p,
.photo-card figcaption,
.location-section p,
.detail-panel p,
.footer {
  color: var(--muted);
}

.details-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(60px, 9vw, 108px);
}

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

.detail-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f9f7;
}

.detail-panel h3 {
  margin-bottom: 14px;
}

.detail-panel p {
  margin: 0 0 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sea);
  font-weight: 900;
}

.gallery-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(60px, 9vw, 108px);
}

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

.photo-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card.wide img {
  aspect-ratio: 16 / 9;
}

.photo-card figcaption {
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.location-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(60px, 9vw, 108px);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.map-frame,
.nearby-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.map-frame {
  min-height: 430px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.nearby-panel {
  padding: 28px;
}

.nearby-panel h3 {
  margin-bottom: 18px;
}

.nearby-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.nearby-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.nearby-list span {
  color: var(--sea);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nearby-list strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.map-link {
  width: 100%;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(60px, 8vw, 96px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sea-dark), #263c36 68%, #7c612d);
}

.reviews-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(44px, 7vw, 72px);
  padding: clamp(34px, 6vw, 58px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-band > div {
  max-width: 730px;
}

.reviews-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.light {
  flex-shrink: 0;
  color: var(--sea-dark);
  border-color: var(--sea);
  background: var(--white);
  box-shadow: none;
}

.booking-band .eyebrow,
.booking-band h2 {
  color: var(--white);
}

.booking-band h2 {
  max-width: 780px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.consent-banner {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(560px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.consent-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--sea);
  border-radius: 8px;
  color: var(--white);
  background: var(--sea);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.consent-button.muted {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #e9f5f6, #fff8e8);
}

.thanks-panel {
  width: min(620px, 100%);
  padding: clamp(32px, 7vw, 64px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.thanks-panel p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: center;
    padding-top: 18px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-image {
    object-position: 50% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 17, 24, 0.86), rgba(7, 17, 24, 0.22) 70%),
      linear-gradient(0deg, rgba(251, 250, 247, 0.88), rgba(251, 250, 247, 0) 12%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 0 0 92px;
  }

  h1 {
    max-width: 9ch;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .intro-section,
  .details-grid,
  .photo-grid,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .photo-card.wide {
    grid-column: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .booking-band,
  .reviews-band,
  .footer,
  .consent-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-button {
    flex: 1;
  }
}
