/* Platinum Hotel & Cafe — Hotelier Pre-Entry Edition */
:root {
  --bg: #0d0b08;
  --bg-soft: #15120e;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --gold: #f5c84c;
  --gold-soft: #ffe48a;
  --cream: #f6efe1;
  --ink: #17130d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 200, 76, 0.10), transparent 28rem),
    radial-gradient(circle at 86% 35%, rgba(245, 200, 76, 0.10), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 999;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.pre-entry {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.pre-entry-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.pre-entry-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
}

.pre-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.94), rgba(13, 11, 8, 0.62), rgba(13, 11, 8, 0.92)),
    linear-gradient(180deg, rgba(13, 11, 8, 0.18), #0d0b08);
}

.pre-entry-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100svh - 48px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: 1.5rem 0;
}

.pre-entry-top,
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.entry-logo,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.entry-logo img,
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(245, 200, 76, 0.10);
}

.entry-logo span,
.brand-copy {
  display: grid;
  line-height: 1.15;
}

.entry-logo strong,
.brand-copy strong {
  color: #ffe9a3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.entry-logo small,
.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.25rem;
}

.entry-map {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  font-weight: 850;
}

.pre-entry-content {
  align-self: center;
  max-width: 850px;
}

.kicker,
.section-kicker {
  margin: 0;
  color: #ffe9a3;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pre-entry h1,
.hero h2,
.section-head h2,
.cafe-inner h2,
.contact-inner h2,
.faq-shell h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 1000;
}

.pre-entry p:not(.kicker),
.hero-copy > p,
.section-head > p,
.contact-inner p,
.faq-shell p,
.glass-card p {
  color: var(--muted);
  line-height: 1.75;
}

.pre-entry-content > p:not(.kicker) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.entry-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.95rem 1.28rem;
  font-weight: 950;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #141007;
  box-shadow: 0 18px 45px rgba(245, 200, 76, 0.22);
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(245, 200, 76, 0.30);
}

.btn-secondary,
.btn-ghost {
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.btn-ghost {
  color: #ffe9a3;
  border-color: rgba(245, 200, 76, 0.35);
}

.btn-secondary:hover,
.btn-ghost:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: #111;
}

.entry-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
}

.entry-highlights span {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: #ffe9a3;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 11, 8, 0.84);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  gap: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: #ffe9a3;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  display: grid;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.96), rgba(13, 11, 8, 0.76), rgba(13, 11, 8, 0.92)),
    linear-gradient(180deg, transparent, #0d0b08);
}

.hero-inner,
.trust-strip,
.booking-panel,
.section,
.cafe-inner,
.contact-inner,
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy > p {
  max-width: 650px;
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-facts,
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-facts div,
.feature-row span {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  margin-bottom: 0.45rem;
}

.hero-facts strong,
.feature-row span {
  color: #ffe9a3;
  font-weight: 950;
}

.feature-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  background: #111;
}

.feature-badge {
  position: absolute;
  top: 2rem;
  left: -0.8rem;
  z-index: 4;
  border: 1px solid rgba(245, 200, 76, 0.28);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(0, 0, 0, 0.76);
  color: #ffe9a3;
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-row {
  margin-top: 1rem;
}

.feature-row span {
  text-align: center;
  font-size: 0.82rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
}

.trust-card {
  display: grid;
  gap: 0.25rem;
  min-height: 108px;
  border-radius: 20px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.20);
}

.trust-card span {
  font-size: 1.35rem;
}

.trust-card strong {
  font-size: 0.98rem;
}

.trust-card small {
  color: rgba(255, 255, 255, 0.52);
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.55rem;
  border: 1px solid rgba(245, 200, 76, 0.20);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(245, 200, 76, 0.13), rgba(255, 255, 255, 0.04), transparent);
}

.booking-panel h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.booking-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.booking-tags span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.88rem;
  background: rgba(0, 0, 0, 0.20);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section.light {
  width: 100%;
  max-width: none;
  background: var(--cream);
  color: var(--ink);
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-head.centered {
  max-width: 760px;
  display: block;
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.cafe-inner h2,
.contact-inner h2,
.faq-shell h2 {
  font-size: clamp(2.25rem, 5vw, 4.55rem);
}

.section-head > p,
.section-head.centered p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.light .section-head > p,
.light .section-head.centered p:last-child {
  color: rgba(23, 19, 13, 0.62);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.55rem;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.room-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

.room-card:hover .room-image img {
  transform: scale(1.055);
}

.room-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.price-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 3;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  background: var(--gold);
  color: #151007;
  font-size: 0.8rem;
  font-weight: 1000;
}

.room-body {
  padding: 1.55rem;
}

.room-body h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.1;
}

.room-body p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.room-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.35rem 0 1.45rem;
}

.room-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 0.65rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.facility-grid,
.why-grid,
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.08rem;
}

.facility-card,
.why-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.facility-card:hover,
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.13);
}

.facility-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.facility-card div,
.why-card {
  padding: 1.25rem;
}

.facility-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: var(--ink);
  color: var(--gold);
  font-size: 1.3rem;
}

.facility-card h3,
.why-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

.facility-card p,
.why-card p {
  margin: 0.45rem 0 0;
  color: rgba(23, 19, 13, 0.62);
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 245px;
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-grid .gallery-main {
  grid-row: span 2;
}

.gallery-grid img,
.nearby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.gallery-grid figure:hover img,
.nearby-card:hover img {
  transform: scale(1.075);
}

.gallery-grid figcaption,
.nearby-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: fit-content;
  max-width: calc(100% - 2rem);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
  color: #fff;
  font-weight: 900;
}

.gallery-grid figure::after,
.nearby-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82));
}

.cafe-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cafe-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cafe-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.40;
}

.cafe-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 11, 8, 0.96), rgba(13, 11, 8, 0.86), rgba(13, 11, 8, 0.52));
}

.cafe-inner,
.contact-inner,
.faq-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.cafe-inner {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.glass-card,
.faq-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.6rem 0;
}

.check-grid span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.20);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.why-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.why-card span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: #bd7d10;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.nearby-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.nearby-card img {
  min-height: 230px;
}

.faq-section {
  padding-top: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.15rem 1.25rem;
  background: rgba(0, 0, 0, 0.22);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 1000;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  background: var(--cream);
  color: var(--ink);
}

.contact-inner {
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.contact-inner p {
  color: rgba(23, 19, 13, 0.62);
  margin-top: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.8rem;
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 22px;
  padding: 1rem;
  transition: transform 0.22s ease;
}

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

.contact-link.primary {
  background: var(--ink);
  color: #fff;
}

.contact-link span {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(245, 200, 76, 0.14);
  color: var(--gold);
  font-weight: 1000;
}

.contact-link small {
  display: block;
  color: rgba(23, 19, 13, 0.58);
  margin-top: 0.25rem;
}

.contact-link.primary small {
  color: rgba(255, 255, 255, 0.58);
}

.footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.footer img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-copy {
  display: grid;
  gap: 0.25rem;
}

.footer-copy p {
  margin: 0;
}

.site-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.44);
}

.site-credit a {
  color: #ffe9a3;
  font-weight: 900;
}

.site-credit a:hover {
  text-decoration: underline;
}

.mobile-action-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: none;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 8, 5, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-action-bar a {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 0.7rem;
  text-align: center;
  color: #fff;
  font-weight: 1000;
}

.mobile-action-bar .gold {
  background: var(--gold);
  color: #141007;
  border-color: transparent;
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.is-open {
    position: fixed;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.55rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(13, 11, 8, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-inner,
  .booking-panel,
  .cafe-inner,
  .contact-inner,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .facility-grid,
  .nearby-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

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

  .feature-card img {
    height: 410px;
  }
}

@media (max-width: 680px) {
  .navbar,
  .pre-entry-inner,
  .hero-inner,
  .trust-strip,
  .booking-panel,
  .section,
  .cafe-inner,
  .contact-inner,
  .footer {
    width: min(100% - 24px, var(--max));
  }

  .navbar {
    min-height: 70px;
  }

  .entry-logo small,
  .brand-copy small {
    display: none;
  }

  .pre-entry h1 {
    font-size: clamp(2.75rem, 13vw, 4.35rem);
  }

  .hero h2,
  .section-head h2,
  .cafe-inner h2,
  .contact-inner h2,
  .faq-shell h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .entry-actions,
  .hero-actions {
    display: grid;
  }

  .entry-highlights,
  .hero-facts,
  .feature-row,
  .trust-strip,
  .room-meta,
  .facility-grid,
  .nearby-grid,
  .why-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .feature-card {
    padding: 0.75rem;
    border-radius: 26px;
  }

  .feature-card img {
    height: 320px;
    border-radius: 20px;
  }

  .feature-badge {
    left: 0.8rem;
    top: 1rem;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section.light {
    padding-left: 12px;
    padding-right: 12px;
  }

  .room-image {
    height: 285px;
  }

  .room-body {
    padding: 1.25rem;
  }

  .facility-card img {
    height: 210px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-grid .gallery-main {
    grid-column: auto;
  }

  .nearby-card,
  .nearby-card img {
    min-height: 220px;
  }

  .footer {
    padding-bottom: 5.8rem;
  }

  .mobile-action-bar {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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