:root {
  color-scheme: light;
  --ink: #20221d;
  --muted: #62655c;
  --stone: #e7e1d4;
  --stone-2: #f6f3ed;
  --smoke: #d7d0c2;
  --olive: #30382e;
  --olive-2: #465141;
  --terracotta: #8f5138;
  --terracotta-2: #b36d4e;
  --bone: #fbfaf6;
  --shadow: 0 22px 60px rgba(32, 34, 29, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone-2);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--bone);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--ink);
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  right: auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 64px));
  min-height: 66px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.9);
  border: 1px solid rgba(32, 34, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 34, 29, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 12px 34px rgba(32, 34, 29, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 4px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 5px;
  background: rgba(251, 250, 246, 0.46);
}

.brand-icon {
  width: 31px;
  height: 31px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  white-space: nowrap;
}

.brand-location {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-menu a {
  padding: 9px 11px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.main-menu a:hover,
.main-menu a:focus-visible {
  background: rgba(143, 81, 56, 0.1);
  color: var(--terracotta);
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px 32px 72px;
  background: linear-gradient(180deg, #303a2f 0%, #202a22 100%);
  color: var(--bone);
  border-bottom: 1px solid rgba(251, 250, 246, 0.08);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 250, 246, 0.04) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(251, 250, 246, 0.024) 24px 25px);
  background-size: 180px 128px, 180px 128px, auto;
  opacity: 0.7;
}

.hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(13, 18, 14, 0.28) 0%, transparent 34%, transparent 68%, rgba(13, 18, 14, 0.24) 100%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.08) 0%, transparent 28%, rgba(13, 18, 14, 0.18) 100%);
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 118px;
  right: max(32px, calc((100vw - var(--max)) / 2));
  width: min(470px, 38vw);
  height: min(560px, calc(100% - 178px));
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 246, 0.2);
  border-radius: 8px;
  background: #253026;
  box-shadow: 0 24px 64px rgba(12, 16, 12, 0.3);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100% - 560px));
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-kicker,
.room-meta {
  margin: 0 0 12px;
  color: var(--terracotta-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9a37d;
}

.hero h1,
.section h2,
.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: 3.45rem;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(251, 250, 246, 0.78);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--bone);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-2);
  border-color: var(--terracotta-2);
}

.button-secondary {
  background: rgba(251, 250, 246, 0.08);
  color: var(--bone);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--bone);
  color: var(--ink);
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid rgba(251, 250, 246, 0.2);
}

.hero-facts div {
  padding: 18px 28px 0 0;
}

.hero-facts span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-facts p {
  margin: 8px 0 0;
  color: rgba(251, 250, 246, 0.68);
  font-size: 0.9rem;
}

.section {
  padding: 92px 32px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-band,
.district-band {
  background: var(--bone);
}

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading p:not(.section-kicker),
.rich-text p,
.district-layout p,
.arrival-grid p,
.booking-layout p,
.faq-list p,
.footer-inner p,
.footer-note,
.room-copy p:not(.room-meta),
.service-card p {
  color: var(--muted);
}

.rich-text p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.gallery-section {
  background: #efeae0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--olive);
  color: var(--bone);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

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

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 34, 29, 0.05), rgba(32, 34, 29, 0.52));
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  font-weight: 800;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.rooms-band {
  background: var(--stone-2);
}

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

.room-card,
.service-card {
  border: 1px solid var(--smoke);
  border-radius: 8px;
  background: var(--bone);
  overflow: hidden;
}

.room-card picture {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--smoke);
}

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

.room-copy {
  padding: 28px;
}

.room-copy h3,
.service-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.14;
}

.room-copy p {
  margin: 0;
}

.services-section {
  background: var(--bone);
}

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

.service-card {
  padding: 24px;
}

.service-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  background: var(--olive);
  color: var(--bone);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p {
  margin: 0;
}

.district-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.district-layout picture {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 8px;
  background: var(--smoke);
}

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

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 1px;
  background: var(--terracotta);
}

.arrival-section {
  background: #e2ddd2;
}

.arrival-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--terracotta);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.arrival-panel {
  border-left: 1px solid rgba(32, 34, 29, 0.18);
  padding-left: 34px;
}

.arrival-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.arrival-panel div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(32, 34, 29, 0.12);
}

.arrival-panel dt {
  color: var(--ink);
  font-weight: 850;
}

.arrival-panel dd {
  margin: 0;
  color: var(--muted);
}

.booking-band {
  background: var(--olive);
  color: var(--bone);
}

.booking-band h2,
.booking-band .section-kicker,
.booking-band p {
  color: inherit;
}

.booking-band p {
  opacity: 0.78;
}

.booking-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.booking-layout div {
  max-width: 740px;
}

.reviews-section {
  background: var(--bone);
}

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

.review-card {
  border: 1px solid var(--smoke);
  border-radius: 8px;
  background: var(--stone-2);
  padding: 26px;
}

.review-score {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.14;
}

.review-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--stone-2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--smoke);
  border-radius: 8px;
  background: var(--bone);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 32px 20px 0;
  color: var(--ink);
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
}

.site-footer {
  background: #e7e1d4;
  color: var(--ink);
  padding: 58px 32px 28px;
  border-top: 1px solid rgba(32, 34, 29, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.7fr;
  gap: 48px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  text-decoration: none;
}

.footer-main p {
  max-width: 430px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 0.78rem;
  font-family: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  text-decoration: none;
}

.site-footer .footer-network-link {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 10px 8px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.78);
  border-left: 3px solid var(--terracotta);
  border-radius: 4px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-color: rgba(143, 81, 56, 0.72);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--terracotta);
}

.site-footer .footer-network-link:hover,
.site-footer .footer-network-link:focus-visible {
  color: var(--bone);
  background: var(--ink);
  text-decoration-color: var(--terracotta-2);
}

.footer-whatsapp {
  width: max-content;
  margin-top: 20px !important;
  padding: 11px 14px;
  border: 1px solid rgba(32, 34, 29, 0.18);
  border-radius: 6px;
  background: var(--bone);
  font-weight: 850;
}

.footer-note {
  width: min(var(--max), 100%);
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 34, 29, 0.14);
  font-size: 0.86rem;
}

.whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #1f8f53;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(32, 34, 29, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-icon path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 2;
}

.whatsapp-icon path:last-child {
  fill: currentColor;
}

.whatsapp-fixed:hover,
.whatsapp-fixed:focus-visible {
  background: #157844;
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 18px;
  width: min(640px, calc(100% - 44px));
  padding: 14px 16px;
  border: 1px solid rgba(32, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(32, 34, 29, 0.18);
  transform: translateX(-50%);
}

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

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}

.cookie-banner a {
  color: var(--terracotta);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.cookie-banner button {
  border: 0;
  border-radius: 6px;
  background: var(--olive);
  color: var(--bone);
  padding: 10px 14px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.legal-body {
  background: var(--bone);
}

.legal-page {
  padding-top: 118px;
}

.legal-hero {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0 44px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.06;
}

.legal-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto 90px;
  padding-top: 34px;
  border-top: 1px solid rgba(32, 34, 29, 0.14);
}

.legal-content h2 {
  margin: 34px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--terracotta);
  font-weight: 850;
}

.legal-updated {
  margin-top: 34px !important;
  color: var(--ink) !important;
  font-weight: 850;
}

.lightbox {
  width: min(920px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bone);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(32, 34, 29, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: #10110f;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  border: 1px solid rgba(251, 250, 246, 0.7);
  border-radius: 4px;
  background: rgba(32, 34, 29, 0.66);
  color: var(--bone);
  padding: 9px 12px;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    width: min(var(--max), calc(100% - 44px));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 10px 18px;
    background: rgba(251, 250, 246, 0.98);
    color: var(--ink);
    border: 1px solid rgba(32, 34, 29, 0.1);
    border-radius: 8px;
    box-shadow: 0 22px 34px rgba(32, 34, 29, 0.16);
  }

  .main-menu.is-open {
    display: grid;
  }

  .main-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 8px;
    border-top: 1px solid rgba(32, 34, 29, 0.1);
    text-align: center;
  }

  .main-menu a:first-child {
    border-top: 0;
  }

  .hero {
    min-height: 700px;
    padding: 116px 22px 64px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-content {
    width: min(560px, calc(100% - 360px));
    margin-left: 0;
  }

  .hero-media {
    top: 112px;
    right: 22px;
    width: 300px;
    height: 430px;
    min-height: 0;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-facts div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 0;
  }

  .hero-facts span {
    min-width: 86px;
    font-size: 1.35rem;
  }

  .hero-facts p {
    margin: 0;
  }

  .section {
    padding: 70px 22px;
  }

  .two-column,
  .district-layout,
  .arrival-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

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

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

  .arrival-panel {
    border-left: 0;
    padding-left: 0;
  }

  .booking-layout,
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .booking-layout {
    display: grid;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-icon {
    width: 27px;
    height: 27px;
  }

  .brand-text {
    font-size: 0.91rem;
  }

  .brand-location {
    font-size: 0.53rem;
    letter-spacing: 0.07em;
  }

  .hero {
    min-height: auto;
    padding: 338px 22px 58px;
    background: linear-gradient(180deg, #303a2f 0%, #202a22 100%);
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
  }

  .hero-media {
    top: 92px;
    left: 22px;
    right: 22px;
    width: auto;
    height: 220px;
  }

  .hero-facts span {
    min-width: 80px;
  }

  .button {
    width: 100%;
  }

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

  .gallery-grid,
  .room-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .arrival-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .room-copy,
  .service-card {
    padding: 22px;
  }

  .cookie-banner {
    bottom: 88px;
    width: min(420px, calc(100% - 28px));
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner div {
    margin-left: 0;
  }

  .whatsapp-fixed {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .legal-page {
    padding-top: 96px;
  }

  .legal-hero {
    padding: 58px 0 34px;
  }

  .legal-hero h1 {
    font-size: 2.18rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
    padding: 8px 10px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-icon {
    width: 24px;
    height: 24px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .brand-location {
    font-size: 0.48rem;
    letter-spacing: 0.04em;
  }
}

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