:root {
  --ink: #23211e;
  --muted: #6d665f;
  --paper: #fbf8f1;
  --cream: #f4ead9;
  --leaf: #315c45;
  --clay: #a65237;
  --gold: #d49b47;
  --blue: #214b65;
  --line: rgba(35, 33, 30, 0.14);
  --shadow: 0 24px 60px rgba(33, 30, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.nav {
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-cta {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.36)),
    linear-gradient(0deg, rgba(35, 33, 30, 0.74), rgba(35, 33, 30, 0.06) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(84px, 12vh, 140px) clamp(18px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7c873;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-links,
.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-links a,
.booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  border: 0;
  background: var(--clay);
  box-shadow: 0 16px 38px rgba(166, 82, 55, 0.32);
  cursor: pointer;
}

.button.secondary {
  color: var(--leaf);
  border: 1px solid rgba(49, 92, 69, 0.3);
  background: #fff;
  cursor: pointer;
}

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

.quick-book {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: 30px;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(330px, calc(100% - 36px));
  padding: 20px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-book span {
  color: var(--muted);
  font-size: 0.86rem;
}

.quick-book strong {
  font-size: 1.55rem;
}

.quick-book-actions {
  display: flex;
  gap: 10px;
}

.quick-book a {
  color: var(--clay);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 118px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro p:last-child,
.feature-panel p,
.location p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.availability-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -38px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.availability-strip label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-strip input,
.availability-strip select {
  min-height: 44px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 330px;
  margin: 0 0 10px;
  color: var(--muted);
}

.gallery {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8ccb8;
}

.gallery-feature {
  grid-row: span 2;
}

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

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 45, 37, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.activities {
  padding-top: 0;
}

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

.activity-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(33, 30, 26, 0.07);
}

.activity-card-photo {
  margin: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.activity-card-photo img {
  width: 100%;
  height: clamp(150px, 14vw, 190px);
  object-fit: cover;
  transition: transform 0.45s ease;
}

.activity-card:hover .activity-card-photo img {
  transform: scale(1.04);
}

.activity-card-body {
  padding: 24px;
  flex: 1;
  display: grid;
  align-content: start;
}

.activity-card-body span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
}

.activity-card-body h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

.activity-card-body p {
  color: var(--muted);
}

.activity-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.activity-list li {
  padding-left: 14px;
  position: relative;
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 800;
}

.activity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.room-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 30, 26, 0.08);
}

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

.room-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 32px;
}

.room-card-body > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.room-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.room-card-body > div:first-child > span {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.room-card-body > p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.room-features li {
  padding: 5px 10px;
  border: 1px solid rgba(49, 92, 69, 0.2);
  border-radius: 999px;
  color: var(--leaf);
  background: #f4f8f2;
  font-size: 0.78rem;
  font-weight: 700;
}

.room-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 4px;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.feature-panel {
  position: sticky;
  top: 96px;
}

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

.amenities div {
  min-height: 140px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, #f8f1e6);
}

.amenities strong,
.amenities span {
  display: block;
}

.amenities strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.14rem;
}

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

.proof {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.proof div {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 30px;
  text-align: center;
  background: var(--leaf);
  color: #fff;
}

.proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  line-height: 0.92;
}

.proof span {
  color: rgba(255, 255, 255, 0.76);
}

.guest-likes {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.guest-likes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.guest-likes li {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.guest-likes strong,
.guest-likes span {
  display: block;
}

.guest-likes strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.12rem;
}

.guest-likes span {
  color: var(--muted);
}

.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.location img {
  width: 100%;
  height: min(620px, 68vw);
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.contact-links a,
.booking-link {
  border: 1px solid var(--line);
  color: var(--leaf);
  background: #fff;
}

.booking {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 82px);
  padding-inline: clamp(18px, 6vw, 80px);
  background: #efe0cb;
}

.booking-copy {
  align-self: center;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form label,
.booking-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 6px;
}

.check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
}

.check input {
  width: 18px;
  min-height: 18px;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #1f2d25;
}

.footer strong,
.footer span {
  display: block;
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.mobile-actions {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    margin: 150px 18px 210px;
    align-self: start;
  }

  .quick-book {
    left: 18px;
    right: 18px;
  }

  .intro,
  .split,
  .location,
  .booking,
  .guest-likes,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .availability-strip {
    margin-top: -24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .availability-strip .button {
    grid-column: 1 / -1;
  }

  .feature-panel {
    position: static;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .room-card-foot {
    flex-wrap: wrap;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .section-heading > p:not(.eyebrow) {
    max-width: 680px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-feature {
    grid-row: auto;
  }

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

  .guest-likes ul {
    grid-template-columns: 1fr;
  }

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

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(33, 30, 26, 0.06);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  flex: 1;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card footer {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.82rem;
}

.button.ghost-dark {
  border: 1px solid var(--line);
  color: var(--leaf);
  background: #fff;
  white-space: nowrap;
  align-self: flex-end;
}

/* Room rate */
.room-rate {
  color: var(--muted);
  font-size: 0.88rem;
}

.room-rate strong {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
}

.room-rate em {
  font-style: normal;
}

/* Sticky booking bar */
.sticky-book {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px clamp(18px, 4vw, 56px);
  background: #1f2d25;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.sticky-book.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-brand {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}

.sticky-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
  justify-content: center;
}

.sticky-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.sticky-nav a:hover {
  color: #fff;
}

.sticky-cta {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Amenity icons */
.amenity-icon {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  color: var(--leaf);
}

/* Room book button */
.room-book {
  margin-top: 14px;
  width: 100%;
  font-size: 0.9rem;
}

/* Policies strip */
.policies {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.policies > div {
  padding: 20px 22px;
  background: var(--paper);
}

.policies strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policies span {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ── Section bands ── */
.band {
  width: 100%;
}

/* Dark forest — Gallery */
.band-forest {
  background:
    radial-gradient(ellipse 80% 60% at 18% 52%, rgba(212, 155, 71, 0.11) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(49, 92, 69, 0.22) 0%, transparent 55%),
    #172218;
}

/* Soft sage — Activities */
.band-sage {
  background:
    radial-gradient(ellipse 60% 70% at 90% 10%, rgba(49, 92, 69, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 5% 80%, rgba(212, 155, 71, 0.06) 0%, transparent 50%),
    #eef4ee;
}

/* Warm parchment — Testimonials */
.band-parchment {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(212, 155, 71, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 92% 90%, rgba(166, 82, 55, 0.06) 0%, transparent 50%),
    #fdf4e8;
}

/* Deep navy — Location */
.band-navy {
  background:
    radial-gradient(ellipse 55% 70% at 82% 55%, rgba(33, 100, 145, 0.38) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(49, 92, 69, 0.15) 0%, transparent 50%),
    #0f1e2a;
}

/* Restore padding on sections that stripped it */
.band .gallery,
.band .activities {
  padding-top: clamp(64px, 10vw, 118px);
}

/* Image placeholder colours on dark background */
.band-forest .gallery figure {
  background: #243629;
}

/* ── Text overrides inside dark bands ── */
.band-forest .eyebrow,
.band-navy .eyebrow {
  color: var(--gold);
}

.band-forest h2,
.band-forest h3,
.band-navy h2,
.band-navy h3 {
  color: #fff;
}

.band-forest p,
.band-navy p {
  color: rgba(255, 255, 255, 0.68);
}

.band-forest .section-heading > p,
.band-navy .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

/* Activity cards already have glass styling — boost border on sage */
.band-sage .activity-card {
  border-color: rgba(49, 92, 69, 0.14);
  box-shadow: 0 8px 32px rgba(49, 92, 69, 0.08);
}

/* Testimonial cards on parchment */
.band-parchment .testimonial-card {
  background: #fff;
  border-color: rgba(212, 155, 71, 0.18);
  box-shadow: 0 8px 32px rgba(166, 82, 55, 0.08);
}

.band-parchment .button.ghost-dark {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(166, 82, 55, 0.2);
}

/* Location contact links on dark navy */
.band-navy .contact-links a {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.band-navy .contact-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Location image on dark — add depth shadow */
.band-navy .location img {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

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

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

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

  .section-heading .button.ghost-dark {
    align-self: auto;
  }
}

@media (max-width: 580px) {
  body {
    padding-bottom: 74px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .amenities,
  .form-row,
  .booking-actions,
  fieldset,
  .availability-strip {
    grid-template-columns: 1fr;
  }

  .location img {
    min-height: 300px;
  }

  .footer {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    background: rgba(31, 45, 37, 0.96);
    box-shadow: 0 14px 34px rgba(33, 30, 26, 0.24);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 52px;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .sticky-book {
    display: none;
  }

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