/* ==========================================================================
   Mizhhirya — shared layout & components
   Depends on tokens.css. No hardcoded colors or fonts below this line.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
/* Prata ships a single weight. Without this, browsers fake the bold on
   h1–h4 and the type reads heavier and blacker than the design. */
h1, h2, h3, h4 { font-weight: 400; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

/* Lenis requirement */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* --- Typography roles ----------------------------------------------------- */
.display-hero {
  font-family: var(--font-display);
  font-size: var(--fs-display-hero);
  line-height: var(--lh-display-hero);
  font-weight: 400;
}

.display-section {
  font-family: var(--font-display);
  font-size: var(--fs-display-section);
  line-height: var(--lh-display-section);
  font-weight: 400;
}

.display-card {
  font-family: var(--font-display);
  font-size: var(--fs-display-card);
  line-height: var(--lh-display-card);
  font-weight: 400;
}

.script {
  font-family: var(--font-script);
  font-size: var(--fs-script-m);
  line-height: var(--lh-script);
  color: var(--color-accent-gold);
}
.script--lg { font-size: var(--fs-script-l); }
.script--on-dark { color: var(--color-accent-gold-on-dark); }

.label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-accent-gold);
}
.label--on-dark { color: var(--color-accent-gold-on-dark); }

.body-lg { font-size: var(--fs-body-lg); }
.body-sm { font-size: var(--fs-body-sm); line-height: var(--lh-tight); }
.muted   { color: var(--color-text-muted); }
.on-dark { color: var(--color-text-on-dark); }
.on-dark-muted { color: var(--color-text-on-dark-muted); }

.measure { max-width: 34rem; }

/* --- Layout --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-py); }
.section--compact-top { padding-top: var(--space-6); }
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.section--tint { background: var(--color-bg-section); }

/* Two-column split: text + media */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 6rem);
  align-items: start;
}
.split--media-first > .split__media { order: -1; }

.split__media {
  align-self: start;
  width: 100%;
}
.split__media picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.contacts-map {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.contacts-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.split__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  border-radius: var(--radius-sm);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 1px solid var(--color-text-primary);
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 500;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn:hover {
  background: var(--color-text-primary);
  color: var(--color-bg-page);
}

.btn--on-dark { border-color: var(--color-text-on-dark); color: var(--color-text-on-dark); }
.btn--on-dark:hover { background: var(--color-text-on-dark); color: var(--color-bg-dark); }

.btn--solid {
  background: var(--color-button-primary-bg);
  border-color: var(--color-button-primary-bg);
  color: var(--color-button-primary-text);
}
.btn--solid:hover { opacity: 0.88; background: var(--color-button-primary-bg); color: var(--color-button-primary-text); }

:where(a, button):focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 20;
  background: var(--color-bg-page);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-5);
}
.site-header__logo { width: 148px; flex-shrink: 0; }
.site-header__logo img { width: 100%; height: auto; }

.nav { display: flex; gap: var(--space-8); }
.nav a {
  font-size: var(--fs-body-sm);
  color: var(--color-text-primary);
  position: relative;
  padding-block: 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--color-accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: var(--space-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  margin: 5px 0;
  background: var(--color-text-primary);
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(30rem, 20rem + 32vw, 47.5rem);
  padding-block: var(--space-20) var(--space-16);
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.hero--short { min-height: clamp(24rem, 18rem + 20vw, 30rem); }
.hero--booking {
  min-height: auto;
  justify-content: flex-start;
  padding-block: var(--space-8) var(--space-8);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,26,20,0.35) 0%, rgba(20,26,20,0.78) 100%);
}
.cottages-hero__media {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__media .cottages-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
@media (max-width: 767px) {
  .hero:has(.cottages-hero__media),
  .hero:has(.basein-hero__media) {
    min-height: clamp(22rem, 16rem + 28vw, 28rem);
  }
}
.basein-hero__media {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__media .basein-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__inner { position: relative; z-index: 1; }
.hero__content { display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start; }
.hero__subline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.9vw, 1.625rem);
  line-height: 1.3;
  color: var(--color-text-on-dark-muted);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-2);
}
/* Home hero: button + hint removed — keep the same vertical space. */
.hero__actions--reserve {
  min-height: calc(var(--space-2) + 2px + 28px + var(--fs-button));
}
.hero__hint { font-size: var(--fs-button); color: var(--color-text-on-dark-muted); }

/* --- Bookmenow widget ----------------------------------------------------- */
.booking-widget {
  padding: var(--space-8);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

/* --- Booking bar ---------------------------------------------------------- */
.booking-bar {
  position: relative;
  z-index: 25;
  height: var(--space-16);
  overflow: visible;
}
.booking-bar .wrap { overflow: visible; }
.booking-bar__card {
  position: absolute;
  left: 50%;
  top: -54px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 2 * var(--gutter)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-5) var(--space-6) var(--space-5) var(--space-10);
  background: var(--color-bg-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: visible;
}
.booking-bar__field { display: flex; flex-direction: column; gap: var(--space-1); }
.booking-bar__field dt {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}
.booking-bar__field dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.45;
}
.booking-bar__input {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--color-text-primary);
  width: 100%;
  min-width: 0;
}
.booking-bar__input:focus { outline: none; }
.booking-bar__field--guests { position: relative; flex: 0 0 auto; }

/* --- Guest picker --------------------------------------------------------- */
.guest-picker {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
}
.guest-picker__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.guest-picker__label {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-tight);
  color: var(--color-text-primary);
}
.guest-picker__stepper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.guest-picker__btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-surface-placeholder);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.guest-picker__btn:hover:not(:disabled) { border-color: var(--color-accent-gold); }
.guest-picker__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.guest-picker__value {
  min-width: 1.25rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1;
}
.guest-picker--dropdown {
  position: relative;
  display: grid;
  width: max-content;
  max-width: 100%;
}
.guest-picker__sizer {
  grid-area: 1 / 1;
  visibility: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.45;
  pointer-events: none;
  user-select: none;
}
.guest-picker__toggle {
  grid-area: 1 / 1;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  color: var(--color-text-primary);
  width: 100%;
  white-space: nowrap;
}
.guest-picker__panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + var(--space-2));
  left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: max(100%, 22rem);
  width: max-content;
  padding: var(--space-5);
  background: var(--color-bg-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.guest-picker--dropdown .guest-picker__label { white-space: nowrap; }
.guest-picker__panel[hidden] { display: none; }
.field--guests { gap: var(--space-4); }

/* --- Stats ---------------------------------------------------------------- */
/* A wrapping flex row. (A grid with auto-fit + max-content collapses to a
   single column — that was the bug.) */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-12);
  padding-top: var(--space-4);
  align-items: flex-start;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 6rem;
  text-align: left;
}
.stat dd,
.stat dt { margin: 0; }
.stat__value {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  line-height: 1.25;
  white-space: nowrap;
}
.stat__label { font-size: var(--fs-caption); line-height: 1.4; color: var(--color-text-muted); }

/* --- Media placeholder (swap for real photos) ----------------------------- */
.ph {
  display: grid;
  place-items: center;
  background: var(--color-surface-placeholder);
  color: var(--color-text-muted);
  font-size: var(--fs-label);
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
}
.ph--tall  { aspect-ratio: 3 / 4; }
.ph--wide  { aspect-ratio: 16 / 9; }
.ph--4x3   { aspect-ratio: 4 / 3; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--fill  { aspect-ratio: auto; height: 100%; }

/* One big photo beside two stacked ones. Proportions from aspect-ratio on
   each cell — no fixed heights, no stretch-to-match hacks. */
.gallery-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-5);
  width: 100%;
}
.gallery-pair > picture,
.gallery-pair__side > picture {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.gallery-pair > picture { aspect-ratio: 1 / 1; }
.gallery-pair__side {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-5);
  min-width: 0;
}
.gallery-pair__side > picture { aspect-ratio: 16 / 10; }
.gallery-pair__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-pair__side .ph {
  aspect-ratio: 16 / 10;
  height: auto;
}

@media (min-width: 720px) {
  .gallery-pair { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

[data-lightbox] img { cursor: pointer; }

/* --- Lightbox ------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-bg-dark-deep) 92%, transparent);
}
.lightbox__figure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--color-text-on-dark);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-3);
}
.lightbox__close {
  top: var(--space-4);
  right: var(--space-4);
  font-size: 2rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  font-family: var(--font-body);
}
.lightbox__nav--prev { left: var(--space-2); }
.lightbox__nav--next { right: var(--space-2); }
.lightbox__close:hover,
.lightbox__nav:hover { color: var(--color-accent-gold-on-dark); }
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--color-accent-gold-on-dark);
  outline-offset: 3px;
}
.lightbox:not(.lightbox--instant):not([hidden]) {
  animation: lightbox-in var(--dur-fast) var(--ease-out);
}
@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
body.lightbox-open { overflow: hidden; }

/* --- Feature list (numbered) ---------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--space-16);
  margin-top: var(--space-6);
}
.feature {
  border-top: 1px solid var(--color-surface-placeholder);
  padding-block: var(--space-6);
}
/* The rule above items 1 and 2 only adds noise — the heading already
   separates them. Space does the same job more quietly. */
.features > .feature:nth-child(1),
.features > .feature:nth-child(2) { border-top: 0; padding-top: 0; }

.feature__row { display: flex; gap: var(--space-6); }
.feature__num {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  min-width: 1.5rem;
}
.feature__title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; }
.feature__text { font-size: 0.9375rem; line-height: 1.6; color: var(--color-text-muted); margin-top: var(--space-2); }

/* Single column — used when the list sits next to the sticky booking card. */
.features--single { grid-template-columns: minmax(0, 1fr); }
.features--single > .feature:nth-child(2) { border-top: 1px solid var(--color-surface-placeholder); padding-top: var(--space-6); }

/* Stacked variant: rule, number, title, text — each on its own line. */
.features--stacked { gap: 0 var(--space-12); }
.features--stacked .feature__row { flex-direction: column; gap: var(--space-3); }
.features--stacked .feature__num { line-height: 1; min-width: 0; }
.features--stacked .feature__title { font-size: var(--fs-display-card); line-height: var(--lh-display-card); }
.features--stacked .feature__text { font-size: var(--fs-body-sm); line-height: var(--lh-tight); margin-top: 0; }

/* --- Cards ---------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  align-items: stretch;
}
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-8);
  background: var(--color-bg-page);
  border: 1px solid var(--color-surface-placeholder);
  border-radius: var(--radius-md);
}
.card--tint { background: var(--color-bg-section); border-color: transparent; }
.cards--flush .card {
  padding: 0;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
}
.card__text { color: var(--color-text-muted); line-height: var(--lh-tight); margin-top: var(--space-1); }
.card .label + .display-card { margin-top: var(--space-1); }

.panel {
  padding: var(--space-14) clamp(1.5rem, 1rem + 2vw, 3rem);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
}

/* --- Columns (4-up text) -------------------------------------------------- */
.cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-8);
}
.cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col__title { font-family: var(--font-display); font-size: var(--fs-display-card); line-height: var(--lh-display-card); }
.col__text { font-size: var(--fs-body-sm); line-height: var(--lh-tight); color: var(--color-text-muted); margin-top: var(--space-2); }

@media (max-width: 900px) {
  .cols, .cols--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cols, .cols--2, .cols--3 { grid-template-columns: minmax(0, 1fr); }
}

/* --- Booking card (sticky) ------------------------------------------------ */
/* The cottage page is long. The card follows the reader, so the decision is
   always one click away — no scrolling back up to the header. */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 1rem + 4vw, 6rem);
  align-items: start;
}
.booking-layout__aside { position: sticky; top: var(--space-6); }

.booking-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-bg-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.booking-card__price {
  font-family: var(--font-display);
  font-size: 1.625rem;
  line-height: 1.3;
}
.booking-card__price span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  line-height: 1.5;
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: 10px 14px;
  border: 1px solid var(--color-surface-placeholder);
  border-radius: var(--radius-sm);
}
.field label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}
.field input,
.field select {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  width: 100%;
}
.field input:focus,
.field select:focus { outline: none; }
.field:focus-within { border-color: var(--color-accent-gold); }
.booking-card .field input[type="date"] {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.45;
}

.booking-card .btn { width: 100%; }
.booking-card__note { font-size: var(--fs-caption); color: var(--color-text-muted); }

/* --- Hotel notify form ---------------------------------------------------- */
.hotel-notify-form {
  width: 100%;
}
.hotel-notify-form__controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  width: 100%;
  max-width: 380px;
}
.hotel-notify-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.hotel-notify-form__field label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}
.hotel-notify-form__field input,
.hotel-notify-form__controls .btn {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
}
.hotel-notify-form__field input {
  padding-inline: var(--space-4);
  border: 1px solid var(--color-surface-placeholder);
  border-radius: var(--radius-xs);
  background: var(--color-bg-surface);
  font-family: var(--font-body);
  font-size: var(--fs-body-base);
  color: var(--color-text-primary);
}
.hotel-notify-form__field input:focus {
  outline: none;
  border-color: var(--color-accent-gold);
}
.hotel-notify-form__controls .btn {
  padding-block: 0;
}

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: minmax(0, 1fr); }
  .booking-layout__aside { position: static; order: -1; }
}

/* --- Marquee gallery ------------------------------------------------------ */
.marquee { overflow: hidden; padding-block: var(--space-4) var(--space-14); }
.marquee__track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  will-change: transform;
}
.marquee__item {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 420px);
  height: clamp(180px, 22vw, 280px);
  aspect-ratio: auto;
}

/* --- Quote ---------------------------------------------------------------- */
.quote { text-align: center; }
.quote__text {
  font-family: var(--font-display);
  font-size: var(--fs-quote);
  line-height: 1.5;
  max-width: 48rem;
  margin-inline: auto;
}
.quote__cite {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--fs-caption);
  font-style: normal;
  color: var(--color-text-muted);
}

/* --- CTA ------------------------------------------------------------------ */
.cta { text-align: center; }
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.cta__text { max-width: 30rem; color: var(--color-text-on-dark-muted); }
.cta--cafe .cta__text { max-width: 42rem; }
.cta .btn { margin-top: var(--space-4); }

/* --- Footer --------------------------------------------------------------- */
/* Informational teaser — hotel branch, separate from booking nav/CTA */
.hotel-teaser {
  overflow: hidden;
  background: var(--color-bg-dark-deep);
  padding-block: var(--space-4);
}
.hotel-teaser__link {
  display: block;
  text-decoration: none;
}
.hotel-teaser__link:hover .hotel-teaser__text {
  color: var(--color-accent-gold-on-dark);
}
.hotel-teaser__track {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  width: max-content;
  will-change: transform;
}
.hotel-teaser__text,
.hotel-teaser__sep {
  flex: 0 0 auto;
}
.hotel-teaser__text {
  font-size: var(--fs-body-sm);
  color: var(--color-text-on-dark);
  white-space: nowrap;
}
.hotel-teaser__sep {
  font-size: var(--fs-body-sm);
  color: var(--color-accent-gold-on-dark);
}
@media (prefers-reduced-motion: reduce) {
  .hotel-teaser__track {
    width: 100%;
    justify-content: center;
    transform: none !important;
  }
  .hotel-teaser__track > :nth-child(n + 3) {
    display: none;
  }
}

.site-footer {
  background: var(--color-bg-dark-deep);
  color: var(--color-text-on-dark-muted);
  padding-block: var(--space-12);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.site-footer__logo { width: 115px; }
.site-footer__logo img { width: 100%; height: auto; }
.site-footer p { font-size: var(--fs-caption); }
.site-footer a:hover { color: var(--color-accent-gold-on-dark); }

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--media-first > .split__media { order: 0; }
  .features { grid-template-columns: minmax(0, 1fr); }
  .booking-bar { height: auto; padding-bottom: var(--space-8); }
  .booking-bar__card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: var(--space-8);
    padding: var(--space-6);
  }
  .booking-bar__card .btn { width: 100%; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6) var(--gutter);
    background: var(--color-bg-page);
    box-shadow: var(--shadow-card);
  }
  .nav[data-open="true"] { display: flex; }
  .nav-toggle { display: block; }
  .site-header__inner { position: relative; }
  .site-header .btn { display: none; }
  .site-footer__inner { justify-content: flex-start; }
}

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