:root {
  --ink: #17221c;
  --muted: #5a665d;
  --paper: #f7f8f3;
  --white: #ffffff;
  --line: #dce2da;
  --green: #2f624d;
  --green-dark: #1d4234;
  --mist: #edf2eb;
  --shadow: 0 18px 44px rgba(23, 34, 28, 0.16);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--white);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(16, 26, 20, 0.32);
  box-shadow: 0 6px 20px rgba(10, 18, 14, 0.22);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.lang-switch button {
  padding: 7px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.lang-switch button:hover:not([aria-pressed="true"]) {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.lang-switch button[aria-pressed="true"] {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(10, 18, 14, 0.3);
}

.lang-switch button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-cta {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: clamp(460px, 76vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center 46%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.76) 0%, rgba(10, 18, 14, 0.42) 48%, rgba(10, 18, 14, 0.14) 100%),
    linear-gradient(0deg, rgba(10, 18, 14, 0.72) 0%, rgba(10, 18, 14, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(70px, 12vh, 140px) clamp(18px, 7vw, 88px);
  color: var(--white);
}

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

.hero .eyebrow,
.booking-band .eyebrow {
  color: #d9eadc;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.section-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  padding: clamp(70px, 9vw, 118px) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.key-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.key-facts strong,
.key-facts span {
  display: block;
}

.key-facts strong {
  font-size: 25px;
  line-height: 1.1;
  white-space: nowrap;
}

.key-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.intro-features article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.intro-features span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-features h3 {
  font-size: 18px;
}

.intro-features p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.intro-copy p:last-child,
.story-card p:last-child,
.practical p:last-child,
.booking-band p:last-child {
  margin-bottom: 0;
}

.practical article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.practical p,
.amenities-layout p,
.booking-layout p {
  color: var(--muted);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 660px;
  background: var(--ink);
  color: var(--white);
}

.image-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card {
  align-self: center;
  padding: clamp(36px, 8vw, 84px);
}

.story-card .eyebrow {
  color: #d9eadc;
}

.story-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.practical {
  padding: clamp(70px, 9vw, 110px) 0;
}

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

.amenities-band {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--white);
}

.amenities-layout {
  max-width: 780px;
}

.gallery-spacer {
  height: clamp(54px, 8vw, 92px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
  padding-bottom: clamp(70px, 9vw, 110px);
}

.gallery button {
  position: relative;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--line);
  cursor: pointer;
}

.gallery button:nth-child(1),
.gallery button:nth-child(8),
.gallery button:nth-child(17),
.gallery button:nth-child(26) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery button:hover img {
  filter: brightness(0.88);
  transform: scale(1.035);
}

.photo-number {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(10, 18, 14, 0.82);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(10, 18, 14, 0.35);
  pointer-events: none;
}

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

.practical article {
  padding: 24px;
}

.booking-band {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--green-dark);
  color: var(--white);
}

.booking-layout {
  display: block;
}

.booking-layout div {
  max-width: 760px;
}

.booking-layout a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-layout a[href^="tel:"] {
  white-space: nowrap;
}

.booking-layout p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .booking-layout p {
    white-space: normal;
  }
}

.footer {
  padding: 26px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.lightbox {
  width: min(1100px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 14px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(7, 14, 10, 0.76);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 128px);
  object-fit: contain;
  border-radius: 6px;
  background: var(--ink);
}

.lightbox p {
  margin: 12px 4px 0;
  color: var(--muted);
}

.lightbox-close {
  display: block;
  margin: 0 0 10px auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .image-story {
    grid-template-columns: 1fr;
  }

  .image-story {
    min-height: auto;
  }

  .image-story img {
    height: 56vw;
    min-height: 360px;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .header-cta {
    padding: 8px 13px;
  }

  .hero {
    min-height: clamp(440px, 68vh, 640px);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 18, 14, 0.86) 0%, rgba(10, 18, 14, 0.26) 76%),
      linear-gradient(90deg, rgba(10, 18, 14, 0.6), rgba(10, 18, 14, 0.12));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 54px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.5;
  }

  .key-facts,
  .intro-features,
  .practical-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .practical article {
    padding: 20px;
  }

  .footer {
    display: block;
  }

  .gallery button,
  .gallery button:nth-child(1),
  .gallery button:nth-child(8),
  .gallery button:nth-child(17),
  .gallery button:nth-child(26) {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .image-story img {
    height: 86vw;
    min-height: 280px;
  }
}
