* {
  box-sizing: border-box;
}

:root {
  --ink: #182226;
  --muted: #647175;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dfe6e2;
  --sea: #2f7f7a;
  --sea-dark: #1f5956;
  --leaf: #6d8f47;
  --sun: #c8923d;
  --shadow: 0 18px 45px rgba(24, 34, 38, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(223, 230, 226, 0.86);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  min-width: 150px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-place {
  color: var(--sea-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.nav-links a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sea-dark);
  background: rgba(47, 127, 122, 0.1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: var(--surface);
}

.lang-option {
  min-width: 40px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.lang-option.is-active {
  color: #fff;
  background: var(--sea);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--sea);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(24, 34, 38, 0.28);
}

.button-light {
  border-color: var(--line);
  color: var(--sea-dark);
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  overflow: hidden;
  background: #172427;
}

.hero-small {
  min-height: clamp(330px, 45vh, 500px);
}

.hero-slides,
.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 20, 23, 0.78), rgba(10, 20, 23, 0.32) 58%, rgba(10, 20, 23, 0.45)),
    linear-gradient(0deg, rgba(10, 20, 23, 0.48), transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 54px 0 74px;
}

.hero-copy {
  max-width: 670px;
  color: #fff;
}

.kicker {
  margin: 0 0 12px;
  color: #d9ece7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px, 9vw, 86px);
  max-width: 9ch;
}

.hero-small h1 {
  font-size: clamp(38px, 7vw, 66px);
  max-width: 12ch;
}

h2 {
  font-size: clamp(28px, 5vw, 46px);
}

h3 {
  font-size: 22px;
}

.hero-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

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

.carousel-controls {
  position: absolute;
  z-index: 3;
  right: max(16px, calc((100vw - 1120px) / 2));
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.carousel-controls button,
.lightbox button,
.room-thumb {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  color: #fff;
  background: rgba(24, 34, 38, 0.44);
  cursor: pointer;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.section {
  padding: clamp(52px, 8vw, 92px) 0;
}

.section-tight {
  padding: 38px 0;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p,
.lede {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d9e2db;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.info-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef4ef;
}

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

.feature,
.room-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.feature strong,
.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.feature p,
.room-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.callout p {
  margin: 8px 0 0;
  color: var(--muted);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.logo-row img {
  width: auto;
  max-height: 58px;
}

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

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

.room-card div {
  padding: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #d9e2db;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 250ms ease;
}

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

.text-list {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.text-list article {
  border-left: 4px solid var(--sea);
  padding-left: 18px;
}

.text-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-card a {
  color: var(--sea-dark);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: #142124;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 14, 16, 0.86);
}

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

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  font-size: 26px;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 860px) {
  .nav {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    min-width: 120px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 8px 16px 16px;
  }

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

  .nav-links a {
    padding: 13px 12px;
  }

  .lang-switch {
    margin-left: auto;
  }

  .lang-option {
    min-width: 36px;
    height: 32px;
  }

  .split,
  .callout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .room-grid {
    grid-template-columns: 1fr;
  }

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

  .callout {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 560px;
  }

  .hero-small {
    min-height: 390px;
  }

  .hero-inner {
    padding-bottom: 88px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-controls {
    left: 16px;
    right: auto;
  }

  .gallery-grid {
    gap: 8px;
  }
}
