/* ============================================================
   Brisdale International Kuala Lumpur — Shared Stylesheet
   Organised BEM. Order:
     1. Foundation (reset, tokens, base elements)
     2. Layout primitives (container, section, section head)
     3. Shared components (nav, buttons, footer, page header,
        breadcrumb, enquire banner, carousel, tags, trust strip,
        booking bar)
     4. Page sections (HOME, ROOMS, MEETINGS, DINING, OFFERS,
        CONTACT, LEGAL)
     5. Responsive
   ============================================================ */

/* ============================================================
   1. FOUNDATION
   ============================================================ */

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

:root {
  --navy: #1B3060;
  --navy-mid: #2E4A7A;
  --navy-light: #3D547A;
  --cream: #F5F0E8;
  --linen: #EDE7DA;
  --linen-dark: #D4CEBC;
  --charcoal: #2C2C2A;
  --grey: #888780;
  --grey-light: #B4B2A9;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  line-height: 1.25;
}

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

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

/* ============================================================
   2. LAYOUT PRIMITIVES
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 5rem 2rem;
}

.section--linen {
  background: var(--linen);
}

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

.section--navy {
  background: var(--navy);
}

.section--bordered {
  border-top: 1px solid var(--linen-dark);
  border-bottom: 1px solid var(--linen-dark);
}

.section--bordered-top {
  border-top: 1px solid var(--linen-dark);
}

.section__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section__body {
  font-size: 15px;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.8;
}

.section--navy .section__label {
  color: #9EB3D4;
}

.section--navy .section__title {
  color: var(--cream);
}

.section--navy .section__body {
  color: #9EB3D4;
  max-width: 600px;
}

/* ============================================================
   3. SHARED COMPONENTS
   ============================================================ */

/* ---- Navbar ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-mid);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-transform: uppercase;
}

.nav__logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #9EB3D4;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  margin-top: 1px;
  text-align: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links > li {
  position: relative;
}

.nav__links > li > a {
  font-size: 13px;
  color: #9EB3D4;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links > li > a:hover,
.nav__links > li > a.nav__link--active {
  color: var(--cream);
}

.nav__arrow {
  font-size: 10px;
  opacity: 0.6;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 6px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(27, 48, 96, 0.12);
  overflow: hidden;
}

.nav__links > li:hover .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--charcoal);
  border-bottom: 0.5px solid var(--linen);
  transition: background 0.15s;
}

.nav__dropdown a:last-child {
  border-bottom: none;
}

.nav__dropdown a:hover {
  background: var(--cream);
}

.nav__book {
  background: var(--cream);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav__book:hover {
  background: var(--linen);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--cream);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--linen);
}

.btn--outline {
  border: 1px solid rgba(245, 240, 232, 0.4);
  color: var(--cream);
  font-weight: 400;
}

.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
}

.btn--navy {
  background: var(--navy);
  color: var(--cream);
  letter-spacing: 0.08em;
}

.btn--navy:hover {
  background: var(--navy-mid);
}

.btn--outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  letter-spacing: 0.08em;
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--navy);
  letter-spacing: 0.08em;
}

.btn--cream:hover {
  background: var(--linen);
}

.btn--ghost {
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.07);
}

.btn--sm {
  font-size: 12px;
  padding: 12px 24px;
}

.btn--xs {
  font-size: 12px;
  padding: 11px 22px;
}

.btn--submit {
  padding: 13px 32px;
}

.btn--nowrap {
  white-space: nowrap;
}

.btn--block {
  display: block;
  width: 100%;
}

/* ---- Footer ---- */
.footer {
  background: #111E3A;
  padding: 4rem 2rem 2rem;
  color: #9EB3D4;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--navy-mid);
}

.footer__brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer__brand-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6A85A8;
  margin-bottom: 1rem;
}

.footer__about {
  font-size: 13px;
  color: #6A85A8;
  line-height: 1.7;
  max-width: 260px;
}

.footer__contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__contact a {
  font-size: 13px;
  color: #9EB3D4;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--cream);
}

.footer__contact a img {
  vertical-align: middle;
  display: inline-block;
  width: 16px;
  margin-right: 8px;
}

.footer__heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 13px;
  color: #6A85A8;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 12px;
  color: #4A6080;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 12px;
  color: #4A6080;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: #9EB3D4;
}

/* ---- Carousel (shared by home dining preview & rooms) ---- */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}

.carousel__track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 48, 96, 0.7);
  border: none;
  color: #F5F0E8;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  transition: background 0.2s;
}

.carousel__btn:hover {
  background: rgba(27, 48, 96, 0.95);
}

.carousel__btn--prev {
  left: 12px;
}

.carousel__btn--next {
  right: 12px;
}

.carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.5);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}

.carousel__dot--active {
  background: #F5F0E8;
}

.carousel__counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(27, 48, 96, 0.72);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

/* Room-detail carousel variant */
.carousel--room {
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  background: var(--linen);
}

.carousel--room .carousel__track {
  transition: transform 0.45s ease;
}

.carousel--room .carousel__track img {
  display: block;
}

.carousel--room .carousel__btn {
  background: rgba(27, 48, 96, 0.72);
  color: var(--cream);
  border-radius: 2px;
}

.carousel--room .carousel__dot {
  background: rgba(245, 240, 232, 0.45);
}

/* ---- Tag ---- */
.tag {
  font-family: sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D547A;
  border: 0.5px solid #3D547A;
  padding: 5px 12px;
  border-radius: 2px;
}

/* ---- Use-case tags (meetings) ---- */
.use-cases {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.use-case-tag {
  font-size: 12px;
  color: var(--navy);
  background: var(--linen);
  border: 0.5px solid var(--linen-dark);
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--linen);
  border-top: 1px solid var(--linen-dark);
  border-bottom: 1px solid var(--linen-dark);
  padding: 1.5rem 2rem;
}

.trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.trust-strip__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.trust-strip__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.trust-strip__sub {
  font-size: 11px;
  color: var(--grey);
}

/* ---- Booking bar ---- */
.booking-bar {
  background: var(--navy);
  padding: 1.25rem 2rem;
}

.booking-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  border: 0.5px solid var(--navy-mid);
  border-radius: 6px;
  overflow: hidden;
}

.booking-bar__field {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-right: 0.5px solid var(--navy-mid);
  background: rgba(255, 255, 255, 0.04);
}

.booking-bar__field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 4px;
}

.booking-bar__field input,
.booking-bar__field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--cream);
  width: 100%;
  cursor: pointer;
}

.booking-bar__field select option {
  background: var(--navy);
  color: var(--cream);
}

.booking-bar__submit {
  background: var(--cream);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  padding: 0 2rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.booking-bar__submit:hover {
  background: var(--linen);
}

/* ---- Page header (sub-pages) ---- */
.page-header {
  background: var(--navy);
  background-image: url('./images/Pattern_Batik.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 30%, rgba(62, 84, 122, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(27, 48, 96, 0.5) 0%, transparent 45%);
  pointer-events: none;
}

.page-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.page-header__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
  max-width: 560px;
}

.page-header__text {
  font-size: 15px;
  color: #9EB3D4;
  font-weight: 300;
  max-width: 480px;
}

.page-header__meta {
  font-size: 13px;
  color: #6A85A8;
  font-weight: 300;
}

.page-header--legal {
  background-image: none;
}

.page-header--legal .page-header__inner {
  max-width: 760px;
}

.page-header--legal .page-header__title {
  max-width: none;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.breadcrumb__link,
.breadcrumb__sep,
.breadcrumb__current {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6A85A8;
  text-transform: uppercase;
}

.breadcrumb__link:hover {
  color: #9EB3D4;
}

.breadcrumb__sep {
  color: #3D547A;
  font-size: 10px;
}

.breadcrumb__current {
  color: #9EB3D4;
}

/* ---- Enquire banner (sub-pages) ---- */
.enquire-banner {
  background: var(--navy);
  background-image: url('./images/Pattern_Weave.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 4.5rem 2rem;
  text-align: center;
}

.enquire-banner__inner {
  max-width: 600px;
  margin: 0 auto;
}

.enquire-banner__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.75rem;
}

.enquire-banner__title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.enquire-banner__sub {
  font-size: 14px;
  color: #6A85A8;
  margin-bottom: 2rem;
}

.enquire-banner__btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.enquire-banner--compact {
  padding: 4rem 2rem;
}

/* ============================================================
   4. PAGE SECTIONS
   ============================================================ */

/* ===================== HOME ===================== */

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 48, 96, 0.78) 0%, rgba(27, 48, 96, 0.1) 65%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: var(--cream);
  max-width: 620px;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.hero__sub {
  font-size: 16px;
  color: #C8D6E8;
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- About ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img {
  border-radius: 8px;
  height: 420px;
}

.about__body {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-top: 1rem;
}

.about__body p + p {
  margin-top: 1rem;
}

/* ---- Room cards (home) ---- */
.room-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.room-card {
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.room-card:hover {
  box-shadow: 0 6px 24px rgba(27, 48, 96, 0.1);
}

.room-card img {
  height: 200px;
}

.room-card__body {
  padding: 1.25rem;
}

.room-card__title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.room-card__desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.room-card__features {
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-card__features li {
  font-size: 12px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-card__features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 0.5px solid var(--linen);
}

.room-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-light);
  border-bottom: 1px solid var(--linen-dark);
  transition: color 0.2s, border-color 0.2s;
}

.room-card__link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ---- Feature grid (international-friendly) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--navy-mid);
  border-radius: 8px;
  overflow: hidden;
}

.feature-grid__item {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid var(--navy-mid);
  border-bottom: 1px solid var(--navy-mid);
  transition: background 0.2s;
}

.feature-grid__item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.feature-grid__icon {
  height: 64px !important;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-grid__title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
  text-align: center;
}

.feature-grid__desc {
  font-size: 13px;
  color: #9EB3D4;
  line-height: 1.6;
  text-align: center;
}

/* ---- Dining preview (home) ---- */
.dining-preview {
  background: #F5F0E8;
}

.dining-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.dining-preview__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dining-preview__carousel {
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.dining-preview__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dining-preview__label {
  font-family: sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 0.75rem;
}

.dining-preview__title {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1B3060;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.dining-preview__body {
  font-family: sans-serif;
  font-size: 14px;
  color: #888780;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.dining-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

/* ---- Facilities (home) ---- */
.facilities {
  background: #FFFFFF;
  font-family: 'Georgia', serif;
}

.facilities__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.facilities__header {
  margin-bottom: 4rem;
}

.facilities__label {
  font-family: sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 0.75rem;
}

.facilities__title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1B3060;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.facilities__body {
  font-family: sans-serif;
  font-size: 15px;
  color: #888780;
  max-width: 480px;
  line-height: 1.7;
}

.facilities__strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-top: 0.5px solid #D4CEBC;
}

.facilities__strip--reverse {
  direction: rtl;
}

.facilities__strip--reverse > * {
  direction: ltr;
}

.facilities__photo {
  overflow: hidden;
  position: relative;
}

.facilities__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.facilities__strip:hover .facilities__photo img {
  transform: scale(1.04);
}

.facilities__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  background: #FFFFFF;
}

.facilities__strip:nth-child(even) .facilities__text {
  background: #F5F0E8;
}

.facilities__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.5rem;
}

.facilities__name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1B3060;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.facilities__name--spaced {
  margin-bottom: 1.5rem;
}

.facilities__desc {
  font-family: sans-serif;
  font-size: 14px;
  color: #888780;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 340px;
}

.facilities__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1B3060;
  text-decoration: none;
  border-bottom: 0.5px solid #1B3060;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}

.facilities__cta:hover {
  color: #2E4A7A;
  border-color: #2E4A7A;
}

.facilities__cta--spaced {
  margin-top: 0.5rem;
}

.facilities__combo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.facilities__combo-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1B3060;
  margin-bottom: 0.5rem;
}

.facilities__combo-desc {
  font-family: sans-serif;
  font-size: 13px;
  color: #888780;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ---- Meetings (home) ---- */
.meetings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.meetings__img {
  border-radius: 8px;
  height: 420px;
}

.meetings__features {
  list-style: none;
  margin: 1.5rem 0 1.25rem;
}

.meetings__features li {
  font-size: 14px;
  color: var(--charcoal);
  padding: 9px 0;
  border-bottom: 0.5px solid var(--linen-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.meetings__features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
}

.meetings__perfect-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

/* ---- Promo grid (home offers) ---- */
.promo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.promo__item {
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.promo__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

.promo__cta {
  margin-top: 2rem;
  text-align: center;
}

/* ---- Location (home) ---- */
.location {
  background: #FFFFFF;
  font-family: sans-serif;
}

.location__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.location__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: stretch;
}

.location__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 0.75rem;
}

.location__title {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1B3060;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.location__body {
  font-size: 14px;
  color: #888780;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.location__pins {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.location__pin {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 0.5px solid #D4CEBC;
}

.location__pin:first-child {
  border-top: 0.5px solid #D4CEBC;
}

.location__pin-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EDE7DA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.location__pin-icon svg {
  width: 14px;
  height: 14px;
}

.location__pin-info {
  flex: 1;
}

.location__pin-name {
  font-size: 13px;
  font-weight: 500;
  color: #1B3060;
  margin-bottom: 2px;
}

.location__pin-detail {
  font-size: 12px;
  color: #888780;
}

.location__pin-badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3D547A;
  background: #EDE7DA;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: center;
}

.location__map {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- CTA banner (home) ---- */
.cta-banner {
  background: var(--navy);
  background-image: url('./images/Pattern_Weave.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-banner__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.cta-banner__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  margin: 0.75rem auto 1rem;
  max-width: 600px;
}

.cta-banner__sub {
  font-size: 15px;
  color: #9EB3D4;
  margin: 0 auto 2rem;
  max-width: 420px;
}

/* ===================== ROOMS ===================== */
.room {
  padding: 3rem 2rem;
}

.room:nth-child(odd) {
  background: var(--cream);
}

.room:nth-child(even) {
  background: var(--white);
  border-top: 1px solid var(--linen-dark);
  border-bottom: 1px solid var(--linen-dark);
}

.room__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.room__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.room__layout--reverse {
  direction: rtl;
}

.room__layout--reverse > * {
  direction: ltr;
}

.room__tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}

.room__tier-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-light);
}

.room__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.room__desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.room__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 0.5px solid var(--linen-dark);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.room__spec {
  padding: 12px 14px;
  background: var(--white);
  border-right: 0.5px solid var(--linen-dark);
  text-align: center;
}

.room__spec:last-child {
  border-right: none;
}

.room__spec-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.room__spec-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.room__amenities-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.room__amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--linen-dark);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.room__amenity {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  background: var(--white);
  border-right: 0.5px solid var(--linen);
  border-bottom: 0.5px solid var(--linen);
  font-size: 13px;
  color: var(--charcoal);
}

.room__amenity:nth-child(even) {
  border-right: none;
}

.room__amenity-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
}

.room__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===================== OFFERS ===================== */
.offers {
  padding: 4rem 2rem 5rem;
}

.offers__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Filter tabs */
.offer-filter {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--linen-dark);
  flex-wrap: wrap;
}

.offer-filter__tab {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.75rem 1.25rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.offer-filter__tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.offer-filter__tab:hover {
  color: var(--navy);
}

.offer-filter__tab--active {
  color: var(--navy);
}

.offer-filter__tab--active::after {
  transform: scaleX(1);
}

.offer-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--linen);
  color: var(--grey);
  font-size: 10px;
  border-radius: 50%;
  margin-left: 6px;
  font-weight: 400;
  letter-spacing: 0;
  transition: background 0.2s, color 0.2s;
}

.offer-filter__tab--active .offer-filter__count {
  background: var(--navy);
  color: var(--cream);
}

/* Empty state */
.offer-empty {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}

.offer-empty--visible {
  display: block;
}

.offer-empty p {
  font-size: 15px;
  color: var(--grey);
}

.offer-empty__link {
  color: var(--navy);
  border-bottom: 1px solid var(--linen-dark);
}

/* Masonry grid */
.offer-grid {
  column-count: 3;
  column-gap: 1.25rem;
}

/* Offer card */
.offer-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  transition: box-shadow 0.25s, transform 0.25s;
  display: block;
}

.offer-card:hover {
  box-shadow: 0 8px 32px rgba(27, 48, 96, 0.13);
  transform: translateY(-2px);
}

.offer-card img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: filter 0.3s;
}

.offer-card__enquire {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 48, 96, 0.92);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  display: block;
}

.offer-card:hover .offer-card__enquire {
  transform: translateY(0);
}

/* Category badge */
.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
  pointer-events: none;
}

.offer-badge--rooms {
  background: rgba(27, 48, 96, 0.85);
  color: #C8D6E8;
}

.offer-badge--dining {
  background: rgba(60, 40, 20, 0.80);
  color: #F0DFC0;
}

.offer-badge--meetings {
  background: rgba(20, 50, 40, 0.82);
  color: #B8DDD0;
}

.offer-badge--seasonal {
  background: rgba(80, 40, 10, 0.82);
  color: #F5D8B0;
}

/* Expired state */
.offer-card--expired img {
  filter: grayscale(80%) brightness(0.75);
}

.offer-card--expired .offer-card__enquire {
  display: none;
}

.offer-card--expired:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}

.offer-card__expired {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(44, 44, 42, 0.82);
  color: var(--grey-light);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
}

.offer-card--expired .offer-card__expired {
  display: block;
}

/* Hidden (filtered out) */
.offer-card--hidden {
  display: none;
}

/* Offers call-out banner */
.offers-banner {
  margin-top: 3.5rem;
  background: var(--navy);
  background-image: url('./images/Pattern_Weave.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  border-radius: 8px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.offers-banner__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.4rem;
}

.offers-banner__title {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.offers-banner__sub {
  font-size: 13px;
  color: #6A85A8;
}

.offers-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===================== CONTACT ===================== */
.contact {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

.contact__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact__intro {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Form */
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__group--hidden {
  display: none;
}

.form__group label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  font-weight: 600;
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 4px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888780' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(27, 48, 96, 0.07);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--grey-light);
}

.form__group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form__group--error input,
.form__group--error select,
.form__group--error textarea {
  border-color: #c0392b;
}

.form__note {
  font-size: 12px;
  color: var(--grey-light);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Form success */
.form-success {
  display: none;
  background: var(--linen);
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.form-success--visible {
  display: block;
}

.form-success__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success__icon svg {
  width: 20px;
  height: 20px;
}

.form-success h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 14px;
  color: var(--grey);
}

/* Direct contact card */
.contact-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem;
  color: var(--cream);
}

.contact-card__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 1rem;
}

.contact-card__title {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.contact-card__methods {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card__method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(158, 179, 212, 0.2);
  transition: opacity 0.2s;
}

.contact-card__method:last-child {
  border-bottom: none;
}

.contact-card__method:hover {
  opacity: 0.85;
}

.contact-card__method-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__method-icon svg {
  width: 15px;
  height: 15px;
}

.contact-card__method-type {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6A85A8;
  margin-bottom: 1px;
}

.contact-card__method-value {
  font-size: 14px;
  color: var(--cream);
  font-weight: 600;
}

/* Hours card */
.hours-card {
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  padding: 1.75rem 2rem;
}

.hours-card__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.hours-card__title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.hours-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--linen);
  font-size: 13px;
}

.hours-card__row:last-child {
  border-bottom: none;
}

.hours-card__dept {
  color: var(--charcoal);
  font-weight: 600;
}

.hours-card__time {
  color: var(--grey);
}

.hours-card__badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--linen);
  color: var(--navy-light);
  padding: 2px 7px;
  border-radius: 2px;
}

/* Department cards */
.dept {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  overflow: hidden;
}

.dept__card {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid var(--linen);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}

.dept__card:last-child {
  border-bottom: none;
}

.dept__card:hover {
  background: var(--cream);
}

.dept__icon {
  width: 36px;
  height: 36px;
  background: var(--linen);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dept__icon svg {
  width: 16px;
  height: 16px;
}

.dept__info {
  flex: 1;
  min-width: 0;
}

.dept__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1px;
}

.dept__contact {
  font-size: 12px;
  color: var(--grey);
}

.dept__action {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-light);
  white-space: nowrap;
  border-bottom: 0.5px solid var(--linen-dark);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.dept__card:hover .dept__action {
  color: var(--navy);
  border-color: var(--navy);
}

/* Map strip */
.map-strip {
  height: 360px;
  position: relative;
}

.map-strip iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-strip__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(27, 48, 96, 0.85) 0%, transparent 38%);
}

.map-strip__card {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  max-width: 280px;
}

.map-strip__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.5rem;
}

.map-strip__name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.map-strip__text {
  font-size: 13px;
  color: #9EB3D4;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.map-strip__directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  transition: background 0.2s;
  pointer-events: all;
}

.map-strip__directions:hover {
  background: var(--linen);
}

.map-strip__directions svg {
  width: 12px;
  height: 12px;
}

/* ===================== MEETINGS ===================== */

/* Section headings (meetings) */
.meet-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}

.meet-label--spaced {
  margin-bottom: 1rem;
}

.meet-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.meet-body {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.meet-body--narrow {
  max-width: 520px;
}

.meet-body--tight {
  margin-bottom: 0.5rem;
}

.meet-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 1.75rem;
}

.btn-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Venue nav */
.venue-nav {
  background: var(--white);
  border-bottom: 1px solid var(--linen-dark);
  position: sticky;
  top: 64px;
  z-index: 90;
}

.venue-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.venue-nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey);
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-nav__link:hover {
  color: var(--navy);
  border-bottom-color: var(--linen-dark);
}

.venue-nav__link--active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.venue-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--linen-dark);
  flex-shrink: 0;
}

.venue-nav__link--active .venue-nav__dot,
.venue-nav__link:hover .venue-nav__dot {
  background: var(--navy);
}

/* Venue overview */
.overview {
  background: var(--linen);
  border-bottom: 1px solid var(--linen-dark);
  padding: 3rem 2rem;
}

.overview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.overview__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

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

.overview__card {
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}

.overview__card:hover {
  box-shadow: 0 4px 20px rgba(27, 48, 96, 0.08);
  border-color: var(--navy-light);
}

.overview__card-floor {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.4rem;
}

.overview__card-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.overview__card-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.overview__card-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 0.5px solid var(--linen-dark);
  padding-bottom: 1px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.overview__card:hover .overview__card-link {
  color: var(--navy);
  border-color: var(--navy);
}

/* Capacity pill */
.cap-pill {
  font-size: 11px;
  color: var(--charcoal);
  background: var(--linen);
  border-radius: 2px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cap-pill strong {
  font-weight: 600;
  color: var(--navy);
}

/* Capacity table */
.cap-table {
  border: 0.5px solid var(--linen-dark);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.cap-table--spaced {
  margin-bottom: 2rem;
}

.cap-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.cap-table__table thead {
  background: var(--navy);
}

.cap-table__table thead th {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9EB3D4;
  font-weight: 600;
  padding: 10px 16px;
  text-align: left;
}

.cap-table__table tbody tr {
  border-bottom: 0.5px solid var(--linen);
}

.cap-table__table tbody tr:last-child {
  border-bottom: none;
}

.cap-table__table tbody tr:nth-child(even) {
  background: var(--linen);
}

.cap-table__table tbody tr:nth-child(odd) {
  background: var(--white);
}

.cap-table__table td {
  padding: 11px 16px;
  color: var(--charcoal);
}

.cap-table__table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.cap-table__table td.cap-table__na {
  color: var(--grey-light);
  font-size: 12px;
}

/* Inclusions list */
.inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--linen-dark);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.inclusions__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--white);
  border-right: 0.5px solid var(--linen);
  border-bottom: 0.5px solid var(--linen);
  font-size: 13px;
  color: var(--charcoal);
}

.inclusions__item:nth-child(even) {
  border-right: none;
}

.inclusions__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
}

/* Grand Ballroom */
.ballroom {
  padding: 0;
  background: var(--charcoal);
}

.ballroom__hero {
  position: relative;
  height: 720px;
  overflow: hidden;
}

.ballroom__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.4);
}

.ballroom__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 48, 96, 0.9) 0%, transparent 55%);
}

.ballroom__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
}

.ballroom__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ballroom__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.5rem;
}

.ballroom__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.ballroom__subtitle {
  font-size: 14px;
  color: #9EB3D4;
  font-weight: 300;
}

.ballroom__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ballroom__pill {
  background: rgba(245, 240, 232, 0.12);
  border: 0.5px solid rgba(245, 240, 232, 0.2);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 13px;
  border-radius: 3px;
}

.ballroom__body {
  background: var(--navy);
  padding: 4rem 2rem;
}

.ballroom__body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ballroom__body .meet-label {
  color: #9EB3D4;
}

.ballroom__body .meet-title {
  color: var(--cream);
}

.ballroom__body .meet-body {
  color: #9EB3D4;
}

.ballroom__highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
}

.ballroom__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(158, 179, 212, 0.15);
}

.ballroom__highlight:last-child {
  border-bottom: none;
}

.ballroom__hl-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ballroom__hl-icon svg {
  width: 16px;
  height: 16px;
}

.ballroom__hl-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.ballroom__hl-desc {
  font-size: 12px;
  color: #6A85A8;
  line-height: 1.5;
}

.ballroom__body .cap-table {
  border-color: rgba(158, 179, 212, 0.2);
}

.ballroom__body .cap-table__table thead {
  background: rgba(255, 255, 255, 0.06);
}

.ballroom__body .cap-table__table thead th {
  color: #9EB3D4;
}

.ballroom__body .cap-table__table tbody tr {
  border-bottom-color: rgba(158, 179, 212, 0.12);
}

.ballroom__body .cap-table__table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.ballroom__body .cap-table__table tbody tr:nth-child(odd) {
  background: transparent;
}

.ballroom__body .cap-table__table td {
  color: #C8D6E8;
}

.ballroom__body .cap-table__table td:first-child {
  color: var(--cream);
}

.ballroom__body .cap-table__table td.cap-table__na {
  color: #3D547A;
}

.ballroom__use-cases .use-case-tag {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(158, 179, 212, 0.25);
  color: #9EB3D4;
}

/* Ballroom proposal card */
.proposal {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(158, 179, 212, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

.proposal__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.75rem;
}

.proposal__title {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.proposal__body {
  font-size: 13px;
  color: #6A85A8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.proposal__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.proposal__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #9EB3D4;
}

.proposal__item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9EB3D4;
  flex-shrink: 0;
}

/* Conference rooms */
.conf {
  background: var(--cream);
  padding: 5rem 2rem;
}

.conf__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.conf__header {
  margin-bottom: 3rem;
}

.conf__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.conf__card {
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.conf__card:hover {
  box-shadow: 0 6px 24px rgba(27, 48, 96, 0.09);
}

.conf__card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.conf__card-body {
  padding: 1.5rem;
}

.conf__card-floor {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 3px;
}

.conf__card-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.conf__card-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.conf__card-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.conf__card-footer {
  padding-top: 1rem;
  border-top: 0.5px solid var(--linen);
}

.conf__card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  border-bottom: 0.5px solid var(--linen-dark);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.conf__card:hover .conf__card-link {
  color: var(--navy);
  border-color: var(--navy);
}

.conf__detail {
  padding-top: 3rem;
  border-top: 1px solid var(--linen-dark);
  margin-bottom: 3.5rem;
}

.conf__detail:last-of-type {
  margin-bottom: 0;
}

.conf__detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.conf__detail-layout--reverse {
  direction: rtl;
}

.conf__detail-layout--reverse > * {
  direction: ltr;
}

.conf__detail-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Packages */
.packages {
  background: var(--linen);
  border-top: 1px solid var(--linen-dark);
  padding: 5rem 2rem;
}

.packages__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.packages__header {
  max-width: 560px;
  margin-bottom: 3rem;
}

.packages__note {
  font-size: 13px;
  color: var(--grey);
  margin-top: 0.5rem;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.packages__inclusions {
  margin-top: 2.5rem;
}

.packages__disclaimer {
  font-size: 12px;
  color: var(--grey-light);
  margin-top: 1.25rem;
}

.package-card {
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(27, 48, 96, 0.1);
}

.package-card__header {
  background: var(--navy);
  padding: 1.5rem;
}

.package-card__header--featured {
  background: var(--navy-mid);
  position: relative;
}

.package-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--cream);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.package-card__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.4rem;
}

.package-card__name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.package-card__duration {
  font-size: 12px;
  color: #6A85A8;
}

.package-card__price {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid var(--linen);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.package-card__price-amount {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  color: var(--navy);
}

.package-card__price-unit {
  font-size: 12px;
  color: var(--grey);
}

.package-card__items {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-card__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--charcoal);
}

.package-card__item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
  margin-top: 7px;
}

.package-card__footer {
  padding: 1.25rem 1.5rem;
  border-top: 0.5px solid var(--linen);
}

/* ===================== DINING ===================== */

/* Outlet nav */
.outlet-nav {
  background: var(--white);
  border-bottom: 1px solid var(--linen-dark);
  position: sticky;
  top: 64px;
  z-index: 90;
}

.outlet-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
}

.outlet-nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey);
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.outlet-nav__link:hover {
  color: var(--navy);
  border-bottom-color: var(--linen-dark);
}

.outlet-nav__link--active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.outlet-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--linen-dark);
  flex-shrink: 0;
}

.outlet-nav__link--active .outlet-nav__dot,
.outlet-nav__link:hover .outlet-nav__dot {
  background: var(--navy);
}

/* Dining section wrapper */
.dining-section {
  padding: 5rem 2rem;
}

/* Outlet heading/content cluster */
.outlet__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}

.outlet__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.outlet__body {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.outlet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2rem;
}

.outlet__tags--tight {
  margin-bottom: 1.75rem;
}

.outlet__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  border: 0.5px solid var(--navy-light);
  padding: 4px 10px;
  border-radius: 2px;
}

.outlet__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* The Lounge */
.lounge {
  background: var(--cream);
}

.lounge__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lounge__img-wrap {
  position: relative;
}

.lounge__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.lounge__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(27, 48, 96, 0.88);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 3px;
}

/* Info pills */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.info-pills__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--linen);
  border: 0.5px solid var(--linen-dark);
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--charcoal);
}

.info-pills__pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--navy-light);
}

.info-pills__pill strong {
  font-weight: 600;
  color: var(--navy);
}

/* Level 17 */
.l17 {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.l17__hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.l17__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
}

.l17__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.95) 0%, transparent 60%);
}

.l17__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
}

.l17__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.l17__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 0.5rem;
}

.l17__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.l17__subtitle {
  font-size: 14px;
  color: #9EB3D4;
  font-weight: 300;
}

.l17__quick-info {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.l17__quick-pill {
  background: rgba(245, 240, 232, 0.12);
  border: 0.5px solid rgba(245, 240, 232, 0.2);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 13px;
  border-radius: 3px;
}

.l17__body {
  background: var(--linen);
  padding: 4rem 2rem;
}

.l17__body-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l17__body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.l17__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}

.l17__body-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.l17__body-text {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.l17__body-text--pulled {
  margin-top: -0.75rem;
}

.l17__img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.l17__img-stack img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.l17__img-stack img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

.l17__img-stack img:not(:first-child) {
  height: 160px;
}

/* Buffet callout */
.buffet {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.buffet__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9EB3D4;
  margin-bottom: 1rem;
}

.buffet__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.buffet__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(158, 179, 212, 0.18);
  gap: 1rem;
}

.buffet__row:last-child {
  border-bottom: none;
}

.buffet__meal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buffet__meal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9EB3D4;
  flex-shrink: 0;
}

.buffet__meal-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

.buffet__meal-time {
  font-size: 12px;
  color: #6A85A8;
}

.buffet__price {
  text-align: right;
}

.buffet__price-amount {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: var(--cream);
}

.buffet__price-note {
  font-size: 11px;
  color: #6A85A8;
}

.buffet__diet-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(158, 179, 212, 0.18);
  font-size: 12px;
  color: #9EB3D4;
}

.buffet__diet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9EB3D4;
  flex-shrink: 0;
}

/* Level 18 connector */
.l18-connector {
  background: var(--linen);
  padding: 0 2rem;
}

.l18-connector__inner {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--linen-dark);
  padding-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.l18-connector__line {
  flex: 1;
  height: 0.5px;
  background: var(--linen-dark);
}

.l18-connector__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Level 18 */
.l18 {
  background: var(--linen);
  padding: 3rem 2rem 5rem;
}

.l18__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l18__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.l18__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.l18__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 0.5px solid var(--linen-dark);
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.l18__note-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grey-light);
  flex-shrink: 0;
}

/* Promotions redirect banner */
.promo-redirect {
  background: var(--white);
  border-top: 1px solid var(--linen-dark);
  padding: 4rem 2rem;
}

.promo-redirect__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-redirect__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}

.promo-redirect__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.promo-redirect__sub {
  font-size: 14px;
  color: var(--grey);
  max-width: 400px;
}

.promo-redirect__thumbs {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.promo-redirect__thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  border: 0.5px solid var(--linen-dark);
  display: block;
}

.promo-redirect__thumb-more {
  width: 80px;
  height: 100px;
  background: var(--linen);
  border: 0.5px solid var(--linen-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: 0.04em;
  flex-direction: column;
  gap: 4px;
}

.promo-redirect__thumb-more span {
  font-size: 20px;
  font-weight: 300;
  color: var(--grey-light);
}

.promo-redirect__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}

.promo-redirect__cta .btn svg {
  width: 12px;
  height: 12px;
}

.promo-redirect__note {
  font-size: 12px;
  color: var(--grey-light);
}

/* ===================== LEGAL (privacy + terms) ===================== */
.doc {
  padding: 4rem 2rem 5rem;
}

.doc__inner {
  max-width: 760px;
  margin: 0 auto;
}

.doc__section {
  margin-bottom: 2.5rem;
}

.doc__section h2 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid var(--linen-dark);
}

.doc__section p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.doc__section p:last-child {
  margin-bottom: 0;
}

.doc__section a,
.doc__note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.doc__section a:hover,
.doc__note a:hover {
  color: var(--navy-mid);
}

.doc__section ul {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doc__section ul li {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.doc__section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-light);
}

.doc__section ul ul {
  margin-top: 6px;
  margin-left: 1rem;
}

.doc__section ul ul li::before {
  width: 4px;
  height: 4px;
  background: var(--grey-light);
}

.doc__divider {
  border: none;
  border-top: 1px solid var(--linen-dark);
  margin: 3rem 0;
  position: relative;
}

.doc__divider::after {
  content: '§';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  color: var(--linen-dark);
  font-size: 14px;
  padding: 0 10px;
  font-family: 'Libre Baskerville', serif;
}

.doc__note {
  background: var(--linen);
  border: 0.5px solid var(--linen-dark);
  border-left: 3px solid var(--navy-light);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.doc__note p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.doc__note p:last-child {
  margin-bottom: 0;
}

.doc__note strong {
  font-weight: 600;
  color: var(--navy);
}

.doc__note--warn {
  background: #FDF6EC;
  border-color: #D4CEBC;
  border-left-color: #B8860B;
}

.doc__note--warn p {
  color: #5A4010;
}

.doc__note--warn strong {
  color: #7A5510;
}

.doc__note--info {
  background: #EEF2F8;
  border-color: #C8D6E8;
  border-left-color: var(--navy);
}

.doc__note--info p {
  color: var(--navy);
}

.doc__note--info strong {
  color: var(--navy);
}

/* ============================================================
   5. RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .location__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location__map {
    min-height: 320px;
    height: 320px;
  }

  .location__title {
    font-size: 1.8rem;
  }

  .facilities__strip {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .facilities__strip--reverse {
    direction: ltr;
  }

  .facilities__photo {
    height: 280px;
  }

  .facilities__text {
    padding: 2.5rem 1.5rem;
  }

  .facilities__desc {
    max-width: 100%;
  }

  .facilities__title {
    font-size: 1.8rem;
  }

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

  .about,
  .dining-preview__layout,
  .meetings {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__img,
  .meetings__img {
    max-width: 100%;
    height: auto;
  }

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

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .booking-bar__inner {
    flex-direction: column;
  }

  .booking-bar__field {
    border-right: none;
    border-bottom: 0.5px solid var(--navy-mid);
  }

  .booking-bar__submit {
    padding: 1rem;
  }

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

  .section {
    padding: 3.5rem 1.25rem;
  }
}

/* ROOMS responsive */
@media (max-width: 960px) {
  .room__layout,
  .room__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
}

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

  .room__amenity {
    border-right: none;
  }
}

/* OFFERS responsive */
@media (max-width: 900px) {
  .offer-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .offer-grid {
    column-count: 1;
  }

  .offers-banner {
    padding: 2rem;
  }

  .offers-banner__actions {
    width: 100%;
  }

  .offers-banner__actions .btn {
    flex: 1;
  }
}

/* CONTACT responsive */
@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .contact-card {
    grid-column: 1 / -1;
  }
}

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

  .form__group--full {
    grid-column: 1;
  }

  .contact__aside {
    display: flex;
    flex-direction: column;
  }

  .map-strip {
    height: 280px;
  }

  .map-strip__card {
    max-width: 200px;
  }
}

/* MEETINGS responsive */
@media (max-width: 960px) {
  .overview__cards {
    grid-template-columns: 1fr;
  }

  .ballroom__body-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .conf__detail-layout,
  .conf__detail-layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .conf__detail-img {
    height: 260px;
  }

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

  .ballroom__hero {
    height: 400px;
  }

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

@media (max-width: 640px) {
  .venue-nav__inner {
    overflow-x: auto;
  }

  .venue-nav__link {
    padding: 0.9rem 1rem;
    font-size: 12px;
  }
}

/* DINING responsive */
@media (max-width: 960px) {
  .lounge__layout,
  .l17__body-grid,
  .l18__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lounge__img,
  .l18__img {
    height: 280px;
  }

  .l17__hero {
    height: 420px;
  }

  .l17__img-stack img:first-child {
    height: 180px;
  }

  .l17__img-stack img:not(:first-child) {
    height: 120px;
  }

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

  .promo-redirect__thumbs {
    display: none;
  }
}

@media (max-width: 640px) {
  .outlet-nav__inner {
    gap: 0;
    overflow-x: auto;
  }

  .outlet-nav__link {
    padding: 0.9rem 1rem;
    font-size: 12px;
  }

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