:root {
  --paper: #f5f0e5;
  --paper-deep: #e8deca;
  --ink: #14251f;
  --ink-soft: #263a32;
  --gold: #d8b968;
  --gold-bright: #e6c878;
  --stone: #ded6c8;
  --muted-ink: #68736d;
  --line: rgb(20 37 31 / 18%);
  --font-serif-stack: Georgia, 'Times New Roman', serif;
  --font-sans-stack: 'Segoe UI', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans-stack);
  font-size: 16px;
  line-height: 1.6;
}

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

.shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 48% 45%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(8 22 17 / 86%) 0%, rgb(8 22 17 / 54%) 48%, rgb(8 22 17 / 18%) 100%),
    linear-gradient(180deg, rgb(6 17 13 / 58%) 0%, transparent 26%, rgb(6 17 13 / 46%) 100%);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid rgb(255 255 255 / 26%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  font-family: var(--font-serif-stack);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
  object-position: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav > a:not(.nav-cta) {
  padding-block: 10px;
  border-bottom: 1px solid transparent;
}

.desktop-nav > a:not(.nav-cta):hover,
.desktop-nav > a:not(.nav-cta):focus-visible {
  border-color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgb(255 255 255 / 52%);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: white;
  color: var(--ink);
}

.nav-cta svg,
.button svg {
  width: 17px;
  height: 17px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 198px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 70px 96px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-bright);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: white;
  font-family: var(--font-serif-stack);
  font-size: clamp(3.35rem, 7.2vw, 7.15rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 88%);
  font-family: var(--font-serif-stack);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 23px;
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.light-link {
  color: rgb(255 255 255 / 86%);
}

.availability-bar {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 94px;
  background: var(--paper);
  color: var(--ink);
}

.availability-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.availability-status,
.availability-facts {
  display: flex;
  align-items: center;
}

.availability-status {
  gap: 12px;
  font-family: var(--font-serif-stack);
  font-size: 1.12rem;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f805a;
  box-shadow: 0 0 0 5px rgb(47 128 90 / 13%);
}

.availability-facts {
  gap: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability-facts span {
  padding-inline: 28px;
  border-left: 1px solid var(--line);
}

.availability-facts span:last-child {
  padding-right: 0;
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    min-height: 82px;
  }

  .hero-content {
    min-height: calc(100svh - 188px);
    justify-content: flex-end;
    padding-block: 70px 72px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .availability-inner {
    min-height: 106px;
  }

  .availability-facts span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 30px, 1240px);
  }

  .hero-media {
    object-position: 53% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgb(8 22 17 / 68%) 0%, rgb(8 22 17 / 32%) 24%, rgb(8 22 17 / 83%) 100%);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 1.08rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .availability-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-block: 16px;
  }

  .availability-facts {
    font-size: 0.73rem;
  }

  .availability-facts span {
    padding-inline: 14px;
  }

  .availability-facts span:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress and Gutenberg integration */
body.ardwick-grove-site {
  min-width: 320px;
}

.ardwick-grove-site .site-content,
.ardwick-grove-site .ast-container,
.ardwick-grove-site #primary {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.ardwick-grove-site .hero h1 {
  color: white !important;
}

.ardwick-grove-site .facility-card h3 {
  margin-top: 48px;
  color: white !important;
}

.ardwick-grove-site .audience-fit h2,
.ardwick-grove-site .room-detail-included h2,
.ardwick-grove-site .audience-cta h2,
.ardwick-grove-site .included-section h2,
.ardwick-grove-site .location-section h2 {
  color: white !important;
}

.ardwick-grove-site .audience-check-list li::before {
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  content: '✓';
}

.ardwick-grove-site .button-outline-light {
  border-color: rgb(255 255 255 / 46%) !important;
  background: transparent !important;
  color: white !important;
}

.ardwick-grove-site .button-outline-light:hover,
.ardwick-grove-site .button-outline-light:focus-visible {
  background: white !important;
  color: var(--ink) !important;
}

.audience-editor-content {
  max-width: 860px;
}

.audience-editor-content > h2:first-child {
  max-width: 820px;
  margin-top: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  line-height: 0.98;
}

.audience-editor-content h3 {
  margin: 54px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.audience-editor-content p,
.audience-editor-content li,
.room-editor-content p,
.room-editor-content li {
  font-size: 1.08rem;
  line-height: 1.75;
}

.audience-editor-content ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-editor-content li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.room-editor-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.room-editor-content .wp-block-image img,
.room-editor-content .wp-block-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-photo-placeholder.has-photo {
  padding: 0;
}

.room-photo-placeholder.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wordpress-form .ff-el-group {
  margin-bottom: 20px;
}

.wordpress-form .ff-el-input--label label,
.wordpress-form .ff_t_c {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordpress-form .ff-btn-submit {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: white;
  font-weight: 750;
}

.wordpress-form .ff-btn-submit:hover,
.wordpress-form .ff-btn-submit:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.cookie-banner[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .room-editor-content .wp-block-gallery {
    grid-template-columns: 1fr;
  }
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 45%);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 20px;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(82vw, 320px);
  padding: 12px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 22px 55px rgb(0 0 0 / 24%);
}

.mobile-menu nav a {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-menu nav a:last-child {
  margin-top: 8px;
  border: 0;
  background: var(--gold);
  text-align: center;
}

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

.section h2 {
  max-width: 830px;
  margin: 0;
  font-family: var(--font-serif-stack);
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section h3 {
  margin: 0;
  font-family: var(--font-serif-stack);
  font-weight: 400;
}

.section p {
  color: var(--ink-soft);
}

.building-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 116px);
}

.image-collage {
  position: relative;
  padding: 0 38px 38px 0;
}

.image-collage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 72%;
  height: 72%;
  background: var(--gold);
  content: '';
}

.image-collage img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  box-shadow: 0 28px 70px rgb(20 37 31 / 16%);
}

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

.building-gallery img {
  aspect-ratio: 1.18;
  box-shadow: 0 12px 34px rgb(20 37 31 / 13%);
}

.building-gallery .building-gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 1.62;
  box-shadow: 0 28px 70px rgb(20 37 31 / 16%);
}

.image-note {
  position: absolute;
  right: -20px;
  bottom: 14%;
  padding: 11px 15px;
  background: var(--ink);
  color: white;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.building-copy > p:not(.eyebrow) {
  max-width: 590px;
}

.building-copy .large-copy,
.contact-intro .large-copy {
  margin: 32px 0 18px;
  font-family: var(--font-serif-stack);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.5;
}

.dark-link {
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
}

.facilities-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.facilities-section::after {
  position: absolute;
  top: -30%;
  right: -16%;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(216 185 104 / 20%);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgb(216 185 104 / 4%), 0 0 0 180px rgb(216 185 104 / 3%);
  content: '';
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 82px);
}

.split-heading,
.spaces-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p,
.spaces-heading > p {
  max-width: 430px;
  margin: 0;
  font-size: 1.04rem;
}

.facilities-section h2,
.facilities-section .split-heading > p,
.facility-card p {
  color: white;
}

.facility-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 20%);
  border-left: 1px solid rgb(255 255 255 / 20%);
}

.facility-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid rgb(255 255 255 / 20%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.facility-card > svg {
  width: 31px;
  height: 31px;
  margin: 42px 0 28px;
  color: var(--gold-bright);
  stroke-width: 1.5;
}

.facility-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgb(255 255 255 / 42%);
  font-family: var(--font-serif-stack);
  font-size: 0.84rem;
}

.facility-card h3 {
  color: white;
  font-size: 1.55rem;
}

.facility-card p {
  max-width: 270px;
  margin: 10px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.92rem;
}

.spaces-section {
  background: #faf7f0;
}

.room-list {
  display: grid;
  gap: clamp(42px, 7vw, 88px);
}

.room-card {
  display: grid;
  height: min(58vw, 760px);
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  min-height: 680px;
  background: white;
  box-shadow: 0 24px 70px rgb(20 37 31 / 9%);
}

.room-card.reverse .room-media-column {
  order: 2;
}

.room-media-column {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr);
}

.room-media-column.with-photo-rail {
  grid-template-rows: minmax(0, 1fr) 170px;
}

.room-media {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.room-media video,
.room-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-photo {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}

.room-photo:only-child {
  grid-column: 1 / -1;
}

.room-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.room-photo:hover img,
.room-photo:focus-visible img {
  transform: scale(1.025);
}

.room-price-enquire strong {
  max-width: 9ch;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.room-photo-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px 0 0;
  background: white;
}

.room-photo-placeholder {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: #20362e;
  color: rgb(255 255 255 / 72%);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.room-photo-placeholder svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--gold);
  stroke-width: 1.6;
}

.available-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  background: rgb(245 240 229 / 94%);
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5.5vw, 74px);
}

.room-title-row {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.room-title-row .eyebrow {
  margin-bottom: 8px;
}

.room-copy h3 {
  font-size: clamp(2.7rem, 5vw, 4.25rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.room-price {
  margin: 0;
  text-align: right;
}

.room-price strong,
.room-price span {
  display: block;
}

.room-price strong {
  color: var(--ink);
  font-family: var(--font-serif-stack);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.room-price span {
  margin-top: 5px;
  color: var(--muted-ink);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-copy > p {
  margin: 25px 0;
}

.room-details {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
}

.room-details div {
  padding: 15px 12px 13px 0;
  border-bottom: 1px solid var(--line);
}

.room-details div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.room-details dt {
  color: var(--muted-ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-details dd {
  margin: 2px 0 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-soft);
}

.included-section {
  padding-block: clamp(70px, 9vw, 112px);
  background: var(--paper-deep);
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.included-grid h2 {
  margin-bottom: 26px;
}

.small-print {
  margin-top: 22px;
  font-size: 0.84rem;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px 20px 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif-stack);
  font-size: 1.08rem;
  font-weight: 700;
}

.included-list li:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.included-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #2f805a;
}

.location-section {
  background: var(--ink);
  color: white;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.location-map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgb(216 185 104 / 46%);
  background: #1b3028;
}

.location-map::before {
  position: absolute;
  inset: 15px;
  z-index: 3;
  border: 1px solid rgb(216 185 104 / 24%);
  pointer-events: none;
  content: '';
}

.location-map iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px);
  background:
    linear-gradient(rgb(216 185 104 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(216 185 104 / 7%) 1px, transparent 1px),
    #1b3028;
  background-size: 42px 42px;
}

.map-placeholder > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--gold-bright);
  stroke-width: 1.25;
}

.map-placeholder .map-kicker {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-placeholder h3 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.map-placeholder > p:not(.map-kicker) {
  max-width: 390px;
  margin: 18px 0 26px;
  color: rgb(255 255 255 / 68%);
}

.map-placeholder button {
  min-height: 50px;
  padding-inline: 20px;
  border: 0;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
}

.map-placeholder small {
  margin-top: 13px;
  color: rgb(255 255 255 / 46%);
  font-size: 0.7rem;
}

.location-copy h2,
.location-copy > p {
  color: white;
}

.location-copy > p:not(.eyebrow, .access-note) {
  max-width: 610px;
  margin: 30px 0;
  color: rgb(255 255 255 / 74%);
  font-size: 1.08rem;
}

.location-copy address {
  display: flex;
  gap: 16px;
  margin: 0 0 34px;
  font-family: var(--font-serif-stack);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
}

.location-copy address svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--gold-bright);
}

.location-copy .button {
  width: fit-content;
}

.access-note {
  max-width: 580px;
  margin-top: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: rgb(255 255 255 / 64%) !important;
  font-size: 0.83rem;
}

.contact-section {
  background: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: clamp(55px, 9vw, 130px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
}

.contact-methods {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgb(20 37 31 / 32%);
}

.contact-methods > a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(20 37 31 / 32%);
  font-family: var(--font-serif-stack);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-methods svg,
.phone-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(20 37 31 / 34%);
  border-radius: 50%;
  font-family: var(--font-sans-stack);
  font-size: 0.68rem;
}

.contact-methods svg {
  padding: 8px;
}

.contact-methods small {
  display: block;
  margin-bottom: 1px;
  font-family: var(--font-sans-stack);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(30px, 5vw, 60px);
  background: #fffdf8;
  box-shadow: 0 30px 80px rgb(20 37 31 / 14%);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgb(20 37 31 / 28%);
  border-radius: 0;
  outline: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgb(20 37 31 / 12%);
}

.contact-form .consent-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  text-transform: none;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.consent-field a {
  text-decoration: underline;
}

.submit-button {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  padding-inline: 24px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
}

.submit-button svg {
  width: 17px;
  height: 17px;
}

.submit-button:hover {
  background: var(--ink-soft);
}

.form-preview-message {
  margin: 0;
  padding: 12px 14px;
  background: rgb(216 185 104 / 28%);
  font-size: 0.82rem;
}

.site-footer {
  padding-top: 76px;
  background: #0d1b16;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 0.75fr;
  gap: 58px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 180px;
  height: 112px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-brand .footer-brand-name {
  margin-top: 10px;
  color: white;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 310px;
  color: rgb(255 255 255 / 58%);
}

.footer-heading {
  margin: 0 0 17px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer a,
.site-footer address,
.footer-button {
  color: rgb(255 255 255 / 78%);
  font-size: 0.9rem;
  line-height: 2;
}

.site-footer a:hover,
.footer-button:hover {
  color: white;
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.audience-home {
  background: var(--paper-deep);
}

.audience-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-home-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.audience-home-card > span {
  color: var(--muted-ink);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.audience-home-card h3 {
  margin: 56px 0 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.audience-home-card p {
  margin: 0 0 30px;
  color: var(--muted-ink);
}

.audience-home-card strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  font-size: 0.83rem;
}

.audience-home-card strong svg,
.related-card span svg {
  width: 16px;
}

.audience-home-card:hover,
.audience-home-card:focus-visible {
  z-index: 1;
  background: var(--ink);
  color: white;
  outline: none;
  transform: translateY(-4px);
}

.audience-home-card:hover p,
.audience-home-card:focus-visible p,
.audience-home-card:hover > span,
.audience-home-card:focus-visible > span {
  color: rgb(255 255 255 / 68%);
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.inner-hero {
  min-height: 78svh;
}

.inner-hero-media {
  object-position: center 48%;
}

.inner-hero .hero-shade {
  background:
    linear-gradient(90deg, rgb(8 22 17 / 91%) 0%, rgb(8 22 17 / 70%) 55%, rgb(8 22 17 / 34%) 100%),
    linear-gradient(180deg, rgb(6 17 13 / 44%) 0%, transparent 46%, rgb(6 17 13 / 40%) 100%);
}

.inner-hero-content {
  min-height: calc(78svh - 104px);
  padding-block: 78px 94px;
}

.inner-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
}

.audience-overview {
  background: #faf7f0;
}

.audience-overview-grid,
.room-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.audience-overview h2,
.room-story h2,
.audience-fit h2,
.room-detail-included h2,
.audience-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  line-height: 0.98;
}

.audience-prose p {
  margin: 0 0 24px;
  font-family: var(--font-serif-stack);
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.65;
}

.audience-fit,
.room-detail-included,
.audience-cta {
  background: var(--ink);
  color: white;
}

.audience-fit-grid,
.room-included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.audience-check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  list-style: none;
}

.audience-check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  color: rgb(255 255 255 / 82%);
}

.audience-check-list svg {
  width: 19px;
  color: var(--gold-bright);
}

.audience-practical {
  background: var(--paper);
}

.audience-practical-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-practical-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.audience-note {
  margin: 30px 0 0;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: rgb(216 185 104 / 12%);
  color: var(--muted-ink);
  font-size: 0.92rem;
}

.related-section {
  background: #faf7f0;
}

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

.related-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  background: white;
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-card-media {
  width: calc(100% + 68px);
  aspect-ratio: 16 / 10;
  margin: -34px -34px 26px;
  overflow: hidden;
  background: var(--paper-deep);
}

.related-card-media img,
.related-card-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: var(--gold);
  outline: none;
  transform: translateY(-4px);
}

.related-card h3 {
  margin: 0 0 16px;
  font-size: 1.75rem;
}

.related-card p {
  margin: 0 0 28px;
  color: var(--muted-ink);
}

.related-card span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 750;
}

.audience-cta {
  padding-block: 86px;
}

.audience-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.audience-cta h2 {
  max-width: 820px;
  font-size: clamp(2.6rem, 4.6vw, 4.7rem);
}

.room-detail-hero {
  min-height: 88svh;
}

.room-detail-video {
  object-position: center center;
}

.room-detail-price {
  margin: 30px 0 0;
  color: var(--gold-bright);
  font-family: var(--font-serif-stack);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.room-detail-price span {
  display: block;
  margin-top: 9px;
  color: rgb(255 255 255 / 72%);
  font-family: var(--font-sans-stack);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-detail-summary {
  padding-block: 0;
  background: var(--paper-deep);
}

.room-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.room-summary-stat {
  min-height: 160px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.room-summary-stat span,
.room-summary-stat strong {
  display: block;
}

.room-summary-stat span {
  color: var(--muted-ink);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-summary-stat strong {
  margin-top: 18px;
  font-family: var(--font-serif-stack);
  font-size: 1.35rem;
  line-height: 1.25;
}

.room-story {
  background: #faf7f0;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  margin-top: 70px;
}

.room-detail-gallery-placeholder {
  position: relative;
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgb(20 37 31 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(20 37 31 / 7%) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 34px 34px;
  color: var(--muted-ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-detail-gallery-placeholder:first-child {
  min-height: 380px;
}

.room-detail-gallery-placeholder svg {
  width: 21px;
  color: var(--ink);
  stroke-width: 1.5;
}

.room-detail-gallery-image {
  min-width: 0;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.room-detail-gallery-image:first-child {
  min-height: 380px;
}

.room-detail-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-image {
  object-position: center;
}

.room-detail-included p:not(.eyebrow) {
  color: rgb(255 255 255 / 62%);
}

.audience-check-list.compact {
  grid-template-columns: 1fr 1fr;
}

.audience-check-list.compact li:nth-child(odd) {
  padding-right: 24px;
}

.audience-check-list.compact li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgb(255 255 255 / 20%);
}

.room-suitability {
  background: var(--paper);
}

.room-detail-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.button-outline-light {
  border: 1px solid rgb(255 255 255 / 46%);
  color: white;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: white;
  color: var(--ink);
}

.footer-legal {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 40px;
  padding-block: 24px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.footer-legal p {
  margin: 0;
  color: rgb(255 255 255 / 44%);
  font-size: 0.71rem;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  max-width: 1160px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border: 1px solid rgb(216 185 104 / 55%);
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 24px 80px rgb(0 0 0 / 24%);
}

.cookie-banner p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.cookie-banner .cookie-title {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-serif-stack);
  font-size: 1.12rem;
  font-weight: 700;
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 0;
  padding-inline: 16px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}

.cookie-reject {
  border-color: var(--line) !important;
  background: transparent !important;
}

.cookie-accept {
  background: var(--ink) !important;
  color: white !important;
}

.legal-page {
  min-height: 100vh;
  background: #faf7f0;
}

.legal-mast {
  background: var(--ink);
  color: white;
}

.legal-mast .site-header {
  min-height: 88px;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(50px, 9vw, 130px);
  padding-block: clamp(70px, 9vw, 120px);
}

.legal-intro {
  position: sticky;
  top: 30px;
  align-self: start;
}

.legal-intro h1 {
  margin: 0;
  font-family: var(--font-serif-stack);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal-intro p {
  margin-top: 24px;
  color: var(--muted-ink);
  font-size: 0.86rem;
}

.legal-body {
  max-width: 760px;
}

.legal-body section {
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-body h2 {
  margin: 0 0 16px;
  font-family: var(--font-serif-stack);
  font-size: 1.65rem;
  font-weight: 700;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
}

.legal-body a {
  text-decoration: underline;
}

.legal-body .footer-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 10px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.table-scroll {
  overflow-x: auto;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-body th,
.legal-body td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-body th {
  background: var(--paper-deep);
}

@media (max-width: 980px) {
  .mobile-menu {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .building-grid,
  .contact-grid,
  .audience-overview-grid,
  .room-story-grid,
  .audience-fit-grid,
  .room-included-grid {
    grid-template-columns: 1fr;
  }

  .audience-home-grid,
  .related-grid,
  .room-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-summary-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .building-copy,
  .location-copy {
    max-width: 720px;
  }

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

  .room-card,
  .room-card.reverse {
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .room-card.reverse .room-media-column {
    order: 0;
  }

  .room-media-column.with-photo-rail {
    height: min(105vw, 820px);
    grid-template-rows: minmax(0, 1fr) 160px;
  }

  .room-media-column:not(.with-photo-rail) {
    height: min(68vw, 620px);
  }

  .room-media {
    height: 100%;
    min-height: 0;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    max-width: 760px;
  }

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

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-main > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .section-heading {
    margin-bottom: 36px;
  }

  .room-list {
    gap: 36px;
  }

  .split-heading,
  .spaces-heading,
  .legal-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .legal-intro {
    position: static;
  }

  .facility-grid,
  .included-list,
  .field-row,
  .related-grid,
  .room-detail-gallery {
    grid-template-columns: 1fr;
  }

  .room-detail-gallery-placeholder,
  .room-detail-gallery-placeholder:first-child,
  .room-detail-gallery-image,
  .room-detail-gallery-image:first-child {
    min-height: 240px;
  }

  .facility-card {
    min-height: 235px;
  }

  .included-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-legal p:last-child {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .cookie-banner,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 56px;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .building-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .image-collage {
    padding: 0 20px 20px 0;
  }

  .image-note {
    right: -4px;
  }

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

  .audience-home-grid {
    grid-template-columns: 1fr;
  }

  .room-summary-grid,
  .audience-check-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-home-card {
    min-height: 220px;
    padding: 26px 22px;
  }

  .audience-home-card h3 {
    margin-top: 28px;
  }

  .room-summary-stat {
    min-height: 116px;
    padding: 24px 18px;
    border-bottom: 1px solid var(--line);
  }

  .audience-check-list.compact li {
    padding-block: 16px;
  }

  .audience-check-list.compact li:nth-child(odd) {
    padding-right: 14px;
  }

  .audience-check-list.compact li:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid rgb(255 255 255 / 20%);
  }

  .facility-card {
    min-height: 180px;
    padding: 24px;
  }

  .facility-card > svg {
    margin-block: 24px 16px;
  }

  .ardwick-grove-site .facility-card h3 {
    margin-top: 32px;
  }

  .room-media-column.with-photo-rail {
    height: auto;
    grid-template-rows: 320px 120px;
  }

  .room-media-column:not(.with-photo-rail) {
    height: 320px;
    grid-template-rows: 1fr;
  }

  .room-copy {
    padding: 28px 22px;
  }

  .room-actions,
  .room-detail-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .room-actions .button,
  .room-detail-actions .button {
    justify-content: center;
  }

  .room-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .room-price {
    text-align: left;
  }

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

  .room-details div:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }

  .location-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-map {
    aspect-ratio: 4 / 3;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .submit-button {
    width: 100%;
  }

  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-main > div:last-child,
  .footer-brand,
  .footer-legal p:last-child {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    gap: 36px;
    padding-bottom: 44px;
  }

  .footer-brand img {
    width: 150px;
    height: 92px;
  }

  .audience-cta {
    padding-block: 56px;
  }

  .audience-cta-inner {
    gap: 34px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .room-summary-grid,
  .audience-check-list.compact,
  .room-details {
    grid-template-columns: 1fr;
  }

  .audience-check-list.compact li:nth-child(odd),
  .audience-check-list.compact li:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .room-details div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}
