:root {
  --charcoal: #26313a;
  --ivory: #f6f2eb;
  --stone: #d9d0c3;
  --slate-blue: #6c8296;
  --olive-gray: #6e7568;
  --brass: #b69a6a;
  --white: #fffdfa;
  --line: rgba(38, 49, 58, 0.12);
  --shadow: 0 20px 48px rgba(38, 49, 58, 0.08);
  --shadow-soft: 0 14px 28px rgba(38, 49, 58, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(182, 154, 106, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, var(--ivory) 100%);
  color: var(--charcoal);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

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

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

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

.container {
  width: min(var(--max-width), calc(100% - 1.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(246, 242, 235, 0.9);
  border-bottom: 1px solid rgba(38, 49, 58, 0.08);
  box-shadow: 0 8px 24px rgba(38, 49, 58, 0.04);
}

.ddsa-notice {
  border-bottom: 1px solid rgba(38, 49, 58, 0.08);
  background: rgba(255, 253, 250, 0.82);
  color: rgba(38, 49, 58, 0.78);
  font-size: 0.84rem;
}

.ddsa-notice-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 38px;
  padding-block: 0.42rem;
  text-align: center;
}

.ddsa-notice a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.35rem 0.72rem;
  border: 1px solid rgba(182, 154, 106, 0.42);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(246, 242, 235, 0.72);
}

.ddsa-notice a:hover,
.ddsa-notice a:focus {
  border-color: rgba(182, 154, 106, 0.7);
  background: rgba(182, 154, 106, 0.16);
}

@media (max-width: 560px) {
  .ddsa-notice-row {
    flex-direction: column;
    gap: 0.38rem;
    min-height: 0;
    padding-block: 0.55rem;
  }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(46px, 5vw, 62px);
  max-width: min(320px, 54vw);
  object-fit: contain;
}

@media (max-width: 560px) {
  .header-row {
    min-height: 76px;
  }

  .brand-logo {
    height: clamp(38px, 10vw, 48px);
    max-width: min(240px, 48vw);
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.88);
  color: var(--charcoal);
}

.btn-header-mobile {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 0 1rem;
}

.site-nav.is-open {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nav-links a {
  font-size: 0.98rem;
  color: rgba(38, 49, 58, 0.82);
  padding-bottom: 0.15rem;
}

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

.nav-links a[aria-current="page"] {
  border-bottom: 1px solid rgba(182, 154, 106, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--charcoal), #36424d);
  color: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255, 253, 250, 0.82);
  border-color: var(--line);
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, var(--brass), #a88b57);
  color: #fffdf9;
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero.page-hero-compact {
  padding: 2.5rem 0 1.25rem;
}

.page-hero.page-hero-compact h1 {
  font-size: clamp(2.25rem, 5.4vw, 3.5rem);
}

.page-hero.page-hero-compact .lede {
  font-size: 1rem;
  line-height: 1.7;
}

.hero-grid,
.two-column,
.cta-split,
.contact-grid,
.detail-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-card,
.panel,
.card,
.availability-board,
.form-shell,
.terms-box,
.map-placeholder,
.location-map-card,
.note-panel,
.story-panel {
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.panel,
.card,
.availability-board,
.form-shell,
.terms-box,
.map-placeholder,
.location-map-card,
.note-panel,
.story-panel {
  padding: 1.4rem;
}

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

.hero-card {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.77rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-gray);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: rgba(38, 49, 58, 0.82);
}

.lede {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-actions,
.card-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 0.2rem;
}

.hero-actions .btn {
  flex: 1 1 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(108, 130, 150, 0.1);
  color: var(--charcoal);
  font-size: 0.9rem;
}

.section {
  padding: 1.5rem 0 0;
}

.section-head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  max-width: 720px;
}

.card-grid,
.amenity-grid,
.gallery-grid,
.room-grid,
.blog-grid,
.review-grid,
.service-grid,
.feature-grid,
.logo-grid {
  display: grid;
  gap: 1rem;
}

.card {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.card.card-highlight {
  background:
    linear-gradient(180deg, rgba(182, 154, 106, 0.08), rgba(255, 253, 250, 0.82));
  border-color: rgba(182, 154, 106, 0.28);
}

.card-top {
  display: grid;
  gap: 0.8rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(38, 49, 58, 0.72);
  font-size: 0.92rem;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(38, 49, 58, 0.82);
}

.placeholder-visual,
.gallery-tile,
.room-visual,
.map-placeholder,
.location-map-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38, 49, 58, 0.08);
  background:
    linear-gradient(135deg, rgba(108, 130, 150, 0.14), rgba(217, 208, 195, 0.3)),
    linear-gradient(180deg, rgba(255, 253, 250, 0.8), rgba(217, 208, 195, 0.55));
}

.real-photo {
  background: rgba(217, 208, 195, 0.35);
}

.real-photo::after {
  inset: 12px;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.38);
}

.real-photo img,
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38, 49, 58, 0.08);
  background: rgba(217, 208, 195, 0.28);
  box-shadow: var(--shadow-soft);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.photo-frame-tall {
  min-height: 300px;
}

.photo-frame-wide {
  min-height: 240px;
}

.photo-frame-medium {
  min-height: 260px;
}

.photo-grid {
  display: grid;
  gap: 0.85rem;
}

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

.photo-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(38, 49, 58, 0.78);
  color: var(--ivory);
  font-size: 0.84rem;
}

.placeholder-visual::after,
.gallery-tile::after,
.room-visual::after,
.map-placeholder::after,
.location-map-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.placeholder-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(38, 49, 58, 0.8);
  color: var(--ivory);
  font-size: 0.84rem;
}

.availability-board,
.form-shell {
  display: grid;
  gap: 1rem;
}

body.page-slug-contact .contact-form-slot,
body.claremont-page-contact .contact-form-slot {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(182, 154, 106, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.78);
}

body.page-slug-contact .contact-form-head,
body.claremont-page-contact .contact-form-head {
  gap: 0.5rem;
  margin-bottom: 0;
}

body.page-slug-contact .contact-form-head h2,
body.claremont-page-contact .contact-form-head h2,
body.page-slug-contact .contact-form-head h3,
body.claremont-page-contact .contact-form-head h3 {
  margin: 0;
  color: var(--charcoal);
}

body.page-slug-contact .contact-form-head p,
body.claremont-page-contact .contact-form-head p,
body.page-slug-contact .contact-form-content .nf-form-fields-required,
body.claremont-page-contact .contact-form-content .nf-form-fields-required,
body.page-slug-contact .contact-form-content .nf-after-field,
body.claremont-page-contact .contact-form-content .nf-after-field {
  color: rgba(38, 49, 58, 0.72);
}

body.page-slug-contact .contact-form-content,
body.claremont-page-contact .contact-form-content {
  display: grid;
  gap: 1rem;
}

body.page-slug-contact .contact-form-content .nf-form-cont,
body.claremont-page-contact .contact-form-content .nf-form-cont {
  margin-top: 0.15rem;
}

body.page-slug-contact .contact-form-content .nf-field-container,
body.claremont-page-contact .contact-form-content .nf-field-container {
  margin-bottom: 0.85rem;
}

body.page-slug-contact .contact-form-content .nf-field-label,
body.claremont-page-contact .contact-form-content .nf-field-label {
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

body.page-slug-contact .contact-form-content .nf-field-label label,
body.claremont-page-contact .contact-form-content .nf-field-label label,
body.page-slug-contact .contact-form-content .field-wrap label,
body.claremont-page-contact .contact-form-content .field-wrap label {
  color: var(--charcoal);
}

body.page-slug-contact .contact-form-content input,
body.claremont-page-contact .contact-form-content input,
body.page-slug-contact .contact-form-content select,
body.claremont-page-contact .contact-form-content select,
body.page-slug-contact .contact-form-content textarea,
body.claremont-page-contact .contact-form-content textarea {
  color: var(--charcoal);
}

body.page-slug-contact .contact-form-content input::placeholder,
body.claremont-page-contact .contact-form-content input::placeholder,
body.page-slug-contact .contact-form-content textarea::placeholder,
body.claremont-page-contact .contact-form-content textarea::placeholder {
  color: rgba(38, 49, 58, 0.48);
}

body.page-slug-contact .contact-form-content .ninja-forms-req-symbol,
body.claremont-page-contact .contact-form-content .ninja-forms-req-symbol,
body.page-slug-contact .contact-form-content .nf-error-msg,
body.claremont-page-contact .contact-form-content .nf-error-msg {
  color: var(--brass);
}

body.page-slug-contact .contact-form-content .submit-container,
body.claremont-page-contact .contact-form-content .submit-container {
  margin-top: 0.35rem;
}

.home-booking-overview {
  align-self: start;
}

.home-booking-overview,
.home-booking-process {
  padding: clamp(1.35rem, 2vw, 1.65rem);
}

.home-booking-overview .section-head,
.home-booking-process .section-head {
  margin-bottom: 0;
}

.home-booking-process {
  display: grid;
  gap: 0.95rem;
  align-self: start;
}

.home-booking-process .photo-frame-wide {
  min-height: 210px;
}

.home-booking-process .process-strip {
  gap: 0.65rem;
}

.home-booking-process .process-step {
  padding: 0.9rem 1rem;
}

.booking-zones {
  display: grid;
  gap: 0.9rem;
}

.booking-zone {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.8);
}

.booking-zone-fallback,
.booking-zone-shortcode {
  display: grid;
  gap: 0.45rem;
}

.booking-zone-fallback {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(108, 130, 150, 0.32);
  background: rgba(246, 242, 235, 0.72);
}

.booking-zone-fallback strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.page-slug-conference-rooms .booking-zone-shortcode {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

body.page-slug-conference-rooms .booking-zone-shortcode > * {
  max-width: 100%;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap,
body.page-slug-conference-rooms .booking-zone-shortcode [class*="ea-"],
body.page-slug-conference-rooms .booking-zone-shortcode [id*="ea-"],
body.page-slug-conference-rooms .booking-zone-shortcode .fc {
  max-width: 100%;
}

body.page-slug-conference-rooms .booking-zone-shortcode form,
body.page-slug-conference-rooms .booking-zone-shortcode table,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-view-harness,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-scrollgrid {
  width: 100%;
  max-width: 100%;
}

body.page-slug-conference-rooms .booking-zone-shortcode table {
  border-collapse: collapse;
}

body.page-slug-conference-rooms .booking-zone-shortcode input,
body.page-slug-conference-rooms .booking-zone-shortcode select,
body.page-slug-conference-rooms .booking-zone-shortcode textarea,
body.page-slug-conference-rooms .booking-zone-shortcode button {
  width: 100%;
  max-width: 100%;
}

body.page-slug-conference-rooms .booking-zone-shortcode input,
body.page-slug-conference-rooms .booking-zone-shortcode select,
body.page-slug-conference-rooms .booking-zone-shortcode textarea {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(38, 49, 58, 0.14);
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
}

body.page-slug-conference-rooms .booking-zone-shortcode textarea {
  min-height: 120px;
  resize: vertical;
}

body.page-slug-conference-rooms .booking-zone-shortcode label,
body.page-slug-conference-rooms .booking-zone-shortcode .control-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
}

body.page-slug-conference-rooms .booking-zone-shortcode .form-group,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-row,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-row > div,
body.page-slug-conference-rooms .booking-zone-shortcode .row,
body.page-slug-conference-rooms .booking-zone-shortcode .row > div {
  max-width: 100%;
}

body.page-slug-conference-rooms .booking-zone-shortcode .form-group,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-row,
body.page-slug-conference-rooms .booking-zone-shortcode .row {
  margin-bottom: 0.9rem;
}

body.page-slug-conference-rooms .booking-zone-shortcode input[type="submit"],
body.page-slug-conference-rooms .booking-zone-shortcode button[type="submit"],
body.page-slug-conference-rooms .booking-zone-shortcode .btn,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-btn-submit {
  min-height: 50px;
  width: 100%;
  max-width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--charcoal), #36424d);
  color: var(--ivory);
  font-weight: 700;
  cursor: pointer;
}

body.page-slug-conference-rooms .booking-zone-shortcode button:not([type="submit"]):not(.fc-button):not(.btn),
body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker button,
body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker .ui-state-default,
body.page-slug-conference-rooms .booking-zone-shortcode [class*="slot"] button,
body.page-slug-conference-rooms .booking-zone-shortcode [class*="slot"] a,
body.page-slug-conference-rooms .booking-zone-shortcode [class*="time-slot"] button,
body.page-slug-conference-rooms .booking-zone-shortcode [class*="time-slot"] a {
  width: auto;
  max-width: none;
  min-height: 2.2rem;
  padding: 0.35rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(38, 49, 58, 0.12);
  background: rgba(255, 253, 250, 0.92);
  color: var(--charcoal);
  font-weight: 600;
  box-shadow: none;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker table {
  table-layout: fixed;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker th,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-col-header-cell-cushion {
  color: rgba(38, 49, 58, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker td,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-daygrid-day,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-timegrid-slot {
  vertical-align: middle;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker td a,
body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker td span,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-daygrid-day-number,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-timegrid-slot-label-cushion,
body.page-slug-conference-rooms .booking-zone-shortcode [class*="slot"],
body.page-slug-conference-rooms .booking-zone-shortcode [class*="time-slot"] {
  color: var(--charcoal);
  text-decoration: none;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker td a,
body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker td span,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-daygrid-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0.2rem 0.35rem;
  line-height: 1;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td a.ui-state-default,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td span.ui-state-default,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td a.ui-state-default,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td span.ui-state-default {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--charcoal);
  font-weight: 700;
}

body.page-slug-conference-rooms .booking-zone-shortcode [class*="slot-list"],
body.page-slug-conference-rooms .booking-zone-shortcode [class*="available-hours"],
body.page-slug-conference-rooms .booking-zone-shortcode [class*="available-slots"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body.page-slug-conference-rooms .booking-zone-shortcode .fc-toolbar {
  gap: 0.75rem;
  flex-wrap: wrap;
}

body.page-slug-conference-rooms .booking-zone-shortcode .fc-toolbar-title {
  font-size: 1.15rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
}

body.page-slug-conference-rooms .booking-zone-shortcode .fc-button {
  width: auto;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.9);
  color: var(--charcoal);
  box-shadow: none;
}

body.page-slug-conference-rooms .booking-zone-shortcode .fc-button:not(:disabled):hover,
body.page-slug-conference-rooms .booking-zone-shortcode .fc-button:not(:disabled):focus {
  background: rgba(246, 242, 235, 1);
  color: var(--charcoal);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker,
body.page-slug-conference-rooms .booking-zone-shortcode .fc,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap {
  border-radius: var(--radius-md);
}

body.page-slug-conference-rooms .room-options-head,
body.claremont-page-conference-rooms .room-options-head {
  max-width: 760px;
  gap: 0.55rem;
}

body.page-slug-conference-rooms .room-comparison-module,
body.claremont-page-conference-rooms .room-comparison-module {
  max-width: 980px;
}

body.page-slug-conference-rooms .room-options-head h2,
body.claremont-page-conference-rooms .room-options-head h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.12;
}

body.page-slug-conference-rooms .room-grid,
body.claremont-page-conference-rooms .room-grid {
  gap: clamp(1.1rem, 2.4vw, 1.6rem);
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-slug-conference-rooms .room-grid .card,
body.claremont-page-conference-rooms .room-grid .card {
  gap: 0;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 16px 36px rgba(38, 49, 58, 0.09);
}

body.page-slug-conference-rooms .room-grid .room-visual,
body.claremont-page-conference-rooms .room-grid .room-visual {
  min-height: clamp(190px, 21vw, 250px);
  border: 0;
  border-radius: 0;
}

body.page-slug-conference-rooms .room-grid .card-top,
body.claremont-page-conference-rooms .room-grid .card-top {
  align-content: start;
  gap: 0.6rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

body.page-slug-conference-rooms .room-grid .card-top h3,
body.claremont-page-conference-rooms .room-grid .card-top h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

body.page-slug-conference-rooms .room-grid .card-top > p,
body.claremont-page-conference-rooms .room-grid .card-top > p {
  margin: 0;
  line-height: 1.62;
}

body.page-slug-conference-rooms .room-grid .meta,
body.claremont-page-conference-rooms .room-grid .meta {
  gap: 0.42rem;
}

body.page-slug-conference-rooms .room-grid .meta .pill,
body.claremont-page-conference-rooms .room-grid .meta .pill {
  min-height: 32px;
  padding: 0.24rem 0.66rem;
  font-size: 0.84rem;
}

body.page-slug-conference-rooms .room-grid .list,
body.claremont-page-conference-rooms .room-grid .list {
  gap: 0.32rem;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.page-slug-conference-rooms .room-shared-note,
body.claremont-page-conference-rooms .room-shared-note {
  display: grid;
  gap: 0.45rem;
  margin-top: clamp(0.85rem, 2vw, 1.1rem);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(182, 154, 106, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.78);
  color: rgba(38, 49, 58, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

body.page-slug-conference-rooms .room-shared-note p,
body.claremont-page-conference-rooms .room-shared-note p {
  margin: 0;
}

body.page-slug-conference-rooms .booking-flow-stack {
  display: grid;
  gap: 1.2rem;
}

body.page-slug-conference-rooms .booking-flow-note {
  margin-bottom: 0.2rem;
}

body.page-slug-conference-rooms .booking-room-flows {
  display: grid;
  gap: 1.2rem;
}

body.page-slug-conference-rooms .booking-room-flow {
  gap: 0.9rem;
}

body.page-slug-conference-rooms .booking-room-flow .section-head {
  margin-bottom: 0;
}

body.page-slug-conference-rooms .booking-room-flow .pill-row {
  margin-top: -0.1rem;
}

body.page-slug-conference-rooms .booking-room-flow .booking-zones {
  gap: 0.65rem;
}

body.page-slug-conference-rooms .booking-room-flow .booking-zone {
  padding: 1rem 1.15rem 1.15rem;
}

body.page-slug-conference-rooms .booking-room-flow .booking-zone h3 {
  font-size: 1.22rem;
}

body.page-slug-conference-rooms .booking-room-flow .booking-zone-shortcode {
  margin-top: 0;
}

body.page-slug-conference-rooms .booking-room-flow,
body.claremont-page-conference-rooms .booking-room-flow {
  padding: clamp(1.35rem, 3vw, 2.3rem);
  border: 1px solid rgba(182, 154, 106, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.96), rgba(246, 242, 235, 0.86)),
    var(--white);
  box-shadow: 0 18px 48px rgba(38, 49, 58, 0.1);
}

body.page-slug-conference-rooms .booking-room-flow .section-head h2,
body.claremont-page-conference-rooms .booking-room-flow .section-head h2 {
  max-width: 760px;
}

body.page-slug-conference-rooms .booking-flow-note,
body.claremont-page-conference-rooms .booking-flow-note {
  padding: 1.15rem 1.25rem;
  border-color: rgba(182, 154, 106, 0.24);
  background: rgba(255, 253, 250, 0.72);
}

body.page-slug-conference-rooms .booking-zone,
body.claremont-page-conference-rooms .booking-zone {
  gap: 0.8rem;
  padding: clamp(0.95rem, 2.1vw, 1.35rem);
  border-color: rgba(182, 154, 106, 0.18);
  background: rgba(255, 253, 250, 0.64);
  box-shadow: none;
}

body.page-slug-conference-rooms .booking-zone h3,
body.claremont-page-conference-rooms .booking-zone h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

body.page-slug-conference-rooms .booking-zone > p,
body.claremont-page-conference-rooms .booking-zone > p {
  max-width: 760px;
  color: rgba(38, 49, 58, 0.78);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap {
  padding: clamp(0.95rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(38, 49, 58, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .row,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ea-row,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .row,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ea-row {
  gap: clamp(1rem, 2.2vw, 1.45rem);
}

body.page-slug-conference-rooms .booking-zone-shortcode .form-group,
body.claremont-page-conference-rooms .booking-zone-shortcode .form-group {
  margin-bottom: 1.2rem;
}

body.page-slug-conference-rooms .booking-zone-shortcode .claremont-hidden-location-field,
body.claremont-page-conference-rooms .booking-zone-shortcode .claremont-hidden-location-field,
body.page-slug-conference-rooms .booking-zone-shortcode .claremont-empty-ea-state,
body.claremont-page-conference-rooms .booking-zone-shortcode .claremont-empty-ea-state {
  display: none !important;
}

body.page-slug-conference-rooms .booking-zone-shortcode .claremont-managed-ea-field,
body.claremont-page-conference-rooms .booking-zone-shortcode .claremont-managed-ea-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.page-slug-conference-rooms .booking-choice-panel,
body.claremont-page-conference-rooms .booking-choice-panel {
  display: grid;
  gap: clamp(0.85rem, 1.8vw, 1.1rem);
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgba(182, 154, 106, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(246, 242, 235, 0.74));
  box-shadow: 0 12px 28px rgba(38, 49, 58, 0.06);
}

body.page-slug-conference-rooms .booking-choice-step,
body.claremont-page-conference-rooms .booking-choice-step {
  display: grid;
  gap: 0.75rem;
}

body.page-slug-conference-rooms .booking-choice-step h3,
body.claremont-page-conference-rooms .booking-choice-step h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

body.page-slug-conference-rooms .booking-choice-grid,
body.claremont-page-conference-rooms .booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

body.page-slug-conference-rooms .booking-choice-grid-compact,
body.claremont-page-conference-rooms .booking-choice-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-slug-conference-rooms .booking-choice-card,
body.claremont-page-conference-rooms .booking-choice-card {
  display: grid;
  gap: 0.3rem;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(38, 49, 58, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.96);
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

body.page-slug-conference-rooms .booking-choice-card:hover,
body.claremont-page-conference-rooms .booking-choice-card:hover,
body.page-slug-conference-rooms .booking-choice-card:focus-visible,
body.claremont-page-conference-rooms .booking-choice-card:focus-visible {
  border-color: rgba(182, 154, 106, 0.58);
  box-shadow: 0 12px 26px rgba(38, 49, 58, 0.1);
  outline: none;
  transform: translateY(-1px);
}

body.page-slug-conference-rooms .booking-choice-card.is-selected,
body.claremont-page-conference-rooms .booking-choice-card.is-selected {
  border-color: rgba(38, 49, 58, 0.72);
  background: linear-gradient(180deg, rgba(246, 242, 235, 0.98), rgba(255, 253, 250, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(38, 49, 58, 0.14),
    0 12px 26px rgba(38, 49, 58, 0.09);
}

body.page-slug-conference-rooms .booking-choice-card strong,
body.claremont-page-conference-rooms .booking-choice-card strong {
  font-size: 0.98rem;
}

body.page-slug-conference-rooms .booking-choice-card span,
body.claremont-page-conference-rooms .booking-choice-card span {
  color: rgba(38, 49, 58, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

body.page-slug-conference-rooms .booking-choice-status,
body.claremont-page-conference-rooms .booking-choice-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(182, 154, 106, 0.68);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(182, 154, 106, 0.1);
  color: rgba(38, 49, 58, 0.82);
  font-weight: 700;
}

body.page-slug-conference-rooms .booking-selected-summary,
body.claremont-page-conference-rooms .booking-selected-summary {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(182, 154, 106, 0.32);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(182, 154, 106, 0.16), rgba(255, 253, 250, 0.9));
  color: rgba(38, 49, 58, 0.9);
  font-weight: 800;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap form,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap form {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.45rem);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap form > .col-md-6,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap form > .step.final.col-md-6,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap form > .col-md-6,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap form > .step.final.col-md-6 {
  width: 100%;
  float: none;
  padding: 0 !important;
}

body.page-slug-conference-rooms .booking-zone-shortcode label,
body.page-slug-conference-rooms .booking-zone-shortcode .control-label,
body.claremont-page-conference-rooms .booking-zone-shortcode label,
body.claremont-page-conference-rooms .booking-zone-shortcode .control-label {
  margin-bottom: 0.45rem;
  color: rgba(38, 49, 58, 0.94);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-slug-conference-rooms .booking-zone-shortcode input,
body.page-slug-conference-rooms .booking-zone-shortcode select,
body.page-slug-conference-rooms .booking-zone-shortcode textarea,
body.claremont-page-conference-rooms .booking-zone-shortcode input,
body.claremont-page-conference-rooms .booking-zone-shortcode select,
body.claremont-page-conference-rooms .booking-zone-shortcode textarea {
  min-height: 56px;
  border-color: rgba(38, 49, 58, 0.22);
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: inset 0 1px 2px rgba(38, 49, 58, 0.04);
}

body.page-slug-conference-rooms .booking-zone-shortcode input:focus,
body.page-slug-conference-rooms .booking-zone-shortcode select:focus,
body.page-slug-conference-rooms .booking-zone-shortcode textarea:focus,
body.claremont-page-conference-rooms .booking-zone-shortcode input:focus,
body.claremont-page-conference-rooms .booking-zone-shortcode select:focus,
body.claremont-page-conference-rooms .booking-zone-shortcode textarea:focus {
  border-color: rgba(182, 154, 106, 0.78);
  outline: 3px solid rgba(182, 154, 106, 0.18);
  box-shadow: 0 0 0 1px rgba(182, 154, 106, 0.18);
}

body.page-slug-conference-rooms .booking-zone-shortcode .claremont-room-helper,
body.claremont-page-conference-rooms .booking-zone-shortcode .claremont-room-helper {
  margin: 0.45rem 0 0;
  color: rgba(38, 49, 58, 0.66);
  font-size: 0.86rem;
  line-height: 1.45;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker,
body.claremont-page-conference-rooms .booking-zone-shortcode .ui-datepicker {
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.05rem);
  border: 1px solid rgba(38, 49, 58, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 10px 28px rgba(38, 49, 58, 0.06);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker-header,
body.claremont-page-conference-rooms .booking-zone-shortcode .ui-datepicker-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 0.55rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(246, 242, 235, 0.96), rgba(237, 229, 216, 0.82));
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker-prev,
body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker-next,
body.claremont-page-conference-rooms .booking-zone-shortcode .ui-datepicker-prev,
body.claremont-page-conference-rooms .booking-zone-shortcode .ui-datepicker-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker th,
body.claremont-page-conference-rooms .booking-zone-shortcode .ui-datepicker th {
  padding: 0.55rem 0.2rem;
  color: rgba(38, 49, 58, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ui-datepicker td,
body.claremont-page-conference-rooms .booking-zone-shortcode .ui-datepicker td {
  padding: 0.18rem;
  border: 1px solid rgba(38, 49, 58, 0.06);
  background: rgba(255, 253, 250, 0.58);
  text-align: center;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td a.ui-state-default,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td span.ui-state-default,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td a.ui-state-default,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td span.ui-state-default {
  padding: 0.48rem 0.24rem;
  color: rgba(38, 49, 58, 0.9);
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td a.ui-state-default:hover,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td a.ui-state-default:hover {
  background: rgba(182, 154, 106, 0.14);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day {
  border-color: rgba(182, 154, 106, 0.58);
  background: rgba(182, 154, 106, 0.16);
}

body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active {
  color: var(--charcoal);
}

body.page-slug-conference-rooms .booking-zone-shortcode .time,
body.page-slug-conference-rooms .booking-zone-shortcode .well,
body.claremont-page-conference-rooms .booking-zone-shortcode .time,
body.claremont-page-conference-rooms .booking-zone-shortcode .well {
  border: 1px solid rgba(38, 49, 58, 0.1);
  border-radius: var(--radius-md);
  background: rgba(246, 242, 235, 0.74);
  box-shadow: none;
}

body.page-slug-conference-rooms .booking-zone-shortcode input[type="submit"],
body.page-slug-conference-rooms .booking-zone-shortcode button[type="submit"],
body.page-slug-conference-rooms .booking-zone-shortcode .ea-btn-submit,
body.claremont-page-conference-rooms .booking-zone-shortcode input[type="submit"],
body.claremont-page-conference-rooms .booking-zone-shortcode button[type="submit"],
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-btn-submit {
  width: auto;
  min-width: min(100%, 260px);
  min-height: 54px;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(38, 49, 58, 0.92);
  background: linear-gradient(135deg, var(--charcoal), #3b4650);
  box-shadow: 0 14px 28px rgba(38, 49, 58, 0.15);
}

body.page-slug-conference-rooms .booking-zone-shortcode input[type="submit"]:hover,
body.page-slug-conference-rooms .booking-zone-shortcode button[type="submit"]:hover,
body.page-slug-conference-rooms .booking-zone-shortcode .ea-btn-submit:hover,
body.claremont-page-conference-rooms .booking-zone-shortcode input[type="submit"]:hover,
body.claremont-page-conference-rooms .booking-zone-shortcode button[type="submit"]:hover,
body.claremont-page-conference-rooms .booking-zone-shortcode .ea-btn-submit:hover {
  background: linear-gradient(135deg, #1f2931, var(--charcoal));
}

body.page-slug-conference-rooms .booking-zone-shortcode button[type="button"],
body.page-slug-conference-rooms .booking-zone-shortcode input[type="button"],
body.claremont-page-conference-rooms .booking-zone-shortcode button[type="button"],
body.claremont-page-conference-rooms .booking-zone-shortcode input[type="button"] {
  border-color: rgba(38, 49, 58, 0.18);
  background: rgba(255, 253, 250, 0.92);
  color: var(--charcoal);
}

@media (min-width: 900px) {
  body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap form,
  body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap form {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    align-items: start;
  }
}

@media (max-width: 760px) {
  body.page-slug-conference-rooms .booking-choice-grid,
  body.page-slug-conference-rooms .booking-choice-grid-compact,
  body.claremont-page-conference-rooms .booking-choice-grid,
  body.claremont-page-conference-rooms .booking-choice-grid-compact {
    grid-template-columns: 1fr;
  }

  body.page-slug-conference-rooms .booking-zone-shortcode .ea-bootstrap,
  body.claremont-page-conference-rooms .booking-zone-shortcode .ea-bootstrap {
    padding: 0.85rem;
  }

  body.page-slug-conference-rooms .booking-zone-shortcode input[type="submit"],
  body.page-slug-conference-rooms .booking-zone-shortcode button[type="submit"],
  body.page-slug-conference-rooms .booking-zone-shortcode .ea-btn-submit,
  body.claremont-page-conference-rooms .booking-zone-shortcode input[type="submit"],
  body.claremont-page-conference-rooms .booking-zone-shortcode button[type="submit"],
  body.claremont-page-conference-rooms .booking-zone-shortcode .ea-btn-submit {
    width: 100%;
  }
}

.status-banner,
.form-note {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(182, 154, 106, 0.24);
  background: linear-gradient(180deg, rgba(182, 154, 106, 0.12), rgba(255, 253, 250, 0.82));
}

.status-banner strong,
.form-note strong {
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

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

.calendar-day,
.calendar-slot {
  min-height: 74px;
  padding: 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(38, 49, 58, 0.08);
  background: rgba(246, 242, 235, 0.72);
  display: grid;
  align-content: space-between;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.calendar-day strong,
.calendar-slot strong {
  font-size: 0.96rem;
}

.status-open {
  color: #476d59;
}

.status-limited {
  color: #8d6f38;
}

.status-pending {
  color: #7a5362;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(38, 49, 58, 0.14);
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  color: var(--charcoal);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
}

.consent-check input {
  width: auto;
  min-height: auto;
  margin: 0.2rem 0 0;
}

[data-form-status] {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(108, 130, 150, 0.18);
  background: rgba(255, 253, 250, 0.88);
  line-height: 1.65;
}

.process-strip {
  display: grid;
  gap: 0.8rem;
}

.process-step {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.75);
  border: 1px solid var(--line);
}

.terms-box {
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(180deg, rgba(182, 154, 106, 0.08), rgba(255, 253, 250, 0.84));
}

.policy-note {
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(38, 49, 58, 0.1);
  background: rgba(255, 253, 250, 0.8);
}

.policy-note strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 0.85rem;
}

.service-list article {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: var(--shadow-soft);
}

.service-list h3,
.feature-grid h3 {
  margin-bottom: 0.55rem;
}

.callout-band {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(38, 49, 58, 0.08);
  background:
    linear-gradient(135deg, rgba(108, 130, 150, 0.14), rgba(255, 253, 250, 0.82));
  box-shadow: var(--shadow-soft);
}

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

.trust-band,
.location-shell {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(38, 49, 58, 0.08);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow-soft);
}

.trust-band-compact {
  padding: 1.05rem 1.15rem;
}

.trust-band-compact .section-head {
  margin-bottom: 1rem;
  max-width: 640px;
}

.trust-band-compact .section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.panel-photo {
  gap: 1.1rem;
}

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

.logo-box {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(38, 49, 58, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(246, 242, 235, 0.8));
  color: rgba(38, 49, 58, 0.56);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.74);
}

.address-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.map-ready {
  min-height: 260px;
}

.map-embed {
  padding: 0;
  background: rgba(255, 253, 250, 0.92);
}

.map-embed::after {
  display: none;
}

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

.map-actions {
  padding: 1rem;
}

.location-shell-compact .map-ready {
  min-height: 220px;
}

.location-shell-strong .map-ready {
  min-height: 320px;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.6rem 0 1.4rem;
  border-top: 1px solid rgba(38, 49, 58, 0.08);
  background: rgba(250, 247, 241, 0.96);
}

.footer-main {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}

.footer-logo-column {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 0.95rem;
  max-width: 460px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 680px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  min-width: 0;
  object-fit: contain;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: rgba(38, 49, 58, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(38, 49, 58, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(38, 49, 58, 0.16);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--ink);
  border-bottom-color: rgba(38, 49, 58, 0.46);
}

.footer-nav {
  display: grid;
  gap: 0.65rem 1.4rem;
  align-content: start;
}

.footer-nav a {
  color: rgba(38, 49, 58, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(38, 49, 58, 0.08);
  color: rgba(38, 49, 58, 0.62);
  font-size: 0.88rem;
}

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

@media (min-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 2rem));
  }

  .nav-toggle {
    display: none;
  }

  .btn-header-mobile {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    flex: 1;
    gap: 1.2rem;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-grid,
  .two-column,
  .cta-split,
  .contact-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .card-grid,
  .amenity-grid,
  .gallery-grid,
  .room-grid,
  .blog-grid,
  .review-grid,
  .service-grid,
  .feature-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  }

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

  .calendar-head {
    flex-direction: row;
    align-items: center;
  }

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

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

  .footer-main {
    grid-template-columns: minmax(440px, 1.65fr) minmax(260px, 0.8fr) minmax(160px, 0.42fr);
    gap: 3rem;
  }
}

@media (min-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 1.6rem;
  }

  .photo-frame-tall {
    min-height: 360px;
  }

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

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

  .gallery-grid,
  .room-grid,
  .blog-grid,
  .review-grid,
  .service-grid,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .logo-grid.logo-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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