@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Light-Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Regular-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Medium-Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Super Display";
  src: url("/assets/fonts/GT-Super-Display-Bold-Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@keyframes red-god-ray-drift {
  0% {
    transform: rotate(-13deg) scale(1.14) translate3d(-4%, -3%, 0);
    opacity: 0.68;
  }

  50% {
    transform: rotate(-8deg) scale(1.24) translate3d(4%, 2%, 0);
    opacity: 0.92;
  }

  100% {
    transform: rotate(-13deg) scale(1.14) translate3d(-4%, -3%, 0);
    opacity: 0.68;
  }
}

@keyframes red-god-ray-bloom {
  0% {
    transform: rotate(-10deg) scale(1.18) translate3d(-3%, -3%, 0);
    opacity: 0.46;
  }

  50% {
    transform: rotate(-5deg) scale(1.3) translate3d(5%, 3%, 0);
    opacity: 0.76;
  }

  100% {
    transform: rotate(-10deg) scale(1.18) translate3d(-3%, -3%, 0);
    opacity: 0.46;
  }
}

@keyframes button-shimmer {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: -100% 50%;
  }
}

:root {
  --rb-matte-black: #0c0c0c;
  --rb-charcoal: #1b1b1d;
  --rb-oxblood: #3a0f14;
  --rb-burgundy: #5b1d28;
  --rb-dark-walnut: #3b2b24;
  --rb-ivory: #e8e2d8;
  --rb-gold-foil: #c6a56b;
  --rb-blacklight-violet: #6d4dff;
  --bg: #f3ede3;
  --surface: rgba(12, 29, 36, 0.72);
  --surface-soft: #f9f4ec;
  --ink: #142229;
  --muted: #5f6d73;
  --line: rgba(20, 34, 41, 0.14);
  --accent: #1c75bc;
  --accent-deep: #155a91;
  --wood: #c6a780;
  --red: #7a1f1b;
  --white: #fdfbf8;
  --shadow: 0 22px 70px rgba(17, 29, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5efe5 0%, #efe8dd 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  backdrop-filter: blur(18px);
  background: rgba(245, 239, 229, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-link {
  max-width: min(19rem, 52vw);
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
}

.rb-brand-logo {
  height: 3rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text small,
.site-nav a,
.eyebrow,
.summary-label,
.detail-kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.nav-booking {
  margin-left: auto;
  min-height: 2.8rem;
  padding: 0.75rem 1.2rem;
  color: var(--white) !important;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 5rem 2rem;
  overflow: clip;
}

.hero-home {
  min-height: calc(100svh - 50px);
}

.compact-hero {
  min-height: 82svh;
}

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

.hero-image img {
  transform: scale(1.05);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.18), rgba(7, 16, 21, 0.72) 78%),
    linear-gradient(90deg, rgba(7, 16, 21, 0.72), rgba(7, 16, 21, 0.16));
}

.red-god-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.red-god-rays::before,
.red-god-rays::after {
  content: "";
  position: absolute;
  inset: -26% -18%;
  transform-origin: top left;
  mix-blend-mode: screen;
  opacity: 0.82;
}

.red-god-rays::before {
  background:
    linear-gradient(118deg,
      rgba(206, 58, 70, 0.72) 0%,
      rgba(206, 58, 70, 0.46) 16%,
      rgba(206, 58, 70, 0) 34%,
      rgba(134, 24, 34, 0.38) 48%,
      rgba(134, 24, 34, 0) 62%,
      rgba(206, 58, 70, 0.24) 78%,
      rgba(206, 58, 70, 0) 92%);
  filter: blur(22px);
  transform: rotate(-12deg) scale(1.18);
  animation: red-god-ray-drift 20s ease-in-out infinite;
}

.red-god-rays::after {
  background:
    radial-gradient(circle at 14% 12%, rgba(214, 62, 76, 0.52), transparent 30%),
    linear-gradient(125deg,
      rgba(104, 16, 24, 0.82) 0%,
      rgba(104, 16, 24, 0.42) 22%,
      rgba(104, 16, 24, 0) 46%,
      rgba(152, 28, 40, 0.32) 64%,
      rgba(152, 28, 40, 0) 82%);
  filter: blur(56px);
  transform: rotate(-10deg) scale(1.26);
  animation: red-god-ray-bloom 26s ease-in-out infinite;
}

.red-overlay {
  background:
    linear-gradient(180deg, rgba(18, 8, 10, 0.2), rgba(18, 8, 10, 0.76) 80%),
    linear-gradient(90deg, rgba(18, 8, 10, 0.78), rgba(122, 31, 27, 0.18));
}

.hero-content,
.page-hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 42rem;
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  font-size: 5rem;
  margin: 0.75rem 0 1.25rem;
  font-family: "GT Super Display", "Cormorant Garamond", serif;
  font-weight: 500;
}

h2 {
  font-family: "GT Super Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

p {
  margin: 0;
  font-family: "GT Super Display", "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 1.7;
}

.hero-subhead {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.275rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(253, 251, 248, 0.92);
}

#home-hero-subtitle {
  font-family: "GT Super Display", "Cormorant Garamond", serif;
  font-weight: 300;
}

.theme-red .rb-form-label {
  color: rgb(232, 226, 216);
}

.theme-red .rb-booking-heading {
  color: rgb(232, 226, 216);
}

.theme-red .rb-submit-button:hover {
  background: linear-gradient(135deg, rgba(75, 20, 27, 0.98), rgba(142, 42, 56, 0.92));
  color: var(--rb-ivory);
}

.theme-red .rb-contact-submit-button {
  background: linear-gradient(135deg, rgba(23, 11, 12, 0.96), rgba(122, 31, 27, 0.84));
  color: var(--rb-ivory);
}

.theme-red .rb-contact-submit-button:hover {
  background: linear-gradient(135deg, rgba(75, 20, 27, 0.98), rgba(142, 42, 56, 0.92));
  color: var(--rb-ivory);
}

.atmosphere-eyebrow {
  padding-bottom: 5px;
}

.hero-copy,
.page-hero p:last-child,
.intro-copy p,
.detail-panel p,
.amenity p,
.area-copy p,
.legal-card p,
.faq-item p {
  font-size: 1.03rem;
}

.intro-copy h3 {
  line-height: 1.43;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
}

.button:hover,
.icon-button:hover,
.calendar-day:not(.disabled):not(.unavailable):hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.page-shell {
  padding: 7.5rem 2rem 2rem;
}

.page-hero,
.section,
.site-footer {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.page-hero {
  padding: 3rem 0 1rem;
  max-width: 50rem;
}

.booking-airbnb-link {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.section {
  padding: 3rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.split-grid,
.area-layout,
.booking-layout,
.legal-grid {
  display: grid;
  gap: 1.5rem;
}

.split-grid {
  grid-template-columns: 1.4fr 0.9fr;
}

.intro-copy {
  padding-right: 10px;
}

.detail-panel,
.calendar-panel,
.form-panel,
.legal-card,
.cta-panel {
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(20, 34, 41, 0.08);
  box-shadow: var(--shadow);
}

.detail-kicker {
  color: var(--accent-deep);
  margin-bottom: 0.8rem;
}

.gallery-grid {
  width: 100%;
}

.gallery-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  color: var(--white);
  z-index: 1;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 16, 21, 0.72) 100%);
}

.amenities-panel {
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(34, 47, 56, 0.98) 0%, rgba(56, 74, 91, 0.96) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(17, 29, 34, 0.18);
}

.amenities-panel .eyebrow,
.amenities-panel h2,
.amenities-panel h3,
.amenities-panel p {
  color: var(--white);
}

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

.amenity {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.area-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.area-visuals {
  display: grid;
  justify-items: start;
}

.area-visual-card {
  display: grid;
  width: min(100%, 44rem);
  overflow: hidden;
  border-radius: 2rem;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(20, 34, 41, 0.08);
  box-shadow: var(--shadow);
}

.area-slider-controls {
  width: min(100%, 44rem);
}

.area-slider-track {
  will-change: transform;
}

.area-slide {
  position: relative;
  min-height: calc(34rem - 40px);
  overflow: hidden;
}

.area-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.82) saturate(0.88) contrast(1.06);
}

.area-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 21, 0.04) 0%, rgba(7, 16, 21, 0.22) 100%);
  pointer-events: none;
}

.area-dot {
  transition: background-color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.area-dot.is-active {
  background: rgba(255, 255, 255, 0.96);
  transform: scale(1.08);
}

.feature-list {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.8rem;
}

.legal-stack {
  padding-top: 1.5rem;
}

.legal-policy {
  max-width: 62rem;
  margin: 0 auto;
  padding: 2.4rem;
  background: rgba(255, 251, 246, 0.84);
}

.legal-policy h2 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  margin: 2.25rem 0 0.9rem;
}

.legal-policy h2:first-child {
  margin-top: 0;
}

.legal-policy h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin: 1.5rem 0 0.7rem;
}

.legal-policy p,
.legal-policy li {
  font-size: 1.03rem;
}

.legal-policy .feature-list {
  margin: 0.85rem 0 1.25rem;
}

.cta-band {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(20, 34, 41, 0.94), rgba(41, 73, 95, 0.9));
  color: var(--white);
}

.red-cta {
  background: linear-gradient(135deg, rgba(23, 11, 12, 0.96), rgba(122, 31, 27, 0.84));
}

.booking-layout,
.legal-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.calendar-header,
.selection-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.calendar-controls {
  display: flex;
  gap: 0.6rem;
}

.icon-button {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(20, 34, 41, 0.08);
  color: var(--ink);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-weekdays {
  margin: 1.5rem 0 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.calendar-day {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 4.5rem;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(20, 34, 41, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
}

.calendar-day.muted {
  background: rgba(243, 237, 227, 0.65);
  color: rgba(95, 109, 115, 0.45);
  border-color: transparent;
}

.calendar-day.disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.calendar-day.loading {
  cursor: progress;
}

.calendar-day.unavailable {
  opacity: 0.72;
  cursor: not-allowed;
  background: rgba(122, 132, 138, 0.22);
  color: rgba(45, 57, 63, 0.62);
  border-color: rgba(20, 34, 41, 0.08);
}

.calendar-day.selected,
.calendar-day.in-range {
  border-color: rgba(41, 73, 95, 0.2);
}

.calendar-day.in-range {
  background: rgba(111, 143, 167, 0.16);
  color: var(--ink);
}

.calendar-day.selected {
  background: linear-gradient(135deg, #29495f, #6f8fa7);
  color: #fdfbf8;
}

.selection-summary {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(20, 34, 41, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.turnstile-wrap {
  display: flex;
  justify-content: flex-start;
  min-height: 68px;
}

.form-status {
  min-height: 1.4rem;
  color: var(--accent-deep);
}

.form-status[data-state="error"] {
  color: #9d1d23;
}

.form-status[data-state="success"] {
  color: #1d5d35;
}

.form-status[data-state="info"] {
  color: var(--accent-deep);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1.2rem 1.3rem;
  border-radius: 1.25rem;
  background: rgba(255, 251, 246, 0.8);
  border: 1px solid rgba(20, 34, 41, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.8rem;
}

.legal-shell {
  padding-bottom: 4rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid rgba(20, 34, 41, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.theme-red {
  --bg: var(--rb-matte-black);
  --surface: rgba(27, 27, 29, 0.82);
  --surface-soft: rgba(59, 43, 36, 0.78);
  --ink: var(--rb-ivory);
  --muted: rgba(232, 226, 216, 0.72);
  --line: rgba(198, 165, 107, 0.24);
  --accent: var(--rb-burgundy);
  --accent-deep: var(--rb-oxblood);
  --wood: var(--rb-dark-walnut);
  --red: var(--rb-burgundy);
  --white: var(--rb-ivory);
  --shadow: 0 22px 70px rgba(12, 12, 12, 0.48);
  background:
    radial-gradient(circle at 84% 8%, rgba(109, 77, 255, 0.18), transparent 24%),
    radial-gradient(circle at 18% 0%, rgba(91, 29, 40, 0.34), transparent 32%),
    linear-gradient(180deg, var(--rb-matte-black) 0%, var(--rb-charcoal) 48%, var(--rb-oxblood) 100%);
  color: var(--ink);
}

.theme-red .site-header {
  background: rgba(12, 12, 12, 0.78);
  border-bottom-color: rgba(198, 165, 107, 0.22);
}

.theme-red .brand-mark,
.theme-red .button-primary {
  background: linear-gradient(135deg, var(--rb-oxblood), var(--rb-burgundy));
  color: var(--rb-ivory);
}

.theme-red .button-secondary {
  border-color: rgba(198, 165, 107, 0.5);
  color: var(--rb-ivory);
}

.theme-red .eyebrow,
.theme-red .detail-kicker {
  color: var(--rb-gold-foil);
}

.theme-red .site-nav a,
.theme-red .site-footer,
.theme-red .brand-text small {
  color: var(--muted);
}

.theme-red .site-footer a {
  color: var(--muted);
}

.theme-red .site-footer p {
  color: var(--muted);
}

.theme-red .detail-panel,
.theme-red .form-panel,
.theme-red .calendar-panel,
.theme-red .legal-card,
.theme-red .faq-item {
  background: rgba(27, 27, 29, 0.78);
  border-color: rgba(198, 165, 107, 0.16);
}

.theme-red .faq-item,
.theme-red .faq-item summary,
.theme-red .faq-item p {
  color: rgb(232, 226, 216);
}

.theme-red .icon-button,
.theme-red .calendar-day,
.theme-red .booking-form input,
.theme-red .booking-form select,
.theme-red .booking-form textarea {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(198, 165, 107, 0.2);
  color: var(--ink);
}

.theme-red .calendar-day.in-range {
  background: rgba(91, 29, 40, 0.32);
  border-color: rgba(198, 165, 107, 0.28);
  color: var(--rb-ivory);
}

.theme-red .calendar-day.selected {
  background: linear-gradient(135deg, var(--rb-oxblood), var(--rb-burgundy));
  border-color: rgba(198, 165, 107, 0.44);
  color: var(--rb-ivory);
}

.theme-red .selection-summary > div {
  background: linear-gradient(135deg, rgba(58, 15, 20, 0.98), rgba(91, 29, 40, 0.92));
  border: 1px solid rgba(198, 165, 107, 0.24);
  color: var(--rb-ivory);
}

.theme-red .selection-summary .summary-label,
.theme-red .selection-summary #checkin-display,
.theme-red .selection-summary #checkout-display {
  color: var(--rb-ivory);
}

.theme-red .rb-hero {
  min-height: min(calc(82svh - 10px), calc(58rem - 10px));
  background: var(--rb-matte-black);
}

.theme-red .rb-hero .hero-image img {
  object-position: top center;
  filter: saturate(1.18) contrast(1.08);
}

.theme-red .rb-hero .hero-overlay {
  background: none;
}

.rb-headline {
  display: grid;
  gap: 1rem;
  padding-top: 4.5rem;
  text-align: left;
}

.theme-red .hero-content {
  max-width: 46rem;
  text-shadow: 0 0 28px rgba(12, 12, 12, 0.8);
}

.theme-red h1 {
  color: var(--rb-ivory);
  text-shadow:
    0 0 28px rgba(91, 29, 40, 0.9),
    0 0 62px rgba(198, 165, 107, 0.18);
}

.theme-red .hero-subhead {
  max-width: 48rem;
  color: rgba(232, 226, 216, 0.86);
}

.rb-gallery-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.48fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(16rem, 1fr));
  gap: 1.25rem;
}

.rb-gallery-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(198, 165, 107, 0.18);
  border-radius: 1.35rem;
  background: var(--rb-charcoal);
  box-shadow: 0 24px 80px rgba(12, 12, 12, 0.5);
}

.rb-gallery-card--large {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 37.25rem;
}

.rb-gallery-card--small {
  grid-column: 1;
}

.rb-gallery-card img {
  filter: saturate(1.08) contrast(1.04);
  transition: transform 600ms ease, filter 600ms ease;
}

.rb-gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.2) contrast(1.08);
}

.rb-gallery-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 5rem 1.6rem 1.45rem;
  color: var(--rb-ivory);
  font-family: "GT Super Display", "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.35;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 12, 0.88));
}

.theme-red .rb-panel {
  background:
    radial-gradient(circle at 92% 12%, rgba(109, 77, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(27, 27, 29, 0.9), rgba(58, 15, 20, 0.72));
  border: 1px solid rgba(198, 165, 107, 0.2);
}

.rb-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.rb-feature-copy {
  display: grid;
  gap: 1rem;
}

.rb-feature-image {
  margin: 0;
  height: 34rem;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(198, 165, 107, 0.18);
  border-radius: 0.9rem;
  box-shadow: 0 30px 90px rgba(12, 12, 12, 0.55);
}

.rb-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.14) contrast(1.08);
}

.theme-red .rb-cta {
  background:
    linear-gradient(135deg, rgba(58, 15, 20, 0.92), rgba(91, 29, 40, 0.66)),
    radial-gradient(circle at 80% 10%, rgba(109, 77, 255, 0.22), transparent 32%);
  border: 1px solid rgba(198, 165, 107, 0.24);
}

@media (max-width: 980px) {
  .split-grid,
  .area-layout,
  .booking-layout,
  .legal-grid,
  .amenity-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .grid-sizer,
  .gallery-item,
  .gallery-item--width-2 {
    width: 100%;
  }

  .gutter-sizer {
    width: 0;
  }

  .rb-gallery-grid,
  .rb-feature {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .rb-gallery-card--large,
  .rb-gallery-card--small {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-card {
    min-height: 20rem;
  }

  .area-image {
    min-height: 24rem;
  }

  .theme-red .rb-hero .hero-image,
  .theme-red .rb-hero .hero-overlay {
    top: 5rem;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    width: 100%;
  }

  .site-header {
    padding: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    gap: 0.8rem 1rem;
  }

  .nav-booking {
    margin-left: 0;
  }

  .hero {
    padding: 10rem 1rem 3rem;
    min-height: auto;
  }

  .theme-red .rb-hero {
    min-height: calc(62svh - 25px);
  }

  .theme-red .rb-hero .hero-image,
  .theme-red .rb-hero .hero-overlay {
    top: 9.25rem;
  }

  .theme-red .rb-hero .hero-image img {
    object-position: top center;
  }

  .rb-headline {
    padding-top: 3rem;
  }

  .hero-content {
    margin-top: 2.5rem;
  }

  .page-shell {
    padding: 9.5rem 1rem 1rem;
  }

  .page-hero,
  .section,
  .site-footer {
    width: min(100% - 2rem, 1120px);
  }

  .detail-panel,
  .calendar-panel,
  .form-panel,
  .legal-card,
  .cta-panel {
    padding: 1.4rem;
    border-radius: 1.4rem;
  }

  .calendar-day {
    min-height: 3.6rem;
  }

  .calendar-header,
  .selection-summary,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .rb-gallery-card,
  .rb-feature-image {
    min-height: 22rem;
  }
}


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

.activity-card {
  overflow: hidden;
  border-radius: 1.7rem;
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(20, 34, 41, 0.08);
  box-shadow: var(--shadow);
}

.activity-thumb {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.activity-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.activity-body h3 {
  font-size: 1.85rem;
  margin-bottom: 0;
}

.activity-body p {
  font-size: 0.98rem;
}

.activity-body a {
  color: var(--accent-deep);
  font-weight: 600;
}

.activity-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .red-god-rays::before,
  .red-god-rays::after {
    animation: none;
  }
}
