:root {
  --text: #333333;
  --muted: #5f666d;
  --line: #d9d9d9;
  --soft: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --accent: #c7192f;
  --focus: #1266cc;
  --max: 1070px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: none;
  min-height: 62px;
  margin: 0;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 126px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 6px;
  font-weight: 700;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-menu a {
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a.active-page {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-spacer {
  flex: 1;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 8px;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.booking-strip {
  display: grid;
  grid-template-columns: minmax(260px, 1.9fr) minmax(210px, 1fr) minmax(170px, 1fr) minmax(160px, 1fr) 124px;
  gap: 14px;
  max-width: none;
  margin: 0;
  padding: 18px 20px;
}

.legal-mode .booking-strip,
.reservation-mode .booking-strip,
.stays-mode .booking-strip {
  display: none;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  border: 1px solid #222;
  border-radius: 4px;
  background: var(--white);
}

.search-field input,
.search-field select {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.guest-picker {
  position: relative;
}

.guest-trigger {
  justify-content: space-between;
  width: 100%;
  padding: 0 12px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.guest-trigger span:last-child {
  font-size: 18px;
  line-height: 1;
}

.guest-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: 350px;
  padding: 24px 16px 20px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.guest-panel[hidden] {
  display: none;
}

.guest-head,
.guest-row {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) 92px 104px 24px;
  align-items: center;
  column-gap: 8px;
}

.guest-head {
  margin-bottom: 16px;
  color: #262a30;
  font-size: 12px;
  font-weight: 900;
}

.guest-head span:nth-child(2),
.guest-head span:nth-child(3) {
  text-align: center;
}

.guest-row {
  min-height: 70px;
  margin-bottom: 10px;
  padding: 10px 8px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: var(--white);
}

.guest-room-name {
  color: #262a30;
  font-size: 15px;
  font-weight: 900;
}

.guest-counter {
  display: grid;
  grid-template-columns: 28px 22px 28px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.guest-count {
  color: var(--black);
  font-weight: 900;
  text-align: center;
}

.counter-button,
.remove-room {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.counter-button {
  width: 28px;
  height: 28px;
  color: #333;
  background: var(--white);
  border: 1px solid #e4e4e4;
  font-size: 20px;
  line-height: 1;
}

.counter-button:disabled {
  color: #d8d8d8;
  cursor: not-allowed;
}

.remove-room {
  justify-self: end;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: #3c3c3c;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.remove-room:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.add-room-button {
  width: 100%;
  height: 40px;
  margin-top: 2px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #222;
  border-radius: 4px;
  font-weight: 900;
}

.add-room-button:disabled {
  color: #8a8a8a;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.guest-note {
  margin: 18px 0 0;
  padding: 12px 16px;
  color: #0057c8;
  background: #e6f4ff;
  font-size: 14px;
  line-height: 1.45;
}

.guest-note a {
  color: #0057c8;
  text-decoration: none;
}

.range-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 6px;
  padding: 0 10px;
}

.range-field input {
  padding: 0;
  min-width: 0;
  font-size: 13px;
}

.range-field span:not(.sr-only) {
  color: var(--black);
  font-weight: 900;
}

.location-field input {
  padding-right: 34px;
}

.field-icon {
  position: absolute;
  right: 12px;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
}

.update-button,
.reserve-button,
.confirm-button {
  height: 42px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 900;
}

.hero {
  max-width: none;
  margin: 16px 0 0;
  padding: 0;
}

.hero img {
  width: 100%;
  height: clamp(280px, 30vw, 374px);
  object-fit: cover;
}

.section-tabs {
  position: sticky;
  top: 140px;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 34px;
  max-width: none;
  min-height: 78px;
  margin: 0;
  padding: 0 20px;
  color: var(--white);
  background: #211d1f;
}

.section-tabs strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.section-tabs div {
  display: flex;
  align-items: center;
  gap: 44px;
}

.section-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.section-tabs a::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 3px;
  background: #e31b3d;
  content: "";
  opacity: 0;
}

.section-tabs a.active::after,
.section-tabs a:hover::after,
.section-tabs a:focus-visible::after {
  opacity: 1;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: none;
  min-height: 62px;
  margin: 0;
  padding: 0 20px;
  background: #f7f7f7;
}

.notice p {
  margin: 0;
  color: var(--black);
  font-weight: 500;
}

.notice button {
  background: transparent;
  border: 0;
  color: var(--black);
  font-size: 25px;
  font-weight: 700;
}

.info-icon {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: var(--focus);
  border: 1px solid var(--focus);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.section-pad {
  max-width: none;
  margin: 0;
  padding: 68px 20px;
  scroll-margin-top: 230px;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 72px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--text);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 0;
}

h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.intro address {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  font-style: normal;
}

.intro address a {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
}

.intro address a:first-child::before {
  content: "●";
}

.intro address a:last-child::before {
  content: "☎";
}

.intro address a::before {
  position: absolute;
  left: 0;
  color: var(--black);
  text-decoration: none;
}

.check-times {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  font-size: 12px;
}

.check-times span + span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.intro-copy p {
  max-width: 590px;
  margin-bottom: 28px;
  color: #252a31;
  line-height: 1.85;
}

.text-button {
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.extra-copy {
  display: none;
  margin-top: 20px;
}

.extra-copy.open {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.95fr);
  gap: 10px;
  align-items: stretch;
  padding-top: 42px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 142px);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-card {
  display: grid;
  place-content: center;
  min-height: 295px;
  padding: 36px;
  text-align: center;
  border: 1px solid #e4e4e4;
}

.gallery-card span,
.section-heading span,
.dialog-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.gallery-card span {
  text-transform: uppercase;
}

.outline-button {
  justify-self: center;
  margin-top: 28px;
  padding: 10px 22px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 900;
}

.rooms {
  padding-top: 36px;
}

.section-heading {
  margin-bottom: 28px;
}

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

.room-card {
  border: 1px solid #e3e3e3;
  background: var(--white);
}

.room-card img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: cover;
}

.room-card > div {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.room-card h3,
.room-card p {
  margin-bottom: 0;
}

.room-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.room-meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.room-meta strong {
  color: var(--black);
  font-size: 25px;
  font-weight: 900;
}

.room-meta span {
  color: var(--muted);
  font-size: 13px;
}

.reserve-button {
  width: 100%;
}

.nearby {
  max-width: none;
  padding-top: 42px;
  text-align: center;
}

.nearby h2 {
  margin-bottom: 28px;
}

.map-wrap {
  position: relative;
  height: 342px;
  overflow: hidden;
  background: #d6d6d6;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.8) opacity(0.72);
  pointer-events: none;
}

.pin {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: #6b6b6b;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.pin.hotel {
  left: 42%;
  top: 46%;
  width: 34px;
  height: 34px;
  background: var(--accent);
  font-size: 22px;
}

.pin.one {
  left: 42%;
  top: 13%;
}

.pin.two {
  left: 59%;
  top: 46%;
}

.details {
  background: var(--soft);
  max-width: none;
  padding-top: 44px;
  padding-bottom: 44px;
}

.details > .section-heading,
.details-layout {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.details-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 12px;
}

.details .section-heading {
  margin-bottom: 18px;
}

.detail-tabs {
  border-right: 1px solid var(--line);
}

.detail-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #222;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  text-align: left;
}

.detail-tabs button::after {
  content: "›";
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.detail-tabs button.active {
  background: var(--white);
  box-shadow: inset 4px 0 0 var(--text);
}

.detail-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: var(--white);
}

.detail-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.detail-panel > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
}

.detail-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-copy {
  display: grid;
  gap: 10px;
}

.detail-copy h4 {
  margin: 6px 0 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.detail-copy ul {
  columns: 2;
  gap: 28px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.detail-copy li {
  break-inside: avoid;
  margin-bottom: 4px;
}

.detail-copy em {
  color: var(--black);
  font-style: italic;
  font-weight: 700;
}

.crumbs {
  max-width: none;
  margin: 0;
  padding: 92px 20px 66px;
  color: var(--black);
  font-size: 14px;
}

.checkout-page[hidden],
.legal-page[hidden],
.reservation-detail-page[hidden],
.rate-page[hidden],
.stays-page[hidden],
.hotel-page[hidden] {
  display: none;
}

.checkout-mode .site-footer,
.rate-mode .site-footer {
  display: none;
}

.booking-steps {
  display: flex;
  gap: 120px;
  align-items: center;
  min-height: 47px;
  padding: 0 calc((100vw - var(--max)) / 2 + 16px);
  color: #9c9c9c;
  background: #2f2f2f;
  font-size: 12px;
  font-weight: 900;
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-steps strong {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.booking-steps .active {
  color: var(--white);
}

.booking-steps .active strong {
  color: #2f2f2f;
  background: var(--white);
  border-color: var(--white);
}

.rate-page {
  min-height: calc(100vh - 150px);
  background: var(--white);
}

.rate-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 338px;
  gap: 72px;
  max-width: none;
  margin: 0;
  padding: 30px 20px 72px;
}

.back-property {
  margin-bottom: 42px;
  padding: 0;
  color: #333;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 900;
}

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

.rate-heading h1 {
  margin: 0;
  color: var(--black);
  font-size: 30px;
  line-height: 1.2;
}

.rate-heading p {
  margin: 0 0 4px;
  color: #333;
}

.rate-options {
  display: grid;
  gap: 16px;
}

.rate-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  gap: 36px;
  padding: 20px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: var(--white);
}

.rate-option h2 {
  max-width: 330px;
  margin: 0 0 14px;
  color: var(--black);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.rate-option p {
  margin-bottom: 28px;
  color: #252a31;
}

.rate-details {
  padding: 0;
  color: #333;
  background: transparent;
  border: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rate-price {
  display: grid;
  align-content: start;
  gap: 14px;
}

.rate-price p {
  margin: 0;
}

.rate-price strong {
  color: var(--black);
  font-size: 32px;
  font-weight: 900;
}

.rate-price span {
  color: #252a31;
  font-size: 14px;
}

.rate-price a {
  color: #333;
  font-weight: 900;
}

.rate-select-button {
  width: 100%;
  height: 45px;
  margin-top: 28px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 900;
}

.rate-summary {
  align-self: start;
  padding: 0 16px 22px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: var(--white);
}

.rate-summary h2 {
  margin: 20px 0 16px;
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
}

.rate-summary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.rate-summary ul {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0 16px;
  list-style: none;
}

.rate-summary li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  color: #252a31;
  font-size: 14px;
}

.edit-room-button {
  margin-left: 16px;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-page {
  min-height: calc(100vh - 150px);
  background: var(--white);
}

.checkout-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 338px;
  gap: 72px;
  max-width: none;
  margin: 0;
  padding: 48px 20px 72px;
}

.checkout-main {
  display: grid;
  gap: 32px;
}

.checkout-section h1,
.checkout-section h2,
.checkout-card h2 {
  margin: 0 0 24px;
  color: var(--black);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

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

.checkout-heading h1 {
  margin: 0;
}

.checkout-heading p {
  margin: 0 0 4px;
}

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

.checkout-grid label,
.travel-agents label {
  display: grid;
  gap: 7px;
  color: transparent;
  font-size: 0;
}

.checkout-grid input,
.travel-agents input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid #d4dbe2;
  border-radius: 4px;
  font-size: 14px;
}

.checkout-grid input::placeholder {
  color: #7e8790;
}

.checkout-card {
  padding: 22px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #f7f7f7;
}

.checkout-card h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.option-row {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 0 16px;
  background: var(--white);
}

.option-row + .option-row {
  margin-top: 8px;
}

.option-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #333;
}

.option-row > span {
  color: var(--black);
  font-size: 16px;
}

.option-row strong {
  color: #252a31;
  font-weight: 900;
}

.option-stepper {
  display: inline-grid;
  grid-template-columns: 28px 34px 28px;
  align-items: center;
  gap: 8px;
}

.option-stepper button {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: #3c3c3c;
  border: 0;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.option-stepper input {
  width: 34px;
  height: 24px;
  padding: 0;
  text-align: center;
  border: 1px solid #d9d9d9;
}

.travel-agents {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #f7f7f7;
}

.travel-agents summary {
  padding: 18px 20px;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.travel-agents label {
  padding: 0 20px 18px;
}

.checkout-section textarea {
  width: 100%;
  min-height: 132px;
  padding: 12px;
  color: var(--text);
  border: 1px solid #d4dbe2;
  border-radius: 4px;
  font: inherit;
  resize: vertical;
}

.request-note,
.terms-section {
  color: #252a31;
  font-size: 13px;
  line-height: 1.55;
}

.request-note {
  margin: 4px 0 0;
}

.terms-section {
  display: grid;
  gap: 18px;
}

.terms-section label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.terms-section input {
  width: 18px;
  height: 18px;
}

.terms-section p {
  margin: 0;
  font-weight: 900;
}

.reserve-stay-button {
  justify-self: center;
  width: min(336px, 100%);
  height: 42px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 900;
}

.checkout-summary {
  align-self: start;
}

.checkout-summary > h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
}

.checkout-summary > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.checkout-room-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0 16px;
  list-style: none;
}

.checkout-room-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: #252a31;
  font-size: 14px;
}

.total-card {
  margin-top: 28px;
  padding: 22px 20px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: var(--white);
}

.total-card h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.total-card h4 {
  margin: 18px 0 8px;
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
}

.total-card dl {
  display: grid;
  gap: 4px;
  margin: 0;
}

.total-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.total-card dt,
.total-card dd {
  margin: 0;
  color: #252a31;
  font-size: 14px;
}

.total-row,
.paid-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #efefef;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.paid-row {
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
  font-size: 15px;
}

.stays-page {
  min-height: calc(100vh - 64px);
  background: var(--white);
  padding: 62px 16px 120px;
}

.reservation-detail-page {
  min-height: calc(100vh - 64px);
  background: var(--white);
  padding: 36px 20px 100px;
}

.reservation-detail-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.reservation-detail-shell h1 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
}

.legal-page {
  min-height: calc(100vh - 64px);
  background: var(--white);
  padding: 52px 20px 96px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
}

.legal-content h2 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.legal-content p,
.legal-content li {
  color: #252a31;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.legal-panel {
  margin-top: 18px;
  padding: 18px;
  background: #f7f8f9;
  border: 1px solid #dfe3e7;
  border-radius: 4px;
}

.cookie-controls {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cookie-controls label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e0e0e0;
  background: var(--white);
}

.cookie-controls input {
  width: 18px;
  height: 18px;
  accent-color: #333;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-actions button {
  height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 900;
}

.legal-status {
  margin: 14px 0 0;
  color: #166534;
  font-size: 14px;
  font-weight: 800;
}

.reservation-lookup {
  max-width: none;
  margin: 0;
}

.lookup-kicker {
  margin: 0 0 8px;
  color: #667483;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.reservation-lookup h1 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.lookup-copy {
  margin-bottom: 28px;
  color: #252a31;
  font-size: 16px;
  line-height: 1.5;
}

.lookup-form {
  display: grid;
  gap: 14px;
}

.lookup-form label {
  display: grid;
  gap: 8px;
  color: #252a31;
  font-size: 14px;
}

.lookup-form label span {
  color: #c7192f;
}

.lookup-form input {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #ccd4dc;
  border-radius: 4px;
}

.lookup-form button {
  justify-self: center;
  width: 154px;
  height: 40px;
  margin-top: 32px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 900;
}

.lookup-status {
  min-height: 20px;
  margin: 0;
  color: #0057c8;
  text-align: center;
}

.reservation-result {
  margin-top: 24px;
  color: var(--text);
  text-align: left;
  background: var(--white);
  border: 1px solid #dfe3e7;
}

.empty-reservation {
  max-width: 680px;
}

.reservation-result img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.reservation-result-body {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.reservation-result-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.result-kicker {
  display: block;
  margin-bottom: 6px;
  color: #667483;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-result h2 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.status-pill {
  padding: 5px 10px;
  color: #0b5d2a;
  background: #e7f6ec;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.result-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 0;
  padding: 18px;
  background: #f7f8f9;
}

.result-details div,
.payment-summary div {
  display: grid;
  gap: 3px;
}

.result-details dt,
.payment-summary span {
  color: #667483;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-details dd {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
}

.result-breakdown h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
}

.result-breakdown ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.payment-summary div {
  padding: 14px;
  background: #f7f8f9;
  border: 1px solid #e5e8eb;
}

.payment-summary strong {
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
}

.payment-summary .balance-row {
  background: var(--black);
  border-color: var(--black);
}

.payment-summary .balance-row span,
.payment-summary .balance-row strong {
  color: var(--white);
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.member-signin {
  margin: 18px 0 0;
  color: #252a31;
  font-size: 16px;
  text-align: center;
}

.member-signin a {
  font-weight: 500;
}

.site-footer {
  color: var(--white);
  background: var(--black);
  padding: 48px 16px 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 62px;
  max-width: none;
  margin: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #2b2b2b;
}

.site-footer section {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer h2 {
  margin: 0 0 2px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  color: var(--white);
}

.footer-social span {
  font-size: 14px;
  font-weight: 900;
}

.footer-social a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reservation-dialog {
  width: min(510px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.reservation-dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.reservation-dialog form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
}

.reservation-dialog h2 {
  font-size: 32px;
}

.close-dialog {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: 0;
  color: var(--black);
  font-size: 28px;
  font-weight: 900;
}

.reservation-dialog dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  background: var(--soft);
}

.reservation-dialog dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.reservation-dialog dt {
  color: var(--muted);
  font-weight: 700;
}

.reservation-dialog dd {
  margin: 0;
  color: var(--black);
  font-weight: 900;
  text-align: right;
}

.reservation-dialog label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-weight: 900;
}

.reservation-dialog input {
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.reservation-status {
  min-height: 22px;
  margin: 0;
  color: #0057c8;
  font-size: 14px;
  line-height: 1.45;
}

.reservation-status.error,
.lookup-status.error {
  color: #b00020;
}

.reservation-status strong,
.lookup-status strong {
  color: var(--black);
}

:focus-visible {
  outline: 3px solid rgba(18, 102, 204, 0.3);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .top-nav {
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 12px;
  }

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

  .nav-spacer {
    display: none;
  }

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

  .location-field,
  .guest-picker,
  .update-button {
    grid-column: 1 / -1;
  }

  .intro,
  .gallery,
  .details-layout,
  .detail-panel {
    grid-template-columns: 1fr;
  }

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

  .detail-tabs {
    border-right: 0;
  }

  .detail-copy ul {
    columns: 1;
  }

  .result-details,
  .payment-summary {
    grid-template-columns: 1fr;
  }

  .reservation-result-head {
    display: grid;
  }

  .notice {
    padding: 0 20px;
  }

  .booking-steps {
    gap: 24px;
    overflow-x: auto;
    padding: 0 20px;
    white-space: nowrap;
  }

  .rate-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .checkout-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rate-summary {
    order: -1;
  }

  .section-tabs {
    top: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 20px 0;
  }

  .section-tabs div {
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .section-tabs a {
    min-height: 46px;
  }

  .section-tabs a::after {
    bottom: 8px;
  }
}

@media (max-width: 640px) {
  .booking-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-field,
  .guest-picker,
  .update-button {
    grid-column: auto;
  }

  .guest-panel {
    right: auto;
    left: 0;
    width: min(350px, calc(100vw - 36px));
  }

  .guest-head,
  .guest-row {
    grid-template-columns: minmax(64px, 1fr) 86px 98px 22px;
    column-gap: 5px;
  }

  .hero {
    padding: 0;
  }

  .notice {
    align-items: start;
    padding: 14px 16px;
  }

  .section-tabs {
    position: static;
    padding: 14px 16px 0;
  }

  .section-tabs strong {
    font-size: 18px;
  }

  .section-pad {
    padding: 48px 18px;
  }

  .intro {
    gap: 34px;
  }

  h1,
  h2 {
    font-size: 32px;
  }

  .gallery-card {
    min-height: 230px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-row: auto;
    height: 210px;
  }

  .map-wrap {
    height: 280px;
  }

  .rate-heading,
  .checkout-heading,
  .checkout-grid,
  .rate-option {
    grid-template-columns: 1fr;
  }

  .rate-heading {
    display: grid;
  }

  .checkout-heading {
    display: grid;
  }

  .rate-option {
    gap: 18px;
  }

  .rate-select-button {
    margin-top: 4px;
  }

  .crumbs {
    padding: 58px 18px 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
