:root {
  --bg: #f6f4f0;
  --surface: #ffffff;
  --surface-alt: #f1ede6;
  --ink: #17181d;
  --ink-soft: #5f636d;
  --line: #dfd8cc;
  --line-strong: #cfc4b4;
  --gold: #a88959;
  --brown: #4f3217;
  --green: #2f7468;
  --container: min(1240px, 92vw);
  --shadow-soft: 0 10px 20px rgba(16, 13, 9, 0.08);
  --shadow-strong: 0 20px 36px rgba(16, 13, 9, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--modal-scrollbar-comp, 0px);
}

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

.page-glow {
  display: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h2 {
  text-align: center;
  font-size: clamp(2.15rem, 3.9vw, 3.05rem);
  font-weight: 600;
}

.section {
  padding: 5rem 0;
}

.section-subtitle {
  margin: 0.9rem auto 0;
  max-width: 690px;
  text-align: center;
  font-size: 1.04rem;
}

.section-subtitle-note {
  margin-top: 0.35rem;
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 10;
}

.utility-strip {
  background: var(--brown);
}

.utility-content {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-content p {
  margin: 0;
  color: #f0e6d7;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.utility-links {
  display: flex;
  gap: 1.2rem;
}

.utility-links a {
  color: #f8f0e0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-weight: 700;
}

.utility-links .join-mailing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.7rem;
  border: 1px solid #d3b388;
  background: #f2e2cb;
  color: #2f1f0c;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.utility-links .join-mailing-link:hover {
  background: #f8ecda;
  border-color: #e2c399;
}

.booking-shell {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.booking-shell-inner {
  display: grid;
  grid-template-columns: minmax(220px, 250px) 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand img {
  width: min(250px, 100%);
}

.reserve-bar {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr) 0.7fr 0.7fr auto;
  border: 1px solid var(--line-strong);
  background: #fff;
  overflow: hidden;
}

.home-page .reserve-bar {
  grid-template-columns: 1.6fr repeat(2, 1fr) 0.7fr auto;
}

.reserve-field {
  min-height: 72px;
  padding: 0.7rem 0.95rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.06rem;
}

.reserve-field:nth-child(5) {
  border-right: none;
}

.home-page .reserve-field:nth-child(4) {
  border-right: none;
}

.reserve-field .label {
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #8c8478;
  font-weight: 700;
}

.reserve-field span:not(.label) {
  color: #23262d;
  font-size: 1.02rem;
  font-weight: 700;
}

.reserve-field-hotel {
  cursor: pointer;
}

.reserve-field-hotel:hover {
  background: #faf8f4;
}

.reserve-field input,
.reserve-field select {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: #23262d;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
  min-height: 24px;
  font-family: inherit;
}

.reserve-field input:focus,
.reserve-field select:focus {
  outline: none;
  border-bottom-color: #b8ab96;
}

.reserve-cta,
.hero-link,
.outline-btn,
.solid-btn {
  border: none;
  border-radius: 0;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reserve-cta {
  min-width: 220px;
  background: var(--green);
  color: #fff;
  padding: 0.85rem 1rem;
}

.reserve-cta:hover {
  background: var(--green);
}

.reserve-cta,
.reserve-cta:hover,
.reserve-cta:focus,
.reserve-cta:active {
  background: var(--green) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
  min-width: 220px !important;
  padding: 0.85rem 1rem !important;
}

#reserveBar > .reserve-cta,
#reserveBar > .reserve-cta:hover,
#reserveBar > .reserve-cta:focus,
#reserveBar > .reserve-cta:active {
  background: var(--green) !important;
  background-color: var(--green) !important;
  background-image: none !important;
  color: #fff !important;
}

.primary-nav-row {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.primary-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.8vw, 2.15rem);
}

.site-menu a {
  text-decoration: none;
  color: #1f232a;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

.site-menu a:hover {
  border-bottom-color: #1f232a;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #1f232a;
  padding: 0.45rem 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.hero {
  padding: 1.5rem 0 0;
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
}

.hero-banner {
  position: relative;
  border: 1px solid var(--line-strong);
  background: #fff;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: clamp(360px, 62vh, 700px);
  object-fit: cover;
}

.hero-overlay-card {
  position: absolute;
  left: clamp(1rem, 2.2vw, 1.8rem);
  bottom: clamp(1rem, 2.5vw, 1.8rem);
  width: min(410px, 64%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  padding: clamp(0.95rem, 2.2vw, 1.35rem);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0;
  color: #736755;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin-top: 0.42rem;
  color: #16181d;
  font-size: clamp(1.95rem, 4vw, 3.25rem);
  line-height: 0.95;
  max-width: 13ch;
}

.lead {
  margin: 0.82rem 0 0;
  color: #5f636d;
  font-size: 0.95rem;
  max-width: 42ch;
}

.hero-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hero-link {
  text-decoration: none;
  display: inline-block;
  border: 1px solid #1f232a;
  padding: 0.72rem 1.05rem;
  background: #1f232a;
  color: #fff;
}

.hero-link:hover {
  background: #000;
  border-color: #000;
}

.hero-link.ghost {
  background: transparent;
  color: #1f232a;
}

.hero-link.ghost:hover {
  background: #1f232a;
  color: #fff;
}

.welcome-intro {
  padding: 3.7rem 0 1.1rem;
  text-align: center;
}

.welcome-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.welcome-intro p {
  margin: 0.78rem auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hotels {
  padding-top: 4.1rem;
}

.hotels h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin: 0.48rem auto 0;
  background: var(--gold);
}

.hotel-grid {
  margin-top: 2.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.hotel-card {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.hotel-card img,
.hotel-grid .hotel-card .hotel-photo {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}

.hotel-card-body {
  padding: 1.1rem 1.05rem 1.2rem;
  display: grid;
  grid-template-rows: minmax(4.4em, auto) minmax(7.1em, auto) auto;
  gap: 0.78rem;
  height: 100%;
}

.hotel-card h3 {
  font-size: 1.72rem;
  line-height: 1.12;
  min-height: 4.1em;
}

.hotel-card p {
  margin: 0;
  color: #636772;
}

.hotel-card-actions {
  display: grid;
  gap: 0.55rem;
}

.outline-btn {
  display: block;
  align-self: stretch;
  border: 1px solid #1f232a;
  background: transparent;
  color: #1f232a;
  padding: 0.72rem 0.92rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.hotel-photo {
  object-fit: cover;
}

.hyatt-photo {
  object-position: 52% 43%;
}

.doubletree-photo {
  object-position: 50% 48%;
}

.wyndham-grand-photo {
  object-position: 50% 44% !important;
}

.wyndham-garden-photo {
  object-position: 52% 42%;
}

.tower-photo {
  object-position: 50% 45%;
}

.ramada-photo {
  object-position: 50% 48%;
}

.outline-btn:hover {
  background: #1f232a;
  color: #fff;
}

.spotlight {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spotlight-label {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7c725f;
  font-size: 0.72rem;
  font-weight: 700;
}

.spotlight-shell {
  margin-top: 1.45rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 1rem;
  overflow: hidden;
}

.spotlight-head {
  display: grid;
  gap: 0.64rem;
}

.spotlight-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.spotlight-tab {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #2f333a;
  min-height: 48px;
  padding: 0.48rem 0.64rem;
  font-size: clamp(0.66rem, 0.85vw, 0.73rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  white-space: normal;
  text-wrap: balance;
  transition: all 0.2s ease;
}

.spotlight-tab.active,
.spotlight-tab:hover {
  background: #1b1f26;
  border-color: #1b1f26;
  color: #fff;
}

.spotlight-progress {
  height: 3px;
  border-radius: 999px;
  background: #e9e3d9;
  overflow: hidden;
}

.spotlight-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: #b49564;
}

.spotlight-progress-fill.is-animating {
  animation: spotlightProgress 6.2s linear forwards;
}

.spotlight-shell.is-paused .spotlight-progress-fill {
  animation-play-state: paused;
}

@keyframes spotlightProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.spotlight-stage {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.slider-arrow {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #2f333a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: #1b1f26;
  border-color: #1b1f26;
  color: #fff;
}

.spotlight-window {
  flex: 1 1 auto;
  overflow: hidden;
}

.spotlight-track {
  display: flex;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.spotlight-slide {
  width: 100%;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 0.72rem;
}

.spotlight-slide .spotlight-copy > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.spotlight-slide.is-active .spotlight-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.spotlight-slide .spotlight-copy > *:nth-child(1) {
  transition-delay: 80ms;
}

.spotlight-slide .spotlight-copy > *:nth-child(2) {
  transition-delay: 130ms;
}

.spotlight-slide .spotlight-copy > *:nth-child(3) {
  transition-delay: 180ms;
}

.spotlight-slide .spotlight-copy > *:nth-child(4) {
  transition-delay: 230ms;
}

.spotlight-slide .spotlight-copy > *:nth-child(5) {
  transition-delay: 280ms;
}

.spotlight-media {
  margin: 0;
  border: 1px solid var(--line);
  min-height: 448px;
  overflow: hidden;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 5.8s ease;
}

.spotlight-slide.is-active .spotlight-media img {
  transform: scale(1.08);
}

.spotlight-copy {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.spotlight-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.69rem;
  color: #7d735f;
  font-weight: 700;
}

.spotlight-copy h3 {
  margin-top: 0.42rem;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.spotlight-copy p {
  margin-top: 0.72rem;
  color: #5f636d;
}

.spotlight-metrics {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.spotlight-metrics li {
  border: 1px solid var(--line);
  padding: 0.5rem 0.6rem;
  font-size: 0.92rem;
  background: #fcfbf9;
}

.spotlight-slide-actions {
  margin-top: auto;
  display: grid;
  gap: 0.55rem;
}

.solid-btn {
  margin-top: 0;
  background: #1b1f26;
  color: #fff;
  padding: 0.82rem 1rem;
}

.solid-btn:hover {
  background: #000;
}

.spotlight-profile-link {
  display: block;
  text-align: center;
  text-decoration: none;
}

.slider-dots {
  margin-top: 0.92rem;
  display: flex;
  justify-content: center;
  gap: 0.46rem;
}

.slider-dot {
  width: 9px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #9b9180;
  background: transparent;
  transition: all 0.2s ease;
}

.slider-dot.active {
  width: 24px;
  background: #9b9180;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 2.7rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-content img {
  width: 205px;
}

.footer-content p {
  margin: 0;
  color: #695d4d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  background: rgba(12, 11, 10, 0.68);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(1220px, 96vw);
  max-height: min(92vh, 1000px);
  overflow-y: hidden;
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-strong);
  padding: 1.2rem;
}

.modal-card.is-rates-step {
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  color: #7f7466;
  font-size: 1.86rem;
  cursor: pointer;
}

.modal-step-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.71rem;
  color: #847865;
  font-weight: 700;
}

.modal-card h2 {
  margin-top: 0.1rem;
  text-align: left;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.modal-hotels {
  margin: 0.92rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
  max-width: 1030px;
}

.modal-hotels.hidden {
  display: none;
}

.modal-selection-actions {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid #e0e4ea;
  display: flex;
  justify-content: flex-end;
}

.modal-selection-actions.hidden {
  display: none;
}

.modal-next-btn,
.modal-back-btn {
  border: 1px solid #1f232a;
  background: #1f232a;
  color: #fff;
  min-height: 44px;
  padding: 0.62rem 1.1rem;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.modal-next-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.modal-back-btn {
  background: #fff;
  color: #1f232a;
}

.modal-hotel-option {
  border: 1px solid #d8dbe1;
  background: #fff;
  text-align: left;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.modal-hotel-option:hover {
  border-color: #b8bec9;
  box-shadow: 0 8px 16px rgba(12, 18, 30, 0.08);
  transform: translateY(-1px);
}

.modal-hotel-media {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-bottom: 1px solid #e3e6eb;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.modal-hotel-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.modal-hotel-name {
  display: block;
  padding: 0.64rem 0.72rem 0.68rem;
  color: #1f2733;
  font-weight: 700;
  line-height: 1.22;
  font-size: 0.92rem;
  min-height: 3.3em;
  text-wrap: balance;
}

.modal-hotel-option.active {
  border-color: #122334;
  box-shadow: 0 0 0 3px rgba(18, 35, 52, 0.25);
  background: #f8fbff;
}

.modal-hotel-option.active .modal-hotel-name {
  color: #122334;
}

.modal-hotel-option.active .modal-hotel-media {
  border-bottom-color: #c9d7e6;
  background: #fff;
}

.modal-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e4ea;
}

.modal-details.hidden {
  display: none;
}

.modal-details h3 {
  font-size: 1.35rem;
}

.modal-details p {
  margin: 0.3rem 0 0.7rem;
}

.modal-rates-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.modal-rates-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.modal-selected-hotel {
  margin-top: 0.78rem;
  border: 1px solid #d8dbe1;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
}

.modal-selected-media {
  aspect-ratio: 5 / 3;
  background: #f4f6f8;
  border-right: 1px solid #e3e6eb;
  padding: 0.35rem;
}

.modal-selected-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.modal-selected-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  padding: 0.78rem 0.9rem;
}

.modal-selected-label {
  margin: 0;
  color: #627084;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 700;
}

.modal-selected-copy h4 {
  margin: 0;
  color: #1f2733;
  font-size: 1.35rem;
  line-height: 1.1;
}

.live-widget {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  padding: 0.9rem;
  background: #fcfbf8;
}

.live-widget.hidden {
  display: none;
}

.live-widget h4 {
  margin: 0;
  color: #232830;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
}

.live-widget p {
  margin: 0.15rem 0 0.56rem;
}

.hotel-not-implemented {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  padding: 0.95rem;
  background: #fcfbf8;
}

.hotel-not-implemented.hidden {
  display: none;
}

.hotel-not-implemented h4 {
  margin: 0;
  color: #232830;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
}

.hotel-not-implemented p {
  margin: 0.25rem 0 0;
  color: #5f636d;
}

.mailing-bar {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.6rem 0;
}

.mailing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.2rem;
  align-items: center;
}

.mailing-kicker {
  margin: 0;
  color: #756957;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 700;
}

.mailing-copy h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.mailing-copy p {
  margin: 0.5rem 0 0;
  color: #5f636d;
}

.mailing-form {
  display: flex;
  gap: 0.55rem;
}

.mailing-form input {
  flex: 1 1 auto;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: #1f232a;
}

.mailing-form button {
  flex: 0 0 auto;
  min-height: 48px;
  border: 1px solid #1f232a;
  background: #1f232a;
  color: #fff;
  padding: 0.65rem 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  cursor: pointer;
}

.mailing-form button:hover {
  background: #000;
  border-color: #000;
}

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

@media (max-width: 1180px) {
  .booking-shell-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .brand img {
    width: 230px;
  }

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

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

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

}

@media (max-width: 980px) {
  .modal-card.is-select-step {
    overflow-y: auto;
  }

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

  .reserve-field {
    border-bottom: 1px solid var(--line);
  }

  .reserve-field:nth-child(3n) {
    border-right: none;
  }

  .reserve-field:nth-child(5) {
    border-right: 1px solid var(--line);
  }

  .reserve-cta {
    grid-column: span 3;
    min-width: 0;
  }

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

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

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

  .modal-selected-hotel {
    grid-template-columns: 1fr;
  }

  .modal-selected-media {
    border-right: none;
    border-bottom: 1px solid #e3e6eb;
  }

  .spotlight-stage {
    display: grid;
    grid-template-columns: 1fr;
  }

  .spotlight-slide {
    grid-template-columns: 1fr;
  }

  .spotlight-media {
    min-height: 320px;
  }

  .slider-arrow {
    width: 100%;
    flex: 1 1 auto;
    min-height: 42px;
  }

  .slider-arrow#sliderPrev {
    order: 2;
  }

  .slider-arrow#sliderNext {
    order: 4;
  }

  .spotlight-copy {
    order: 3;
  }
}

@media (max-width: 760px) {
  .utility-content {
    min-height: 44px;
  }

  .utility-content p {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .utility-links {
    display: none;
  }

  .primary-nav-inner {
    min-height: 64px;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    right: 0;
    top: 64px;
    width: min(320px, 90vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    background: #fff;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-soft);
    padding: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.18s ease;
    z-index: 12;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu a {
    width: 100%;
  }

  .hero-overlay-card {
    position: static;
    width: 100%;
    max-width: none;
    border-top: 1px solid var(--line);
    box-shadow: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-link {
    width: 100%;
    text-align: center;
  }

  .spotlight-shell {
    padding: 0.8rem;
  }

  .spotlight-copy {
    padding: 1rem;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mailing-form {
    flex-direction: column;
  }

  .mailing-form button {
    width: 100%;
  }

  .hotel-card h3 {
    min-height: auto;
    font-size: 1.7rem;
  }

  .modal-hotels {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .reserve-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-field:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .reserve-field:nth-child(2n) {
    border-right: none;
  }

  .reserve-cta {
    grid-column: span 2;
  }

  .spotlight-tabs {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section {
    padding: 4.05rem 0;
  }
}

.register-shell-inner {
  grid-template-columns: minmax(220px, 250px) auto;
}

.register-home-link {
  justify-self: end;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1f232a;
  border: 1px solid var(--line-strong);
  padding: 0.78rem 1.1rem;
  transition: all 0.2s ease;
}

.register-home-link:hover {
  background: #1f232a;
  color: #fff;
}

.register-page {
  background: var(--bg);
}

.register-hero {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 4.4rem 0 3rem;
}

.register-hero-inner {
  max-width: 760px;
}

.register-hero .eyebrow {
  margin: 0 0 0.6rem;
  color: #7a7368;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.register-hero h1 {
  font-size: clamp(2.55rem, 6vw, 4.2rem);
  line-height: 0.96;
}

.register-intro {
  margin: 0.95rem 0 0;
  color: #5d616b;
  max-width: 58ch;
  font-size: 1.08rem;
}

.register-section {
  padding: 3rem 0 5.2rem;
}

.register-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
}

.register-form {
  display: grid;
  gap: 1.15rem;
}

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

.register-grid label {
  display: grid;
  gap: 0.4rem;
  color: #6f675c;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.register-grid label.full {
  grid-column: 1 / -1;
}

.register-grid input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 54px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: #1a1d24;
  font-size: 1rem;
}

.register-grid input:focus {
  outline: none;
  border-color: #6c746f;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  color: #4f535d;
  font-size: 0.96rem;
}

.check-row input {
  margin-top: 0.26rem;
}

.register-submit {
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  min-height: 56px;
  background: var(--green);
  color: #fff;
  padding: 0.92rem 1.2rem;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.register-submit:hover {
  filter: brightness(0.95);
}

.register-note {
  margin: 1rem 0 0;
  color: #6a6e77;
  font-size: 0.94rem;
}

@media (max-width: 820px) {
  .register-shell-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .register-home-link {
    justify-self: start;
  }

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

  .register-grid label.full {
    grid-column: auto;
  }
}
