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

:root {
  --ink: #121826;
  --muted: #536176;
  --paper: #ffffff;
  --cream: #f3efe5;
  --cream-soft: #fbf7ed;
  --line: #ddd7ca;
  --navy: #071d36;
  --navy-2: #0d345c;
  --copper: #c2623d;
  --copper-dark: #8d3f28;
  --shadow: 0 14px 32px rgba(16, 24, 40, .16);
  --display: Georgia, "Times New Roman", serif;
  --ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

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

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

.page-shell {
  min-height: 100vh;
  display: block;
  background: var(--cream);
}

.booking-side {
  position: relative;
  min-height: auto;
  color: #fff;
  background: #071b31;
  overflow: hidden;
}

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

.hero-media {
  background:
    radial-gradient(circle at 36% 18%, rgba(65, 145, 205, .35), transparent 34%),
    linear-gradient(135deg, #123d67 0%, #09233f 48%, #061629 100%);
}

.hero-media.has-image {
  background: #071d36;
}

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 19, 35, .28), rgba(5, 19, 35, .72) 50%, rgba(5, 19, 35, .94)),
    linear-gradient(90deg, rgba(5, 19, 35, .16), rgba(5, 19, 35, .68));
}

.topbar,
.hero-copy,
.quick-facts,
.booking-panel {
  position: relative;
  z-index: 2;
}

.topbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(3, 16, 31, .7);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-family: var(--ui);
  font-weight: 950;
}

.brand-mark.has-logo {
  padding: 5px;
}

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

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  padding: .68rem 1.35rem;
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

.topnav .topnav-primary {
  border-color: transparent;
  background: var(--copper);
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 7rem) 1rem 2rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 .65rem;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  padding: .42rem .75rem;
  font-size: .82rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.6rem, 11vw, 9.5rem);
  line-height: .9;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
  text-wrap: balance;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 820px;
  margin: 1.65rem auto 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.38rem;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--copper); color: #fff; }
.btn-primary:hover { filter: brightness(.96); }
.btn-outline { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .9); color: #fff; }
.btn-outline-dark { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-full { width: 100%; margin-top: 1rem; border-radius: 999px; }

.quick-facts {
  width: min(450px, calc(100% - 2rem));
  margin: 2.2rem auto 4.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-facts article {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .55rem .45rem;
}

.quick-facts article + article {
  border-left: 1px solid #e6e2da;
}

.quick-facts span {
  color: #4b5563;
  font-size: .92rem;
  font-weight: 800;
}

.quick-facts strong {
  margin-top: .1rem;
  font-size: 1.85rem;
  line-height: 1.1;
}

.booking-panel {
  width: min(620px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 4rem;
}

.booking-title {
  text-align: center;
}

.booking-title h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 3.1rem;
  line-height: 1;
}

.booking-title p:not(.eyebrow) {
  margin: .5rem 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 1.25rem;
}

.booking-form {
  margin-top: 1.6rem;
  border: 2px solid rgba(194, 98, 61, .8);
  border-radius: 18px;
  padding: 2rem;
  background: rgba(3, 18, 35, .62);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .2);
}

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

.booking-grid .wide { grid-column: 1 / -1; }

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

.booking-form label span {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form small {
  color: rgba(255, 255, 255, .62);
  font-size: .62rem;
  text-transform: none;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: rgba(39, 88, 133, .72);
  color: #fff;
  font: inherit;
  font-size: 1.18rem;
  padding: .72rem .85rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .65);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, .65);
}

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

.booking-policies {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  padding: .88rem 1rem;
}

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

.booking-policies p {
  margin: .3rem 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: .92rem;
}

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

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

.availability-grid {
  display: grid;
  gap: .65rem;
}

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

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

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

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

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

.available-room__media {
  width: 86px;
  height: 68px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

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

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

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

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

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

.available-room strong {
  display: block;
  margin-top: .25rem;
  font-size: .86rem;
}

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

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

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

.price-breakdown {
  display: grid;
  gap: .1rem;
  margin-top: .35rem;
}

.price-breakdown strong {
  margin: 0;
}

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

.message {
  margin-top: .85rem;
  border-radius: 10px;
  padding: .72rem .8rem;
  background: rgba(255, 255, 255, .12);
  font-size: .86rem;
}

.message--error { background: #fee2e2; color: #991b1b; }
.message--success { background: #dcfce7; color: #166534; }

.confirmation {
  margin-top: .9rem;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.confirmation h3 {
  margin: 0 0 .4rem;
}

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

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

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

.reservation-code {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 7px;
  background: #ecfdf5;
  color: #166534;
  padding: .22rem .6rem;
  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(--copper-dark);
  font-size: .78rem;
  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: #166534;
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.voucher__code strong {
  color: #166534;
  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 #e5e7eb;
  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: #4b5563;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.management-form input,
.management-form select,
.management-form textarea {
  background: #fff;
  color: var(--ink);
  border-color: #d1d5db;
}

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

.content-side {
  min-height: auto;
  background:
    linear-gradient(180deg, #fff 0 34%, var(--cream-soft) 34% 100%);
}

.about-section,
.section,
.footer {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.about-section {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  gap: 5rem;
  align-items: center;
  padding: 4.8rem 0 5.8rem;
  background: #fff;
}

.section-copy h2,
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: #0f172a;
  font-size: 1.32rem;
  line-height: 1.35;
}

.map-card {
  position: relative;
  min-height: 210px;
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 48%, rgba(70, 105, 132, .28) 48% 52%, transparent 52%),
    linear-gradient(18deg, transparent 42%, rgba(70, 105, 132, .32) 42% 46%, transparent 46%),
    #e7dccb;
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  inset: auto;
  background: #4c6f89;
  opacity: .88;
}

.map-card::before {
  width: 4px;
  height: 160px;
  left: 45%;
  top: -12px;
  transform: rotate(13deg);
}

.map-card::after {
  width: 190px;
  height: 4px;
  left: 3%;
  top: 64%;
  transform: rotate(-13deg);
}

.map-line {
  position: absolute;
  background: #4c6f89;
  opacity: .85;
}

.map-line-a { width: 4px; height: 150px; left: 72%; top: -8%; transform: rotate(8deg); }
.map-line-b { width: 180px; height: 4px; left: 15%; top: 22%; transform: rotate(13deg); }
.map-line-c { width: 150px; height: 4px; left: 40%; top: 78%; transform: rotate(-8deg); }

.map-block {
  position: absolute;
  border-radius: 2px;
  background: rgba(73, 126, 161, .65);
}

.map-block-a { width: 42px; height: 34px; left: 14%; top: 14%; transform: rotate(14deg); }
.map-block-b { width: 46px; height: 28px; right: 14%; bottom: 12%; transform: rotate(-8deg); }

.map-pin {
  position: absolute;
  left: 55%;
  top: 24%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  left: 5.5px;
  top: 5.5px;
}

.map-card strong {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translateX(-20%);
  z-index: 2;
  font-size: .72rem;
}

.section {
  padding: 4.6rem 0 0;
}

.section-head {
  margin-bottom: 1.65rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.15rem;
}

.section-booking-cta {
  padding-top: 4rem;
}

.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(194, 98, 61, .24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(194, 98, 61, .22), transparent 30%),
    #071d36;
  color: #fff;
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.booking-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.booking-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: .65rem 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
}

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

.room-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  border: 1px solid #e8dfd1;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .16);
  padding: 1rem;
}

.room-card__media {
  position: relative;
  height: 150px;
  margin: -1rem -1rem .15rem;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
  background: #f3efe5;
}

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

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

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

.room-card__fallback {
  display: grid;
  place-items: center;
  height: 150px;
  margin: -1rem -1rem .15rem;
  border-radius: 9px 9px 0 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(194, 98, 61, .24), transparent 32%),
    linear-gradient(135deg, #fbf7ed, #e8dfd1);
  color: var(--copper-dark);
}

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

.room-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .75rem;
}

.room-card__tag {
  align-self: flex-start;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  padding: .34rem .65rem;
  font-size: .78rem;
  font-weight: 900;
}

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

.room-card p {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.18;
}

.room-card__price {
  margin-top: auto;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 950;
}

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

.room-card__badges span {
  border-radius: 999px;
  background: #f5e8dc;
  color: var(--copper-dark);
  padding: .28rem .56rem;
  font-size: .74rem;
  font-weight: 900;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.room-card__meta span {
  border-radius: 999px;
  background: #f3efe5;
  color: #1f2937;
  padding: .34rem .55rem;
  font-size: .84rem;
  font-weight: 800;
}

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

.policies {
  margin: 0;
  border: 1px solid #e8dfd1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .14);
  padding: 1.6rem 1.8rem;
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.45;
}

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

.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 #e8dfd1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .14);
  padding: 1rem;
}

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

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

.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: var(--cream-soft);
  padding: .75rem;
}

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

.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: .9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.legal-hero {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 19, 35, .88), rgba(5, 19, 35, .72)),
    radial-gradient(circle at 82% 8%, rgba(194, 98, 61, .32), transparent 34%),
    #071d36;
}

.legal-hero__content {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.6rem 0 5.2rem;
  text-align: center;
}

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

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

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  width: min(1080px, 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 #e8dfd1;
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 22px rgba(16, 24, 40, .14);
  padding: .75rem;
}

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

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

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

.legal-card {
  border: 1px solid #e8dfd1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .14);
  padding: 1.35rem;
}

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

.legal-card h2 {
  margin: .7rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
}

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

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

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

.legal-notice strong {
  display: block;
  color: var(--copper-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, .78), transparent);
  animation: skeleton-shimmer 1.25s infinite;
}

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

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

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e8dfd1;
  padding: 2rem 0 3.5rem;
}

.footer strong {
  font-family: var(--display);
  font-size: 1.7rem;
}

.footer p {
  margin: .15rem 0 0;
  font-size: 1rem;
}

.footer a {
  color: var(--copper-dark);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .about-section,
  .section,
  .footer {
    width: min(980px, calc(100% - 2rem));
  }

  .about-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: 2rem;
  }

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

@media (max-width: 720px) {
  .topbar {
    width: calc(100% - 1.2rem);
    padding: .65rem 0;
  }

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

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-copy {
    padding: 3.1rem .85rem 1rem;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

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

  .hero-actions,
  .hero-actions .btn,
  .section-actions .btn,
  .booking-cta .btn {
    width: 100%;
  }

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

  .quick-facts {
    width: calc(100% - 1.2rem);
    margin-bottom: 3rem;
  }

  .quick-facts article {
    min-height: 78px;
  }

  .quick-facts strong {
    font-size: 1.35rem;
  }

  .booking-panel {
    width: calc(100% - 1.2rem);
  }

  .booking-grid,
  .available-room,
  .available-room.has-image,
  .about-section,
  .room-types {
    grid-template-columns: 1fr;
  }

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

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

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

  .booking-form > .btn-full,
  .guest-form .btn-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;
  }

  .about-section {
    padding: 3rem 0;
  }

  .map-card {
    min-height: 170px;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 2.5rem;
  }

  .section-copy p:not(.eyebrow),
  .section-head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .room-card {
    min-height: 0;
  }

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