:root {
  --blue: #078fca;
  --blue-mid: #066fa8;
  --blue-deep: #063a67;
  --blue-pale: #f4fbff;
  --gold: #ffd21a;
  --white: #ffffff;
  --text: #063a67;
  --muted: rgba(6, 58, 103, 0.72);
  --line: rgba(6, 58, 103, 0.14);
  --shadow: 0 24px 70px rgba(6, 58, 103, 0.14);
  --radius: 1.25rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -5rem;
  left: 1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue-deep);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.image-cover {
  background-color: var(--blue-deep);
  background-image: linear-gradient(0deg, rgba(6, 58, 103, .32), rgba(6, 58, 103, .04)), var(--image);
  background-position: center, var(--image-position, center);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  width: clamp(190px, 20vw, 238px);
  aspect-ratio: 2.55 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  display: block;
  border-radius: .65rem;
  background: var(--white);
  text-decoration: none;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.3vw, 2rem);
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: .45rem 0;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--blue-deep); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }

.button {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .72rem 1.15rem;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: .93rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(6, 58, 103, .14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(6, 58, 103, .2);
}
.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--blue-deep);
}
.button.gold:hover { background: var(--white); }
.button.ghost {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.button.ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-deep);
}
.button.outline {
  background: transparent;
  color: var(--blue-deep);
  box-shadow: none;
}
.button.outline:hover {
  background: var(--blue-deep);
  color: var(--white);
}
.header-book { margin-left: .3rem; }
.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-deep);
  cursor: pointer;
}
.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
}
.mobile-nav { display: none; }

/* Shared type and layout */
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 2.4rem;
  height: 2px;
  content: "";
  background: var(--gold);
}
.section-heading { margin-bottom: 2.2rem; }
.section-heading h2,
.about-copy h2,
.amenities-copy h2,
.contact-copy h2,
.detail-copy h2,
.page-hero h1,
.empty-state h1 {
  margin: .7rem 0 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}
.section-heading h2,
.about-copy h2,
.amenities-copy h2,
.contact-copy h2,
.detail-copy h2 {
  font-size: clamp(2.45rem, 5vw, 4.7rem);
}
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.split-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--blue-mid);
  font-weight: 850;
  text-decoration: none;
}
.text-link span { color: var(--gold); }
.text-link:hover { color: var(--blue-deep); }

/* Home */
.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 88px));
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
}
.hero.image-cover {
  background-image: linear-gradient(90deg, rgba(6, 58, 103, .94) 0%, rgba(6, 111, 168, .62) 52%, rgba(7, 143, 202, .16) 100%), var(--image);
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(6, 58, 103, .34), transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(5.5rem, 12vw, 9rem) 0 clamp(4.5rem, 8vw, 7rem);
}
.hero .eyebrow { color: var(--white); }
.hero h1 {
  max-width: 780px;
  margin: 1rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .89;
}
.hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.hero-sun {
  position: absolute;
  z-index: 1;
  right: max(1.5rem, calc((100vw - 1180px) / 2));
  bottom: clamp(3rem, 8vw, 6rem);
  width: clamp(70px, 10vw, 132px);
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(255, 210, 26, .1);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid > div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: .15rem;
  padding: 1.5rem 2rem;
  border-left: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid strong {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -.03em;
}
.trust-grid span { color: var(--muted); font-size: .88rem; }

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}
.about-image {
  min-height: clamp(420px, 54vw, 650px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-copy h2 { max-width: 570px; }
.about-copy p {
  max-width: 560px;
  margin: 1.4rem 0 1.7rem;
  color: var(--muted);
}

.rooms-section { background: var(--blue-pale); }
.room-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 31%);
  gap: 1rem;
  overflow-x: auto;
  padding: .25rem .25rem 1.2rem;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--blue) transparent;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.room-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-deep);
  text-decoration: none;
  scroll-snap-align: start;
  box-shadow: 0 14px 40px rgba(6, 58, 103, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.room-image {
  position: relative;
  min-height: 255px;
  overflow: hidden;
}
.room-image.image-cover {
  background-image: linear-gradient(0deg, rgba(6, 58, 103, .5), rgba(6, 58, 103, .02) 66%), var(--image);
}
.room-label,
.room-price {
  position: absolute;
  z-index: 1;
  padding: .48rem .7rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 850;
}
.room-label {
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--blue-deep);
}
.room-price {
  right: 1rem;
  bottom: 1rem;
  background: var(--gold);
  color: var(--blue-deep);
}
.room-content {
  display: grid;
  gap: .8rem;
  flex: 1;
  padding: 1.35rem;
}
.room-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.room-content p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}
.room-content .text-link { margin-top: auto; }

.amenities-section {
  background: var(--blue-deep);
  color: var(--white);
}
.amenities-section .eyebrow { color: var(--white); }
.amenities-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}
.amenities-copy p {
  max-width: 480px;
  color: rgba(255, 255, 255, .72);
}
.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}
.amenity-list li {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.24rem;
}
.amenity-list li:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .18); }
.amenity-list span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 900;
}

.reviews-section { padding-top: 2rem; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-grid blockquote {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.review-grid blockquote:first-child { border-top: 5px solid var(--gold); }
.review-grid p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  letter-spacing: -.035em;
  line-height: 1.22;
}
.review-grid cite {
  margin-top: 1.4rem;
  color: var(--blue);
  font-size: .84rem;
  font-style: normal;
  font-weight: 850;
}

/* Page headers */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(4rem, 7vw, 6rem);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
}
.page-hero::after {
  position: absolute;
  right: -5rem;
  top: -8rem;
  width: 24rem;
  aspect-ratio: 1;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: .7;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  align-items: end;
  gap: 3rem;
}
.page-hero .eyebrow { color: var(--white); }
.page-hero h1 {
  max-width: 800px;
  font-size: clamp(3rem, 6.6vw, 6.4rem);
}
.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

/* Accommodation */
.accommodation-section { background: var(--white); }
.room-gallery-section { background: var(--white); }
.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(175px, 18vw, 250px);
  gap: .75rem;
}
.room-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--blue-pale);
}
.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.room-gallery-item:hover img { transform: scale(1.025); }
.room-gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.room-gallery-item span {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  min-width: 2.25rem;
  padding: .35rem .48rem;
  border-radius: 999px;
  background: rgba(6, 58, 103, .78);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
}

.room-details-section {
  padding-top: 1rem;
  background: var(--white);
}
.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}
.detail-copy h2 { max-width: 700px; }
.notice {
  margin: 1.5rem 0;
  padding: 1.2rem;
  border-left: 4px solid var(--gold);
  background: var(--blue-pale);
  color: var(--muted);
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--line);
}
.fact-grid > div {
  min-height: 125px;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1.1rem;
  background: var(--white);
}
.fact-grid span {
  color: var(--blue);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fact-grid strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}
.detail-copy h3 {
  margin: 2.4rem 0 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}
.detail-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-amenities li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}
.detail-amenities li::before {
  position: absolute;
  top: .65rem;
  left: 0;
  width: .45rem;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}
.booking-card {
  position: sticky;
  top: 112px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--blue-pale);
}
.booking-card > span,
.booking-card > small {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}
.booking-card > strong {
  display: block;
  margin: .2rem 0;
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}
.booking-card p {
  margin: 1.3rem 0;
  color: var(--muted);
}
.booking-card .button { width: 100%; }
.phone-link {
  display: block;
  margin-top: 1rem;
  color: var(--blue-deep);
  font-weight: 850;
  text-align: center;
}

/* Contact */
.contact-band,
.contact-section {
  background: var(--blue-deep);
  color: var(--white);
}
.contact-band { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.contact-section { padding-top: clamp(4.5rem, 8vw, 7rem); }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}
.contact-copy .eyebrow { color: var(--white); }
.contact-copy h2 { max-width: 560px; }
.contact-copy > p {
  max-width: 500px;
  color: rgba(255, 255, 255, .72);
}
.contact-lines {
  display: grid;
  gap: .55rem;
  margin-top: 2rem;
}
.contact-lines a,
.contact-lines span {
  color: var(--white);
  font-size: .95rem;
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: .25rem;
}
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  gap: .4rem;
}
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--blue-mid);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: .65rem;
  background: var(--blue-pale);
  color: var(--blue-deep);
  outline: none;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue); }
.enquiry-form .button { justify-self: start; }
.form-note {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  margin: 0;
  color: var(--blue-mid);
  font-size: .9rem;
  font-weight: 750;
}

/* Footer and 404 */
.site-footer {
  background: var(--white);
  color: var(--blue-deep);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 3rem;
  padding: 4rem 0 2.5rem;
}
.footer-intro .brand { width: 220px; }
.footer-intro p {
  max-width: 280px;
  margin: 1rem 0 0;
  color: var(--muted);
}
.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: .65rem;
}
.footer-nav a,
.footer-contact a {
  color: var(--blue-deep);
  font-weight: 750;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--blue); }
.footer-contact span { color: var(--muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}
.empty-state {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 7rem 0;
  text-align: center;
}
.empty-state .eyebrow { justify-content: center; }
.empty-state h1 { font-size: clamp(3rem, 7vw, 6rem); }
.empty-state p { color: var(--muted); }
.empty-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 1.5rem;
}

@media (max-width: 1020px) {
  .desktop-nav { gap: 1rem; }
  .header-book { display: none; }
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .room-rail { grid-auto-columns: minmax(300px, 47%); }
  .room-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid blockquote { min-height: 190px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 2rem, 1180px); }
  .header-inner { min-height: 76px; }
  .brand { width: clamp(175px, 45vw, 210px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-nav.open {
    display: grid;
    gap: .15rem;
    padding-bottom: 1rem;
  }
  .mobile-nav a {
    padding: .8rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--blue-deep);
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-nav .button {
    margin-top: .65rem;
    border-bottom: 0;
    color: var(--white);
  }
  .hero { min-height: min(720px, calc(100svh - 76px)); }
  .hero.image-cover {
    background-image: linear-gradient(0deg, rgba(6, 58, 103, .88), rgba(6, 111, 168, .42)), var(--image);
  }
  .hero h1 { font-size: clamp(3.25rem, 13vw, 5.4rem); }
  .hero-sun { display: none; }
  .about-layout,
  .amenities-layout,
  .page-hero-inner,
  .room-detail-layout,
  .contact-layout,
  .footer-main { grid-template-columns: 1fr; }
  .about-image { min-height: min(115vw, 560px); }
  .about-copy { padding-top: 1rem; }
  .split-heading { display: grid; align-items: start; }
  .split-heading .button { justify-self: start; }
  .page-hero-inner { gap: 1.5rem; }
  .page-hero p { max-width: 580px; }
  .booking-card { position: static; }
  .footer-main { gap: 2rem; }
}

@media (max-width: 620px) {
  .section { padding: 4.2rem 0; }
  .hero-content { padding: 5rem 0 4.5rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div,
  .trust-grid > div:last-child {
    min-height: 84px;
    padding: 1rem 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .room-grid { grid-template-columns: 1fr; }
  .room-rail { grid-auto-columns: 86%; }
  .room-image { min-height: 230px; }
  .amenity-list { grid-template-columns: 1fr; }
  .amenity-list li:nth-child(odd) { border-right: 0; }
  .room-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 165px;
    gap: .55rem;
  }
  .room-gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid > div { min-height: 100px; }
  .detail-amenities { grid-template-columns: 1fr; }
  .enquiry-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .enquiry-form .button { width: 100%; }
  .footer-bottom { display: grid; }
}

@media (max-width: 390px) {
  .shell { width: min(100% - 1.25rem, 1180px); }
  .brand { width: 168px; }
  .menu-toggle { width: 42px; height: 42px; }
  .room-rail { grid-auto-columns: 92%; }
}
