/* ============================================================
   The Burgundy — Prototype Stylesheet
   Brand palette and design system per BURGUNDY_BRAND_PROFILE.md
   ============================================================ */

:root {
  /* Brand palette */
  --c-chocolate: #3C1800;
  --c-chocolate-soft: #5A2C0E;
  --c-slate: #3D4A3F;
  --c-slate-deep: #2B3429;
  --c-navy: #2D3748;
  --c-orange: #D4871C;
  --c-orange-bright: #E89A2A;
  --c-cream: #F0EAD6;
  --c-cream-soft: #F7F2E3;
  --c-cream-deep: #E5DCC2;
  --c-amber: #C68A17;
  --c-forest: #4A5D4A;
  --c-burgundy: #6F1D1B;

  /* Functional */
  --c-bg: var(--c-cream);
  --c-bg-deep: var(--c-cream-deep);
  --c-text: var(--c-chocolate);
  --c-text-soft: #6F4A2E;
  --c-accent: var(--c-orange);
  --c-on-dark: var(--c-cream);

  /* Type */
  --f-display: 'Limelight', 'DM Serif Display', Georgia, serif;
  --f-editorial: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5rem;
  --space-7: 7rem;
  --space-8: 10rem;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 20px rgba(60, 24, 0, 0.08);
  --shadow-med: 0 12px 40px rgba(60, 24, 0, 0.14);
  --shadow-strong: 0 24px 60px rgba(60, 24, 0, 0.22);

  --container: 1320px;
  --container-narrow: 920px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c-orange); }
button { font-family: inherit; cursor: pointer; }
hr { border: none; border-top: 1px solid rgba(60, 24, 0, 0.16); margin: var(--space-5) 0; }

h1, h2, h3, h4, h5 { margin: 0; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em 0; }

/* ============================================================
   Typography utilities
   ============================================================ */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: inline-block;
  margin-bottom: var(--space-2);
}
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.editorial {
  font-family: var(--f-editorial);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.h1 { font-family: var(--f-display); font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; font-weight: 400; }
.h2 { font-family: var(--f-editorial); font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.08; font-weight: 400; }
.h3 { font-family: var(--f-editorial); font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 400; }
.h4 { font-family: var(--f-body); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.01em; }
.lede { font-size: 1.18rem; line-height: 1.6; color: var(--c-text-soft); max-width: 60ch; }
.script-accent {
  font-family: var(--f-display);
  font-size: 1.1em;
  color: var(--c-orange);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.8em;
  background: var(--c-chocolate);
  color: var(--c-cream);
  border: none;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { background: var(--c-orange); color: var(--c-chocolate); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--accent { background: var(--c-orange); color: var(--c-chocolate); }
.btn--accent:hover { background: var(--c-chocolate); color: var(--c-orange); }
.btn--ghost { background: transparent; color: currentColor; border: 1.5px solid currentColor; }
.btn--ghost:hover { background: currentColor; }
.btn--ghost.on-dark:hover { color: var(--c-chocolate); }
.btn--lg { padding: 1.05em 2.2em; font-size: 0.82rem; }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.72rem; letter-spacing: 0.16em; }
.btn .arr { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   Layout
   ============================================================ */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }
.wrap--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-3); }
.section { padding: var(--space-7) 0; position: relative; }
.section--tight { padding: var(--space-5) 0; }
.section--xl { padding: var(--space-8) 0; }
.section--dark { background: var(--c-chocolate); color: var(--c-cream); }
.section--slate { background: var(--c-slate-deep); color: var(--c-cream); }
.section--burgundy { background: var(--c-burgundy); color: var(--c-cream); }
.section--cream { background: var(--c-cream-soft); }
.section--bg-image {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--c-cream);
}
.section--bg-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(60,24,0,0.65), rgba(60,24,0,0.85));
}
.section--bg-image > .wrap { position: relative; z-index: 1; }

/* ============================================================
   Top navigation
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(60, 24, 0, 0);
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.topbar.solid {
  background: rgba(60, 24, 0, 0.93);
  backdrop-filter: blur(12px);
  padding: 0.7rem 2rem;
}
.topbar__logo {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}
.topbar.solid .topbar__logo { height: 44px; }
.topbar__nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.topbar__nav a {
  color: var(--c-cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.topbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--c-orange);
  transition: width 0.25s ease;
}
.topbar__nav a:hover { color: var(--c-orange); }
.topbar__nav a:hover::after { width: 100%; }
.topbar__nav .btn { padding: 0.6em 1.2em; font-size: 0.72rem; }
.topbar__mobile { display: none; background: none; border: none; color: var(--c-cream); padding: 0.5rem; }
.topbar__mobile svg { width: 28px; height: 28px; }

@media (max-width: 1024px) {
  .topbar__nav { display: none; }
  .topbar__mobile { display: block; }
  .topbar { padding: 1rem; }
}
.topbar__nav.open { display: flex; }

/* ============================================================
   Hero (homepage + landing pages)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--c-cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(60,24,0,0.45) 0%, rgba(60,24,0,0.2) 30%, rgba(60,24,0,0.8) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9rem 2rem 5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.2rem;
  display: block;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  max-width: 13ch;
  margin: 0 0 1.4rem 0;
  color: var(--c-cream);
  letter-spacing: -0.005em;
}
.hero__sub {
  font-family: var(--f-editorial);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  max-width: 36ch;
  margin: 0 0 2.4rem 0;
  line-height: 1.35;
  color: var(--c-cream-soft);
  opacity: 0.95;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero--short { min-height: 65vh; }
.hero--short .hero__inner { padding: 8rem 2rem 4rem; }

/* Hero slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero--slideshow { background-image: none !important; }
.hero--slideshow::before { z-index: 1; }
.hero--slideshow .hero__inner { z-index: 2; }

/* ============================================================
   Booking bar (between hero and content)
   ============================================================ */
.book-bar {
  background: var(--c-chocolate);
  color: var(--c-cream);
  padding: var(--space-3) 0;
  position: relative;
  z-index: 5;
}
.book-bar__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.book-bar__field { display: flex; flex-direction: column; gap: 0.4rem; }
.book-bar__field label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-cream);
  opacity: 0.7;
  font-weight: 600;
}
.book-bar__field input, .book-bar__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240,234,214,0.3);
  padding: 0.5rem 0;
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 1rem;
}
.book-bar__field input::placeholder { color: rgba(240,234,214,0.5); }
.book-bar__field input:focus { outline: none; border-bottom-color: var(--c-orange); }
.book-bar .btn { white-space: nowrap; }

@media (max-width: 900px) {
  .book-bar__row { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .book-bar__row .btn { grid-column: span 2; }
}

/* ============================================================
   Story / intro block
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.story__text { max-width: 56ch; }
.story__images { position: relative; aspect-ratio: 4/5; }
.story__images img:nth-child(1) {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 75%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-med);
}
.story__images img:nth-child(2) {
  position: absolute; bottom: 0; right: 0;
  width: 60%; height: 60%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: var(--space-4); } }

/* ============================================================
   Room cards
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1100px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rooms-grid { grid-template-columns: 1fr; } }

.room-card {
  position: relative;
  display: block;
  background: var(--c-cream-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); color: inherit; }
.room-card__img {
  aspect-ratio: 4/5;
  min-height: 320px; /* fallback if aspect-ratio fails */
  overflow: hidden;
  position: relative;
  background: var(--c-chocolate);
}
.room-card__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card__img img { transform: scale(1.06); }
.room-card__body { padding: 1.2rem 1.3rem 1.5rem; }
.room-card__name {
  font-family: var(--f-editorial);
  font-size: 1.55rem;
  margin: 0 0 0.4rem 0;
  line-height: 1.1;
}
.room-card__meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
  color: var(--c-text-soft);
  margin-bottom: 0.7rem;
}
.room-card__meta span::before {
  content: '· ';
  margin-right: 0.2em;
  color: var(--c-orange);
}
.room-card__meta span:first-child::before { content: ''; margin-right: 0; }
.room-card__blurb { font-size: 0.95rem; color: var(--c-text-soft); margin-bottom: 1rem; }
.room-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-chocolate);
}
.room-card:hover .room-card__cta { color: var(--c-orange); }

/* ============================================================
   The Bar — showpiece section
   ============================================================ */
.bar-show {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 100vh;
  background: var(--c-slate-deep);
  color: var(--c-cream);
}
.bar-show__media { position: relative; overflow: hidden; }
.bar-show__media img { width: 100%; height: 100%; object-fit: cover; }
.bar-show__text {
  padding: var(--space-7) var(--space-5);
  display: flex; flex-direction: column;
  justify-content: center;
}
.bar-show__text h2 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 0.8rem 0 1.5rem 0;
  color: var(--c-cream);
}
.bar-show__quote {
  font-family: var(--f-editorial);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--c-cream-soft);
  padding-left: 1.4rem;
  border-left: 2px solid var(--c-orange);
  margin: 2rem 0;
}
@media (max-width: 900px) {
  .bar-show { grid-template-columns: 1fr; }
  .bar-show__media { aspect-ratio: 4/3; min-height: 0; }
  .bar-show__text { padding: var(--space-5) var(--space-3); }
}

/* ============================================================
   Amenities icon strip
   ============================================================ */
.amenities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  text-align: center;
}
.amenities__item {
  padding: 1rem;
}
.amenities__icon {
  width: 56px; height: 56px;
  margin: 0 auto 0.8rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-cream-deep);
  color: var(--c-chocolate);
}
.amenities__icon svg { width: 30px; height: 30px; stroke-width: 1.6; }
.amenities__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.amenities__sub {
  font-size: 0.72rem;
  color: var(--c-text-soft);
  margin-top: 0.2em;
}
@media (max-width: 900px) { .amenities { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Quote / reviews
   ============================================================ */
.quote-card {
  background: var(--c-cream-soft);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--c-orange);
}
.quote-card__stars { color: var(--c-orange); letter-spacing: 0.1em; font-size: 1.2rem; margin-bottom: 0.8rem; }
.quote-card__body {
  font-family: var(--f-editorial);
  font-size: 1.2rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}
.quote-card__author {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Promotions / offers
   ============================================================ */
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-6);
}
.offer:nth-child(even) .offer__media { order: 2; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.offer__media { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-med); }
.offer__code {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-chocolate);
  font-weight: 700;
  font-family: var(--f-mono);
  letter-spacing: 0.12em;
  padding: 0.5em 1em;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}
.offer__terms {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin: 1rem 0;
}
.offer__terms li { margin-bottom: 0.3em; }
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; }
  .offer:nth-child(even) .offer__media { order: 0; }
}

/* ============================================================
   Forms
   ============================================================ */
.form {
  display: grid;
  gap: 1.2rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--c-cream-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  transition: border-color 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  background: white;
}
.form__field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 700px) { .form__row { grid-template-columns: 1fr; } }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  grid-auto-rows: 200px;
}
.gallery__item { overflow: hidden; border-radius: var(--radius-md); }
.gallery__item img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block; transition: transform 0.6s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--wide { grid-column: span 8; grid-row: span 2; }
.gallery__item--tall { grid-column: span 4; grid-row: span 2; }
.gallery__item--reg { grid-column: span 4; grid-row: span 1; }
.gallery__item--half { grid-column: span 6; grid-row: span 1; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item, .gallery__item--wide, .gallery__item--tall, .gallery__item--reg, .gallery__item--half {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ============================================================
   Detail strip — small scrolling images
   ============================================================ */
.detail-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.detail-strip > img,
.detail-strip img {
  aspect-ratio: 1/1;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: var(--radius-sm);
  display: block;
}
@media (max-width: 800px) { .detail-strip { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Page intros (for sub-pages)
   ============================================================ */
.page-intro {
  padding: var(--space-6) 0 var(--space-4);
  text-align: center;
}
.page-intro__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: block;
  margin-bottom: 1rem;
}
.page-intro__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 0 0 1rem 0;
  letter-spacing: -0.005em;
}
.page-intro__lede {
  font-family: var(--f-editorial);
  font-size: 1.3rem;
  line-height: 1.45;
  max-width: 56ch;
  margin: 0 auto;
  color: var(--c-text-soft);
}

/* ============================================================
   Room detail page hero
   ============================================================ */
.room-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 80vh;
}
.room-hero__media { background-size: cover; background-position: center; }
.room-hero__body {
  padding: var(--space-7) var(--space-5);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-cream);
}
.room-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0.8rem 0 1.2rem;
  line-height: 1.05;
}
.room-hero__meta {
  display: flex; gap: 2rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(60,24,0,0.18);
  border-bottom: 1px solid rgba(60,24,0,0.18);
}
.room-hero__meta div { font-size: 0.85rem; color: var(--c-text-soft); }
.room-hero__meta strong { display: block; font-family: var(--f-editorial); color: var(--c-chocolate); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.1em; }
.room-hero__price {
  font-family: var(--f-editorial);
  font-size: 1.1rem;
  color: var(--c-text-soft);
  margin: 1rem 0 1.5rem;
}
.room-hero__price strong { font-size: 1.8rem; color: var(--c-chocolate); }
@media (max-width: 900px) {
  .room-hero { grid-template-columns: 1fr; }
  .room-hero__media { min-height: 50vh; }
  .room-hero__body { padding: var(--space-5) var(--space-3); }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-chocolate);
  color: var(--c-cream);
  padding: var(--space-6) 0 var(--space-3);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.footer__brand img { max-height: 80px; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.92rem; opacity: 0.75; max-width: 32ch; }
.footer__col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.2rem;
}
.footer__col a {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.footer__col a:hover { opacity: 1; color: var(--c-orange); }
.footer__newsletter input {
  background: rgba(240,234,214,0.1);
  border: 1px solid rgba(240,234,214,0.2);
  color: var(--c-cream);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--f-body);
  width: 100%;
  margin-bottom: 0.8rem;
}
.footer__newsletter input::placeholder { color: rgba(240,234,214,0.5); }
.footer__social {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(240,234,214,0.08);
  opacity: 1;
}
.footer__social a:hover { background: var(--c-orange); color: var(--c-chocolate); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(240,234,214,0.15);
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.7;
  flex-wrap: wrap; gap: 1rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

/* Booking: direct external links to Cloudbeds — modal removed per Matt's revision feedback */

/* ============================================================
   Two-column landing pages (weddings/corporate/retreats)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split--reverse > div:first-child { order: 2; }
.split__media { aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { padding: var(--space-5) var(--space-4); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > div:first-child { order: 0; }
}

/* ============================================================
   Banner — featured promotional block
   ============================================================ */
.banner {
  background: var(--c-chocolate);
  color: var(--c-cream);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.banner h3 { font-family: var(--f-editorial); font-size: 2rem; margin-bottom: 0.5rem; }
.banner p { opacity: 0.85; margin-bottom: 0; }
@media (max-width: 700px) { .banner { grid-template-columns: 1fr; } }

/* ============================================================
   Disclaimer banner (prototype-only)
   ============================================================ */
.proto-flag {
  background: var(--c-orange);
  color: var(--c-chocolate);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 200;
}
.proto-flag a { text-decoration: underline; }

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-5 { margin-top: var(--space-5) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-5 { margin-bottom: var(--space-5) !important; }
.cream { color: var(--c-cream); }
.orange { color: var(--c-orange); }
.relative { position: relative; }
.divider-orn {
  text-align: center;
  margin: var(--space-4) 0;
  color: var(--c-orange);
  letter-spacing: 0.6em;
  font-size: 0.8rem;
}

/* ============================================================
   Amenity Trio (pool / fire pits / hot tub cards)
   ============================================================ */
.amenity-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.amenity-trio__card {
  background: var(--c-cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.amenity-trio__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.amenity-trio__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenity-trio__body {
  padding: var(--space-3);
}
.amenity-trio__body h3 {
  color: var(--c-burgundy);
  margin-bottom: 0.5rem;
}
.amenity-trio__body p {
  font-size: 0.95rem;
  color: var(--c-chocolate);
  opacity: 0.85;
  margin: 0;
}
@media (max-width: 800px) {
  .amenity-trio { grid-template-columns: 1fr; }
}

/* Always-solid topbar variant — for pages that have light backgrounds */
.topbar.topbar--always-solid {
  background: rgba(15, 13, 12, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(