:root {
  --bg: #080907;
  --bg-2: #11130f;
  --surface: #181b16;
  --surface-2: #20251e;
  --line: rgba(224, 217, 188, 0.16);
  --text: #f2ead2;
  --muted: #c9c0a9;
  --soft: #968c75;
  --red: #b8322a;
  --red-2: #7f1f19;
  --amber: #d9a441;
  --green: #4f6f5a;
  --steel: #aeb9b4;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --font-heading: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1180px;
  --radius: 8px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 38px 38px, 38px 38px, auto;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.loaded .site-loader {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

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

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

button {
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #160c09;
  background: var(--amber);
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 16px;
  align-content: center;
  background: #050604;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.site-loader img {
  width: 138px;
  filter: drop-shadow(0 0 28px rgba(184, 50, 42, 0.32));
}

.site-loader span {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--amber);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7, 8, 6, 0.92), rgba(7, 8, 6, 0.52));
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 8, 6, 0.93);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 22px;
}

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

.brand img {
  width: 96px;
  height: auto;
}

.brand span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  padding: 12px 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(184, 50, 42, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 6px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
}

.phone-link:hover {
  background: rgba(217, 164, 65, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 5, 0.94) 0%, rgba(6, 7, 5, 0.78) 42%, rgba(6, 7, 5, 0.30) 100%),
    linear-gradient(0deg, rgba(8, 9, 7, 0.98) 0%, rgba(8, 9, 7, 0.24) 45%, rgba(8, 9, 7, 0.52) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: overlay;
  opacity: 0.18;
}

.hero-content {
  padding: 130px 0 62px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--amber);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.03;
}

.hero h1 {
  max-width: 790px;
  font-size: 64px;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #160b08;
  background: var(--amber);
  box-shadow: 0 16px 34px rgba(217, 164, 65, 0.22);
}

.btn-primary:hover {
  background: #efbd55;
}

.btn-ghost {
  border: 1px solid rgba(242, 234, 210, 0.28);
  color: var(--text);
  background: rgba(242, 234, 210, 0.04);
}

.btn-ghost:hover {
  border-color: rgba(242, 234, 210, 0.46);
  background: rgba(242, 234, 210, 0.09);
}

.hero-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-top: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-status div {
  min-height: 94px;
  padding: 20px;
  background: rgba(17, 19, 15, 0.76);
}

.hero-status strong,
.hero-status span {
  display: block;
}

.hero-status strong {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.05;
}

.hero-status span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 13px;
}

.info-highlight {
  position: relative;
  isolation: isolate;
  padding: 78px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(184, 50, 42, 0.22), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(79, 111, 90, 0.24), transparent 34%),
    #111;
}

.info-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/timer-dp60-e1525374999621.jpg") center / 340px auto no-repeat;
  opacity: 0.08;
}

.info-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.92)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 6px
    );
}

.info-block {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(242, 234, 210, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 9, 7, 0.68);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  text-align: center;
  color: #fff;
}

.info-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.info-block h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.1;
}

.info-block p {
  margin: 10px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.38;
}

.info-block strong {
  color: #fff;
}

.info-block a {
  display: block;
  width: max-content;
  margin: 2px auto;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.32;
}

.info-block a:hover {
  color: var(--amber);
}

.info-note {
  max-width: 340px;
  margin-top: 22px !important;
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 24px;
  align-items: stretch;
}

.booking-panel-copy {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  min-width: 0;
}

.booking-panel-copy h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.08;
  text-transform: uppercase;
}

.booking-panel-copy > .eyebrow {
  margin-bottom: 12px;
}

.booking-panel-copy > .info-block {
  margin-top: 24px;
}

.booking-panel-actions {
  display: grid;
  align-content: stretch;
  min-width: 0;
}

.booking-panel-actions > .info-block {
  min-height: 0;
}

.booking-panel-actions > p {
  display: block;
  margin: 14px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  color: #fff;
  background: rgba(217, 164, 65, 0.1);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.booking-panel-actions > .price-actions {
  margin-top: 16px;
}

.section {
  padding: 96px 0;
  position: relative;
}

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

.section-head h2,
.contact-copy h2 {
  font-size: 46px;
}

.section-head p:last-child,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(32, 37, 30, 0.92), rgba(17, 19, 15, 0.96));
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.room-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.045);
  filter: contrast(1.08);
}

.room-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 234, 210, 0.28);
  border-radius: 4px;
  background: rgba(7, 8, 6, 0.72);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.room-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.room-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.room-title-row h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 32px;
  text-transform: uppercase;
}

.trilogy-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: 4px;
  color: var(--amber);
  background: rgba(217, 164, 65, 0.08);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}

.room-title-row p {
  margin: 0;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--amber);
  background: rgba(217, 164, 65, 0.12);
  font-weight: 800;
  white-space: nowrap;
}

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

.room-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.room-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid rgba(242, 234, 210, 0.12);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(8, 9, 7, 0.34);
  font-size: 12px;
  font-weight: 700;
}

.difficulty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  margin-top: 12px;
  padding: 10px 0 0;
  border-top: 1px solid var(--line);
}

.difficulty-label {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.difficulty-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.difficulty-dots span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 50%;
  background: transparent;
}

.difficulty-dots span.active {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(217, 164, 65, 0.32);
}

.difficulty.muted .difficulty-dots span {
  border-color: rgba(242, 234, 210, 0.18);
  background: transparent;
  box-shadow: none;
}

.difficulty.muted .difficulty-dots span.active {
  background: rgba(242, 234, 210, 0.22);
}

.room-facts {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 20px 0 0;
  list-style: none;
  color: var(--muted);
}

.room-facts li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.room-facts strong {
  color: var(--text);
}

.room-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(217, 164, 65, 0.36);
  border-radius: 6px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.room-cta:hover {
  background: rgba(217, 164, 65, 0.1);
  transform: translateY(-1px);
}

.room-cta-disabled {
  border-color: rgba(242, 234, 210, 0.14);
  color: var(--soft);
  cursor: default;
}

.room-cta-disabled:hover {
  background: transparent;
  transform: none;
}

.room-card-soon {
  position: relative;
}

.room-card-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 12px,
    rgba(217, 164, 65, 0.055) 12px,
    rgba(217, 164, 65, 0.055) 24px
  );
}

.room-card-soon .room-image img {
  filter: grayscale(0.38) brightness(0.82);
}

.room-card-soon .room-title-row p {
  color: var(--soft);
  background: rgba(242, 234, 210, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 48px;
  align-items: center;
}

.about-section {
  min-height: 410px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 9, 7, 0.72), rgba(8, 9, 7, 0.76)),
    url("../images/DSC_0203-min.jpg") center / cover;
}

.about-highlight {
  display: grid;
  gap: 48px;
}

.about-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 36px;
  text-align: center;
  text-transform: none;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px;
  align-items: start;
}

.about-feature {
  text-align: center;
}

.about-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
}

.about-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-feature p {
  max-width: 560px;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.34;
}

.partner-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(217, 164, 65, 0.1), transparent 38%),
    linear-gradient(240deg, rgba(184, 50, 42, 0.14), transparent 42%),
    var(--bg-2);
}

.partner-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  align-items: center;
}

.partner-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.08;
  text-transform: uppercase;
}

.partner-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.partner-copy .btn {
  margin-top: 28px;
}

.partner-cards {
  display: grid;
  gap: 16px;
}

.partner-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 178px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 7, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.partner-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 6px;
  object-fit: cover;
}

.partner-card div {
  display: grid;
  align-content: center;
}

.partner-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
}

.partner-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.partner-card span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 4px;
  color: var(--amber);
  background: rgba(217, 164, 65, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(24, 27, 22, 0.62), rgba(8, 9, 7, 0));
}

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

.gallery-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(184, 50, 42, 0);
  transition: background 0.2s ease;
}

.gallery-item:hover::after {
  background: rgba(184, 50, 42, 0.16);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

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

.contact-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 9, 7, 0.84), rgba(8, 9, 7, 0.92)),
    url("../images/DSC_0217.jpg") center / cover fixed;
}

.contact-grid {
  grid-template-columns: 0.86fr 1.14fr;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-list a,
.contact-list div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 15, 0.78);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--soft);
  font-size: 13px;
}

.contact-list strong {
  margin-top: 6px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  border-color: rgba(217, 164, 65, 0.38);
  background: rgba(217, 164, 65, 0.08);
}

.map-panel {
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(0.85) invert(0.9) contrast(0.92);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050604;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 106px;
  color: var(--soft);
  font-size: 14px;
}

.footer-logo img {
  width: 94px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:last-child {
  color: var(--amber);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(1100px, 100%);
  max-height: 86svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(8, 9, 7, 0.72);
  font-size: 34px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .phone-link {
    display: none;
  }

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

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

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

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 6, 0.98);
    transform: translateY(-115%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 18px;
  }

  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .info-highlight {
    padding: 62px 0;
  }

  .booking-panel {
    max-width: 720px;
  }

  .section {
    padding: 76px 0;
  }

  .section-head h2,
  .booking-panel-copy h2,
  .partner-copy h2,
  .contact-copy h2 {
    font-size: 38px;
  }

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

  .gallery-grid {
    grid-auto-rows: 190px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 82px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 7, 5, 0.94), rgba(6, 7, 5, 0.66)),
      linear-gradient(0deg, rgba(8, 9, 7, 0.98) 0%, rgba(8, 9, 7, 0.2) 54%, rgba(8, 9, 7, 0.58) 100%);
  }

  .hero-content {
    padding: 110px 0 42px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .info-highlight {
    padding: 48px 0;
  }

  .info-highlight::before {
    background-size: 260px auto;
  }

  .booking-panel {
    gap: 18px;
    margin-bottom: 0;
    padding: 0;
  }

  .booking-panel-copy h2 {
    font-size: 34px;
  }

  .info-block {
    padding: 22px;
  }

  .info-icon {
    width: 54px;
    height: 54px;
  }

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

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-card img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .hero-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-status div {
    min-height: 68px;
    padding: 12px 10px;
  }

  .hero-status strong {
    font-size: 18px;
  }

  .hero-status span {
    font-size: 12px;
  }

  .room-card-soon,
  .gallery-item.wide {
    grid-column: auto;
  }

  .room-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .about-section {
    min-height: auto;
  }

  .about-highlight {
    gap: 34px;
  }

  .about-feature p,
  .info-block p,
  .info-note {
    font-size: 16px !important;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 26px 0;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-status {
    display: none;
  }
}
