:root {
  --ease-luxury: cubic-bezier(0.25, 1, 0.5, 1);
  --ink: #120d0a;
  --chocolate: #2a1e18;
  --cocoa: #3a2a21;
  --cream: #f4eadb;
  --linen: #fbf6ee;
  --gold: #c8a46a;
  --bronze: #8b6a45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

img {
  display: block;
}

img.is-missing {
  opacity: 0;
}

::selection {
  background: rgba(200, 164, 106, 0.35);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  padding: 0.75rem 1rem;
  transition: transform 0.8s var(--ease-luxury);
}

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

.site-header {
  background: linear-gradient(to bottom, rgba(18, 13, 10, 0.72), rgba(18, 13, 10, 0));
  transition:
    background 0.8s var(--ease-luxury),
    backdrop-filter 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(18, 13, 10, 0.82);
  backdrop-filter: blur(18px);
}

.site-header nav a,
.footer-links a {
  position: relative;
  width: fit-content;
  transition: color 0.8s var(--ease-luxury);
}

.site-header nav a::after,
.footer-links a::after {
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.8s var(--ease-luxury);
}

.site-header nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.site-header nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-booking {
  align-items: center;
  min-height: 2.75rem;
  border: 1px solid rgba(244, 234, 219, 0.45);
  border-radius: 4px;
  padding: 0.8rem 1.2rem;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    border-color 0.8s var(--ease-luxury),
    background 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury);
}

.header-booking:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.mobile-menu {
  display: inline-grid;
  gap: 0.45rem;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  border: 1px solid rgba(244, 234, 219, 0.35);
  border-radius: 4px;
}

.mobile-menu span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--cream);
  transition: transform 0.8s var(--ease-luxury);
}

.site-header.is-open .mobile-menu span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .mobile-menu span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s var(--ease-luxury);
}

.site-header.is-open .mobile-panel {
  max-height: 22rem;
}

.hero-section {
  opacity: 0;
}

body .hero-title {
  overflow-wrap: normal;
  font-size: clamp(2.1rem, 5.6vw, 5.9rem);
}

.hero-section > .absolute:first-child,
.image-reveal,
.room-media,
.gallery-item,
.cta-section {
  background:
    radial-gradient(circle at 30% 15%, rgba(200, 164, 106, 0.24), transparent 34%),
    linear-gradient(135deg, #2a1e18, #120d0a);
}

.hero-image,
.cta-bg,
.parallax-image {
  will-change: transform;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  opacity: 0;
  transform: translateY(18px);
}

.hero-phone-list a {
  color: rgba(244, 234, 219, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 0.8s var(--ease-luxury);
}

.hero-phone-list a:hover {
  color: var(--gold);
}

body .hero-copy {
  max-width: min(42rem, calc(100vw - 2.5rem));
  overflow-wrap: anywhere;
}

.hero-kicker,
.hero-copy,
.primary-button,
.secondary-button {
  opacity: 0;
  transform: translateY(18px);
}

[data-split] {
  display: block;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.06em;
  vertical-align: bottom;
}

.split-word {
  display: inline-block;
  will-change: transform;
}

.primary-button {
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 106, 0.62);
  border-radius: 4px;
  padding: 1rem 1.6rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.secondary-button,
.outline-button {
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  max-width: 100%;
  border: 1px solid rgba(244, 234, 219, 0.42);
  border-radius: 4px;
  padding: 1rem 1.35rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 0.8s var(--ease-luxury),
    background 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.secondary-button:hover,
.outline-button:hover {
  border-color: var(--gold);
  background: rgba(200, 164, 106, 0.14);
  color: var(--gold);
  transform: translateY(-2px);
}

.outline-button {
  border-color: rgba(139, 106, 69, 0.38);
  color: var(--chocolate);
}

.outline-button:hover {
  background: rgba(139, 106, 69, 0.1);
  color: var(--bronze);
}

.primary-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: #b8925c;
  transition: transform 0.8s var(--ease-luxury);
}

.primary-button:hover {
  border-color: #b8925c;
  color: var(--ink);
  transform: translateY(-2px);
}

.primary-button:hover::before {
  transform: scaleX(1);
}

.section-space {
  padding-block: clamp(5.5rem, 8vw, 9rem);
}

.section-kicker {
  margin-bottom: 1.1rem;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  color: var(--chocolate);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 7vw, 5.7rem);
  font-weight: 600;
  hyphens: auto;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.seo-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.seo-text {
  display: grid;
  gap: 1.35rem;
  color: rgba(58, 42, 33, 0.78);
  font-size: 1.05rem;
  line-height: 1.9;
}

.seo-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(139, 106, 69, 0.16);
  border-radius: 8px;
  background: rgba(139, 106, 69, 0.16);
}

.seo-entry-card {
  display: grid;
  min-height: 13rem;
  align-content: space-between;
  background: rgba(255, 250, 242, 0.78);
  padding: clamp(1.35rem, 3vw, 2rem);
  transition:
    background 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury);
}

.seo-entry-card:hover {
  background: #fffaf2;
}

.seo-entry-card span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seo-entry-card strong {
  margin-top: 1.4rem;
  color: var(--chocolate);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.seo-entry-card small {
  margin-top: 1.2rem;
  color: rgba(58, 42, 33, 0.64);
  font-size: 0.95rem;
  line-height: 1.6;
}

.image-reveal {
  clip-path: inset(0 100% 0 0);
}

.room-card {
  overflow: hidden;
  border: 1px solid rgba(244, 234, 219, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 0;
  transform: translateY(56px);
  transition:
    box-shadow 0.8s var(--ease-luxury),
    border-color 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.room-card:hover {
  border-color: rgba(200, 164, 106, 0.36);
  box-shadow: 0 0 0 1px rgba(200, 164, 106, 0.2), 0 24px 70px rgba(200, 164, 106, 0.12);
  transform: translateY(-4px);
}

.room-card a {
  display: block;
  height: 100%;
}

.room-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s var(--ease-luxury),
    opacity 0.8s var(--ease-luxury),
    filter 0.8s var(--ease-luxury);
}

.room-card:hover .room-media img {
  transform: scale(1.05);
}

.service-item {
  display: grid;
  min-height: 14.5rem;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  background: rgba(251, 246, 238, 0.92);
  color: var(--chocolate);
  opacity: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  transform: translateY(34px);
  transition:
    transform 0.8s var(--ease-luxury),
    background 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury);
}

.service-item:hover {
  background: #fffaf2;
  color: var(--bronze);
  transform: translateY(-2px);
}

.service-item svg {
  width: 2.1rem;
  height: 2.1rem;
  stroke-width: 1.4;
}

.service-item span {
  max-width: 12rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-item p {
  max-width: 15rem;
  color: rgba(58, 42, 33, 0.64);
  font-size: 0.92rem;
  line-height: 1.65;
}

.gallery-item {
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cocoa);
  opacity: 0;
  transform: translateY(44px);
}

.gallery-grid:hover .gallery-item:not(:hover) img {
  opacity: 0.6;
  filter: saturate(0.72);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.pulse-button {
  animation: ctaPulse 2.8s var(--ease-luxury) infinite;
  opacity: 1;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(200, 164, 106, 0);
  }

  50% {
    box-shadow: 0 0 36px rgba(200, 164, 106, 0.34);
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(139, 106, 69, 0.16);
  border-radius: 8px;
  background: rgba(139, 106, 69, 0.16);
}

.faq-item {
  min-height: 11rem;
  background: rgba(255, 250, 242, 0.76);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.faq-item h3 {
  color: var(--chocolate);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.faq-item p {
  margin-top: 0.85rem;
  color: rgba(58, 42, 33, 0.72);
  line-height: 1.75;
}

.map-section {
  background: #efe2d0;
}

.map-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(100% - 2.5rem, 80rem);
  margin: 0 auto;
}

.map-copy {
  max-width: 43rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.map-section .outline-button {
  opacity: 1;
  transform: none;
}

.map-section .primary-button {
  border-color: var(--chocolate);
  background: var(--chocolate);
  color: var(--cream);
  opacity: 1;
  transform: none;
}

.map-section .primary-button:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.map-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: end;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(139, 106, 69, 0.24);
  border-radius: 8px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(18, 13, 10, 0.1), rgba(18, 13, 10, 0.74)),
    radial-gradient(circle at 28% 28%, rgba(200, 164, 106, 0.35), transparent 18%),
    linear-gradient(135deg, #fbf6ee 0 20%, #e5d5bf 20% 21%, #f5eadb 21% 44%, #dac3a4 44% 45%, #efe2d0 45% 100%);
  box-shadow: 0 24px 80px rgba(56, 33, 18, 0.18);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  transition:
    transform 0.8s var(--ease-luxury),
    box-shadow 0.8s var(--ease-luxury);
}

.map-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(139, 106, 69, 0.22) 22% 23%, transparent 23% 100%),
    linear-gradient(0deg, transparent 0 38%, rgba(139, 106, 69, 0.18) 38% 39%, transparent 39% 100%),
    linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 48% 49%, transparent 49% 100%);
}

.map-card::before {
  position: absolute;
  top: 36%;
  left: 48%;
  width: 3rem;
  height: 3rem;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  box-shadow: 0 14px 40px rgba(18, 13, 10, 0.28);
}

.map-card:hover {
  box-shadow: 0 30px 90px rgba(56, 33, 18, 0.26);
  transform: translateY(-4px);
}

.map-card span,
.map-card strong,
.map-card small {
  position: relative;
  color: var(--cream);
}

.map-card span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-card strong {
  margin-top: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
}

.map-card small {
  margin-top: 1rem;
  color: rgba(244, 234, 219, 0.72);
  font-size: 1rem;
}

.seo-links-section {
  border-top: 1px solid rgba(139, 106, 69, 0.16);
  background: #efe2d0;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
}

.seo-links-inner {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  width: min(100% - 2.5rem, 80rem);
  margin: 0 auto;
}

.seo-links-inner h2 {
  margin-top: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--cocoa);
}

.seo-links-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.seo-links-list a {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 106, 69, 0.22);
  border-radius: 8px;
  background: rgba(251, 246, 238, 0.42);
  padding: 1rem;
  color: rgba(58, 42, 33, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 0.8s var(--ease-luxury),
    background 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.seo-links-list a:hover {
  border-color: rgba(200, 164, 106, 0.65);
  background: rgba(251, 246, 238, 0.72);
  color: var(--cocoa);
  transform: translateY(-2px);
}

.site-footer {
  opacity: 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 1rem;
  color: rgba(244, 234, 219, 0.72);
  font-weight: 700;
}

.legal-details p + p {
  margin-top: 0.2rem;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  left: auto;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: 28rem;
  border: 1px solid rgba(200, 164, 106, 0.32);
  border-radius: 8px;
  background: rgba(18, 13, 10, 0.92);
  box-shadow: 0 22px 70px rgba(18, 13, 10, 0.28);
  color: var(--cream);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  max-width: 45rem;
  color: rgba(244, 234, 219, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cookie-banner button {
  flex: 0 0 auto;
  min-height: 2.8rem;
  border: 1px solid rgba(200, 164, 106, 0.64);
  border-radius: 4px;
  padding: 0.75rem 1.2rem;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background 0.8s var(--ease-luxury),
    color 0.8s var(--ease-luxury),
    border-color 0.8s var(--ease-luxury);
}

.cookie-banner button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.seo-page {
  background: var(--linen);
  color: var(--ink);
}

.seo-page-header {
  background: rgba(18, 13, 10, 0.92);
  color: var(--cream);
}

.seo-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin-inline: auto;
  padding: 1.25rem 1.25rem;
}

.seo-page-logo {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.seo-page-phone {
  color: rgba(244, 234, 219, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.seo-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 13, 10, 0.82), rgba(18, 13, 10, 0.42)),
    url("../images/hero.webp") center / cover;
  color: var(--cream);
}

.seo-page-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.seo-page-hero .seo-page-inner {
  padding-block: clamp(6rem, 11vw, 9rem);
}

.seo-page-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.seo-page h1 {
  max-width: 920px;
  margin-top: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.seo-page-lead {
  max-width: 690px;
  margin-top: 1.5rem;
  color: rgba(244, 234, 219, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
}

.seo-page-actions,
.seo-room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.seo-page .primary-button,
.seo-page .secondary-button,
.seo-page .outline-button {
  opacity: 1;
  transform: none;
}

.seo-page-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.seo-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.seo-page h2 {
  color: var(--chocolate);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 0.98;
}

.seo-copy {
  display: grid;
  gap: 1.2rem;
  color: rgba(58, 42, 33, 0.78);
  font-size: 1.04rem;
  line-height: 1.9;
}

.seo-room-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(139, 106, 69, 0.16);
  border-radius: 8px;
  background: rgba(139, 106, 69, 0.16);
}

.seo-room-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  background: rgba(255, 250, 242, 0.78);
  padding: 1.4rem;
}

.seo-room-row h3 {
  color: var(--chocolate);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.seo-room-row p {
  margin-top: 0.4rem;
  color: rgba(58, 42, 33, 0.68);
  line-height: 1.65;
}

.seo-room-row strong {
  color: var(--bronze);
  font-size: 1.1rem;
  white-space: nowrap;
}

.seo-faq-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(139, 106, 69, 0.16);
  border-radius: 8px;
  background: rgba(139, 106, 69, 0.16);
}

.seo-faq-list article {
  background: rgba(255, 250, 242, 0.78);
  padding: 1.4rem;
}

.seo-faq-list h3 {
  color: var(--chocolate);
  font-weight: 800;
}

.seo-faq-list p {
  margin-top: 0.65rem;
  color: rgba(58, 42, 33, 0.72);
  line-height: 1.75;
}

.seo-page-footer {
  background: var(--ink);
  color: rgba(244, 234, 219, 0.72);
  padding-block: 2rem;
}

.seo-page-footer a {
  color: var(--cream);
}

@media (max-width: 640px) {
  body .hero-title {
    font-size: clamp(1.55rem, 7.1vw, 2.2rem);
    line-height: 1.05;
  }

  body .hero-copy {
    max-width: 19rem;
  }

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

  .hero-phone-list {
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero-section {
    min-height: 760px;
  }

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

  .seo-entry-grid,
  .faq-grid,
  .map-layout,
  .seo-links-inner {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 330px;
  }

  .seo-links-list {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    max-width: none;
  }

  .cookie-banner button {
    width: 100%;
  }

  .seo-page-nav,
  .seo-page-grid,
  .seo-room-row {
    grid-template-columns: 1fr;
  }

  .seo-page-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .primary-button {
    padding-inline: 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .secondary-button,
  .outline-button {
    width: 100%;
    padding-inline: 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-section,
  .hero-kicker,
  .hero-copy,
  .primary-button,
  .secondary-button,
  .hero-phone-list,
  .room-card,
  .service-item,
  .gallery-item,
  .site-footer {
    opacity: 1 !important;
    transform: none !important;
  }

  .image-reveal {
    clip-path: inset(0) !important;
  }
}
