:root {
  --green-dark: #082528;
  --green: #004f43;
  --brown: #3f342c;
  --gold: #c99537;
  --cream: #fffaf4;
  --sand: #e3d7ca;
  --ink: #16130f;
  --line: rgba(63, 52, 44, 0.22);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Mulish", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 58px;
  line-height: 1.02;
}

h2 {
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  font-size: 30px;
  line-height: 1.12;
}

h1 + p,
h2 + p,
h3 + p {
  margin-top: 16px;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 58px 0;
  scroll-margin-top: 116px;
}

.hero {
  padding-top: 54px;
}

.hero h1 {
  max-width: 640px;
  font-size: 46px;
  line-height: 1.08;
}

.muted {
  background: var(--sand);
}

.dark {
  background: var(--green-dark);
  color: var(--cream);
}

.dark h2,
.dark h3 {
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 32px;
  background: var(--green-dark);
  color: var(--cream);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-weight: 900;
}

.brand span {
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.nav {
  display: flex;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.nav a {
  padding: 10px 12px;
  opacity: 0.86;
  text-transform: uppercase;
}

.nav a:hover {
  opacity: 1;
  background: var(--gold);
  color: var(--green-dark);
}

.intro-grid,
.value-grid,
.standards-grid,
.about-grid,
.offer-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: end;
}

.intro-grid {
  align-items: start;
}

.intro-grid .lead {
  margin-top: 22px;
}

.eyebrow {
  margin-bottom: 12px;
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.lead,
.value-grid p,
.about p,
.interview-grid p:not(.eyebrow),
.offer-note,
.review p {
  display: grid;
  gap: 16px;
  max-width: 420px;
}

.hero .lead {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.55;
}

.hotel-gallery {
  display: grid;
  --hotel-image-width: min(calc(100vw - 48px), var(--container));
  --hotel-panel-height: calc(var(--hotel-image-width) / 1.784);
  grid-template-rows: auto var(--hotel-panel-height);
  margin-top: 34px;
  overflow: hidden;
}

.hotel-switcher {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  background: #e7dbcf;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.hotel-panels {
  display: flex;
  min-height: var(--hotel-panel-height);
  overflow: hidden;
}

.hotel-switch {
  min-height: 52px;
  padding: 14px 10px;
  border: 0;
  border-right: 1px solid rgba(89, 73, 60, 0.18);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font: 900 10px/1.2 "Mulish", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.hotel-switch small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  opacity: 0.72;
}

.hotel-switch.is-building {
  background: #d1d1cf;
  color: #55524d;
}

.hotel-switch.is-planned {
  background: #efe8df;
  color: #75685d;
}

.hotel-switch.is-planned {
  background: #efe8df;
  color: #7b6c5d;
}

.hotel-switch:last-child {
  border-right: 0;
}

.hotel-switch:hover,
.hotel-switch:focus-visible,
.hotel-switch.is-active {
  background: var(--green-dark);
  color: var(--cream);
  outline: none;
}

.hotel-card {
  position: relative;
  flex: 1 1 20%;
  min-width: 0;
  height: var(--hotel-panel-height);
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  background: var(--green-dark);
  opacity: 1;
  transition:
    flex-basis 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    flex-grow 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    filter 0.35s ease;
}

.hotel-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.hotel-card img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transition: opacity 0.35s ease, filter 0.35s ease, width 0.7s cubic-bezier(0.22, 1, 0.36, 1), left 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hotel-panels.is-hovering .hotel-card img {
  left: 50%;
  width: var(--hotel-image-width);
  transform: translateX(-50%);
}

.hotel-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 38, 42, 0.05), rgba(10, 38, 42, 0.32));
  content: "";
}

.hotel-card-building img {
  filter: grayscale(1) contrast(0.9) brightness(0.82);
}

.hotel-card-color-on-open.is-open img,
.hotel-card-color-on-open:hover img {
  filter: none;
}

.hotel-card-building::after {
  background: linear-gradient(180deg, rgba(22, 19, 15, 0.18), rgba(22, 19, 15, 0.58));
}

.hotel-card-planned img {
  filter: none;
}

.hotel-card-planned::after {
  background:
    linear-gradient(180deg, rgba(8, 37, 40, 0.03), rgba(8, 37, 40, 0.18));
}

.status-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 10px;
  background: #d1d1cf;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.status-badge-new {
  background: #e30613;
  color: #ffffff;
  border: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.status-badge-planned {
  background: #fffaf4;
  color: #7b6c5d;
  border: 1px solid rgba(63, 52, 44, 0.35);
}

.hotel-card div {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--cream);
}

.hotel-card strong {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(10, 38, 42, 0.45);
  white-space: nowrap;
}

.hotel-card.is-open {
  flex: 1 1 100%;
  opacity: 1;
}

.hotel-panels.is-hovering .hotel-card:not(.is-open) {
  flex: 0 1 0;
  opacity: 0.68;
}

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

.feature-list li,
.check-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  border-top: 1px solid rgba(63, 52, 44, 0.16);
  font-weight: 900;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  content: "✓";
}

.support {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.support strong {
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
}

.image-panel {
  min-height: 420px;
  background: url("assets/images/guest-lobby-family.png") center / cover;
}

.standards-grid {
  align-items: center;
}

.value.section {
  padding: 48px 0;
}

.value-grid {
  align-items: start;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1.18fr);
}

.about .button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 18px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.about h2 {
  max-width: 560px;
  font-size: 40px;
  line-height: 1.12;
}

.about p:not(.eyebrow) {
  max-width: 500px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255, 252, 249, 0.28);
}

.stat strong {
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
}

.interview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.video-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--green-dark);
  border: 1px solid var(--line);
}

.video-frame video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 244, 0.08) 1px, transparent 1px),
    var(--green-dark);
  background-size: 42px 42px;
  color: var(--cream);
  text-align: center;
}

.video-placeholder span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-placeholder strong {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  font-size: 34px;
  line-height: 1.1;
}

.video-placeholder strong::before {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 28px;
  content: "▶";
}

.video-placeholder p {
  color: rgba(255, 250, 244, 0.72);
}

.rooms h2 {
  max-width: 700px;
}

.room-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  border-bottom: 1px solid var(--line);
}

.room-tab {
  padding: 16px 20px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font: 900 14px/1.2 "Mulish", sans-serif;
  text-transform: uppercase;
}

.room-tab.active,
.room-tab:hover {
  border-color: var(--gold);
  color: var(--green);
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

.room-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
}

.room-label {
  font-weight: 800;
  color: var(--green);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price strong {
  color: var(--green);
  font-size: 36px;
  font-weight: 900;
}

.room-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.room-card img.is-changing {
  opacity: 0.2;
}

.room-card h3 {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 12px 16px;
  background: var(--green-dark);
  color: var(--cream);
}

.offer-grid {
  align-items: stretch;
}

.offer-note {
  max-width: 480px;
  margin-top: 18px;
}

.discount {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 260px;
  padding: 34px;
  background: var(--green-dark);
  color: var(--cream);
  border: 1px solid var(--line);
}

.discount span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.discount strong {
  display: block;
  color: var(--gold);
  font-size: 92px;
  line-height: 1;
}

.discount p {
  font-weight: 900;
}

.discount ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 250, 244, 0.22);
  list-style: none;
}

.discount li {
  color: rgba(255, 250, 244, 0.82);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.review,
.rating {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.rating {
  align-content: center;
  justify-items: center;
  text-align: center;
  background: var(--green-dark);
  color: var(--cream);
}

.rating strong {
  color: var(--gold);
  font-size: 72px;
  line-height: 1;
}

.footer {
  padding-bottom: 70px;
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

address span {
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
}

address a {
  font-size: 26px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 86px;
    padding: 0 24px;
  }

  html {
    scroll-padding-top: 86px;
  }

  .section {
    scroll-margin-top: 86px;
  }

  .nav {
    display: none;
  }

  h1,
  h2 {
    font-size: 38px;
  }

  .section {
    padding: 48px 0;
  }

  .intro-grid,
  .value-grid,
  .standards-grid,
  .about-grid,
  .interview-grid,
  .offer-grid,
  .footer-grid,
  .room-layout,
  .review-grid {
    gap: 32px;
  }

  .value-grid,
  .standards-grid,
  .offer-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  }

  .value-grid p,
  .offer-note {
    max-width: 390px;
  }

  .feature-list,
  .check-list {
    gap: 8px;
  }

  .feature-list li,
  .check-list li {
    padding: 10px 0 10px 34px;
  }

  .discount {
    padding: 28px;
  }

  .discount strong {
    font-size: 76px;
  }

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

  .rating {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .stat strong {
    font-size: 46px;
  }
}

@media (max-width: 700px) {
  .intro-grid,
  .value-grid,
  .standards-grid,
  .about-grid,
  .interview-grid,
  .offer-grid,
  .footer-grid,
  .room-layout,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .lead,
  .value-grid p,
  .about p,
  .interview-grid p:not(.eyebrow),
  .offer-note,
  .review p {
    max-width: 560px;
  }

  .hotel-gallery {
    grid-template-rows: auto 380px;
  }

  .hotel-panels {
    display: block;
    min-height: 380px;
  }

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

  .hotel-card,
  .hotel-card img {
    height: 380px;
  }

  .hotel-card {
    display: none;
    opacity: 1;
  }

  .hotel-card.is-open,
  .hotel-panels:not(.is-hovering) .hotel-card:first-child {
    display: block;
  }

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

  .rating {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    gap: 16px;
    font-size: 14px;
  }

  .brand span {
    width: 30px;
  }

  .section,
  .value.section {
    padding: 38px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  h1,
  h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  h3 {
    font-size: 24px;
  }

  body {
    font-size: 15px;
  }

  .hotel-gallery {
    margin-top: 24px;
    --hotel-image-width: calc(100vw - 32px);
  }

  .hotel-switch {
    min-height: 48px;
    padding: 12px 8px;
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .hotel-switch small {
    font-size: 8px;
  }

  .hotel-card,
  .hotel-card img {
    height: 340px;
  }

  .hotel-card,
  .hotel-card img {
    min-height: 340px;
  }

  .intro-grid,
  .value-grid,
  .standards-grid,
  .about-grid,
  .interview-grid,
  .offer-grid,
  .footer-grid,
  .room-layout,
  .review-grid {
    gap: 26px;
  }

  .stat-grid,
  .discount {
    grid-template-columns: 1fr;
  }

  .feature-list li,
  .check-list li {
    padding: 11px 0 11px 32px;
  }

  .support strong {
    font-size: 25px;
  }

  .image-panel,
  .video-frame,
  .room-card,
  .room-card img {
    min-height: 320px;
  }

  .video-placeholder {
    padding: 22px;
  }

  .video-placeholder strong {
    font-size: 26px;
  }

  .room-copy {
    padding: 24px;
  }

  .room-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .room-tab {
    flex: 0 0 auto;
    padding: 14px 16px;
    font-size: 12px;
  }

  .price strong {
    font-size: 30px;
  }

  .discount {
    padding: 26px;
  }

  .discount strong,
  .rating strong {
    font-size: 58px;
  }

  .review,
  .rating,
  .stat {
    min-height: 0;
    padding: 22px;
  }

  address a {
    font-size: 20px;
  }
}
