:root {
  --ink: oklch(20% 0.025 145);
  --ink-soft: oklch(37% 0.035 145);
  --muted: oklch(55% 0.028 128);
  --paper: oklch(96.5% 0.02 97);
  --paper-deep: oklch(91.5% 0.035 92);
  --sage: oklch(42% 0.07 145);
  --sage-deep: oklch(29% 0.065 146);
  --olive: oklch(54% 0.085 127);
  --moss: oklch(36% 0.078 138);
  --warm: oklch(78% 0.075 76);
  --clay: oklch(58% 0.085 48);
  --cream: oklch(98% 0.016 94);
  --line: oklch(82% 0.025 106 / 65%);
  --shadow: 0 24px 70px oklch(24% 0.045 125 / 18%);
  --radius: 8px;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, oklch(88% 0.04 92 / 60%), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--cream) 38%, oklch(94% 0.03 102));
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::selection {
  background: var(--sage);
  color: var(--cream);
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--sage-deep);
  color: var(--cream);
  padding: 0.7rem 1rem;
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 1rem 1.25rem auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem;
  color: var(--cream);
  transition:
    background 220ms ease-out,
    color 220ms ease-out,
    box-shadow 220ms ease-out;
}

.site-header.is-scrolled {
  border: 1px solid oklch(90% 0.02 100 / 80%);
  border-radius: var(--radius);
  background: oklch(98% 0.015 94 / 88%);
  color: var(--ink);
  box-shadow: 0 16px 44px oklch(20% 0.03 120 / 12%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.brand small {
  margin-top: 0.25rem;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.7;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid oklch(98% 0.02 95 / 24%);
  border-radius: 999px;
  background: oklch(18% 0.03 145 / 34%);
  padding: 0.2rem;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .main-nav {
  border-color: var(--line);
  background: oklch(96% 0.02 94 / 78%);
}

.main-nav a {
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.88;
  transition:
    background 180ms ease-out,
    opacity 180ms ease-out;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: oklch(100% 0 0 / 14%);
  opacity: 1;
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  background: var(--paper-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid oklch(98% 0.02 95 / 24%);
  border-radius: 999px;
  background: oklch(18% 0.03 145 / 34%);
  padding: 0.2rem;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .lang-switch {
  border-color: var(--line);
  background: oklch(96% 0.02 94 / 78%);
}

.lang-switch button {
  min-width: 2.15rem;
  min-height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  opacity: 0.72;
  transition:
    background 180ms ease-out,
    color 180ms ease-out,
    opacity 180ms ease-out;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--warm);
  color: oklch(24% 0.035 92);
  opacity: 1;
}

.lang-switch button:hover,
.lang-switch button:focus-visible {
  opacity: 1;
  outline: none;
}

.nav-cta {
  justify-self: end;
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease-out,
    background 180ms ease-out,
    border-color 180ms ease-out,
    box-shadow 180ms ease-out;
}

.button svg,
.nav-cta svg,
.quick-strip svg,
.room-facts svg,
.amenity-grid svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2;
}

.nav-cta,
.button-primary {
  background: var(--warm);
  color: oklch(24% 0.035 92);
  box-shadow: 0 12px 34px oklch(62% 0.09 76 / 24%);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: oklch(83% 0.082 77);
  box-shadow: 0 16px 44px oklch(62% 0.09 76 / 30%);
  outline: none;
}

.button-secondary {
  border-color: oklch(98% 0.02 95 / 45%);
  background: oklch(16% 0.025 140 / 32%);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: oklch(18% 0.035 145 / 48%);
  outline: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(0, 72rem) minmax(1rem, 1fr);
  align-items: end;
  overflow: clip;
  padding: 8rem 0 5rem;
  color: var(--cream);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  filter: saturate(0.9) brightness(0.72);
  transform: scale(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(14% 0.035 145 / 86%), oklch(14% 0.035 145 / 46%) 46%, oklch(14% 0.035 145 / 12%)),
    linear-gradient(0deg, oklch(14% 0.035 145 / 70%), transparent 46%);
}

.hero-content {
  grid-column: 2;
  max-width: 45rem;
}

.hero-kicker,
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: var(--warm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker span {
  border: 1px solid oklch(94% 0.03 90 / 30%);
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
  background: oklch(15% 0.03 145 / 32%);
  backdrop-filter: blur(10px);
}

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

h1,
h2,
h3 {
  text-wrap: pretty;
}

h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 14vw, 10.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
}

.hero-content p {
  max-width: 39rem;
  margin-top: 1.5rem;
  color: oklch(92% 0.018 95);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-panel {
  position: absolute;
  right: max(1.25rem, calc((100vw - 72rem) / 2));
  bottom: 4.5rem;
  width: min(21rem, calc(100vw - 2.5rem));
  border: 1px solid oklch(98% 0.02 95 / 24%);
  border-radius: var(--radius);
  background: oklch(15% 0.03 145 / 42%);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.hero-panel dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.hero-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid oklch(98% 0.02 95 / 14%);
  padding-bottom: 0.78rem;
}

.hero-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel dt {
  color: oklch(90% 0.02 95 / 70%);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: oklch(97% 0.018 94 / 82%);
}

.quick-strip div {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border-right: 1px solid var(--line);
  color: var(--sage-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.quick-strip div:last-child {
  border-right: 0;
}

.section,
.feature-band,
.gallery-section,
.final-cta {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1fr);
  gap: 3rem;
  align-items: start;
}

.section-heading h2,
.feature-copy h2,
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--ink);
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-left: min(20vw, 14rem);
}

.intro-copy p,
.feature-copy p,
.room-content p,
.site-footer p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.gallery-section {
  padding-bottom: 5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr;
  grid-auto-rows: 17rem;
  gap: 0.85rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(15% 0.03 145 / 34%), transparent 45%);
  opacity: 0;
  transition: opacity 220ms ease-out;
}

.gallery-grid figure:hover::after {
  opacity: 1;
}

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

.gallery-large figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: oklch(16% 0.03 145 / 50%);
  padding: 0.55rem 0.75rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  gap: 1rem;
  margin-top: 3rem;
  align-items: stretch;
}

.room-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(98% 0.018 94 / 72%);
  box-shadow: var(--shadow);
}

.room-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  overflow: hidden;
}

.room-image {
  min-height: 33rem;
}

.room-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.room-label,
.booking-overline {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-content h3,
.booking-card h3 {
  margin-top: 0.6rem;
  color: var(--sage-deep);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.95;
}

.room-content p {
  margin-top: 1rem;
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.room-facts li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-card {
  padding: 1.25rem;
}

.booking-card form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.booking-card label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card input,
.booking-card select {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.booking-card input:focus,
.booking-card select:focus {
  border-color: var(--sage);
  outline: 3px solid oklch(60% 0.08 145 / 18%);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
  padding: 6rem 0;
}

.feature-copy {
  position: sticky;
  top: 7rem;
}

.feature-copy p {
  margin-top: 1.3rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.amenity-grid div {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(98% 0.018 94 / 72%);
  padding: 1.2rem;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out;
}

.amenity-grid div:hover {
  transform: translateY(-3px);
  border-color: oklch(68% 0.08 125 / 70%);
  box-shadow: 0 18px 48px oklch(24% 0.045 125 / 12%);
}

.amenity-grid svg {
  color: var(--clay);
}

.amenity-grid strong {
  margin-top: 1.3rem;
  color: var(--sage-deep);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.amenity-grid span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: 1rem;
  margin-top: 3rem;
}

.map-frame {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, oklch(72% 0.04 102 / 18%) 1px, transparent 1px),
    linear-gradient(0deg, oklch(72% 0.04 102 / 18%) 1px, transparent 1px),
    radial-gradient(circle at 68% 36%, oklch(76% 0.08 126 / 45%), transparent 10rem),
    radial-gradient(circle at 28% 68%, oklch(80% 0.08 76 / 35%), transparent 12rem),
    oklch(90% 0.04 96);
  background-size:
    4.2rem 4.2rem,
    4.2rem 4.2rem,
    auto,
    auto,
    auto;
}

.map-frame::before,
.map-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: oklch(98% 0.015 94 / 70%);
  box-shadow: 0 12px 28px oklch(30% 0.04 110 / 8%);
}

.map-frame::before {
  width: 28rem;
  height: 2.2rem;
  left: -2rem;
  top: 13rem;
  transform: rotate(-18deg);
}

.map-frame::after {
  width: 31rem;
  height: 2rem;
  right: -4rem;
  bottom: 11rem;
  transform: rotate(24deg);
}

.map-path {
  position: absolute;
  border-radius: 999px;
  background: oklch(62% 0.08 125 / 32%);
}

.path-a {
  width: 24rem;
  height: 0.75rem;
  left: 5rem;
  top: 7.5rem;
  transform: rotate(31deg);
}

.path-b {
  width: 19rem;
  height: 0.7rem;
  right: 3.5rem;
  top: 18rem;
  transform: rotate(-38deg);
}

.path-c {
  width: 18rem;
  height: 0.62rem;
  left: 3rem;
  bottom: 6rem;
  transform: rotate(8deg);
}

.map-area,
.map-pin {
  position: absolute;
  z-index: 1;
  border: 1px solid oklch(98% 0.02 95 / 62%);
  border-radius: 999px;
  background: oklch(98% 0.018 94 / 76%);
  color: var(--sage-deep);
  box-shadow: 0 16px 38px oklch(26% 0.045 125 / 12%);
  backdrop-filter: blur(12px);
}

.map-area {
  padding: 0.55rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-one {
  right: 2.2rem;
  top: 4rem;
}

.area-two {
  left: 2.5rem;
  bottom: 4.2rem;
}

.map-pin {
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  transform: translate(-50%, -50%);
  color: var(--cream);
  background: var(--sage-deep);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.map-pin svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--warm);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sage-deep);
  padding: 1.35rem;
  color: var(--cream);
}

.location-copy address {
  font-style: normal;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.nearby-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.nearby-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid oklch(90% 0.03 95 / 18%);
  padding-bottom: 0.8rem;
  color: oklch(92% 0.02 95 / 82%);
  font-size: 0.9rem;
  font-weight: 700;
}

.nearby-list span {
  color: var(--warm);
  font-weight: 900;
  white-space: nowrap;
}

.location-link {
  width: fit-content;
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(31% 0.075 145), oklch(21% 0.055 145)),
    var(--sage-deep);
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--cream);
}

.final-cta h2 {
  max-width: 14ch;
  color: var(--cream);
}

.cta-note {
  max-width: 42rem;
  margin-top: 1.2rem;
  color: oklch(91% 0.018 95 / 78%);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.site-footer {
  display: flex;
  width: min(100% - 2rem, 72rem);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.site-footer strong {
  color: var(--sage-deep);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.site-footer p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.58rem 0.75rem;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease-out,
    border-color 180ms ease-out;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: oklch(68% 0.08 125 / 70%);
  background: oklch(93% 0.03 105);
  outline: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 7rem;
  }

  .hero-panel {
    position: static;
    grid-column: 2;
    margin-top: 2rem;
  }

  .quick-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-strip div {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .room-layout,
  .feature-band,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

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

  .gallery-large {
    grid-column: span 2;
  }

  .feature-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 0.75rem 0.75rem auto;
    padding: 0;
  }

  .site-header.is-scrolled {
    padding: 0.5rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .lang-switch {
    padding: 0.15rem;
  }

  .lang-switch button {
    min-width: 1.85rem;
    min-height: 1.9rem;
    font-size: 0.68rem;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    width: 2.9rem;
    padding: 0;
  }

  .nav-cta {
    font-size: 0;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .hero {
    min-height: 90vh;
    padding: 6.5rem 0 2rem;
  }

  .hero::before {
    background:
      linear-gradient(0deg, oklch(14% 0.035 145 / 88%), oklch(14% 0.035 145 / 34%)),
      linear-gradient(90deg, oklch(14% 0.035 145 / 72%), transparent);
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 4.9rem);
    max-width: 8ch;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions,
  .final-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr 1fr;
  }

  .quick-strip div {
    min-height: 4.4rem;
    justify-content: flex-start;
    padding-inline: 1rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-heading {
    gap: 1.25rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 22rem;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

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

  .room-image {
    min-height: 22rem;
  }

  .room-facts,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 26rem;
  }

  .nearby-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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