﻿/* ===========================
   Hotel Alpin — production CSS
   Mobile-first, breakpoint: 992px
   =========================== */

:root {
  /* ===== COLORS ===== */
  --gold: #be924f;
  --gold-hover: #a87e3e;
  --gold-light: #ede0cd;
  --cream: #f9f4ec;
  --black: #000;
  --white: #fff;
  --gray: #767676;
  --gray-light: #cccece;
  --gray-warm: #5e5956;
  --overlay-brown: rgba(76, 49, 40, 0.4);
  --overlay-brown-soft: rgba(76, 49, 40, 0.05);
  --text-muted: rgba(0, 0, 0, 0.6);
  --text-strong: rgba(0, 0, 0, 0.8);
  --label-muted: rgba(118, 118, 118, 0.6);

  /* ===== TYPOGRAPHY ===== */
  --font-display: "the-seasons", Georgia, serif;
  --font-ui: gravesend-sans, sans-serif;
  --font-body: "Google Sans", "Inter", system-ui, sans-serif;

  /* ===== SPACING ===== */
  --gutter: 25px;
  --gutter-d: 60px;
  --container: 1480px;

  /* ===== TRANSITIONS ===== */
  --t-fast: 0.18s ease;
  --t-base: 0.28s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast), background-color var(--t-base); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: 400; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ===== CONTAINERS ===== */
.full-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .full-container { padding-left: 60px; padding-right: 60px; }
  .container {
    max-width: 1360px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* ===== UTILITIES ===== */
.rot-90 { transform: rotate(-90deg); }

/* ===== HOVER MEDIA (global, reusable) ===== */
.hover-media {
  position: relative;
  overflow: hidden;
  display: block;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hover-media:focus { outline: none; }
.hover-media img { transition: transform var(--t-base); }
.hover-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 1;
  pointer-events: none;
}
.hover-media:hover img,
.hover-media:focus-visible img { transform: scale(1.04); }
.hover-media:hover::before,
.hover-media:focus-visible::before { opacity: 1; }

/* ===== SELECT DROPDOWN (global, reusable) ===== */
.select-dropdown {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
}
.select-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: 1;
  text-align: left;
}
.select-dropdown__value {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-dropdown__chevron {
  width: 10px;
  height: auto;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--t-base);
  transform-origin: center;
}
.select-dropdown.is-open .select-dropdown__chevron { transform: rotate(180deg); }
.select-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 6px 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  list-style: none;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-base), transform var(--t-base), visibility 0s linear var(--t-base);
  max-height: 280px;
  overflow-y: auto;
}
.select-dropdown.is-open .select-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--t-base), transform var(--t-base), visibility 0s;
}
.select-dropdown__option {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
  transition: background-color var(--t-fast), color var(--t-fast);
  line-height: 1.2;
}
.select-dropdown__option:hover,
.select-dropdown__option:focus-visible {
  background: var(--cream);
  color: var(--gold);
  outline: none;
}
.select-dropdown__option.is-selected {
  color: var(--gold);
  font-weight: 500;
}

/* dark variant — for use inside dark surfaces (e.g. hero arrival-bar) */
.arrival-bar:not(.arrival-bar--light) .select-dropdown__panel {
  background: rgba(20, 16, 14, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.arrival-bar:not(.arrival-bar--light) .select-dropdown__option { color: var(--white); }
.arrival-bar:not(.arrival-bar--light) .select-dropdown__option:hover,
.arrival-bar:not(.arrival-bar--light) .select-dropdown__option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}
.arrival-bar:not(.arrival-bar--light) .select-dropdown__option.is-selected { color: var(--gray-light); }
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}
@media (min-width: 992px) { .eyebrow { font-size: 15px; letter-spacing: 0.05em; } }
.eyebrow--light { color: var(--white); }

/* Auto-kolor eyebrow w ciemnych sekcjach (bez konieczności dodawania klasy --light) */
.hero-block .eyebrow,
.cta-wedding .eyebrow { color: var(--white); }

.eyebrow-decor {
    position: relative;
    display: inline-block;
    width: fit-content;
}
.eyebrow-decor::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 60px;
    background: url(../img/A-decor.svg) no-repeat center / contain;
    pointer-events: none;
    left: 100%;
    margin-left: -30px;
    top: 50%;
    transform: translateY(-60%);
}
@media (min-width: 992px) {
	/*
  .eyebrow-decor::before {
      width: 120px;
      height: 90px;
      margin-left: 0;
      left: -92px;
      transform: translateY(-85%);
  }
  */
  .eyebrow-decor::before {
    width: 100px;
    height: 70px;
    margin-left: 0;
    left: -40px;
    transform: translateY(-60%);
  }
}

/* ===== BUTTONS ===== */
.btn, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 240px;
    padding: 0 24px;
    color: var(--white);
    text-align: center;
    font-family: "Gravesend Sans", var(--font-ui);
    font-style: normal;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base);
    padding-bottom: 4px;
}
.btn { background: var(--gold); border-color: var(--gold); }
.btn:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--white); }
.btn-outline { color: var(--gold); border-color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transition: top 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}
/* Gdy fixed scrolled jest aktywny - oryginalna belka (absolute) niewidoczna.
   Po zakonczeniu slide-out body class jest usuwana -> oryginalna fade-in 0->1. */
body.has-scrolled-header .site-header:not(.is-scrolled):not(.is-revealing) { opacity: 0; }

/* ===== Header zwiniety po scrollu (>50px) =====
   Animacja przez TOP (nie transform!) - transform tworzylby containing block
   dla position:fixed dzieci (np. .primary-nav na mobile), co psuje menu fullscreen.
*/
.site-header.is-scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  animation: hotelalpin-header-slide-in 0.35s ease both;
}
@keyframes hotelalpin-header-slide-in {
  from { top: -100px; }
  to   { top: 0; }
}
@keyframes hotelalpin-header-slide-out {
  from { top: 0; }
  to   { top: -100px; }
}
@keyframes hotelalpin-header-reveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Chowanie: lecimy z gory do -100px, zachowujemy is-scrolled styling przez czas animacji */
.site-header.is-scrolled.is-hiding {
  animation: hotelalpin-header-slide-out 0.35s ease both;
}
.site-header.is-revealing {
  background: transparent;
  box-shadow: none;
  transition: opacity 0.35s ease;
  animation: hotelalpin-header-reveal 0.35s ease both;
}
.site-header.is-scrolled .site-header__inner { height: 70px; padding-top: 0; padding-bottom: 0; }
.site-header.is-scrolled .site-header__logo img {
  width: 80px;
  filter: brightness(0) saturate(100%);
}
.site-header.is-scrolled .site-header__divider { display: none; }
.site-header.is-scrolled .menu-item a,
.site-header.is-scrolled .lang-switch .select-dropdown__trigger,
.site-header.is-scrolled .lang-switch .select-dropdown__chevron { color: var(--black); }
.site-header.is-scrolled .menu-item a:hover,
.site-header.is-scrolled .menu-item a:focus-visible { color: var(--gold); }
/* Rozwijane submenu ma ciemne tlo - linki pozostaja jasne, tak jak domyslnie */
.site-header.is-scrolled .sub-menu .menu-item a { color: var(--white); }
.site-header.is-scrolled .sub-menu .menu-item a:hover,
.site-header.is-scrolled .sub-menu .menu-item a:focus-visible { color: var(--gold); }
.site-header.is-scrolled .submenu-toggle { color: var(--black); }
.site-header.is-scrolled .menu-item-has-children:hover > .submenu-toggle,
.site-header.is-scrolled .submenu-toggle:hover,
.site-header.is-scrolled .submenu-toggle[aria-expanded="true"] { color: var(--gold); }
.site-header.is-scrolled .menu-toggle span { background-color: var(--black); }

/* Mobile menu fullscreen po otwarciu - przywroc bialy tekst na ciemnym overlayu */
.site-header.is-scrolled .primary-nav.is-open .menu-item a { color: var(--white); }
.site-header.is-scrolled .primary-nav.is-open .submenu-toggle { color: var(--white); }
.site-header.is-scrolled .primary-nav.is-open .submenu-toggle:hover,
.site-header.is-scrolled .primary-nav.is-open .submenu-toggle[aria-expanded="true"] { color: var(--gold); }
.site-header.is-scrolled .primary-nav.is-open .menu-item a:hover { color: var(--gold); }
/* X (zamkniecie menu) - bialy na ciemnym overlayu, gdy menu otwarte w stanie scrolled */
.site-header.is-scrolled .menu-toggle[aria-expanded="true"] span { background-color: var(--white); }

@media (min-width: 992px) {
  .site-header.is-scrolled .site-header__logo {
    top: 50%;
    transform: translate(-50%, -50%);
  }
.site-header.is-scrolled .site-header__logo img {
    width: 100px;
    height: 60px;
}
.site-header.is-scrolled .site-header__lang::before { background: rgba(0, 0, 0, 0.15); }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100px;
  gap: 10px;
}
.site-header__logo { display: inline-flex; }
.site-header__logo img { width: 105px; height: auto; transition: all 0.3s ease;}
.site-header__logo img:hover {
    scale: 0.95;
}
.site-header__divider {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 992px) {
  .site-header__divider { left: 60px; right: 60px; top: 120px; bottom: auto; }
}

/* lang switch */
.site-header__lang { display: inline-flex; align-items: center; }
.lang-switch .select-dropdown { width: auto; display: inline-block; }
.lang-switch .select-dropdown__trigger {
  gap: 8px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 4px 0;
}
.lang-switch .select-dropdown__value { flex: 0 0 auto; }
.lang-switch .select-dropdown__chevron { color: var(--white); }
.lang-switch .select-dropdown__panel {
  left: 0;
  right: auto;
  min-width: 90px;
  background: rgba(20, 16, 14, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
@media (min-width: 992px) {
  .lang-switch .select-dropdown__panel { left: auto; right: 0; }
}
.lang-switch .select-dropdown__option {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px;
}
.lang-switch .select-dropdown__option:hover,
.lang-switch .select-dropdown__option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}
.lang-switch .select-dropdown__option.is-selected { color: var(--gold); }

/* hamburger */
.menu-toggle {
  width: 28px; height: 22px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform var(--t-base), opacity var(--t-base), background-color var(--t-base);
}
.menu-toggle[aria-expanded="true"] span { background: var(--white); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* nav */
.primary-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  padding: 110px 25px 40px;
  transform: translateX(100%);
  transition: transform var(--t-base);
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.primary-nav.is-open { transform: translateX(0); }
.menu { display: flex; flex-direction: column; gap: 4px; }
.menu-item {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: 0.04em;
}
.menu-item a {
  color: var(--white);
  display: block;
  padding: 14px 0;
  transition: color var(--t-fast);
}
.menu-item a:hover,
.menu-item a:focus-visible { color: var(--gold); }
.sub-menu {
  display: none;
  padding: 6px 0 12px;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--gold);
  margin: 0 0 8px 4px;
}
.sub-menu .menu-item {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 0;
}
.sub-menu .menu-item a { padding: 8px 0 8px 16px; color: rgba(255, 255, 255, 0.85); }
.menu-item.is-open > .sub-menu { display: flex; }
.submenu-toggle {
  position: absolute;
  top: 4px; right: 0;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color var(--t-fast);
}
.submenu-toggle:hover { color: var(--gold); }
.submenu-toggle svg {
  width: 12px;
  height: auto;
  transition: transform var(--t-base);
}
.submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.submenu-toggle[aria-expanded="true"] { color: var(--gold); }

/* desktop nav */
@media (min-width: 992px) {
  .site-header { padding: 0; }
  .site-header__inner { height: auto; align-items: center; padding-top: 51px; padding-bottom: 0; }
  .site-header__logo {
      position: absolute;
      left: 50%;
      top: 15px;
      transform: translateX(-50%);
      z-index: 999;
  }
  .site-header__logo img { width: 134px; height: auto; }
  .site-header__divider { left: 60px; right: 60px; top: 120px; bottom: auto; }

  .menu-toggle { display: none; }
  .site-header__lang {
      order: 99;
      position: relative;
      padding-left: 40px;
      flex-shrink: 0;
  }
  .site-header__lang::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,0.35);
  }

  .primary-nav {
    position: static;
    inset: auto;
    background: transparent;
    padding: 0;
    transform: none;
    flex-direction: row;
    flex: 1;
    gap: 0;
    overflow: visible;
    align-items: center;
  }
  .menu { flex-direction: row; gap: clamp(16px, 2.5vw, 40px); }
  .menu-item { font-size: clamp(13px, 1vw, 15px); font-weight: 500; }
  .menu-item a { padding: 0; }
  .menu-item a:hover { color: var(--gold); }
  .menu--left { margin-right: auto; padding-right: clamp(60px, 8vw, 120px); }
  .menu--right { margin-left: auto; padding-left: clamp(60px, 8vw, 120px); padding-right: 0; margin-right: 30px; }
  .menu-item-has-children { position: relative; display: inline-flex; align-items: center; gap: 4px; }
  .menu-item-has-children > .submenu-toggle {
    position: static;
    width: 18px;
    height: 18px;
    pointer-events: none;
    color: inherit;
  }
  .menu-item-has-children > .submenu-toggle svg { width: 9px; }
  .menu-item-has-children:hover > .submenu-toggle svg,
  .menu-item-has-children:focus-within > .submenu-toggle svg { transform: rotate(180deg); }
  .menu-item-has-children:hover > a { color: var(--gold); }
  .sub-menu {
      display: flex;
      position: absolute;
      top: calc(100% + 14px);
      left: -22px;
      background: rgba(20, 16, 14, 0.96);
      padding: 14px 0;
      min-width: 230px;
      flex-direction: column;
      gap: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity var(--t-base), transform var(--t-base), visibility 0s linear var(--t-base);
      z-index: 5;
      border-top: 2px solid var(--gold);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
      border-left: 0;
  }
  .menu-item-has-children::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 14px;
  }
  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition-delay: 0s;
  }
  .sub-menu .menu-item {
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
  }
  .sub-menu .menu-item a {
    display: block;
    padding: 10px 22px;
    color: var(--white);
    transition: background-color var(--t-fast), color var(--t-fast);
  }
  .sub-menu .menu-item a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
  }
}

/* ===========================
   HERO
   =========================== */
.hero-block {
    position: relative;
    min-height: 600px;
    color: var(--white);
    padding: 0;
    display: block;
    isolation: isolate;
    height: 100vh;
    max-height: 800px;
    z-index: 9;
}
.hero-block__inner {
    position: relative;
    z-index: 2;
    height: 100%;
}
.hero-block__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-block__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-block__media video { width: 100%; height: 100%; object-fit: cover; }
.hero-block__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%),
    linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.4) 100%),
    linear-gradient(0deg, var(--gray-warm) 0%, rgba(94,89,86,0) 30%),
    var(--overlay-brown);
}
.hero-block__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 540px;
    margin: 0 auto;
    height: calc(100% - 60px);
    justify-content: flex-end;
}
.hero-block .eyebrow { font-size: 13px; letter-spacing: 0.05em; }
.hero-block h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  text-shadow: 0 4px 4px rgba(0,0,0,0.25);
  margin: 0;
}
.hero-block p { font-size: 14px; line-height: 20px; max-width: 422px; }
.hero-block__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; width: 240px; }
.hero-block__cta .btn,
.hero-block__cta .btn-outline { width: 100%; min-width: 0; }
.hero-block__cta .btn-outline { color: var(--white); border-color: var(--white); }
.hero-block__cta .btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.arrival-bar.hero-block__arrival { display: none; }

@media (min-width: 992px) {
  .hero-block {
      height: 80vh;
      min-height: 800px;
      max-height: unset;
  }
  .hero-block__inner {
      padding: 0;
      height: 100%;
  }
  .hero-block__content {
      margin: 0 auto;
      text-align: center;
      transform: translateY(60px) !important;
      justify-content: center;
  }
  .hero-block .eyebrow { font-size: 15px; }
  .hero-block h1 { font-size: 64px; line-height: 70px; }
  .hero-block p { font-size: 15px; line-height: 20px; }
  .hero-block__cta { flex-direction: row; width: auto; margin-top: 20px; justify-content: center; }
  .hero-block__cta .btn { width: 240px; min-width: 0; }
  .hero-block__cta-mobile { display: none; }
  .arrival-bar.hero-block__arrival {
    display: flex;
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 40px;
    z-index: 3;
  }
}

/* arrival bar */
.arrival-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(0,0,0,0.5);
  align-items: stretch;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: 100%;
  max-width: 784px;
  min-height: 100px;
}
.arrival-bar--light { background: rgba(249,244,236,0.95); color: var(--black); }
.arrival-bar--light .arrival-bar__value { color: var(--black); }
.arrival-bar__field {
  display: flex; flex-direction: column; gap: 4px; justify-content: center;
  padding: 18px 24px;
  flex: 1 1 auto;
  min-width: 140px;
  position: relative;
  cursor: pointer;
  color: var(--gold);
}
.arrival-bar__field + .arrival-bar__field::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.25);
}
.arrival-bar--light .arrival-bar__field + .arrival-bar__field::before { background: rgba(0,0,0,0.15); }
.arrival-bar__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gray);
  text-transform: capitalize;
  opacity: 0.9;
}
.arrival-bar__value,
.arrival-bar__field--select .select-dropdown__trigger {
  font-size: 16px;
  color: var(--gray-light);
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  font-weight: 400;
  line-height: 1;
}
.arrival-bar--light .arrival-bar__label { color: var(--gray); }
.arrival-bar--light .arrival-bar__value,
.arrival-bar--light .arrival-bar__field--select .select-dropdown__trigger { color: var(--black); }
.arrival-bar__field img {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.arrival-bar__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  display: block;
}
.arrival-bar__field--select { padding-right: 24px; }
.arrival-bar__field--select .select-dropdown__value {
  font-size: 16px;
  font-weight: 400;
}
.arrival-bar__submit {
  flex-shrink: 0;
  min-width: 0;
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  align-self: center;
  height: 50px;
}

@media (min-width: 992px) {
  .arrival-bar { flex-wrap: nowrap; min-height: 100px; }
  .arrival-bar__submit { margin: 18px; width: 240px; min-width: 240px; }
}

/* ===========================
   FEATURES
   =========================== */
.features-block {
  padding: 25px 0;
  position: relative;
}
.features-block__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 0;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.features-block:before {
    content: "";
    background: #DBDBDB;
    height: 1px;
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 0;
}

.features-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 50%;
  padding: 0 12px;
  box-sizing: border-box;
  text-align: center;
}
.features-block__item img { width: auto; height: 30px; flex-shrink: 0; }
.features-block__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.features-block__value { font-size: 14px; line-height: 1.3; color: var(--black); display: block; }

@media (min-width: 992px) {
  .features-block:before {
      left: 60px;
      right: 60px;
  }
  .features-block { padding: 50px 0; }
  .features-block__list {
    gap: 30px 0px;
    /*
	max-width: 1300px;
	*/
    margin: 0 auto;
  }
  .features-block__item {
    flex: 0 0 20%;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    text-align: left;
    justify-content: flex-start;
    box-sizing: border-box;
  }
  .features-block__item img { height: 50px; }
  .features-block__item--no-desktop { display: none; }
  .features-block__label { font-size: 14px; margin-bottom: 4px; letter-spacing: 0.05em; }
  .features-block__value { font-size: 15px; line-height: 20px; }
}

/* Złote ikony — #be924f, działa dla PNG i SVG bez względu na oryginalny kolor */
.features-block.is-gold-icons .features-block__item img {
  filter: brightness(0) saturate(100%)
          invert(62%) sepia(44%) saturate(480%)
          hue-rotate(354deg) brightness(97%) contrast(87%);
}

/* ===========================
   SECTION HEADS
   =========================== */
.section-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: var(--black);
}
@media (min-width: 992px) {
  .section-head__title { font-size: 54px; line-height: 64px; }
}

/* ===========================
   OFFER CAROUSEL
   =========================== */
.offer-carousel { padding: 60px 0; overflow: auto !important; }
.offer-carousel__head {
  display: flex; flex-direction: column; gap: 25px; margin-bottom: 30px;
}
.offer-carousel__heading { display: flex; flex-direction: column; gap: 10px; }
.offer-carousel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  max-width: 568px;
}
.offer-carousel__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.offer-carousel__head .btn-outline { display: none; }
.offer-carousel > .full-container > .btn-outline {
    display: flex;
    margin: 20px auto 0;
    width: fit-content;
}

.offer-card {
  border: 1px solid var(--gold);
  padding: 20px 20px 30px;
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  height: auto;
  background: var(--white);
  transition: background-color var(--t-base);
}
.offer-card + .offer-card {
    border-left: 0;
}

.offer-card__media { aspect-ratio: 247 / 200; overflow: hidden; }
.offer-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-base);
    scale: 1.01;
}
.offer-card:hover .offer-card__media img { transform: scale(1.04); }
.offer-card:hover { background: var(--cream); }
.offer-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: var(--black);
    margin-top: 10px;
}
.offer-card p { font-size: 14px; line-height: 20px; color: var(--text-muted); flex: 1; }
.offer-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}
.offer-card__price { display: flex; flex-direction: column; gap: 2px; }
.offer-card__price span {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--label-muted);
  text-transform: uppercase;
}
.offer-card__price strong {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-strong);
}
.offer-card__more {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  white-space: nowrap;
}
.offer-card__more:hover { color: var(--gold-hover); border-color: var(--gold-hover); }

.offer-carousel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: solid var(--gold);
  border-width: 1px 0 0 1px;
}
.offer-carousel__grid .offer-card {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: var(--gold);
  min-width: 0;
}
.offer-carousel__grid .offer-card + .offer-card { border-left-width: 0; }
.offer-carousel.is-grid > .full-container > .btn-outline { display: none; }

@media (min-width: 992px) {
  .offer-carousel { padding: 100px 0; }
  .offer-carousel__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
  }
  .offer-carousel h2 { font-size: 54px; line-height: 64px; }
  .offer-carousel__controls { justify-content: space-between; }
  .offer-carousel__head .btn-outline { display: inline-flex; min-width: 250px; }
  .offer-carousel > .full-container > .btn-outline { display: none; }
  .offer-card { padding: 20px 20px 40px; }
  .offer-card .offer-card__foot { padding-top: 30px; margin-top: auto; }
  .offer-card__media { aspect-ratio: 454 / 300; }
  .offer-card p { font-size: 16px; line-height: 22px; }
  .offer-card__price span { font-size: 14px; }
  .offer-card__price strong { font-size: 19px; }
  .offer-card__more { font-size: 15px; }
  .offer-carousel__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) and (max-width: 991px) {
  .offer-carousel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===========================
   CAROUSEL ARROWS
   =========================== */
.carousel-arrows { display: inline-flex; gap: 0; flex-shrink: 0; top: -20px; position: relative; }
.carousel-arrows__btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--t-base);
}
.carousel-arrows__btn + .carousel-arrows__btn { margin-left: -1px; }
.carousel-arrows__btn img { width: 16px; height: 16px; transition: filter var(--t-base); }
.carousel-arrows__btn.is-active { background: var(--gold); }
.carousel-arrows__btn.is-active img { filter: brightness(0) invert(1); }
.carousel-arrows__btn.is-prev img { transform: rotate(180deg); }
.carousel-arrows__btn:hover { background: var(--gold); }
.carousel-arrows__btn:hover img { filter: brightness(0) invert(1); }
.carousel-arrows__btn:disabled { opacity: 0.4; cursor: not-allowed; }

@media (min-width: 992px) {
  .carousel-arrows__btn { width: 50px; height: 50px; }
}

/* ===========================
   CAROUSEL SCROLLBAR (mobile)
   =========================== */
.carousel-scrollbar {
  position: relative;
  height: 2px;
  background: rgba(0,0,0,0.1);
  margin-top: 30px;
}
.carousel-scrollbar .swiper-scrollbar-drag { background: var(--gold); height: 100%; border-radius: 0; }
@media (min-width: 992px) { .carousel-scrollbar { display: none; } }

/* ===========================
   CTA WEDDING
   =========================== */
.cta-wedding {
    position: relative;
    padding: 25px 0 25px;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}
.cta-wedding__media { position: absolute; inset: 0; z-index: -2; }
.cta-wedding__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-wedding__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(rgba(76, 49, 40, 0.4), rgba(76, 49, 40, 0.4));
    opacity: 0.8;
}
.cta-wedding__frame {
  border: 1px solid var(--gold);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 495px;
}
.cta-wedding__content {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
  max-width: 808px;
}
.cta-wedding .eyebrow { font-size: 13px; }
.cta-wedding h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  text-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.cta-wedding h2 span { display: block; }
.cta-wedding h2 em { color: var(--cream); font-style: normal; font-weight: 700; }
.cta-wedding__divider { display: block; width: 192px; height: 1px; background: rgba(255,255,255,0.45); margin: 4px auto; }
.cta-wedding__sub { font-family: var(--font-body); font-size: 18px; color: var(--cream); font-weight: 300; }
.cta-wedding__sub strong { font-weight: 600; }
.cta-wedding__buttons { display: flex; flex-direction: column; gap: 10px; width: 240px; margin-top: 4px; }
.cta-wedding__buttons .btn,
.cta-wedding__buttons .btn-outline { width: 100%; min-width: 0; }
.cta-wedding .btn-outline { color: var(--white); border-color: var(--white); }
.cta-wedding .btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

@media (min-width: 992px) {
  .cta-wedding {
      padding: 60px 0;
      min-height: 600px;
  }
  .cta-wedding .eyebrow { font-size: 15px; }
  .cta-wedding__frame { padding: 100px 40px; min-height: 479px; }
  .cta-wedding h2 { font-size: 54px; line-height: 64px; }
  .cta-wedding__divider { width: 260px; }
  .cta-wedding__sub { font-size: 24px; }
  .cta-wedding__buttons { flex-direction: row; width: auto; gap: 20px; }
  .cta-wedding__buttons .btn,
  .cta-wedding__buttons .btn-outline { width: auto; min-width: 240px; }
  .cta-wedding__buttons .btn-outline { min-width: 196px; }
}

/* ===========================
   MEDIA TEXT
   =========================== */
.media-text {
  background: var(--cream);
  padding: 50px 0;
}
.media-text__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.media-text__media { position: relative; order: 1; width: 100%; }
.media-text ul {
    list-style: disc;
    margin-left: 1.5em;
}
.media-text__swiper { width: 100%; aspect-ratio: 650 / 460; }
.media-text__swiper .swiper-slide { height: auto; }
.media-text__swiper .swiper-slide img,
.media-text__swiper .swiper-slide .hover-media { width: 100%; height: 100%; display: block; }
.media-text__swiper .swiper-slide img { object-fit: cover; aspect-ratio: 650 / 460; }
.media-text__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}
.media-text__arrows .carousel-arrows__btn {
  pointer-events: auto;
  background: #fff;
}
.media-text__arrows .carousel-arrows__btn.is-active { background: #fff; }
.media-text__arrows .carousel-arrows__btn.is-active img { filter: none; }
.media-text__arrows .carousel-arrows__btn:hover { background: var(--gold); }
.media-text__arrows .carousel-arrows__btn:hover img { filter: brightness(0) invert(1); }
.media-text__arrows .is-prev { transform: translateX(-50%); }
.media-text__arrows .is-next { transform: translateX(50%); }
.media-text__arrows .carousel-arrows__btn + .carousel-arrows__btn { margin-left: 0; }
.media-text__content {
  display: flex; flex-direction: column; gap: 15px;
  position: relative;
  order: 0;
}
.media-text .eyebrow { font-size: 13px; }
.media-text h2,
.gallery-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: var(--black);
}
.media-text p,
.gallery-text p {
  font-size: 14px;
  line-height: 20px;
  color: var(--block);
}
.media-text .btn-outline,
.gallery-text .btn-outline { align-self: flex-start; margin-top: 10px; }

@media (min-width: 992px) {
  .media-text {
    padding: 60px 0;
  }
  .media-text__inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(41px, 6vw, 100px);
  }
  .media-text .eyebrow { font-size: 15px; }
  .media-text.is-left .media-text__media { order: 0; flex: 1 1 650px; min-width: 0; max-width: 650px; }
  .media-text.is-left .media-text__content { order: 1; flex: 1 1 519px; min-width: 0; padding-left: 0; }
  .media-text.is-right .media-text__media { order: 1; flex: 1 1 650px; min-width: 0; max-width: 650px; }
  .media-text.is-right .media-text__content { order: 0; flex: 1 1 519px; min-width: 0; }
  .media-text h2 { font-size: 54px; line-height: 64px; }
  .media-text p { font-size: 16px; line-height: 22px; max-width: 519px; margin-bottom: 10px; }
}


.text-columns {
	display: flex;	
}
@media (min-width: 992px) {
	.text-columns {
		gap: 40px;
	}
}

/* ===========================
   ROOM CAROUSEL
   =========================== */
.room-carousel { padding: 60px 0; overflow: hidden; }
.room-carousel__head {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}
.room-carousel__heading { display: flex; flex-direction: column; gap: 10px; }
.room-carousel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  /*max-width: 568px;*/
  margin-bottom: .25em;
}
.room-carousel__head .carousel-arrows { align-self: flex-end; }
.room-card {
  border: 1px solid var(--gold);
  padding: 15px 15px 25px;
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  height: auto;
  transition: background-color var(--t-base);
}
.room-card__media { aspect-ratio: 320 / 200; overflow: hidden; }
.room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-base);
    scale: 1.01;
}
.room-card:hover .room-card__media img { transform: scale(1.04); }
.room-card:hover { background: var(--cream); }
.room-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}
.room-card h3 a {
  color: inherit;
}
.room-card p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
}
.room-card__badges {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.room-card__badges li {
  background: var(--cream);
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 2px;
  line-height: 1.4;
  transition: background-color var(--t-base);
}
.room-card:hover .room-card__badges li { background: var(--white); }
.room-card__price { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.room-card__price span {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--label-muted);
}
.room-card__price strong {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-strong);
}

.room-card + .room-card {
    border-left: 0;
}

.room-carousel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: solid var(--gold);
  border-width: 1px 0 0 1px;
}
.room-carousel__grid .room-card {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: var(--gold);
  min-width: 0;
}
.room-carousel__grid .room-card + .room-card { border-left-width: 0; }

@media (min-width: 992px) {
  .room-carousel { padding: 100px 0; }
  .room-carousel__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .room-carousel h2 { font-size: 54px; line-height: 64px; }
  .room-card { padding: 20px 20px 30px; gap: 18px; }
  .room-card__media { aspect-ratio: 320 / 240; }
  .room-card p { font-size: 16px; line-height: 22px; }
  .room-card__badges li { font-size: 12px; }
  .room-card h3 { font-size: 24px; line-height: 1.15; }
  .room-card__price span { font-size: 14px; }
  .room-card__price strong { font-size: 19px; }
  .room-carousel__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) and (max-width: 991px) {
  .room-carousel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===========================
   RESTAURANT CTA
   =========================== */
.restaurant-cta {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding: 25px 0;
  min-height: 720px;
}
.restaurant-cta__media {
  position: absolute; top: 0; right: 0; left: 0;
  height: 50%;
  z-index: -1;
}
.restaurant-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.restaurant-cta__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(249,244,236,0) 30%, rgba(249,244,236,0.7) 70%, var(--cream) 100%);
}
.restaurant-cta__frame {
  border: 1px solid var(--gold);
  padding: 360px 25px 40px;
  display: flex;
}
.restaurant-cta__content {
  display: flex; flex-direction: column; gap: 15px;
  max-width: 568px;
  align-items: flex-start;
}
.restaurant-cta .eyebrow { font-size: 13px; }
.restaurant-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 42px;
}
.restaurant-cta p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
}
.restaurant-cta__foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
}

.restaurant-cta__foot .btn {
    min-width: auto;
}

.restaurant-cta__awards { width: 90px; height: auto; mix-blend-mode: darken; }

@media (min-width: 992px) {
  .restaurant-cta {
      padding: 60px 0;
      min-height: 600px;
  }
  .restaurant-cta__media {
    left: auto; right: 0;
    width: calc(1169px / 1600px * 100%);
    height: 100%;
    top: 0;
  }
  .restaurant-cta__media img { mix-blend-mode: normal; }
  .restaurant-cta__media::after {
    background:
      linear-gradient(90deg, var(--cream) 1%, rgba(249,244,236,0.5) 21%, rgba(249,244,236,0) 36%),
      linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.3) 100%),
      linear-gradient(90deg, rgba(76,49,40,0.2) 0%, rgba(76,49,40,0.2) 100%);
  }
  .restaurant-cta__frame {
    border: 1px solid var(--gold);
    padding: 61px 60px;
    min-height: 479px;
    align-items: center;
  }
  .restaurant-cta .eyebrow { font-size: 15px; }
  .restaurant-cta h2 { font-size: 54px; line-height: 64px; max-width: 568px; }
  .restaurant-cta p { font-size: 16px; line-height: 22px; max-width: 487px; }
  .restaurant-cta__awards { width: 110px; }
  .restaurant-cta__foot {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-top: 10px;
  }
  .restaurant-cta__foot .btn { min-width: 180px; }
}

/* ===========================
   GALLERY TEXT
   =========================== */
.gallery-text {
  padding: 60px 0;
}
.gallery-text__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gallery-text__media-col {
  display: flex;
  flex-direction: column;
}
.gallery-text__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.gallery-text__content {
  display: flex; flex-direction: column; gap: 15px;
}
.gallery-text .eyebrow { font-size: 13px; }
.gallery-text__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-text__row {
  display: grid;
  gap: 10px;
}
.gallery-text__row:nth-child(1) { grid-template-columns: 210fr 132fr; }
.gallery-text__row:nth-child(2) { grid-template-columns: 150fr 192fr; }
.gallery-text__cell {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
}
.gallery-text__cell--lg { aspect-ratio: 210 / 195; }
.gallery-text__row:nth-child(1) .gallery-text__cell { aspect-ratio: auto; height: 195px; }
.gallery-text__row:nth-child(2) .gallery-text__cell { aspect-ratio: auto; height: 195px; }
.gallery-text__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-base);
    scale: 1.01;
}
.gallery-text__more { min-width: 200px; }

@media (min-width: 992px) {
  .gallery-text {
    padding: 100px 0;
  }
  .gallery-text__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 0;
  }
  .gallery-text__inner > .gallery-text__content-col, .gallery-text__inner > .gallery-text__media-col {
      grid-column: 1;
      grid-row: 1;
      width: 100%;
  }
  .gallery-text__content-col {
    position: relative;
    z-index: 1;
    pointer-events: none;
  }
  .gallery-text__content {
    pointer-events: auto;
  }
  .gallery-text__media-col {
    padding-left: 60px;
    padding-right: 60px;
  }
  .gallery-text.is-right .gallery-text__media-col { align-items: flex-end; }
  .gallery-text.is-left .gallery-text__media-col { align-items: flex-start; }
  .gallery-text.is-left .gallery-text__content { margin-left: auto; }
  .gallery-text__media {
      width: 50%;
      max-width: calc(100% - 500px);
      gap: 30px;
  }
  .gallery-text .eyebrow { font-size: 15px; }
  .gallery-text__content {
    /*max-width: 460px;*/
	max-width: 45%;
    gap: 18px;
  }
  .gallery-text h2 { font-size: 54px; line-height: 1.2; }
  .gallery-text p { font-size: 16px; line-height: 22px; }
  .gallery-text__grid {
      width: 100%;
      height: 530px;
      gap: 10px;
      z-index: 99;
  }
  .gallery-text__row:nth-child(1) { grid-template-columns: 490fr 240fr; }
  .gallery-text__row:nth-child(2) { grid-template-columns: 365fr 365fr; }
  .gallery-text__row { height: 260px; }
  .gallery-text__row:nth-child(1) .gallery-text__cell,
  .gallery-text__row:nth-child(2) .gallery-text__cell { height: 260px; }
  .gallery-text__cell,
  .gallery-text__cell--lg { aspect-ratio: auto; }
  .gallery-text__more { align-self: center; }
}

/* ===========================
   REVIEWS
   =========================== */
.reviews { padding: 50px 0; overflow: hidden; }
.reviews__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.reviews__heading { display: flex; flex-direction: column; gap: 10px; }
.reviews__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.reviews h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  max-width: 568px;
}
.reviews__rating { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.reviews__stars { display: flex; gap: 4px; }
.reviews__stars img { width: 20px; height: 20px; }
.reviews__rating p { font-size: 14px; line-height: 22px; color: var(--text-strong); }
.reviews__rating p strong { font-weight: 600; }
.reviews__rating p span { color: rgba(0,0,0,0.3); margin: 0 4px; }
.reviews__arrows { display: flex; align-items: center; }

.review-card {
  background: var(--cream);
  padding: 20px 25px;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  height: auto !important;
}
.review-card p { font-size: 15px; line-height: 22px; color: var(--text-muted); flex: 1; }
.review-card footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.review-card__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gold);
}
.review-card__more span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.review-card cite {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
}

@media (min-width: 992px) {
  .reviews { padding: 100px 0; }
  .reviews__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
  }
  .reviews__foot {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-left: auto;
  }
  .reviews h2 { font-size: 54px; line-height: 64px; }
  .reviews__stars img { width: 24px; height: 24px; }
  .reviews__rating p { font-size: 16px; }
  .review-card { padding: 30px; gap: 30px; }
}

/* ===========================
   CTA BOOKING
   =========================== */
.cta-booking {
  position: relative;
  isolation: isolate;
  padding: 0;
  min-height: 430px;
}
.cta-booking__media { overflow: hidden; }
.cta-booking__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 30px;
    min-height: 430px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.cta-booking__arrival-wrap { display: none; }
.cta-booking__media { position: absolute; inset: 0; z-index: -2; }
.cta-booking__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-booking__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 47%, rgba(255,255,255,0.95) 100%);
  z-index: 0;
}
.cta-booking__content {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 1;
  max-width: 568px;
}
.cta-booking .eyebrow { font-size: 15px; }
.cta-booking h2 { font-family: var(--font-display); font-weight: 400; font-size: 40px; line-height: 46px; color: var(--black); }
.cta-booking__arrival { display: none; }
.cta-booking__mobile-btn { align-self: center; }

@media (min-width: 992px) {
  .cta-booking { min-height: 450px; padding: 0; }
  .cta-booking__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    min-height: 450px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cta-booking__media::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.8) 12.5%, rgba(255,255,255,0) 52%),
      linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.1) 100%);
  }
  .cta-booking h2 { font-size: 54px; line-height: 64px; }
  .cta-booking__content { gap: 14px; }
  .cta-booking__arrival-wrap {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 1300px;
    margin: 0;
    pointer-events: none;
    z-index: 3;
  }
  .cta-booking__arrival {
      display: flex;
      width: 820px;
      max-width: 100%;
      pointer-events: auto;
      margin: inherit;
  }
  .cta-booking__mobile-btn { display: none; }
}

/* ===========================
   DEPARTMENTS BLOCK
   =========================== */
.departments-block {
  background: var(--white);
  padding: 60px 0;
  color: var(--black);
}
.departments-block__head {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.departments-block__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.departments-block__content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: var(--black);
}
.departments-block__content p, .departments-block__address p {
    color: var(--text-strong, rgba(0, 0, 0, 0.8));
}
.departments-block__address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.departments-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.departments-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  text-align: center;
}
.departments-block__item + .departments-block__item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.departments-block__label {
    font-family: "Gravesend Sans", var(--font-ui);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-strong);
    line-height: 1.2;
    margin-bottom: 2px;
    opacity: 0.5;
}
.departments-block__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  line-height: 1.35;
  word-break: break-word;
}
.departments-block__phone {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}
.departments-block__mail {
  font-size: 15px;
  color: var(--gold);
}
.departments-block__link:hover,
.departments-block__link:focus-visible {
  color: var(--gold-hover);
}
.departments-block__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--gold);
}
.departments-block__icon svg {
  width: 100%;
  height: 100%;
}
.departments-block__route {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.departments-block__route a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}
.departments-block__route a span {
  width: 38px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.departments-block__route a span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.departments-block__route a:hover,
.departments-block__route a:focus-visible {
  color: var(--gold-hover);
}

@media (min-width: 768px) {
  .departments-block__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .departments-block__item:nth-child(2) {
    border-top: 0;
  }
  .departments-block__item:nth-child(even) {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 992px) {
  .departments-block {
    padding: 90px 0;
  }
  .departments-block__head {
    margin-bottom: 52px;
    gap: 22px;
  }
  .departments-block__content h2 {
    font-size: 54px;
    line-height: 64px;
  }
  .departments-block__content p,
  .departments-block__address p {
    font-size: 16px;
    line-height: 24px;
  }
  .departments-block__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 0;
    border-bottom: 0;
  }
  .departments-block__item,
  .departments-block__item + .departments-block__item,
  .departments-block__item:nth-child(2),
  .departments-block__item:nth-child(even) {
    border-top: 0;
  }
  .departments-block__item {
    padding: 0 34px;
  }
  .departments-block__item + .departments-block__item {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
  }
  .departments-block__label {
    font-size: clamp(13px, 1vw, 15px);
  }
  .departments-block__phone {
    font-size: 18px;
  }
}

/* ===========================
   FOOTER
   =========================== */
/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 25px;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 35px; }

/* TOP */
.site-footer__top { display: flex; flex-direction: column; gap: 35px; }

/* Brand column: logo + address (+ social on mobile) */
.site-footer__brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo address social";
  column-gap: 20px;
  row-gap: 16px;
  align-items: start;
}
.site-footer__logo { grid-area: logo; }
.site-footer__address { grid-area: address; }
.site-footer__social { grid-area: social; align-self: center; }
.site-footer__logo img { width: 105px; height: auto; }

.site-footer .menu-item {
    text-transform: unset;
    font-weight: unset;
    font-family: unset;
    font-size: unset;
}

/* Below 425px: social drops under the logo */
@media (max-width: 425px) {
  .site-footer__brand {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo   address"
      "social address";
  }
  .site-footer__social { justify-self: start; align-self: start; }
}
.site-footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
}
.site-footer__address p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 18px;
  color: var(--gray);
}
.site-footer__address p:nth-of-type(1),
.site-footer__address p:nth-of-type(2) {
  font-weight: 500;
  color: var(--white);
}
.site-footer__address p:nth-of-type(2) { margin-bottom: 6px; }

/* Right column wrapper */
.site-footer__right { display: flex; flex-direction: column; gap: 30px; }

/* Contacts row (contacts + social) */
.site-footer__contacts-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
}
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  align-items: center;
}
.site-footer__contact { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.site-footer__contact-label {
  font-family: "Gravesend Sans", var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
  line-height: 1.2;
}
.site-footer__contact-phone {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.site-footer__contact-phone:hover { color: var(--gold); }
.site-footer__contact-mail {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
}
.site-footer__contact-mail:hover { color: var(--white); }

/* Social icons */
.site-footer__social { display: flex; gap: 14px; align-items: center; justify-content: center; }
.site-footer__social a { display: inline-flex; transition: opacity var(--t-fast); }
.site-footer__social img { width: 24px; height: 24px; }
.site-footer__social a:hover { opacity: 0.7; }

/* Nav columns */
.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.site-footer__col:last-child { grid-column: 1 / -1; }
.site-footer__col h3 {
  font-family: "Gravesend Sans", var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.2;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 6px; }
.site-footer__col a {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 22px;
    color: var(--white);
    padding: unset;
}
.site-footer__col a:hover { color: var(--gold); }

/* Legal */
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 20px;
  color: rgba(255,255,255,0.6);
}
.site-footer__legal a:hover { color: var(--gold); }

@media (min-width: 992px) {
  .site-footer { padding: 60px 0 30px; }
  .site-footer__inner { gap: 0; }

  /* Flatten nested wrappers so brand/right/contacts-row children
     participate directly in the top grid */
  .site-footer__brand,
  .site-footer__right,
  .site-footer__contacts-row { display: contents; }

  .site-footer__top {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr auto;
    grid-template-areas:
      "logo    contacts social"
      "address nav      nav";
    column-gap: clamp(20px, 3vw, 60px);
    row-gap: 30px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .site-footer__logo { grid-area: logo; align-self: start; }
  .site-footer__logo img { width: 120px; height: auto; }
  .site-footer__address { grid-area: address; align-self: start; }

  .site-footer__contacts {
    grid-area: contacts;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(20px, 2.5vw, 50px);
    text-align: left;
    align-items: flex-start;
    min-width: 0;
  }
  .site-footer__contact { min-width: 0; align-items: flex-start; }
  .site-footer__contact-label { font-size: clamp(13px, 1vw, 15px); }
  .site-footer__contact-phone,
  .site-footer__contact-mail { word-break: break-word; }

  .site-footer__social {
    grid-area: social;
    justify-self: end;
    align-self: center;
    gap: 20px;
    flex-shrink: 0;
  }
  .site-footer__social img { width: 30px; height: 30px; }

  /* Nav: 3 cols, first two with 2-col internal lists */
  .site-footer__nav {
    grid-area: nav;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 60px;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 0;
    padding-top: 35px;
  }
  .site-footer__col:last-child { grid-column: auto; }
  .site-footer__col:first-child ul,
  .site-footer__col:nth-child(2) ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 40px;
  }

  /* Legal */
  .site-footer__legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    border-top: 0;
    margin-top: 30px;
    padding-top: 0;
    font-size: 13px;
    line-height: 28px;
  }
}
