:root {
  --ink: #20242b;
  --muted: #647084;
  --paper: #f7f3e6;
  --white: #ffffff;
  --line: #ded5b9;
  --brand: #f4c400;
  --brand-dark: #d9a900;
  --brand-soft: #fff4bc;
  --clay: #b75c2f;
  --navy: #191919;
  --shadow: 0 18px 42px rgba(32, 36, 43, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(222, 213, 185, 0.9);
  background: rgba(247, 243, 230, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: #111;
  font-weight: 800;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small { display: block; }

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

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

.nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--brand-soft);
  outline: none;
}

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

.lang-switch button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  color: #151515;
  background: var(--brand);
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(72px, 12vw, 130px) clamp(18px, 5vw, 72px) 56px;
  background: linear-gradient(135deg, #151515, #3a3320);
  color: var(--white);
  overflow: hidden;
}

.slot-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.has-photo {
  background-position: center;
  background-size: cover;
}

.hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.48), rgba(244, 196, 0, 0.16));
}

.hero-copy,
.photo-required {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 8.5vw, 98px);
  line-height: 0.94;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero .hero-detail {
  max-width: 760px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ffd84a; }

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

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

.btn.primary {
  color: #151515;
  background: var(--brand);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--brand-dark);
  outline: none;
}

.btn.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.photo-required {
  display: grid;
  gap: 4px;
  align-self: end;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.92);
}

.photo-required strong { font-size: 18px; }
.photo-required span { color: rgba(255, 255, 255, 0.76); }

.photo-slot.has-photo .photo-required { display: none; }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #151515;
  color: var(--white);
}

.facts article {
  min-height: 118px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.facts article:last-child { border-right: none; }

.facts span {
  color: #f4c400;
  font-size: 13px;
  font-weight: 900;
}

.facts strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  line-height: 1.3;
}

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.intro,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

p { overflow-wrap: anywhere; }

.intro > p,
.location p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.airport-ready {
  background: #151515;
  color: var(--white);
}

.airport-ready .eyebrow {
  color: #ffd84a;
}

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

.airport-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(244, 196, 0, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244, 196, 0, 0.16), rgba(255, 255, 255, 0.06));
}

.airport-grid strong {
  display: block;
  color: #ffd84a;
  font-size: 22px;
  line-height: 1.25;
}

.airport-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(32, 36, 43, 0.08);
}

.card-photo,
.gallery-photo {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  align-items: end;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.92), rgba(244, 196, 0, 0.68)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 12px, rgba(255,255,255,0.04) 12px 24px);
  background-position: center;
  background-size: cover;
}

.card-photo.has-photo,
.gallery-photo.has-photo {
  background-position: center;
  background-size: cover;
}

.card-photo.no-zoom .slot-img {
  object-fit: contain;
  background: #151515;
}

.room-copy { padding: 22px; }

.room-copy p {
  margin: 0;
  color: var(--muted);
}

.photo-gallery {
  color: var(--white);
  background: var(--navy);
}

.photo-gallery .eyebrow { color: #ffd84a; }

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

.gallery-photo {
  min-height: 240px;
  border-radius: 8px;
}

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

.amenities { background: #fff1aa; }

.amenity-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.amenity-grid span,
.benefit-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 66px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 900;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-grid article {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 230px;
  padding: 24px;
}

.benefit-grid strong {
  font-size: 22px;
  line-height: 1.25;
}

.benefit-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #8b6500;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  color: #151515;
  background: var(--brand);
  box-shadow: var(--shadow);
}

.contact-panel a {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 21, 21, 0.2);
  overflow-wrap: anywhere;
}

.reviews {
  color: var(--white);
  background: #151515;
}

.reviews .eyebrow {
  color: #ffd84a;
}

.reviews .section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 14px;
}

.review-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-image-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 196, 0, 0.34);
  border-radius: 8px;
  background: #fff;
}

.review-image-grid img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.review-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(244, 196, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.review-card strong {
  display: block;
  color: #ffd84a;
  font-size: 22px;
  line-height: 1.25;
}

.review-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.score-card {
  color: #151515;
  background: var(--brand);
}

.score-card span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-card strong {
  margin-top: 8px;
  color: #151515;
  font-size: clamp(54px, 7vw, 86px);
  line-height: 0.95;
}

.score-card p {
  color: rgba(21, 21, 21, 0.74);
  font-weight: 800;
}

.booking { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 10px 26px rgba(32, 36, 43, 0.08);
}

.contact-card.primary-contact {
  color: #151515;
  border-color: transparent;
  background: var(--brand);
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-contact span {
  color: rgba(21, 21, 21, 0.72);
}

.contact-card strong {
  font-size: 22px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.primary-contact small {
  color: rgba(21, 21, 21, 0.76);
}

.qr-slot {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin-top: 8px;
  display: grid;
  align-items: end;
  padding: 12px;
  border: 1px dashed rgba(21, 21, 21, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.08), rgba(244, 196, 0, 0.22)),
    #fffdf6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.qr-slot.has-photo {
  min-height: 280px;
  background-color: #fff;
}

.qr-slot .slot-img {
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
}

.qr-slot .photo-required {
  color: var(--ink);
  border-color: rgba(21, 21, 21, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.qr-slot .photo-required span {
  color: var(--muted);
}

.contact-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 960px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
}

.full,
.form-actions {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 196, 0, 0.36);
  border-color: var(--brand-dark);
}

.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.booking-output textarea { background: #f4f7f5; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #172321;
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav-toggle { display: block; }

  .nav {
    position: absolute;
    inset: 70px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .lang-switch {
    order: 4;
    width: 100%;
  }

  .lang-switch button {
    flex: 1;
  }

  .hero,
  .facts,
  .intro,
  .location,
  .room-grid,
  .airport-grid,
  .amenity-grid,
  .benefit-grid,
  .review-grid,
  .review-image-grid,
  .contact-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .facts article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 560px) {
  .topbar { padding-inline: 14px; }

  .hero {
    min-height: calc(88vh - 72px);
    padding: 58px 18px 38px;
  }

  .actions,
  .form-actions,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

  .section { padding: 58px 18px; }

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

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