@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700");

:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --ink: #2a303b;
  --muted: #636a76;
  --line: #d9e4de;
  --forest: #0e2737;
  --teal: #1cc3b2;
  --clay: #1cc3b2;
  --gold: #d5a84f;
  --soft: #e9f2ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition-duration: 500ms;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(24, 33, 31, 0.06);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 14px 5vw;
  position: sticky;
  top: 0;
  z-index: 50;
}

.mobile-menu-toggle {
  align-items: center;
  background: var(--forest);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  width: 46px;
}

.mobile-menu-toggle span {
  background: #ffffff;
  display: block;
  height: 2px;
  width: 22px;
}

.brand,
.footer-logo {
  align-items: center;
  display: inline-flex;
  gap: 14px;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  width: clamp(150px, 15vw, 210px);
}

.muted {
  color: var(--muted);
}

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

.site-nav a,
.room-menu-button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #31423b;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  min-height: 46px;
  padding: 0 13px;
  line-height: 46px;
}

.site-nav a:hover,
.site-nav a.active,
.room-menu-button:hover,
.nav-item:focus-within .room-menu-button,
.nav-item:hover .room-menu-button {
  background: var(--soft);
  color: var(--forest);
}

.nav-item {
  position: relative;
}

.submenu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 33, 31, 0.14);
  display: grid;
  gap: 4px;
  left: 0;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  padding: 8px;
  position: absolute;
  top: 100%;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
  z-index: 80;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.submenu a {
  border-radius: 6px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  min-height: auto;
  padding: 0 12px;
  white-space: nowrap;
}

.room-menu-button::after {
  content: "+";
  margin-left: 8px;
}

.nav-item.submenu-open .room-menu-button::after,
.nav-item:hover .room-menu-button::after,
.nav-item:focus-within .room-menu-button::after {
  content: "-";
}

.button {
  align-items: center;
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(20, 56, 47, 0.16);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  height: 44px;
  justify-content: center;
  line-height: 44px;
  min-width: 138px;
  padding: 0 34px;
  text-transform: capitalize;
  transition-duration: 500ms;
}

.primary {
  background: #1cc3b2;
  color: #fff;
}

.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
}

.button:hover,
.button:focus {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

.button::after,
.room-link::after {
  content: ">";
  font-size: 13px;
  line-height: 1;
  margin-left: 10px;
}

.hero,
.page-hero {
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}

.hero {
  align-items: flex-end;
  background-image: url("img/web/index-hero.jpg");
  display: flex;
  min-height: 650px;
  padding: 104px 5vw 76px;
}

.page-hero {
  padding: 94px 5vw 58px;
}

.rooms-hero,
.room-page-hero {
  background-image: url("img/web/rooms-hero.jpg");
}

.deluxe-twin-hero {
  background-image: url("img/web/deluxe-twin-5.jpg");
}

.deluxe-king-hero {
  background-image: url("img/web/deluxe-king-2.jpg");
}

.super-deluxe-hero {
  background-image: url("img/web/super-deluxe-main.jpg");
}

.executive-triple-hero {
  background-image: url("img/web/executive-triple-main.jpg");
}

.deluxe-suite-hero {
  background-image: url("img/web/deluxe-suite-4.jpg");
}

.executive-suite-hero {
  background-image: url("img/web/executive-suite-3.jpg");
}

.gallery-hero {
  background-image: url("img/web/gallery-hero.jpg");
}

.privacy-hero {
  background-image: url("img/web/privacy-hero.jpg");
}

.career-hero {
  background-image: url("img/web/career-hero.jpg");
}

.hero::before,
.page-hero::before {
  background: linear-gradient(90deg, rgba(14, 39, 55, 0.86), rgba(14, 39, 55, 0.38));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content,
.page-hero > * {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

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

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f4c77b;
}

h1,
h2,
h3 {
  color: #2a303b;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.28;
  margin-top: 0;
}

p {
  margin: 0 0 14px;
}

h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  line-height: 1.28;
  margin-bottom: 16px;
  text-transform: capitalize;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.hero h1 {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.22;
  margin-bottom: 22px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.32;
}

.hero p,
.page-hero p,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

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

.section {
  padding: 76px 5vw;
}

.split {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

.content-copy {
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.section-heading a {
  color: var(--teal);
  font-weight: 500;
  white-space: nowrap;
}

.room-preview,
.gallery-section {
  background: var(--soft);
}

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

.room-card,
.facility-card,
.policy-block,
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.room-card,
.gallery-item,
.facility-card,
.policy-block,
.contact-card {
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.room-card:hover,
.gallery-item:hover {
  border-color: rgba(28, 195, 178, 0.46);
  box-shadow: 0 20px 46px rgba(24, 33, 31, 0.12);
  transform: translateY(-6px);
}

.room-card img,
.gallery-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.room-card:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.room-card > div,
.facility-card,
.policy-block {
  padding: 24px;
}

.room-meta {
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.room-card dl {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 18px 0 0;
  padding-top: 16px;
}

dt,
.detail-grid span,
.footer-grid span,
.contact-card span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.room-link {
  align-items: center;
  background: #1cc3b2;
  border-radius: 3px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  line-height: 40px;
  margin-top: 18px;
  min-width: 150px;
  padding: 0 24px;
  transition-duration: 500ms;
}

.room-link:hover,
.room-link:focus {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

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

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-list strong {
  color: #4d5968;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.contact-list span {
  margin-bottom: 4px;
}

.contact-list a {
  font-weight: 400;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 430px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 430px;
  width: 100%;
}

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

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-large img {
  aspect-ratio: 8 / 5;
}

.gallery-button {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.gallery-button::after {
  background: rgba(17, 24, 22, 0.48);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 300ms ease;
}

.gallery-button::before {
  align-items: center;
  background: #1cc3b2;
  border-radius: 50%;
  color: #ffffff;
  content: "+";
  display: inline-flex;
  font-size: 28px;
  font-weight: 300;
  height: 54px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -40%);
  transition: opacity 300ms ease, transform 300ms ease;
  width: 54px;
  z-index: 1;
}

.gallery-button:hover::after,
.gallery-button:focus::after,
.gallery-button:hover::before,
.gallery-button:focus::before {
  opacity: 1;
}

.gallery-button:hover::before,
.gallery-button:focus::before {
  transform: translate(-50%, -50%);
}

.gallery-item figcaption {
  background: #ffffff;
  color: var(--forest);
  font-weight: 500;
  padding: 14px 16px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  margin: 0;
}

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

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

.lightbox-panel {
  max-width: 1020px;
  position: relative;
  width: 100%;
}

.lightbox.is-open .lightbox-panel {
  animation: lightboxIn 260ms ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lightbox img {
  border-radius: 8px;
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.lightbox-caption {
  color: #fff;
  font-weight: 500;
  margin-top: 12px;
}

.lightbox-close {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 999px;
  color: var(--forest);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: -10px;
  top: -14px;
  width: 42px;
}

.lightbox-control {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  height: 46px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
  width: 46px;
  z-index: 2;
}

.lightbox-control:hover,
.lightbox-control:focus {
  background: #1cc3b2;
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: -18px;
}

.lightbox-next {
  right: -18px;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}

.room-detail-layout,
.contact-layout,
.footer-layout {
  min-width: 0;
}

.room-detail-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
}

.room-detail-layout > img {
  border-radius: 8px;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.room-visual {
  min-width: 0;
  position: sticky;
  top: 102px;
}

.room-main-button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.room-main-button::after {
  align-items: center;
  background: #1cc3b2;
  border-radius: 50%;
  color: #ffffff;
  content: "+";
  display: inline-flex;
  font-size: 28px;
  font-weight: 300;
  height: 56px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -35%);
  transition: opacity 300ms ease, transform 300ms ease;
  width: 56px;
}

.room-main-button:hover::after,
.room-main-button:focus::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.room-main-button img {
  border-radius: 8px;
  height: 100%;
  max-height: 620px;
  min-height: 430px;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.room-main-button:hover img,
.room-main-button:focus img {
  transform: scale(1.04);
}

.room-visual-caption {
  color: var(--forest);
  font-size: 14px;
  font-weight: 400;
  margin-top: 14px;
}

.room-thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.room-thumb {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 300ms ease, transform 300ms ease;
}

.room-thumb img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.room-thumb.is-active,
.room-thumb:hover,
.room-thumb:focus {
  border-color: #1cc3b2;
  transform: translateY(-2px);
}

.room-detail-content {
  min-width: 0;
}

.room-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.room-tab {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
  padding: 0 12px;
}

.room-tab.is-active,
.room-tab:hover,
.room-tab:focus {
  border-bottom-color: #1cc3b2;
  color: var(--forest);
}

.room-panel {
  display: none;
}

.room-panel.is-active {
  animation: roomPanelIn 240ms ease;
  display: block;
}

@keyframes roomPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0;
}

.detail-grid div,
.feature-list li,
.facility-list li {
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.feature-list,
.facility-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li,
.facility-list li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  min-height: 52px;
  padding-left: 36px;
  position: relative;
}

.feature-list li::before,
.facility-list li::before {
  background: #1cc3b2;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 16px;
  position: absolute;
  top: 22px;
  width: 8px;
}

.facility-card h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.room-booking-strip {
  align-items: center;
  background: var(--forest);
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 28px;
  padding: 22px;
}

.room-booking-strip span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.room-booking-strip strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.room-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.room-booking-actions .button {
  height: 42px;
  line-height: 42px;
  min-width: 132px;
  padding: 0 24px;
}

.room-booking-actions .secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.text-stack {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-width: 980px;
}

.site-footer {
  background: #111816;
  color: #fff;
  padding: 70px 5vw 26px;
}

.footer-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 0.45fr);
}

.site-footer .brand-logo {
  filter: invert(1) brightness(2);
  opacity: 0.94;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin: 16px 0 18px;
}

.footer-contact p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 2px;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact a {
  font-size: 15px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition-duration: 500ms;
  width: 42px;
}

.social-icon::before {
  background: currentColor;
  content: "";
  display: block;
  height: 20px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 20px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.social-icon:hover,
.social-icon:focus {
  background: #1cc3b2;
  border-color: #1cc3b2;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-facebook::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v7h4v-7h3l1-4h-4V9c0-.7.3-1 1-1z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v7h4v-7h3l1-4h-4V9c0-.7.3-1 1-1z'/%3E%3C/svg%3E");
}

.social-instagram::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10c3 0 5 2 5 5v10c0 3-2 5-5 5H7c-3 0-5-2-5-5V7c0-3 2-5 5-5zm0 4c-.7 0-1 .3-1 1v10c0 .7.3 1 1 1h10c.7 0 1-.3 1-1V7c0-.7-.3-1-1-1H7zm5 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm4.5-1.8a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10c3 0 5 2 5 5v10c0 3-2 5-5 5H7c-3 0-5-2-5-5V7c0-3 2-5 5-5zm0 4c-.7 0-1 .3-1 1v10c0 .7.3 1 1 1h10c.7 0 1-.3 1-1V7c0-.7-.3-1-1-1H7zm5 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm4.5-1.8a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4z'/%3E%3C/svg%3E");
}

.social-tripadvisor::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5c2.2 0 4.2.4 5.9 1.2L21 4.5V8c1.2 1.2 2 2.8 2 4.6a5.4 5.4 0 0 1-10.2 2.5L12 14l-.8 1.1A5.4 5.4 0 0 1 1 12.6C1 10.8 1.8 9.2 3 8V4.5l3.1 1.7C7.8 5.4 9.8 5 12 5zM6.4 10a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2zm11.2 0a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2zM6.4 11.8a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6zm11.2 0a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5c2.2 0 4.2.4 5.9 1.2L21 4.5V8c1.2 1.2 2 2.8 2 4.6a5.4 5.4 0 0 1-10.2 2.5L12 14l-.8 1.1A5.4 5.4 0 0 1 1 12.6C1 10.8 1.8 9.2 3 8V4.5l3.1 1.7C7.8 5.4 9.8 5 12 5zM6.4 10a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2zm11.2 0a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2zM6.4 11.8a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6zm11.2 0a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6z'/%3E%3C/svg%3E");
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links h3 {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 48px;
  padding-top: 20px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    padding: 10px 20px;
  }

  .site-nav {
    background: var(--surface);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 8px;
    width: 100%;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-nav a,
  .room-menu-button {
    border-radius: 6px;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 12px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .submenu {
    border: 0;
    border-left: 3px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    display: none;
    margin: 0 0 8px 12px;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
    width: 100%;
  }

  .nav-item.submenu-open .submenu,
  .nav-item:focus-within .submenu {
    display: grid;
  }

  .submenu a {
    line-height: 42px;
    white-space: normal;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

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

  .page-hero h1 {
    font-size: 28px;
  }

  .room-grid,
  .gallery-grid,
  .detail-grid,
  .feature-list,
  .facility-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-layout,
  .room-detail-layout,
  .footer-layout {
    display: block;
  }

  .content-copy,
  .map-frame,
  .facility-card,
  .footer-links {
    margin-top: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }

  .room-detail-layout > img {
    max-height: 430px;
  }

  .room-visual {
    position: static;
  }

  .room-main-button img {
    max-height: 430px;
    min-height: 320px;
  }

  .room-detail-content {
    margin-top: 28px;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .hero {
    min-height: 590px;
  }

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

  .page-hero h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 30px;
  }

  .facility-card h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    max-height: 38px;
    width: 132px;
  }

  .hero,
  .page-hero {
    padding: 72px 20px 46px;
  }

  .hero {
    min-height: 560px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 20px;
  }

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

  .page-hero h1 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }

  .section {
    padding: 54px 20px;
  }

  .room-grid,
  .gallery-grid,
  .detail-grid,
  .feature-list,
  .facility-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .room-card > div,
  .facility-card,
  .policy-block,
  .contact-card {
    padding: 20px;
  }

  .content-copy {
    padding-left: 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .lightbox {
    padding: 14px;
  }

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

  .lightbox-control {
    height: 40px;
    width: 40px;
  }

  .room-tabs {
    gap: 4px;
  }

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

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

  .room-booking-strip,
  .room-booking-actions,
  .room-booking-actions .button {
    width: 100%;
  }

  .copyright {
    margin-top: 32px;
  }
}
