:root {
  color-scheme: light;
  --bg: #f4f5f1;
  --bg-soft: #ebece6;
  --paper: #ffffff;
  --ink: #182428;
  --muted: #667375;
  --line: rgba(24, 36, 40, 0.14);
  --teal: #075357;
  --teal-2: #0d6b6a;
  --terracotta: #b85f1f;
  --terracotta-dark: #8e4312;
  --ochre: #d9a24f;
  --sage: #dfe9e2;
  --charcoal: #101e21;
  --charcoal-2: #173034;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(19, 31, 34, 0.14);
  --shadow-soft: 0 14px 34px rgba(19, 31, 34, 0.09);
  --radius: 10px;
  --radius-sm: 6px;
  --max: 1180px;
  --header-h: 78px;
  --copy-size: clamp(1.12rem, 1.5vw, 1.3rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f191b;
  --bg-soft: #142528;
  --paper: #162629;
  --ink: #f6f2e9;
  --muted: #b8c1c1;
  --line: rgba(246, 242, 233, 0.14);
  --teal: #48aaa6;
  --teal-2: #7ac9c2;
  --terracotta: #d9833a;
  --terracotta-dark: #b86220;
  --ochre: #ecc073;
  --sage: #25383a;
  --charcoal: #071012;
  --charcoal-2: #102225;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 162, 79, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 8%, rgba(7, 83, 87, 0.11), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: clamp(18px, 4vw, 42px);
  width: 100%;
}

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

.site-header {
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 100%;
}

body:not(.admin-body) .header-inner {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 112px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-width: max-content;
}

.brand-logo-shell {
  align-items: center;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  width: 112px;
}

.brand-logo {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.14));
  max-height: 40px;
  object-fit: contain;
  width: 108px;
}

.brand-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.05;
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 22px;
  justify-content: center;
  justify-self: center;
  margin-left: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: color 180ms ease;
}

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

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  width: 42px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  width: 18px;
}

.nav-toggle span::before {
  position: absolute;
  transform: translateY(-6px);
}

.nav-toggle span::after {
  position: absolute;
  transform: translateY(6px);
}

.button,
.theme-toggle {
  align-items: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.button:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  box-shadow: 0 12px 24px rgba(184, 95, 31, 0.22);
  color: #fff;
}

.button.primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.button.secondary,
.theme-toggle {
  background: color-mix(in srgb, var(--paper) 76%, transparent);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

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

.theme-toggle::before {
  background: var(--ochre);
  border-radius: 50%;
  content: "";
  height: 10px;
  margin-right: 8px;
  width: 10px;
}

.hero-suite {
  color: #fff;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  position: relative;
}

.hero-suite::before {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.72), rgba(7, 16, 18, 0.4) 48%, rgba(7, 16, 18, 0.08)),
    var(--hero-image, none) center / cover no-repeat;
  content: "";
  filter: saturate(1.05) contrast(1.02);
  inset: 0;
  position: absolute;
}

.hero-suite::after {
  background: linear-gradient(180deg, transparent 74%, var(--bg) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: clamp(34px, 4vw, 52px);
  grid-template-columns: minmax(520px, 0.96fr) minmax(520px, 0.78fr);
  min-height: calc(100svh - var(--header-h));
  /* Reserve space for the absolute metrics band so the address never sits behind it. */
  padding-block: clamp(72px, 10vw, 132px) 132px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.hero-display-logo {
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
  height: auto;
  margin-bottom: clamp(24px, 4vw, 46px);
  max-width: min(500px, 80vw);
  width: 500px;
}

.home-hero .hero-content {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.home-hero .hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5.65vw, 5.85rem);
  line-height: 0.92;
  margin: 0 0 22px;
  max-width: 100%;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  margin: 0 0 30px;
  max-width: 560px;
}

.hero-proof {
  border-left: 3px solid var(--ochre);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 750;
  margin-top: 28px;
  padding-left: 16px;
}

.hero-media-board {
  align-self: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.86fr;
  justify-self: end;
  max-width: 560px;
  width: 100%;
}

.hero-media-board img {
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.42);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-media-board > img:first-child {
  aspect-ratio: 4 / 5;
  border-radius: 120px 120px 10px 10px;
  grid-row: span 2;
}

.hero-media-board img:nth-child(2),
.hero-media-board img:nth-child(3) {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}

.hero-photo-frame {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.16)),
    rgba(7, 16, 18, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  padding: 20px;
  position: relative;
}

.hero-photo-frame::before {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 23px;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.hero-photo-frame img {
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px 10px 28px 10px;
  cursor: zoom-in;
  min-height: 0;
  position: relative;
  z-index: 1;
}

.hero-room-gallery img {
  cursor: zoom-in;
}

.hero-photo-frame > img:first-child {
  aspect-ratio: 1 / 1.02;
  border-radius: 38px 14px 14px 14px;
  grid-row: auto;
}

.hero-photo-frame img:nth-child(2),
.hero-photo-frame img:nth-child(3) {
  aspect-ratio: 1 / 1.02;
  min-height: 0;
}

.hero-photo-frame img:nth-child(2) {
  border-radius: 14px 38px 14px 14px;
  transform: translateY(-12px);
}

.hero-photo-frame img:nth-child(3) {
  border-radius: 14px 14px 38px 14px;
  transform: translateY(12px);
}

.rooms-hero .hero-content {
  gap: 46px;
  grid-template-columns: minmax(540px, 0.94fr) minmax(560px, 0.74fr);
}

.rooms-hero .hero-copy h1 {
  font-size: clamp(3.6rem, 5.6vw, 5.65rem);
}

.rooms-hero .hero-photo-frame {
  align-self: center;
}

.hero-metrics {
  background: rgba(7, 16, 18, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.metric-row {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  padding: 18px 22px;
}

.metric-item strong {
  color: #fff;
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1;
}

.metric-item span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 7px;
}

.section {
  padding-block: clamp(76px, 11vw, 132px);
}

.section.compact {
  padding-block: clamp(52px, 8vw, 86px);
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(223, 233, 226, 0.9)),
    radial-gradient(circle at 18% 18%, rgba(217, 162, 79, 0.22), transparent 19rem),
    radial-gradient(circle at 88% 78%, rgba(7, 83, 87, 0.13), transparent 22rem),
    var(--bg-soft);
  border-block: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.section.dark::before {
  border: 1px solid color-mix(in srgb, var(--teal) 18%, transparent);
  border-radius: 999px;
  content: "";
  height: 420px;
  position: absolute;
  right: -160px;
  top: -190px;
  width: 420px;
}

:root[data-theme="dark"] .section.dark {
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 162, 79, 0.12), transparent 20rem),
    radial-gradient(circle at 88% 78%, rgba(72, 170, 166, 0.16), transparent 24rem),
    var(--charcoal);
  border-block-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.section.soft {
  background: var(--bg-soft);
}

.section-header {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  margin-bottom: 38px;
}

.section-header.center {
  display: block;
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.section-header h1,
.section-header h2,
.page-hero h1,
.room-detail h2,
.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.75rem);
  line-height: 0.95;
  margin: 0;
}

.section-header p,
.page-hero p,
.contact-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.solar-section {
  background: var(--bg);
  border-block: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
}

.solar-feature {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.solar-feature-media {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin: 0;
  overflow: hidden;
}

.solar-feature-media img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.solar-feature-copy h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 0.98;
  margin: 0 0 24px;
}

.solar-feature-copy p {
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: 1.7;
  margin: 0;
}

main :is(.section, .page-hero, .contact-hero, .hero-suite) :is(p, li),
.form-grid label {
  font-size: var(--copy-size);
}

main .home-location-section :is(p, li),
main .home-rooms-section :is(p, li) {
  font-size: 1rem;
}

:root[data-theme="dark"] .solar-section {
  background: var(--charcoal);
  color: #fff;
}

:root[data-theme="dark"] .solar-feature-copy h2 {
  color: #fff;
}

:root[data-theme="dark"] .solar-feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.section.dark .section-header p,
.section.dark .muted,
.section.dark p {
  color: var(--muted);
}

:root[data-theme="dark"] .section.dark .section-header p,
:root[data-theme="dark"] .section.dark .muted,
:root[data-theme="dark"] .section.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-line {
  background: var(--terracotta);
  display: block;
  height: 3px;
  margin-bottom: 22px;
  width: 62px;
}

.story-grid,
.location-grid,
.contact-grid,
.policy-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.story-media {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.72fr 1fr;
}

.story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-media img:first-child {
  aspect-ratio: 4 / 5;
}

.story-media img:nth-child(2) {
  aspect-ratio: 1 / 1;
  margin-top: 44px;
}

.story-panel,
.info-panel,
.contact-card,
.policy-card,
.nearby-card,
.service-card,
.room-card,
.placeholder-note,
.map-frame,
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.story-panel {
  align-self: center;
  padding: clamp(28px, 4vw, 48px);
}

.story-panel h2,
.info-panel h2,
.form-card h2,
.contact-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  margin: 0 0 18px;
}

.story-panel p,
.info-panel p,
.contact-card p,
.form-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-band {
  background: linear-gradient(90deg, var(--charcoal) 0 48%, transparent 48% 100%);
}

.amenity-mosaic {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.05fr 0.95fr;
  position: relative;
  z-index: 1;
}

.amenity-mosaic .section-header {
  align-items: start;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-bottom: 26px;
}

.amenity-photo {
  border: 10px solid var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.amenity-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.amenity-photo figcaption {
  background: rgba(7, 16, 18, 0.78);
  bottom: 18px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  left: 18px;
  padding: 10px 12px;
  position: absolute;
}

.service-grid {
  display: grid;
  align-content: start;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.service-card {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 74px;
  padding: 14px;
}

.service-card > * {
  min-width: 0;
}

.service-card strong {
  display: block;
  font-size: 1rem;
  grid-column: 2;
  line-height: 1.2;
  margin-bottom: 3px;
  overflow-wrap: anywhere;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  grid-column: 2;
  line-height: 1.3;
  margin: 0;
  overflow-wrap: anywhere;
}

.service-icon,
.mini-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  grid-row: 1 / span 2;
  height: 32px;
  justify-content: center;
  justify-self: start;
  min-width: 32px;
  padding-inline: 8px;
  width: 42px;
}

.service-card.is-featured {
  background: color-mix(in srgb, var(--sage) 66%, var(--paper));
  border-color: color-mix(in srgb, var(--teal) 46%, var(--line));
  grid-column: 1 / -1;
  min-height: 88px;
}

.service-card.is-featured strong {
  color: var(--teal);
  font-size: 1.08rem;
}

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

.room-page-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.room-page-intro span {
  background: color-mix(in srgb, var(--sage) 72%, var(--paper));
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 12px;
}

.room-card {
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.room-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.room-card .card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.room-card .card-media img {
  cursor: zoom-in;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.room-card:hover .card-media img {
  transform: scale(1.045);
}

.card-body {
  padding: 22px;
}

.room-card h2,
.room-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1;
  margin: 0 0 10px;
}

.room-card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 16px;
}

.room-price-badge,
.room-price {
  background: var(--teal);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 14px;
  padding: 8px 11px;
}

.amenities,
.check-list,
.policy-list,
.contact-list,
.quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenities li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 6px 9px;
}

/* Keep compact component typography from inheriting the larger page copy size. */
main .service-grid .service-card p {
  font-size: 0.9rem;
}

main .service-grid .service-card strong {
  font-size: 1rem;
}

main .service-grid .service-card.is-featured strong {
  font-size: 1.08rem;
}

main .room-card .amenities li {
  font-size: 0.84rem;
}

.check-list {
  display: grid;
  gap: 9px;
}

.check-list li {
  color: var(--muted);
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  border-bottom: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 0.35em;
  transform: rotate(45deg);
  width: 5px;
}

.nearby-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nearby-card {
  min-height: 150px;
  padding: 20px;
}

.nearby-card .mini-icon {
  min-width: 54px;
  white-space: nowrap;
  width: auto;
}

.nearby-card.highlight {
  background: var(--teal);
  color: #fff;
}

.nearby-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.nearby-card strong {
  display: block;
  line-height: 1.2;
  margin-bottom: 8px;
}

.nearby-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

.booking-info {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.info-panel {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
}

.booking-info .info-panel {
  border-left: 6px solid color-mix(in srgb, var(--teal) 42%, var(--line));
  padding: 26px;
}

.info-panel.dark-panel {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal) 11%, var(--paper)), var(--paper) 52%),
    var(--paper);
  border-color: var(--line);
  border-left-color: var(--terracotta);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.info-panel.dark-panel::before {
  content: none;
}

.info-panel.dark-panel p {
  color: var(--muted);
}

:root[data-theme="dark"] .info-panel.dark-panel {
  background: var(--charcoal);
  color: #fff;
}

:root[data-theme="dark"] .info-panel.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.quick-list {
  display: grid;
  gap: 16px;
}

.quick-list li {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
}

.quick-list strong {
  display: block;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.location-grid .quick-list br {
  display: none;
}

.location-grid .quick-list li > div {
  display: grid;
  gap: 4px;
}

.booking-info h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  min-height: 2.05em;
}

.booking-info p,
.booking-info li {
  overflow-wrap: anywhere;
}

.booking-info .button {
  align-self: flex-start;
  margin-top: auto;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 420px;
  width: 100%;
}

.cta-band {
  align-items: stretch;
  background:
    linear-gradient(135deg, var(--paper), color-mix(in srgb, var(--sage) 74%, var(--paper))),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  background: linear-gradient(180deg, var(--terracotta), var(--teal));
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}

.cta-band img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.cta-band .cta-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 54px);
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 0 0 16px;
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 24px;
}

:root[data-theme="dark"] .cta-band {
  background: var(--charcoal);
  color: #fff;
}

:root[data-theme="dark"] .cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero,
.contact-hero {
  padding-block: clamp(70px, 10vw, 120px) clamp(34px, 6vw, 70px);
  text-align: center;
}

.page-hero p,
.contact-hero p {
  margin-inline: auto;
  max-width: 760px;
}

.room-detail {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--paper) 94%, var(--sage)), var(--paper)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  align-items: start;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.04fr);
  margin-bottom: 24px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  scroll-margin-top: 110px;
}

.room-detail::before {
  background: linear-gradient(180deg, var(--terracotta), var(--teal));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 6px;
}

.room-gallery {
  background: var(--charcoal);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  padding: 10px;
}

.room-detail-content {
  min-width: 0;
}

.room-detail-content h2 {
  max-width: 11ch;
  overflow-wrap: normal;
}

.room-gallery img {
  aspect-ratio: 1 / 0.78;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 220ms ease;
  width: 100%;
}

.room-gallery img:hover {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.room-gallery img:first-child {
  aspect-ratio: 4 / 3;
  grid-column: 1 / -1;
}

.room-detail-eyebrow {
  color: var(--teal);
  display: block;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.room-detail-content p {
  color: var(--muted);
}

:root[data-theme="dark"] .room-detail {
  background: color-mix(in srgb, var(--paper) 82%, var(--charcoal));
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 34px;
  max-width: 920px;
}

.gallery-filter {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 40px;
  padding: 0 15px;
}

.gallery-filter.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  background: #111;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #fff;
  cursor: pointer;
  min-height: 250px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-trigger {
  cursor: zoom-in;
}

.gallery-card.featured,
.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-media,
.gallery-media img {
  display: block;
  height: 100%;
  width: 100%;
}

.gallery-media img {
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-meta {
  bottom: 18px;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.gallery-meta small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gallery-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.lightbox {
  align-items: center;
  background: rgba(5, 10, 11, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 80;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  max-width: min(1040px, 94vw);
  position: relative;
  width: 100%;
}

.lightbox-image {
  background: #000;
  border-radius: var(--radius);
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.5rem;
  height: 42px;
  justify-content: center;
  position: absolute;
  width: 42px;
  z-index: 2;
}

.lightbox-close {
  right: 12px;
  top: 12px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-caption {
  color: #fff;
  margin-top: 12px;
}

.lightbox-caption h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0;
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.contact-card,
.form-card {
  padding: clamp(24px, 4vw, 40px);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-block: 24px;
}

.contact-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid label {
  color: var(--muted);
  display: grid;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 8px;
}

.form-grid input,
.form-grid textarea {
  background: color-mix(in srgb, var(--paper) 88%, var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  min-height: 46px;
  padding: 12px 14px;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.policy-layout {
  align-items: start;
  grid-template-columns: 300px minmax(0, 1fr);
}

.policy-sidebar {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal) 9%, var(--paper)), var(--paper)),
    var(--paper);
  border: 1px solid color-mix(in srgb, var(--teal) 24%, var(--line));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 22px);
}

.policy-sidebar strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 18px;
}

.policy-sidebar a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  font-weight: 850;
  padding-block: 11px;
}

:root[data-theme="dark"] .policy-sidebar {
  background: var(--charcoal);
  color: #fff;
}

  :root[data-theme="dark"] .policy-sidebar a {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
  }

.policy-main {
  display: grid;
  gap: 12px;
}

.policy-card {
  overflow: hidden;
  padding: 0;
  scroll-margin-top: 100px;
}

.policy-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 950;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}

.policy-toggle::after {
  color: var(--teal);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.policy-card.is-open .policy-toggle::after {
  content: "-";
}

.policy-body {
  color: var(--muted);
  display: none;
  padding: 0 22px 22px;
}

.policy-card.is-open .policy-body {
  display: block;
}

.policy-list {
  display: grid;
  gap: 10px;
}

.policy-list li {
  border-left: 3px solid var(--teal);
  padding-left: 12px;
}

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

.policy-photo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  cursor: zoom-in;
  display: grid;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.policy-photo-card img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.policy-photo-card span {
  font-weight: 900;
  padding: 16px 18px;
}

.admin-entry-zone {
  position: relative;
}

.admin-hotspot {
  bottom: -76px;
  height: 82px;
  opacity: 0;
  position: absolute;
  right: 0;
  width: min(360px, 32vw);
  z-index: 3;
}

.admin-hotspot:focus-visible {
  opacity: 1;
  outline: 2px diashed var(--terracotta);
  outline-offset: 4px;
}

.site-footer {
  background: var(--charcoal);
  color: #fff;
  padding-block: 34px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.footer-logo {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
  height: auto;
  max-height: 48px;
  object-fit: contain;
  width: 102px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 850;
  }

.muted {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(420px, 0.95fr) minmax(450px, 0.78fr);
  }

  .rooms-hero .hero-content {
    grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 0.78fr);
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 5.2vw, 5rem);
  }

  .hero-photo-frame {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .brand-logo-shell {
    height: 44px;
    width: 96px;
  }

  .brand-logo {
    max-height: 34px;
    width: 78px;
  }

  body:not(.admin-body) .header-inner {
    display: flex;
  }

  .brand-name {
    display: none;
  }

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

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    gap: 0;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-self: stretch;
    left: 0;
    padding: 18px clamp(18px, 4vw, 42px) 24px;
    position: fixed;
    right: 0;
    top: var(--header-h);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    padding: 13px 0;
  }

  .site-nav .button,
  .site-nav .theme-toggle {
    margin-top: 16px;
    width: 100%;
  }

  .hero-content,
  .section-header,
  .story-grid,
  .location-grid,
  .contact-grid,
  .policy-layout,
  .room-detail,
  .amenity-mosaic,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .solar-feature {
    grid-template-columns: 1fr;
  }

  .solar-feature-media,
  .solar-feature-media img {
    min-height: 0;
  }

  .hero-suite {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-block: 70px 44px;
  }

  .hero-metrics {
    position: relative;
  }

  .hero-media-board {
    display: grid;
    justify-self: stretch;
    max-width: none;
  }

  .hero-photo-frame {
    border-radius: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .rooms-hero .hero-content {
    grid-template-columns: 1fr;
  }

  .rooms-hero .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .hero-photo-frame img,
  .hero-photo-frame > img:first-child,
  .hero-photo-frame img:nth-child(2),
  .hero-photo-frame img:nth-child(3) {
    aspect-ratio: 1 / 0.78;
    border-radius: 10px;
  }

  .metric-row,
  .service-grid,
  .nearby-grid,
  .booking-info,
  .official-rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .policy-sidebar {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    position: static;
  }

  .policy-sidebar strong {
    min-width: max-content;
  }

  .policy-sidebar a {
    border: 0;
    min-width: max-content;
    padding-block: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --copy-size: 1rem;
    --header-h: 66px;
  }

  html,
  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  .container {
    padding-inline: 14px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .brand-logo {
    max-height: 30px;
    width: 74px;
  }

  .menu-toggle {
    height: 42px;
    width: 42px;
  }

  .hero-suite {
    min-height: auto;
  }

  .hero-suite::before {
    background:
      linear-gradient(180deg, rgba(7, 16, 18, 0.76), rgba(7, 16, 18, 0.46) 52%, rgba(7, 16, 18, 0.76)),
      var(--hero-image, none) center / cover no-repeat;
  }

  .hero-content {
    min-height: auto;
    gap: 22px;
    padding-block: 34px 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.25rem);
    line-height: 0.95;
    margin-bottom: 16px;
  }

  .hero-copy p {
    font-size: var(--copy-size);
    line-height: 1.48;
    margin-bottom: 22px;
  }

  .hero-display-logo {
    margin-bottom: 18px;
    width: min(330px, 92vw);
  }

  .hero-proof {
    font-size: 0.92rem;
    line-height: 1.35;
    margin-top: 20px;
    padding-left: 12px;
  }

  .solar-feature-media,
  .solar-feature-media img {
    min-height: 0;
  }

  .hero-photo-frame {
    gap: 8px;
    padding: 8px;
  }

  .hero-photo-frame img:nth-child(2),
  .hero-photo-frame img:nth-child(3) {
    transform: none;
  }

  .room-detail-content h2 {
    max-width: 100%;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .theme-toggle {
    width: 100%;
  }

  .button,
  .theme-toggle,
  .filter-button {
    font-size: 0.9rem;
    min-height: 42px;
    padding: 11px 14px;
  }

  .metric-row,
  .service-grid,
  .nearby-grid,
  .booking-info,
  .official-rules-grid,
  .room-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .metric-item {
    min-width: 0;
    padding: 10px 12px 12px;
  }

  .metric-item strong {
    font-size: clamp(1rem, 4.8vw, 1.05rem);
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .metric-item span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .section {
    padding-block: 52px;
  }

  .section-header h1,
  .section-header h2,
  .page-hero h1,
  .contact-hero h1,
  .room-detail h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.08;
  }

  .section-header p,
  .page-hero p,
  .contact-hero p,
  .contact-card p,
  .form-card p,
  .cta-band p,
  .room-card p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .solar-feature {
    gap: 22px;
    padding-block: 50px;
  }

  .solar-feature-copy h2 {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
    line-height: 1;
  }

  .solar-feature-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .service-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 14px;
  }

  main .service-grid .service-card strong,
  main .service-grid .service-card.is-featured strong {
    font-size: 0.96rem;
    line-height: 1.18;
  }

  main .service-grid .service-card p {
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .service-icon,
  .mini-icon {
    font-size: 0.68rem;
    height: 32px;
    line-height: 1;
    width: 32px;
  }

  .room-card h2,
  .room-card h3 {
    font-size: clamp(1.42rem, 8vw, 1.85rem);
    line-height: 1.02;
  }

  .card-body {
    padding: 18px;
  }

  .amenities {
    gap: 6px;
  }

  main .room-card .amenities li,
  .amenities li {
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.2;
    padding: 6px 8px;
  }

  .room-price-badge,
  .room-price {
    font-size: 0.74rem;
    padding: 7px 10px;
  }

  .room-gallery {
    gap: 7px;
    padding: 8px;
  }

  .room-detail {
    border-radius: 14px;
    padding: 16px;
  }

  .room-detail-content h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1;
  }

  .cta-band {
    border-radius: 14px;
  }

  .cta-band .cta-copy {
    padding: 24px 18px;
  }

  .cta-band img {
    min-height: 210px;
  }

  .cta-band h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1;
  }

  .gallery-card.featured,
  .gallery-card.wide {
    grid-column: span 1;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .story-media img:nth-child(2) {
    margin-top: 0;
  }

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

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

  .admin-hotspot {
    bottom: -48px;
    height: 64px;
    right: 16px;
    width: min(240px, 56vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
