/* ============================================================
   Fuzfas Apartman - main.css  (v5 - Awwwards redesign)
   Mobile-first, CSS custom properties, Grid + Flexbox
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-forest: #1a4d2e;
  --c-forest-deep: #0d2e1a;
  --c-forest-mid: #2a6b42;
  --c-forest-light: #3d8f5a;
  --c-gold: #d4a843;
  --c-gold-light: #e8c06a;
  --c-gold-dark: #b8892a;
  --c-cream: #f8f5ef;
  --c-cream-dark: #ede9e0;
  --c-ink: #111410;
  --c-ink-mid: #3a3d35;
  --c-ink-soft: #6b6f63;
  --c-white: #ffffff;
  --c-border: rgba(26, 77, 46, 0.14);
  --c-border-light: rgba(26, 77, 46, 0.07);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --max-width: 1280px;
  --nav-height: 72px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16), 0 8px 24px rgba(0, 0, 0, 0.08);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t-base: 0.32s;
  --t-slow: 0.55s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
a {
  color: inherit;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section {
  padding: 7rem 0;
}
@media (max-width: 599px) {
  .section {
    padding: 4rem 0;
  }
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-forest-mid);
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-gold);
  border-radius: 2px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--c-forest-deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section__title em {
  font-style: italic;
  color: var(--c-forest-mid);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r-full);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--c-forest);
  color: var(--c-white);
  border-color: var(--c-forest);
  box-shadow: 0 4px 20px rgba(26, 77, 46, 0.28);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-forest-mid);
  border-color: var(--c-forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 77, 46, 0.35);
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-forest-deep);
  border-color: var(--c-gold);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
  font-weight: 600;
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--c-forest);
  border-color: var(--c-forest);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--c-forest);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ── Navigation ───────────────────────────────────────────── */
nav#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition:
    background var(--t-slow) var(--ease-out),
    box-shadow var(--t-slow) var(--ease-out),
    border-color var(--t-slow) var(--ease-out);
  background: transparent;
  border-bottom: 1px solid transparent;
}
nav#nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--c-border-light);
  box-shadow: var(--shadow-sm);
}
nav#nav.nav--hero .nav__logo-text,
nav#nav.nav--hero .nav__link,
nav#nav.nav--hero .nav__lang-link {
  color: rgba(255, 255, 255, 0.9);
}
nav#nav.nav--hero .nav__toggle-bar {
  background: rgba(255, 255, 255, 0.9);
}
nav#nav.nav--hero .nav__lang {
  border-left-color: rgba(255, 255, 255, 0.2);
}
nav#nav.nav--scrolled .nav__logo-text,
nav#nav.nav--scrolled .nav__link,
nav#nav.nav--scrolled .nav__lang-link {
  color: var(--c-ink);
}
nav#nav.nav--scrolled .nav__toggle-bar {
  background: var(--c-ink);
}
nav#nav.nav--scrolled .nav__lang {
  border-left-color: var(--c-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
}
.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-forest-deep);
  white-space: nowrap;
  transition: color var(--t-base) var(--ease-out);
  letter-spacing: 0.01em;
}
.nav__menu {
  display: none;
  list-style: none;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  flex-shrink: 0;
}
.nav__link {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition:
    color var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out);
  letter-spacing: 0.01em;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--c-forest);
  background: rgba(26, 77, 46, 0.07);
}
.nav__link--active {
  color: var(--c-forest);
  font-weight: 600;
}
.nav__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.nav__lang {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  flex-shrink: 0;
  border-left: 1px solid var(--c-border);
  padding-left: 0.75rem;
  margin-left: 0.75rem;
  transition: border-color var(--t-base) var(--ease-out);
}
.nav__lang-link {
  display: block;
  padding: 0.3rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--c-ink-soft);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    color var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out);
}
.nav__lang-link:hover,
.nav__lang-link:focus-visible {
  color: var(--c-forest);
  background: rgba(26, 77, 46, 0.07);
}
.nav__lang-link--active {
  color: var(--c-forest);
  background: rgba(26, 77, 46, 0.1);
}
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: background var(--t-base);
}
.nav__toggle:hover {
  background: rgba(26, 77, 46, 0.07);
}
.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition:
    transform var(--t-base) var(--ease-out),
    opacity var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav__menu--open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border-light);
  padding: 1.25rem 1.5rem 2rem;
  gap: 0.2rem;
  box-shadow: var(--shadow-lg);
  align-items: stretch;
  z-index: 99;
}
.nav__menu--open .nav__link {
  font-size: 1.05rem;
  padding: 0.7rem 0.75rem;
  width: 100%;
  color: var(--c-ink) !important;
}
.nav__menu--open .nav__cta {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  margin-left: 0;
  margin-top: 0.75rem;
  text-align: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .nav__menu,
  .nav__menu.nav__menu--open {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    border-bottom: none;
    padding: 0;
    gap: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .nav__toggle {
    display: none;
  }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--c-forest-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 46, 26, 0.78) 0%,
      rgba(13, 46, 26, 0.3) 60%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 820px;
  padding-bottom: clamp(4rem, 10vw, 8rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.25rem;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-word {
  display: inline-block;
  transform: translateY(110%);
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
  max-width: 600px;
  line-height: 1.35;
  color: var(--c-gold-light);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: color var(--t-base);
}
.hero__scroll:hover {
  color: rgba(255, 255, 255, 0.9);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── Hero Intro ────────────────────────────────────────────── */
.hero-intro {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border-light);
}
.hero-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-intro__p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--c-ink-mid);
  font-weight: 300;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--c-forest-deep);
  color: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(61, 143, 90, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  position: relative;
}

/* ── Reveal animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-36px);
}
.reveal--left.is-visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(36px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}
.reveal--scale {
  transform: scale(0.93);
}
.reveal--scale.is-visible {
  transform: scale(1);
}
.reveal--d1 {
  transition-delay: 0.1s;
}
.reveal--d2 {
  transition-delay: 0.2s;
}
.reveal--d3 {
  transition-delay: 0.3s;
}
.reveal--d4 {
  transition-delay: 0.4s;
}
.reveal--d5 {
  transition-delay: 0.5s;
}
.reveal--d6 {
  transition-delay: 0.6s;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  background: var(--c-white);
  overflow: hidden;
}
.about__intro {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.about__body {
  font-size: 1.1rem;
  color: var(--c-ink-mid);
  line-height: 1.85;
}
.apartments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 700px) {
  .apartments {
    grid-template-columns: 1fr 1fr;
  }
}
.apartment-card {
  background: var(--c-cream);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative;
  transition:
    box-shadow var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out),
    border-color var(--t-slow) var(--ease-out);
  overflow: hidden;
}
.apartment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.apartment-card--lower::before {
  background: var(--c-gold);
}
.apartment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--c-border);
}
.apartment-card:hover::before {
  transform: scaleX(1);
}
.apartment-card__title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--c-forest-deep);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.apartment-card__capacity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  margin-bottom: 0.75rem;
}
.apartment-card__details {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.apartment-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.apartment-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--c-ink-mid);
}
.apartment-card__feature svg {
  color: var(--c-forest-mid);
  flex-shrink: 0;
}

.services {
  background: var(--c-forest-deep);
  color: var(--c-white);
  border-radius: var(--r-xl);
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(61, 143, 90, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.services__title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--c-white);
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  list-style: none;
}
@media (min-width: 600px) {
  .services__list {
    grid-template-columns: 1fr 1fr;
  }
}
.services__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}
.services__item svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

.checkin {
  background: var(--c-cream);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.checkin__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-forest-deep);
  margin-bottom: 1.75rem;
}
.checkin__times {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}
.checkin__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.checkin__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
}
.checkin__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--c-forest);
  line-height: 1;
}
.checkin__divider {
  font-size: 1.5rem;
  color: var(--c-border);
  margin-top: 1.5rem;
  flex-shrink: 0;
}
.checkin__note {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  max-width: 500px;
  margin: 0 auto;
}

.siofok {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--c-border);
  padding-top: 2.5rem;
  margin-top: 1rem;
}
.siofok__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-forest-deep);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.siofok__body {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.85;
}

/* ── House Rules ───────────────────────────────────────────── */
.house-rules {
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
}
.house-rules__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-forest);
  margin-bottom: 0.85rem;
}
.house-rules__details {
  font-size: 0.95rem;
  color: var(--c-ink-mid);
  line-height: 1.8;
}
.house-rules__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.house-rules__item {
  font-size: 0.95rem;
  color: var(--c-ink-mid);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.house-rules__item::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--c-forest-mid);
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  background: var(--c-cream);
}
.gallery__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-border-light);
}
.gallery__tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  cursor: pointer;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition:
    color var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out);
  letter-spacing: 0.01em;
}
.gallery__tab:hover {
  color: var(--c-forest);
  background: rgba(26, 77, 46, 0.04);
}
.gallery__tab--active,
.gallery__tab[aria-selected="true"] {
  color: var(--c-forest);
  border-bottom-color: var(--c-forest);
  font-weight: 600;
}
.gallery__panel {
  display: block;
}
.gallery__panel[hidden] {
  display: none;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}
@media (min-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--r-md);
}
.gallery__btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 3/2;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.gallery__btn:hover .gallery__img,
.gallery__btn:focus-visible .gallery__img {
  transform: scale(1.07);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.gallery__btn:hover .gallery__overlay,
.gallery__btn:focus-visible .gallery__overlay {
  opacity: 1;
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.93);
}
.lightbox__backdrop[hidden] {
  display: none;
}
.lightbox__img-wrap {
  position: relative;
  z-index: 201;
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap picture {
  display: contents;
}
.lightbox__img-wrap img {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  display: block;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  z-index: 202;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__prev:hover {
  transform: translateY(-50%) translateX(-2px);
}
.lightbox__next:hover {
  transform: translateY(-50%) translateX(2px);
}
.lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 202;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
}

/* ── Prices ───────────────────────────────────────────────── */
.prices {
  background: var(--c-white);
}
.prices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.price-card {
  background: var(--c-cream);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    box-shadow var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-card__header {
  background: var(--c-forest-deep);
  color: var(--c-white);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.price-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.price-card__capacity {
  font-size: 0.82rem;
  opacity: 0.82;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
}
.price-card__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.price-table th {
  background: rgba(26, 77, 46, 0.06);
  color: var(--c-forest-deep);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.price-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--c-border-light);
  color: var(--c-ink);
  white-space: nowrap;
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:hover {
  background: rgba(26, 77, 46, 0.03);
}
.price-table__price {
  font-weight: 600;
  color: var(--c-forest);
}
.price-card__discounts {
  list-style: none;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--c-border-light);
}
.price-card__discount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--c-forest);
  font-weight: 500;
}
.price-card__discount svg {
  flex-shrink: 0;
}
.prices__notes {
  background: #fdf8ec;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.prices__notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.prices__note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #7a5a00;
}
.prices__note svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.prices__bank {
  background: var(--c-cream);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.prices__bank-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-forest-deep);
  margin-bottom: 1rem;
}
.prices__bank-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  font-size: 0.92rem;
}
.prices__bank-details dt {
  font-weight: 600;
  color: var(--c-ink-soft);
}
.prices__bank-details code {
  font-family: "Courier New", monospace;
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

/* ── Map ──────────────────────────────────────────────────── */
.map-section {
  background: var(--c-cream);
  padding-bottom: 0;
  isolation: isolate;
}
.map-section__wrap {
  margin: 0;
  isolation: isolate;
}
.map-section__map {
  width: 100%;
  height: 420px;
  background: #e8e4dc;
}
.map-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0 3rem;
}
.map-section__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: normal;
  font-size: 1rem;
  color: var(--c-ink-soft);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--c-white);
}
.contact__intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  max-width: 560px;
  margin: -1.5rem auto 3rem;
  line-height: 1.75;
}
.contact__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.contact__details {
  width: 100%;
  max-width: 560px;
  background: var(--c-cream);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.contact__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-ink-soft);
}
.contact__value {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-ink);
}
.contact__link {
  color: var(--c-forest);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-base);
}
.contact__link:hover {
  color: var(--c-forest-mid);
  text-decoration: underline;
}
.contact__address {
  font-style: normal;
  color: var(--c-ink);
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.contact__booking-card {
  background: var(--c-forest-deep);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.contact__booking-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(61, 143, 90, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.contact__booking-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}
.contact__booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__booking-steps li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 0.25rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--c-forest-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.footer__address {
  font-style: normal;
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--t-base);
  display: block;
}
.footer__link:hover {
  color: var(--c-white);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__lang {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__lang-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--t-base);
}
.footer__lang-link:hover {
  color: var(--c-white);
}
.footer__lang-link--active {
  color: var(--c-white);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy {
  font-size: 0.82rem;
  opacity: 0.5;
}
.footer__credit {
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 599px) {
  .prices__bank-details {
    grid-template-columns: 1fr;
  }
  .contact__actions {
    flex-direction: column;
  }
  .map-section__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  nav,
  .hero__scroll,
  .lightbox,
  .lightbox__backdrop {
    display: none !important;
  }
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero__bg,
  .hero__overlay {
    display: none;
  }
  .hero__content {
    color: #000;
  }
}
