:root {
  --ink: #111d28;
  --ink-soft: #203141;
  --lilac: #d8cbd7;
  --lilac-dark: #9b849f;
  --sand: #f1eee8;
  --warm: #e8e0d3;
  --white: #fffdf9;
  --line: rgba(17, 29, 40, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  color: var(--white);
  transition: 0.3s ease;
}
.site-header.scrolled {
  background: rgba(17, 29, 40, 0.95);
  height: 72px;
  box-shadow: 0 4px 24px #07101c24;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0.9;
}
.brand-mark {
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  width: 37px;
  height: 37px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.01em;
}
.brand-name em {
  font-size: 13px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.main-nav {
  display: flex;
  gap: 35px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.main-nav a,
.header-cta {
  transition: opacity 0.2s;
}
.main-nav a:hover,
.header-cta:hover {
  opacity: 0.65;
}
.header-cta {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.header-cta span {
  font-size: 14px;
  margin-left: 12px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
}
.hero {
  height: 100vh;
  min-height: 680px;
  color: var(--white);
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("images/IMG_6897.JPG") center/cover no-repeat;
  transform: scale(1.02);
  animation: hero-in 1.6s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 17, 26, 0.84),
      rgba(7, 17, 26, 0.3) 60%,
      rgba(7, 17, 26, 0.12)
    ),
    linear-gradient(0deg, rgba(7, 17, 26, 0.68), transparent 40%);
}
.hero-content {
  position: relative;
  padding: 25vh 12vw 0;
  max-width: 800px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lilac);
  margin: 0 0 24px;
}
.eyebrow.ink {
  color: var(--lilac-dark);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(64px, 8.5vw, 132px);
  margin: 0 0 30px;
}
h1 em,
h2 em,
h3 em {
  font-weight: 500;
  color: var(--lilac);
  font-style: italic;
}
.hero-copy {
  font-size: 16px;
  line-height: 1.6;
  max-width: 360px;
  color: #ebeaeb;
  margin: 0 0 32px;
}
.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
}
.text-link span,
.arrow-link span {
  font-size: 17px;
}
.hero-footer {
  position: absolute;
  bottom: 38px;
  left: 12vw;
  right: 12vw;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d2d0d0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-line {
  height: 1px;
  background: #b6b4b466;
  flex: 1;
}
.scroll-note {
  position: absolute;
  bottom: 38px;
  right: 5vw;
  color: #c5c1c0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-note span {
  font-size: 16px;
  margin-left: 10px;
}
.section-shell {
  padding: 130px 12vw;
}
.section-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--lilac-dark);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 80px;
}
.section-tag span:first-child {
  color: var(--ink);
  font-size: 11px;
}
.section-tag:after {
  content: "";
  height: 1px;
  background: var(--line);
  width: 52px;
}
.intro {
  background: var(--sand);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14vw;
  margin-bottom: 100px;
}
.intro h2,
.booking h2,
.location h2 {
  font-size: clamp(48px, 5.2vw, 80px);
  margin: 0;
}
.intro-text {
  padding-top: 12px;
  max-width: 410px;
}
.intro-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #4d5155;
  margin-bottom: 20px;
}
.arrow-link {
  color: var(--ink);
  margin-top: 22px;
}
.intro-image-wrap {
  height: min(49vw, 570px);
  position: relative;
}
.intro-image-wrap img {
  object-position: center 63%;
}
.image-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: white;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spaces {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 150px;
}
.section-tag.light {
  color: #d8cbd7;
}
.section-tag.light span:first-child {
  color: var(--lilac);
}
.spaces-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}
.spaces h2 {
  font-size: clamp(48px, 5.2vw, 80px);
  margin: 0;
}
.spaces-lead {
  width: 285px;
  color: #aab1b5;
  margin: 0 4vw 4px 0;
  font-size: 14px;
}
.space-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.space-card {
  height: 400px;
  position: relative;
  overflow: hidden;
  background: #1c2b37;
}
.space-card-large {
  height: 520px;
}
.space-card img {
  transition: transform 0.6s ease;
  filter: saturate(0.72);
}
.space-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.95);
}
.space-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 21, 30, 0.92), transparent 65%);
}
.space-card-overlay {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 28px;
  right: 20px;
}
.space-card-overlay > span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--lilac);
}
.space-card h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.95;
  font-weight: 500;
  margin: 10px 0 17px;
}
.space-card h3 em {
  color: var(--lilac);
}
.space-card p {
  font-family: var(--mono);
  font-size: 9px;
  color: #d6d8d8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}
.booking {
  background: var(--warm);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14vw;
}
.booking-intro > p:not(.eyebrow) {
  max-width: 360px;
  color: #57595a;
  margin-top: 30px;
  font-size: 15px;
}
.booking-note {
  border-top: 1px solid var(--line);
  max-width: 360px;
  padding-top: 18px;
  margin-top: 50px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.booking-note strong {
  font-weight: 400;
  color: var(--lilac-dark);
}
.booking-note + .booking-note {
  margin-top: 14px;
}
.booking-note .email {
  text-transform: none;
  letter-spacing: 0.04em;
}
.booking-note a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.booking-note a:hover,
.booking-note a:focus-visible {
  border-bottom-color: var(--lilac-dark);
}
.booking-rates {
  max-width: 360px;
  margin: 22px 0 0;
  color: #5b5b59;
}
.booking-rates strong {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.booking-form {
  padding-top: 7px;
  display: grid;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #62666a;
  display: grid;
  gap: 8px;
}
input,
select {
  font: 15px var(--sans);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9e9a93;
  padding: 6px 0 12px;
  outline: 0;
  border-radius: 0;
}
input:focus,
select:focus {
  border-color: var(--ink);
}
select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='m2 4 4 4 4-4' fill='none' stroke='%23111d28'/%3E%3C/svg%3E")
    right 5px center no-repeat;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  padding: 16px 18px;
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.dark-button {
  background: var(--ink);
  color: var(--white);
  margin-top: 6px;
}
.dark-button span,
.light-button span {
  font-size: 18px;
}
.form-note {
  font-size: 11px;
  color: #737572;
  margin: -10px 0 0;
}
.location {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 11vw;
  align-items: center;
}
.location-image {
  height: 540px;
}
.location-copy p:not(.eyebrow) {
  color: #565b5c;
  max-width: 390px;
  margin: 30px 0;
}
.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin: 35px 0 24px;
  gap: 15px;
}
.location-details span,
.location-details strong {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.location-details span {
  color: #868582;
  margin-bottom: 7px;
}
.location-details strong {
  font-weight: 400;
}
.location-details a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.location-details a:hover,
.location-details a:focus-visible {
  border-bottom-color: var(--ink);
}
.contact-band {
  background: var(--lilac-dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 78px 12vw;
}
.contact-band h2 {
  font-size: clamp(48px, 5vw, 76px);
  margin: 0;
}
.contact-band .eyebrow {
  color: var(--ink);
  margin-bottom: 14px;
}
.light-button {
  background: var(--white);
  color: var(--ink);
  min-width: 220px;
}
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 5vw 35px;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr auto;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  width: max-content;
}
.site-footer p,
.site-footer a {
  font-size: 11px;
  color: #a9b0b4;
}
.site-footer > div {
  display: flex;
  gap: 22px;
}
.copyright {
  font-family: var(--mono);
  font-size: 9px;
  color: #6e7980;
}
.inner-page .site-header {
  background: var(--ink);
}
.main-nav a.active {
  color: var(--lilac);
}
.page-hero {
  min-height: 610px;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink) center/cover no-repeat;
}
.rooms-hero {
  background-image: url("images/IMG_6916.JPG");
  background-position: center 55%;
}
.dining-hero {
  background-image: url("images/IMG_6720.JPG");
}
.faq-hero {
  background-image: url("images/IMG_6686.JPG");
}
.contact-hero {
  background-image: url("images/IMG_6702.JPG");
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 26, 0.84), rgba(7, 17, 26, 0.22) 75%), linear-gradient(0deg, rgba(7, 17, 26, 0.76), transparent 58%);
}
.page-hero-content {
  position: relative;
  padding: 0 12vw 82px;
  max-width: 760px;
}
.page-hero h1 {
  font-size: clamp(58px, 7vw, 108px);
  margin-bottom: 25px;
}
.page-hero-content > p:last-child {
  max-width: 370px;
  color: #e5e3e2;
  font-size: 16px;
}
.room-intro,
.dining-intro,
.faq-section,
.contact-page {
  background: var(--sand);
}
.room-list {
  padding-top: 20px;
  background: var(--warm);
}
.room-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10vw;
  align-items: center;
  margin-bottom: 120px;
}
.room-feature:last-child {
  margin-bottom: 0;
}
.room-feature-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}
.room-feature-reverse .room-feature-image {
  order: 2;
}
.room-feature-image {
  height: 550px;
}
.room-feature-reverse .room-feature-image img {
  object-position: 72% center;
}
.room-feature-copy h2 {
  font-size: clamp(52px, 5vw, 78px);
  margin: 0 0 28px;
}
.room-feature-copy > p:not(.eyebrow) {
  color: #5b5b59;
  max-width: 370px;
}
.room-feature-copy ul {
  list-style: none;
  padding: 18px 0;
  margin: 30px 0 12px;
  max-width: 370px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.room-feature-copy li::before {
  content: "·";
  color: var(--lilac-dark);
  margin-right: 8px;
}
.dining-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  height: 475px;
}
.dining-gallery img:nth-child(2) {
  object-position: center;
}
.dining-details,
.rate-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--warm);
}
.detail-block {
  padding: 50px 5vw;
  background: var(--sand);
}
.detail-block h3 {
  font: 500 clamp(34px, 3.2vw, 48px)/1 var(--serif);
  margin: 0 0 22px;
}
.detail-block > p:not(.eyebrow) {
  color: #5b5b59;
  max-width: 340px;
}
.detail-rate {
  display: block;
  margin: 0 0 20px;
  font: 500 clamp(26px, 2.4vw, 34px)/1.1 var(--serif);
  color: var(--ink);
}
.detail-rate em {
  font: 400 11px var(--mono);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lilac-dark);
  margin-left: 10px;
  white-space: nowrap;
}
.detail-note {
  display: block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #5b5b59;
  font-size: 14px;
  max-width: 340px;
}
.detail-time {
  display: block;
  margin-top: 28px;
  color: var(--lilac-dark);
  font: 9px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12vw;
}
.faq-layout h2,
.contact-page h2 {
  font-size: clamp(48px, 5vw, 76px);
  margin: 0;
}
.faq-side-copy {
  color: #5b5b59;
  max-width: 280px;
  margin: 35px 0 0;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding-right: 40px;
  position: relative;
  font: 500 19px var(--serif);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -3px;
  font: 22px var(--sans);
  color: var(--lilac-dark);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  color: #646563;
  max-width: 570px;
  margin: 15px 0 0;
  font-size: 14px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14vw;
}
.contact-lead {
  color: #5b5b59;
  max-width: 380px;
  margin: 30px 0;
}
.contact-whatsapp {
  justify-content: center;
  gap: 35px;
  margin: 4px 0 45px;
}
.contact-details {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 17px;
  max-width: 380px;
}
.contact-details span,
.contact-details strong {
  display: block;
  font: 9px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-details span {
  color: #85837f;
  margin-bottom: 5px;
}
.contact-details strong {
  font-weight: 400;
}
.contact-details .email {
  text-transform: none;
  letter-spacing: 0.04em;
}
.contact-details a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.contact-details a:hover,
.contact-details a:focus-visible {
  border-bottom-color: var(--ink);
}
.inquiry-form {
  display: grid;
  gap: 25px;
  padding-top: 6px;
}
.inquiry-form .eyebrow {
  margin-bottom: 2px;
}
.inquiry-form textarea {
  resize: vertical;
  min-height: 80px;
  border: 0;
  border-bottom: 1px solid #9e9a93;
  background: transparent;
  font: 15px var(--sans);
  color: var(--ink);
  padding: 6px 0 12px;
  outline: 0;
}
.inquiry-form textarea:focus {
  border-color: var(--ink);
}
.map-band {
  min-height: 440px;
  color: var(--white);
  padding: 80px 12vw;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(90deg, rgba(7, 17, 26, 0.82), rgba(7, 17, 26, 0.12)), url("images/IMG_6774.JPG") center/cover;
}
.map-copy h2 {
  font: 500 clamp(48px, 5vw, 76px)/0.97 var(--serif);
  margin: 0 0 32px;
}
.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px 11px 11px;
  color: var(--white);
  background: #1f8f5b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px rgba(7, 17, 26, 0.24);
  font: 10px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}
.whatsapp-float:hover {
  background: #187447;
  transform: translateY(-3px);
}
.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 8px var(--mono);
  letter-spacing: 0;
}
.whatsapp-arrow {
  font-size: 15px;
  margin-left: 4px;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}
.reveal {
  animation: fade-up 0.8s both;
}
.reveal-delay-1 {
  animation-delay: 0.15s;
}
.reveal-delay-2 {
  animation-delay: 0.3s;
}
.reveal-delay-3 {
  animation-delay: 0.45s;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 800px) {
  .site-header {
    padding: 0 6vw;
    height: 74px;
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
  }
  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
  }
  .site-header.menu-open {
    background: var(--ink);
  }
  .site-header.menu-open .main-nav {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 24px 6vw 30px;
    background: var(--ink);
    flex-direction: column;
    gap: 18px;
    font-size: 13px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding: 29vh 8vw 0;
  }
  .hero-footer {
    left: 8vw;
    right: 8vw;
    bottom: 25px;
  }
  .hero-footer span:last-child,
  .scroll-note {
    display: none;
  }
  .section-shell {
    padding: 88px 8vw;
  }
  .page-hero {
    min-height: 600px;
  }
  .page-hero-content {
    padding: 0 8vw 64px;
  }
  .room-feature,
  .room-feature-reverse,
  .faq-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .room-feature-reverse .room-feature-image {
    order: initial;
  }
  .room-feature {
    margin-bottom: 78px;
  }
  .room-feature-image {
    height: 100vw;
    max-height: 480px;
  }
  .dining-gallery {
    grid-template-columns: 1fr 1fr;
    height: 450px;
  }
  .dining-gallery img:first-child {
    grid-row: span 2;
  }
  .dining-details,
  .rate-details {
    grid-template-columns: 1fr;
  }
  .detail-block {
    padding: 38px 8vw;
  }
  .faq-layout h2,
  .contact-page h2 {
    font-size: 52px;
  }
  .map-band {
    min-height: 390px;
    padding: 68px 8vw;
  }
  .section-tag {
    margin-bottom: 55px;
  }
  .intro-grid,
  .booking-grid,
  .location {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .intro-grid {
    margin-bottom: 60px;
  }
  .intro-image-wrap {
    height: 90vw;
    max-height: 500px;
  }
  .spaces-heading {
    display: block;
    margin-bottom: 45px;
  }
  .spaces-lead {
    width: auto;
    margin: 26px 0 0;
  }
  .space-grid {
    grid-template-columns: 1fr 1fr;
  }
  .space-card,
  .space-card-large {
    height: 290px;
  }
  .space-card-large {
    grid-column: span 2;
  }
  .space-card h3 {
    font-size: 27px;
  }
  .booking-note {
    margin-top: 35px;
  }
  .location {
    gap: 42px;
  }
  .location-image {
    height: 100vw;
    max-height: 500px;
  }
  .contact-band {
    padding: 68px 8vw;
    display: block;
  }
  .contact-band .button {
    margin-top: 28px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 45px 8vw 30px;
    gap: 30px;
  }
  .site-footer p {
    grid-column: span 2;
  }
  .site-footer > div {
    grid-column: span 2;
  }
  .copyright {
    grid-column: span 2;
  }
  .form-row {
    gap: 14px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 12px;
  }
  .whatsapp-float > span:nth-child(2) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
