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

:root {
  --ink: #121826;
  --muted: #5f6b80;
  --line: #dce4ee;
  --paper: #ffffff;
  --soft: #f3f1ec;
  --brand: #d37436;
  --brand-dark: #8c401b;
  --blue: #1f5fbf;
  --green: #147d4d;
  --red: #b42318;
  --shadow: 0 18px 44px rgba(15, 23, 42, .12);
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.5;
}

a { color: inherit; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: 84px; }

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 92svh;
  color: #fff;
  background: #14100e;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(135deg, rgba(211, 116, 54, .3), rgba(18, 24, 38, .54)),
    linear-gradient(120deg, #17120f, #2d3748);
  transform: scale(1.02);
}

.hero__media.has-image {
  background-position: center;
  background-size: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 17, .86) 0%, rgba(10, 12, 17, .5) 46%, rgba(10, 12, 17, .22) 100%),
    linear-gradient(180deg, rgba(10, 12, 17, .24) 0%, rgba(10, 12, 17, .78) 100%);
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
}

.brand__mark.has-logo {
  padding: 4px;
  background: rgba(255, 255, 255, .16);
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: block;
  max-width: min(48vw, 430px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
}

.topbar__links a {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: .58rem .9rem;
  background: rgba(255, 255, 255, .08);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.topbar__links a.is-active {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .2);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(92svh - 74px);
  margin: 0 auto;
  padding: 7rem 0 5rem;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: #f6b57d;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.8rem;
  line-height: .94;
  letter-spacing: 0;
}

.hero__content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: .78rem 1.05rem;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.button--primary { background: var(--brand); color: #fff; }
.button--primary:hover { filter: brightness(.96); }
.button--ghost { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .32); color: #fff; }
.button--secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.button--full { width: 100%; margin-top: 1rem; }

.status-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  width: min(1180px, calc(100% - 2rem));
  margin: -3rem auto 0;
}

.status-strip article {
  min-height: 102px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.status-strip span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.status-strip strong {
  display: block;
  margin-top: .25rem;
  font-size: 1.7rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 0;
}

.section__head {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0;
}

.section__head p:not(.eyebrow) {
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.section--booking-cta {
  width: min(1180px, calc(100% - 2rem));
  padding-top: 4rem;
}

.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(211, 116, 54, .24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 16%, rgba(211, 116, 54, .2), transparent 30%),
    #151d2d;
  color: #fff;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.booking-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.booking-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .74);
}

.room-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.room-card,
.booking,
.confirmation {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.room-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.room-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e7eb;
}

.room-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__gallery {
  position: absolute;
  left: .65rem;
  right: .65rem;
  bottom: .65rem;
  display: flex;
  gap: .38rem;
  pointer-events: none;
}

.room-card__gallery img {
  width: 48px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24);
}

.room-card__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 24% 20%, rgba(211, 116, 54, .24), transparent 30%),
    linear-gradient(135deg, #f8fafc, #e2e8f0);
  color: var(--brand-dark);
}

.room-card__fallback span {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  font-size: 1.45rem;
  font-weight: 950;
}

.room-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .65rem;
  padding: 1.1rem;
}

.room-card__body::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.room-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .36rem;
}

.room-card__badges span {
  border-radius: 999px;
  background: #fff4e9;
  color: var(--brand-dark);
  padding: .26rem .5rem;
  font-size: .7rem;
  font-weight: 900;
}

.room-card h3 {
  margin: .25rem 0 0;
  font-size: 1.2rem;
}

.room-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
}

.room-card__meta span {
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  padding: .3rem .55rem;
  font-size: .74rem;
  font-weight: 800;
}

.room-card__price {
  color: var(--brand-dark);
  font-size: 1.3rem;
  font-weight: 900;
}

.section--booking {
  width: 100%;
  margin-top: 5rem;
  padding: 5rem max(1rem, calc((100% - 1180px) / 2)) 5.5rem;
  background: #161c2b;
  color: #fff;
}

.section--booking .section__head {
  width: min(1180px, 100%);
}

.section--booking .section__head p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.booking {
  width: min(860px, 100%);
  padding: 1.1rem;
  background: #212a3c;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .18);
}

.booking__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.booking__wide { grid-column: 1 / -1; }

.booking label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .38rem;
}

.booking label span {
  color: rgba(255, 255, 255, .76);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking small {
  color: rgba(255, 255, 255, .54);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.booking input,
.booking select,
.booking textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  font: inherit;
  padding: .65rem .75rem;
}

.booking textarea {
  min-height: 92px;
  resize: vertical;
}

.booking-policies {
  margin-top: .9rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  padding: .82rem .9rem;
}

.booking-policies strong {
  display: block;
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
}

.booking-policies p {
  margin: .25rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
}

.availability,
.guest-form {
  margin-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1rem;
}

.availability h3,
.guest-form h3 {
  margin: 0 0 .75rem;
  font-size: 1rem;
}

.availability__grid {
  display: grid;
  gap: .75rem;
}

.availability-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  padding: .75rem .85rem;
}

.availability-summary strong {
  color: #fff;
}

.availability-summary span {
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
}

.available-room {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: .85rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  padding: .85rem;
}

.available-room:not(.has-image) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.available-room__media {
  width: 104px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.available-room__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.available-room.is-selected {
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
}

.available-room h4,
.available-room p {
  margin: 0;
}

.available-room__body {
  min-width: 0;
}

.available-room p {
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
}

.available-room strong {
  display: block;
  margin-top: .35rem;
  color: #fff;
}

.available-room__capacity {
  display: inline-flex;
  margin-top: .45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  padding: .22rem .5rem;
  font-size: .74rem;
  font-weight: 800;
}

.available-room__fallback {
  display: grid;
  place-items: center;
  color: #fff;
}

.available-room__fallback span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  font-weight: 950;
}

.price-breakdown {
  display: grid;
  gap: .12rem;
  margin-top: .38rem;
}

.price-breakdown strong {
  margin: 0;
}

.price-breakdown span {
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 700;
}

.message {
  margin-top: 1rem;
  border-radius: 8px;
  padding: .8rem .9rem;
  background: rgba(255, 255, 255, .1);
}

.message--error { background: #fee2e2; color: var(--red); }
.message--success { background: #dcfce7; color: var(--green); }

.confirmation {
  width: min(860px, 100%);
  margin-top: 1rem;
  padding: 1rem;
  color: var(--ink);
}

.confirmation h3 {
  margin: 0 0 .55rem;
  font-size: 1.25rem;
}

.confirmation dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .45rem .8rem;
  margin: 1rem 0;
}

.confirmation dt {
  color: var(--muted);
  font-weight: 800;
}

.confirmation dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.reservation-code {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--green);
  padding: .2rem .55rem;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  margin-top: .85rem;
}

.reservation-voucher {
  display: grid;
  gap: 1rem;
}

.voucher__header span {
  color: var(--brand-dark);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.voucher__header h3 {
  margin: .2rem 0 .35rem;
  font-size: 1.45rem;
}

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

.voucher__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  background: #ecfdf5;
  padding: .9rem 1rem;
}

.voucher__code span {
  color: var(--green);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.voucher__code strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .12em;
}

.voucher__grid,
.confirmation .voucher__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin: 0;
}

.voucher__grid dt {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.voucher__grid dd {
  margin: .12rem 0 0;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.management-form {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.management-form h4 {
  margin: 0 0 .75rem;
  font-size: 1rem;
}

.management-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .35rem;
}

.management-form label span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.management-form input,
.management-form select,
.management-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: .65rem .75rem;
}

.management-form textarea {
  min-height: 88px;
  resize: vertical;
}

.management-rooms {
  display: grid;
  gap: .65rem;
  margin-top: .85rem;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .58);
}

.trust-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.trust-card,
.testimonial-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.trust-card strong,
.testimonial-card strong,
.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.trust-card p,
.testimonial-card p,
.contact-card p {
  margin: .5rem 0 0;
  color: var(--muted);
}

.contact-card {
  max-width: 860px;
}

.contact-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  border-radius: 10px;
  background: #f8fafc;
  padding: .75rem;
}

.contact-card li span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card li strong {
  margin-top: .15rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .9rem;
}

.booking-policies a {
  display: inline-flex;
  margin-top: .55rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell {
  background: var(--soft);
}

.legal-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 12, 17, .88), rgba(10, 12, 17, .64)),
    radial-gradient(circle at 82% 10%, rgba(211, 116, 54, .28), transparent 34%),
    #151d2d;
}

.legal-hero__content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.8rem 0 5.4rem;
}

.legal-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: .98;
}

.legal-hero__content p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  width: min(1180px, calc(100% - 2rem));
  margin: -2rem auto 0;
  padding-bottom: 4.5rem;
}

.legal-nav {
  position: sticky;
  top: 1rem;
  align-self: start;
  display: grid;
  gap: .45rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  padding: .75rem;
}

.legal-nav a {
  border-radius: 9px;
  color: var(--muted);
  padding: .65rem .7rem;
  font-size: .88rem;
  font-weight: 850;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus {
  background: #fff4e9;
  color: var(--brand-dark);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.legal-card > span {
  display: inline-flex;
  border-radius: 999px;
  background: #fff4e9;
  color: var(--brand-dark);
  padding: .28rem .58rem;
  font-size: .76rem;
  font-weight: 950;
}

.legal-card h2 {
  margin: .7rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.legal-card h3 {
  margin: 1rem 0 .25rem;
  color: var(--ink);
  font-size: 1rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-notice {
  border-color: #fed7aa;
  background: #fff7ed;
}

.legal-notice strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: .3rem;
}

.skeleton-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
}

.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .74), transparent);
  animation: skeleton-shimmer 1.25s infinite;
}

.skeleton-card span {
  display: block;
  width: 70%;
  height: 14px;
  margin: 1rem;
  border-radius: 999px;
  background: #d8e0ea;
}

.skeleton-card span:nth-child(2) {
  width: 46%;
}

.skeleton-card span:nth-child(3) {
  width: 58%;
}

@keyframes skeleton-shimmer {
  100% { transform: translateX(100%); }
}

.section--policies {
  padding-bottom: 5.5rem;
}

.policies {
  max-width: 860px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(1rem, calc((100% - 1180px) / 2));
  color: var(--muted);
  background: #fff;
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: .2rem 0 0;
}

.footer a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 1.2rem);
  }

  .topbar__links a:first-child {
    display: none;
  }

  .brand__text {
    max-width: calc(100vw - 185px);
  }

  .hero {
    min-height: 86svh;
  }

  .hero__content {
    width: calc(100% - 1.2rem);
    min-height: calc(86svh - 74px);
    padding: 4.5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .status-strip {
    width: calc(100% - 1.2rem);
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }

  .section {
    width: calc(100% - 1.2rem);
    padding-top: 4rem;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .section--booking {
    width: 100%;
    padding: 4rem .6rem;
  }

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

  .availability-summary,
  .voucher__code {
    align-items: flex-start;
    flex-direction: column;
  }

  .available-room__media {
    width: 100%;
    max-height: 220px;
  }

  .available-room .button,
  .contact-actions .button {
    width: 100%;
  }

  .booking > .button--full,
  .guest-form .button--full {
    position: sticky;
    bottom: .65rem;
    z-index: 8;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
  }

  .voucher__grid,
  .confirmation .voucher__grid,
  .trust-grid,
  .testimonial-grid,
  .contact-card ul,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__content {
    width: calc(100% - 1.2rem);
    padding: 3.25rem 0 4rem;
  }

  .legal-layout {
    width: calc(100% - 1.2rem);
    margin-top: -1.4rem;
  }

  .legal-nav {
    position: relative;
    top: auto;
  }

  .hero__actions,
  .hero__actions .button,
  .section-actions .button,
  .booking-cta .button {
    width: 100%;
  }

  .booking-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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