/* === BASE === */
:root {
  --bg: #f4efe6;
  --bg-darker: #ebe4d6;
  --bg-dark-2: #0d0d0d;
  --accent: #1D4D44;
  --gold: #C5A27A;
  /* Zöld változatok: --green-dark sötét háttérre, --green-light világos háttérre */
  --green-dark: #5A9E7C;
  --green-light: #1D4D44;
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Aboreto', 'Georgia', 'Times New Roman', serif;
  --site-header-height: 80px;
  --site-gutter-x: clamp(20px, 4vw, 56px);
  --home-section-gap: 100px;
  --home-stage-max-h: min(85vh, 820px);
  --home-about-h: 100vh;
  --home-about-spacer-h: 120vh;
  --lightbox-zoom-duration: 1.0s;
  --lightbox-zoom-ease: cubic-bezier(0.33, 0, 0.2, 1);
  --lightbox-zoom-scale: 1.03;
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
}

/* Lenis smooth scroll */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Oldalátmenetek */
@media (prefers-reduced-motion: no-preference) {
  body { animation: pageFadeIn 0.6s ease both; }
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.page-transition.is-leaving {
  opacity: 1;
  pointer-events: all;
}

/* Preloader */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  animation: preloaderAuto 0s linear 0.6s forwards;
  pointer-events: none;
}
.site-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader__arc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-top-color: var(--accent);
  animation: preloaderSpin 2.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes preloaderAuto {
  to { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .site-preloader__arc { animation: none; }
  .site-preloader { animation: none; opacity: 0; visibility: hidden; }
}

body {
  background-color: var(--bg);
  color: #1c1c1c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
}

.page-home {
  overflow-x: clip;
  max-width: 100%;
}

body.is-noselect {
  user-select: none;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #000; }
a:focus-visible,
button:focus-visible { outline: 2px solid rgba(0,0,0,0.4); outline-offset: 3px; }

img { max-width: 100%; height: auto; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  color: #1c1c1c;
  letter-spacing: 0.5px;
  margin: 0 0 60px;
}
.page-home .section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 40px;
}

.title-separator {
  width: 72px;
  height: 1px;
  background: #b0aca7;
  margin: 40px 0;
}
.title-separator.is-center { margin-left: auto; margin-right: auto; }

.section-heading__logo {
  display: block;
  max-width: 72px;
  height: auto;
  margin: 0 auto 20px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 12px 0;
  background: rgba(37,37,37,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(245,242,237,0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.site-header--solid {
  background: rgba(245,242,237,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

/* Split nav: [left-nav] [logo] [right-nav + lang + toggle] */
.site-header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-gutter-x);
}

.navbar-brand {
  display: block;
  text-decoration: none;
}
.navbar-brand img { width: 140px; height: auto; max-width: min(38vw, 160px); }
.navbar-brand__logo--dark { display: none; }
.site-header.is-scrolled .navbar-brand__logo--light,
.site-header--solid .navbar-brand__logo--light { display: none; }
.site-header.is-scrolled .navbar-brand__logo--dark,
.site-header--solid .navbar-brand__logo--dark { display: block; }

/* Nav lists */
.site-header__nav-left,
.site-header__nav-right {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav-left {
  justify-content: flex-start;
  gap: clamp(4px, 1vw, 18px);
}
.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 1vw, 18px);
}
.site-header__nav-right {
  gap: clamp(4px, 1vw, 18px);
}
.site-header .lang-switch {
  margin-left: clamp(10px, 1.5vw, 24px);
}

/* Nav links */
.site-header .nav-link {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  transition: opacity .25s ease;
  text-decoration: none;
}
.site-header .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}
.site-header .nav-link:hover { opacity: 0.6; }
.site-header .nav-link:hover::after,
.site-header .nav-link.is-active::after { transform: scaleX(1); }
.site-header .nav-link.is-active { opacity: 1; }

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 24px;
  color: #fff;
}
.site-header .lang-switch,
.site-footer .footer-lang {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  border: 1px solid rgba(245, 242, 237, 0.38);
  border-radius: 0;
}
.site-header.is-scrolled .lang-switch,
.site-header--solid .lang-switch,
.page-home .site-header .lang-switch {
  border-color: rgba(28, 28, 28, 0.2);
}
.lang-switch__lang {
  font-size: 12px;
  letter-spacing: 1.5px;
  opacity: 0.72;
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .25s;
}
.lang-switch a.lang-switch__lang:hover { opacity: 1; }
.lang-switch__lang.is-active { opacity: 1; font-weight: 600; cursor: default; }
.lang-switch__sep {
  font-size: 12px;
  padding: 0 3px;
  opacity: 0.4;
  color: inherit;
  user-select: none;
}

/* Mobile hamburger – animates to X when overlay opens */
.site-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0 10px 14px;
  margin-left: auto;
  color: var(--bg);
  flex-shrink: 0;
}
.site-header__toggle-icon {
  display: block;
  position: relative;
  width: 22px;
  height: 14px;
}
.site-header__toggle-bar {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
}
.site-header__toggle-bar:nth-child(1) { top: 0; }
.site-header__toggle-bar:nth-child(2) { bottom: 0; }
.site-header__toggle.is-open .site-header__toggle-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-header__toggle.is-open .site-header__toggle-bar:nth-child(2) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Scrolled / solid state */
.site-header.is-scrolled .nav-link,
.site-header--solid .nav-link { color: #1c1c1c; }
.site-header.is-scrolled .lang-switch,
.site-header--solid .lang-switch { color: #1c1c1c; }
.site-header.is-scrolled .site-header__toggle,
.site-header--solid .site-header__toggle { color: #1c1c1c; }

/* Homepage: always cream bg (hero is always behind it) */
.page-home .site-header {
  background: rgba(245,242,237,0.82);
}
.page-home .site-header.is-scrolled {
  background: rgba(245,242,237,0.96);
}
.page-home .site-header .nav-link { color: #1c1c1c; }
.page-home .site-header .lang-switch { color: #1c1c1c; }
.page-home .site-header .site-header__toggle { color: #1c1c1c; }
.page-home .site-header .navbar-brand__logo--light { display: none; }
.page-home .site-header .navbar-brand__logo--dark { display: block; }

/* Responsive breakpoint */
@media (max-width: 991.98px) {
  :root { --site-header-height: 72px; }
  .site-header__nav-left,
  .site-header__nav-right,
  .site-header .lang-switch { display: none; }
  .site-header__toggle { display: block; }
  .site-header__container {
    grid-template-columns: auto 1fr;
    padding: 0 12px;
  }
  .site-header { padding: 6px 0; }
  .navbar-brand img { width: 30px; }
  /* homepage: dark transparent header on mobile so hero shows through */
  .page-home .site-header:not(.is-scrolled) {
    background: rgba(15, 13, 10, 0.22);
  }
  /* light hamburger on dark/transparent header */
  .page-home .site-header:not(.is-scrolled) .site-header__toggle { color: #f5f2ed; }
  .page-home .site-header:not(.is-scrolled) .navbar-brand__logo--light { display: block; }
  .page-home .site-header:not(.is-scrolled) .navbar-brand__logo--dark { display: none; }
}

/* === NAV DROPDOWN (desktop) === */
.nav-dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
  transition: transform 0.25s ease;
}
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown:hover .nav-dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: rgba(245,242,237,0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09), 0 1px 0 rgba(0,0,0,0.05);
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.22s,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__link {
  display: block;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1c1c1c;
  text-decoration: none;
  opacity: 0.72;
  white-space: nowrap;
  transition: opacity 0.15s, background-color 0.15s;
}
.nav-dropdown__link:hover {
  opacity: 1;
  color: #1c1c1c;
  background: rgba(0,0,0,0.04);
}
.nav-dropdown__link--multiline {
  white-space: normal;
  line-height: 1.35;
  max-width: 280px;
}
.nav-dropdown__divider {
  height: 1px;
  margin: 8px 16px;
  background: rgba(0, 0, 0, 0.12);
  list-style: none;
}

/* === MOBILE OVERLAY === */
/* z-index < header (1030) so the header stays visible on top */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1020;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--site-header-height, 64px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  overflow-y: auto;
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-overlay__nav { text-align: center; padding: 16px 0; }
.mobile-overlay__nav > ul { list-style: none; margin: 0; padding: 0; }
.mobile-overlay__nav > ul > li { margin-bottom: 0; }
.mobile-overlay__link {
  display: inline-block;
  padding: 12px 28px;
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1c1c1c;
  text-decoration: none;
  transition: opacity .25s;
}
.mobile-overlay__link:hover,
.mobile-overlay__link.is-active { opacity: 0.6; color: #1c1c1c; }
.mobile-overlay__lang {
  margin-top: 28px;
  margin-left: 0;
  color: #1c1c1c;
  justify-content: center;
}

/* Overlay item enter animation */
.mobile-overlay.is-open .mobile-overlay__nav > ul > li {
  animation: overlayItemIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.mobile-overlay.is-open .mobile-overlay__nav > ul > li:nth-child(1) { animation-delay: 0.06s; }
.mobile-overlay.is-open .mobile-overlay__nav > ul > li:nth-child(2) { animation-delay: 0.12s; }
.mobile-overlay.is-open .mobile-overlay__nav > ul > li:nth-child(3) { animation-delay: 0.18s; }
.mobile-overlay.is-open .mobile-overlay__nav > ul > li:nth-child(4) { animation-delay: 0.24s; }
.mobile-overlay.is-open .mobile-overlay__nav > ul > li:nth-child(5) { animation-delay: 0.30s; }
@keyframes overlayItemIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inline services list in overlay */
.overlay-services {
  list-style: none;
  margin: 0;
  padding: 2px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
}
.overlay-services > li {
  margin: 0;
}
.overlay-services__divider {
  height: 1px;
  width: min(220px, 70vw);
  margin: 12px auto;
  background: rgba(0, 0, 0, 0.12);
  list-style: none;
}
.overlay-services__link {
  display: inline-block;
  padding: 6px 12px;
  font-size: clamp(10px, 2.2vw, 13px);
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1c1c1c;
  text-decoration: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.overlay-services__link:hover,
.overlay-services__link:focus { opacity: 0.6; color: #1c1c1c; }


/* === HERO === */
.hero {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,13,0.25) 0%, rgba(13,13,13,0.55) 100%);
}
.hero-carousel,
.hero-carousel__inner {
  height: 100%;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, var(--hero-parallax-y, 0), 0);
}
.hero-carousel__inner {
  position: relative;
  overflow: hidden;
}
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 2.5s ease-in-out;
  pointer-events: none;
}
.hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
  animation: heroKenBurns 18s ease-in-out infinite;
}
.hero-carousel__slide:nth-child(even) img {
  animation-direction: reverse;
}
@keyframes heroKenBurns {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
/* === MEDIA PROGRESS (hero + projektek) === */
:root {
  --progress-seg-w: 18px;
  --progress-seg-h: 2px;
  --progress-gap: 5px;
}
.hero-progress,
.project-feature__dots {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--progress-gap);
  align-items: center;
  justify-content: center;
}
.hero-progress__seg,
.project-feature__dot {
  flex: 0 0 max(var(--progress-seg-w), 24px);
  width: max(var(--progress-seg-w), 24px);
  min-width: 24px;
  min-height: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-progress__seg::before,
.project-feature__dot::before {
  content: '';
  display: block;
  width: 100%;
  height: var(--progress-seg-h);
  background: rgba(245, 242, 237, 0.35);
  transition: background-color .25s ease;
}
.hero-progress__seg:hover::before,
.project-feature__dot:hover::before {
  background: rgba(245, 242, 237, 0.6);
}
.hero-progress__seg.is-active::before,
.project-feature__dot.is-active::before {
  background: #f5f2ed;
}

/* Hero progress bar */
.hero-progress {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 2.4vh, 30px);
  transform: translateX(-50%);
  z-index: 4;
  max-width: min(90vw, 100%);
  padding: 0;
}

.hero.is-hero-intro .hero-carousel {
  opacity: 0;
  animation: heroIntroMedia 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroIntroMedia {
  to { opacity: 1; }
}

/* === SCROLLYTELLING === */
.story-hero {
  --hero-scroll: 0;
}
.story-hero .hero-carousel {
  will-change: transform;
  transform: translate3d(0, var(--hero-parallax-y, 0), 0) scale(calc(1 + var(--hero-scroll) * 0.06));
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-hero-intro .hero-carousel {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
  .hero-carousel {
    transform: none !important;
    will-change: auto;
  }
}

/* Globális scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}
.reveal.reveal-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease;
  transition-delay: var(--reveal-delay, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1031;
  width: 44px;
  height: 44px;
  background: rgba(245,242,237,0.92);
  color: #1c1c1c;
  border: 1px solid rgba(28,28,28,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.back-to-top:hover { background: #f5f2ed; box-shadow: 0 4px 18px rgba(0,0,0,0.15); }
@media (max-width: 991.98px) {
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 16px; }
}

/* === SECTIONS (főoldal) === */
/* Minden szekció (a fixed "rólunk" kivételével) a fixed háttér fölött, hézag nélkül */
.page-home main > section:not(.hero):not(.section-about):not(.section-about-spacer) {
  position: relative;
  z-index: 3;
  background-color: var(--bg);
}

.section-projects {
  background: var(--bg);
}
.section-projects--page {
  padding-top: var(--site-header-height, 72px);
}
.section-projects__content {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
}

/* === PROJECTS (feature + rotating thumbnails) === */
.project-feature {
  position: relative;
  margin: 0;
  max-width: none;
}

/* 2. és 3. projekt egymás mellett desktopon */
.project-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-pair .project-feature__stage { aspect-ratio: 3 / 2; }
.project-pair .project-feature__title { font-size: clamp(20px, 2.2vw, 36px); }
@media (max-width: 991.98px) {
  .project-pair { grid-template-columns: 1fr; }
  .project-pair .project-feature__stage { aspect-ratio: 4 / 3; }
}

.project-feature__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: var(--home-stage-max-h);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.project-feature__stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.22) 38%,
    rgba(0, 0, 0, 0) 68%
  );
}
.project-feature__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  cursor: zoom-in;
  transition: opacity 2.5s ease-in-out, visibility 2.5s ease-in-out;
}
.project-feature__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.project-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  animation: heroKenBurns 18s ease-in-out infinite;
}
.project-feature__slide:nth-child(even) .project-feature__img {
  animation-direction: reverse;
}

.project-feature__caption {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 4vw, 54px);
  right: clamp(20px, 4vw, 54px);
  bottom: clamp(16px, 3vw, 36px);
  max-width: 70%;
  color: #f5f2ed;
  pointer-events: none;
}
.project-feature--reverse .project-feature__caption {
  left: auto;
  text-align: right;
  margin-left: auto;
}
.project-feature__logo {
  display: block;
  width: 52px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}
.project-feature--reverse .project-feature__logo {
  margin-left: auto;
}
.project-feature__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}
.project-feature .title-separator {
  width: 64px;
  margin: 16px 0;
  background: rgba(245, 242, 237, 0.7);
}
.project-feature--reverse .title-separator {
  margin-left: auto;
}
.project-feature__subtitle {
  margin: 0;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 300;
  opacity: 0.92;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* Progress bar – a felirattal szemközti oldalon */
.project-feature__dots {
  position: absolute;
  z-index: 4;
  bottom: clamp(16px, 3vw, 36px);
  right: clamp(20px, 4vw, 54px);
  left: auto;
  max-width: min(90vw, 100%);
}
.project-feature--reverse .project-feature__dots {
  right: auto;
  left: clamp(20px, 4vw, 54px);
}

/* === ABOUT (fixed reveal) === */
.page-home .section-about {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: var(--home-about-h);
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.section-about__media {
  position: absolute;
  inset: -28px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  will-change: transform;
}
.section-about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.25) 100%);
}
.section-about__content {
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
  width: min(560px, 100%);
  max-width: 100%;
  margin: var(--site-header-height) 0 0 0;
  color: #f5f2ed;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(37, 37, 37, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 242, 237, 0.12);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.section-about__logo {
  display: block;
  max-width: 84px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.section-about__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 20px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.5);
}
.section-about__content .title-separator {
  margin: 20px 0;
  background: rgba(245,242,237,0.6);
}
.section-about__content p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.45;
  margin-bottom: 12px;
  max-width: 640px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

/* Finom megjelenés – hero után görgetéskor */
.section-about.is-revealed .section-about__media {
  animation: aboutKenBurns 28s ease-in-out infinite;
}
@keyframes aboutKenBurns {
  0%, 100% { transform: scale(1.06); }
  50% { transform: scale(1.14); }
}
.section-about:not(.is-revealed) .section-about__content {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
}
.section-about.is-revealed .section-about__content {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s ease;
}
@media (prefers-reduced-motion: reduce) {
  .section-about .section-about__media,
  .section-about.is-revealed .section-about__media {
    animation: none;
    transform: scale(1.06);
  }
  .section-about:not(.is-revealed) .section-about__content,
  .section-about.is-revealed .section-about__content {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
}

.section-about-spacer {
  position: relative;
  z-index: 0;
  height: var(--home-about-spacer-h);
  pointer-events: none;
}

/* === MANUFACTURERS (projekt-stílusú feature lista, fejléc nélkül) === */
.section-manufacturers {
  background: var(--bg);
}

/* === SERVICES === */
.section-services { background: var(--bg); }
.section-services .section-title { color: #2e2e2e; }
.section-services .title-separator { background: #2e2e2e; }

/* Full-bleed tile grids (services + hotel) */
.section-services .container-fluid,
.section-hotel .container-fluid {
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(56px, 7vw, 96px);
}
.section-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0;
}
@media (min-width: 768px) {
  .section-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-tiles > [class*="col-"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.service-tile {
  position: relative;
  margin-bottom: 0;
  min-height: clamp(360px, 40vw, 540px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 26px 26px;
  transition: transform .3s ease-in-out, box-shadow .3s;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
}
.service-tile__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .9s ease;
}
.service-tile__media--bg {
  display: block;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
}
.service-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.18) 42%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0.9;
  transition: opacity .45s ease;
}
.service-tile:hover::after { opacity: 1; }
.service-tile:hover .service-tile__media {
  transform: scale(1.04);
}
.service-tile__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: none;
  color: #f5f2ed;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-tile__label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transition: width .55s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-tile:hover .service-tile__label {
  transform: translateY(-6px);
}
.service-tile:hover .service-tile__label::after {
  width: 64px;
}

/* === HOTEL === */
.section-hotel { background: var(--bg-darker); }
.section-hotel .section-title { color: #2e2e2e; }
.section-hotel .title-separator { background: #2e2e2e; }

.hotel-tile {
  position: relative;
  min-height: clamp(420px, 44vw, 600px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 28px 28px;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s ease;
  text-decoration: none;
}
.hotel-tile__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .9s ease;
}
.hotel-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.18) 42%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0.9;
  transition: opacity .45s ease;
}
.hotel-tile:hover::after { opacity: 1; }
.hotel-tile:hover .hotel-tile__media {
  transform: scale(1.04);
}
.hotel-tile__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: none;
  color: #f5f2ed;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotel-tile__label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transition: width .55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotel-tile:hover .hotel-tile__label {
  transform: translateY(-6px);
}
.hotel-tile:hover .hotel-tile__label::after {
  width: 64px;
}

/* === CONTACT === */
.section-contact {
  background: var(--bg);
  color: #2e2e2e;
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
}
.section-contact .section-title { color: #2e2e2e; }
.section-contact .title-separator { background: #2e2e2e; }

.contact-header { margin-bottom: clamp(32px, 5vw, 48px); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
  }
}

.contact-panel {
  border: 1px solid rgba(28, 28, 28, 0.12);
  padding: clamp(24px, 4vw, 36px);
  background: var(--bg-darker);
}
.contact-panel--details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-panel__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.55);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.12);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
  width: 100%;
  max-width: 340px;
}

.contact-panel--details .contact-cell {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
  border: none;
  text-align: center;
}
.contact-cell--link {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease;
}
.contact-panel--details .contact-cell--link:hover {
  color: #000;
}
.contact-panel--details .contact-cell--link:hover .contact-cell__value {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-panel--details .contact-cell__icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.45rem;
  line-height: 1;
  color: #2e2e2e;
  margin-top: 0;
}
.contact-panel--details .contact-cell__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  text-align: center;
}
.contact-cell__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.5);
}
.contact-cell__value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #2e2e2e;
  word-break: break-word;
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: 340px;
  margin-top: clamp(32px, 4vw, 44px);
  padding-top: clamp(28px, 4vw, 36px);
  border-top: 1px solid rgba(28, 28, 28, 0.12);
}
.contact-panel--details .contact-socials {
  flex-direction: column;
}
.contact-socials__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.5);
}
.contact-socials__links {
  display: inline-flex;
  gap: 8px;
}
.contact-socials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(28, 28, 28, 0.2);
  color: #2e2e2e;
  font-size: 1.35rem;
  text-decoration: none;
  transition: border-color .25s ease, color .25s ease, background-color .25s ease, transform .25s ease;
}
.contact-socials__btn:hover {
  border-color: rgba(28, 28, 28, 0.38);
  color: #000;
  background: rgba(245, 242, 237, 0.9);
  transform: translateY(-2px);
}

.contact-form__row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 576px) {
  .contact-form__row--split {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.section-contact form label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(46, 46, 46, 0.55);
}
.section-contact .form-control {
  border-radius: 0;
  border: 1px solid rgba(28, 28, 28, 0.2);
  background: rgba(245, 242, 237, 0.55);
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color .25s ease, background-color .25s ease;
}
.section-contact .form-control:focus {
  border-color: rgba(28, 28, 28, 0.45);
  background: #f5f2ed;
  box-shadow: none;
}
.section-contact .btn-submit {
  background: var(--green-light);
  color: #fff;
  border-radius: 0;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  border: 1px solid var(--green-light);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.section-contact .btn-submit:hover:not(:disabled) {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}
.section-contact .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.contact-success {
  text-align: center;
  padding: 40px 20px;
  color: #2e2e2e;
  border: 1px solid rgba(28, 28, 28, 0.2);
  background: rgba(245, 242, 237, 0.55);
  margin-bottom: 20px;
}
.contact-success p { margin-top: 16px; font-size: 16px; }

.contact-error { font-size: 13px; color: #c0392b; }

.contact-captcha__refresh {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(28, 28, 28, 0.2);
  background: rgba(245, 242, 237, 0.55);
  cursor: pointer;
}
.contact-captcha__img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
}
.contact-captcha__help {
  margin: 8px 0 0;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.contact-hp-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gdpr-note {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.gdpr-note a { color: #2e2e2e; text-decoration: underline; }
.gdpr-note a:hover { color: #000; }

/* === FOOTER (light) === */
.site-footer {
  background: var(--bg-darker);
  padding: clamp(56px, 7vw, 90px) 0 28px;
  color: #1c1c1c;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 991.98px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
}
@media (max-width: 575.98px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.site-footer .footer-col__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c1c1c;
  margin: 0 0 18px;
}

.site-footer .footer-brand { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.site-footer .footer-lang { margin: 0; color: #1c1c1c; border-color: rgba(28, 28, 28, 0.18); }
@media (max-width: 575.98px) {
  .site-footer .footer-brand { align-items: center; }
}
.site-footer .footer-logo {
  display: block;
  max-width: 150px;
  height: auto;
  opacity: 0.95;
  transition: opacity .25s ease;
}
.site-footer .footer-logo-link:hover .footer-logo { opacity: 1; }
.site-footer .footer-socials {
  display: flex;
  gap: 18px;
  font-size: 20px;
}
.site-footer .footer-socials a {
  color: #1c1c1c;
  opacity: 1;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
.site-footer .footer-socials a:hover {
  color: #000;
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 575.98px) {
  .site-footer .footer-brand { align-items: center; }
  .site-footer .footer-socials { justify-content: center; }
}

.site-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-link {
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  text-decoration: none;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: color .25s ease, background-size .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .footer-link:hover {
  color: #000;
  background-size: 100% 1px;
}

.site-footer .footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-contact__line {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.85);
}

.site-footer .footer-map {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 4px;
  filter: grayscale(1);
  background: rgba(0, 0, 0, 0.05);
}
.site-footer .footer-map-placeholder {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.72);
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.site-footer .footer-map-placeholder:hover,
.site-footer .footer-map-placeholder:focus-visible {
  color: #000;
  outline: none;
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 24px;
  margin-top: clamp(40px, 5vw, 64px);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.72);
}
.site-footer .footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media (max-width: 575.98px) {
  .site-footer .footer-bottom { justify-content: center; text-align: center; }
  .site-footer .footer-legal { justify-content: center; }
}

.project-lightbox__close {
  z-index: 1;
}

.service-related__featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .service-related__featured {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-related__featured > [class*="col-"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.service-related__links {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.service-related__links-label {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  text-align: center;
}
.service-related__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

/* Egységes szöveges menülinkek (footer + kapcsolódó szolgáltatások) */
.text-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: rgba(0,0,0,0.68);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s ease;
}
.text-nav-link .bi {
  font-size: 0.72em;
  opacity: 0.55;
  transform: translateX(0);
  transition: transform .25s ease, opacity .25s ease;
}
.text-nav-link:hover {
  color: #000;
}
.text-nav-link:hover .bi {
  opacity: 1;
  transform: translateX(4px);
}
/* === LEGAL / GDPR === */
.page-legal {
  padding: calc(var(--site-header-height) + 40px) 0 80px;
  background: var(--bg);
  color: #2e2e2e;
  min-height: 60vh;
}
.legal-back {
  max-width: 820px;
  margin: 0 auto 20px;
}
.legal-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  transition: color .2s ease;
}
.legal-back a:hover { color: #000; }
.legal-document {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 4px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}
.legal-document h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #2e2e2e;
}
.legal-document h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  margin: 2.2em 0 0.75em;
  color: #2e2e2e;
}
.legal-document h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 1.5em 0 0.5em;
  color: #444;
}
.legal-document p,
.legal-document li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}
.legal-document ul {
  margin: 0.5em 0 1em;
  padding-left: 1.35em;
}
.legal-document a {
  color: #2e2e2e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-document a:hover { color: #000; }
.legal-document .legal-updated {
  font-size: 14px;
  color: #777;
  margin-bottom: 1.5em;
}
.legal-document .legal-contact {
  padding-top: 1.25em;
  border-top: 1px solid #e5e5e5;
}

/* === SUBPAGES === */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
}
.page-hero__bg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  pointer-events: none;
}
.page-hero__content {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  z-index: 2;
}
.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  transition: color .2s;
}
.page-hero__back:hover { color: #fff; }
.page-hero__title {
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.section-gallery { padding: 80px 0; background: var(--bg); }

.gallery-grid .gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 4px;
  margin-bottom: 24px;
}
.gallery-grid .gallery-item img {
  width: 100%; height: 280px; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.06); }

.section-brand { padding: 80px 0; }
.section-brand--dark  { background: var(--bg); }
.section-brand--darker { background: var(--bg-darker); }

.brand-header { margin-bottom: 16px; }
.brand-header h3 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  margin: 0 0 6px;
}
.brand-subtitle {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.brand-desc {
  font-size: 15px;
  line-height: 1.75;
  max-width: 700px;
  opacity: 0.85;
  margin: 20px 0 40px;
}
.brand-img-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  margin-bottom: 24px;
}
.brand-img-item img {
  width: 100%; height: 300px; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.brand-img-item:hover img { transform: scale(1.06); }

.section-srv-cta {
  padding: 80px 0;
  background: var(--bg-dark-2);
  text-align: center;
}
.section-srv-cta h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  margin: 0 0 12px;
}
.section-srv-cta p { font-size: 15px; opacity: 0.7; margin: 0 0 36px; }
.section-srv-cta .cta-btn {
  display: inline-block;
  padding: 18px 44px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s;
}
.section-srv-cta .cta-btn:hover { background: #fff; color: #000; }

.lightbox-img { max-height: 85vh; object-fit: contain; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(0,0,0,0.75); }

/* === NEWS === */
.page-news {
  background: var(--bg);
  padding-top: var(--site-header-height);
}
.section-news--page {
  padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 8vw, 100px);
}
.news-page-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 400px));
  justify-content: center;
  gap: clamp(24px, 3vw, 32px);
  max-width: 960px;
  margin: 0 auto;
}
.news-card {
  border: 1px solid rgba(28, 28, 28, 0.12);
  background: var(--bg-darker);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.news-card:hover {
  border-color: rgba(28, 28, 28, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.news-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__body {
  padding: clamp(20px, 3vw, 28px);
}
.news-card__date {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.5);
  margin-bottom: 10px;
}
.news-card__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 12px;
}
.news-card__lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(46, 46, 46, 0.78);
  margin: 0 0 16px;
}
.news-card__more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2e2e2e;
}
.news-empty {
  font-size: 16px;
  color: rgba(46, 46, 46, 0.65);
  padding: 48px 0;
}
.news-article__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px var(--site-gutter-x) clamp(72px, 8vw, 100px);
}
.news-hero {
  padding: 0 0 clamp(8px, 1.5vw, 16px);
}
.news-hero__top {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.news-hero__date {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.5);
  margin: clamp(20px, 3vw, 32px) 0 clamp(24px, 3.5vw, 40px);
}
.news-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.news-hero__lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(46, 46, 46, 0.78);
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.news-cover {
  margin: 0 0 clamp(32px, 4vw, 48px);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
.news-cover__link {
  display: block;
  cursor: zoom-in;
}
.news-cover__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--lightbox-zoom-duration) var(--lightbox-zoom-ease);
}
.news-cover__link:hover .news-cover__img {
  transform: scale(var(--lightbox-zoom-scale));
}
.news-article__content {
  font-size: 17px;
  line-height: 1.75;
  color: #2e2e2e;
}
.news-article__content > *:first-child {
  margin-top: 0;
}
.news-article__gallery {
  margin-top: clamp(32px, 4vw, 48px);
}
.page-news--item .news-article__gallery .service-gallery {
  max-width: none;
  margin: 0;
}
.news-pdfs {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}
.news-pdfs__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin: 0 0 20px;
}
.news-pdfs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.news-pdfs__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2e2e2e;
  text-decoration: none;
  transition: color .2s ease;
}
.news-pdfs__link:hover {
  color: #000;
}
.news-pdfs__link .bi {
  font-size: 22px;
  color: rgba(46, 46, 46, 0.72);
}
.news-related {
  padding: clamp(48px, 6vw, 72px) 0 clamp(72px, 8vw, 100px);
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}
.news-related__header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

/* === SERVICE / WP migrated content === */
.page-service {
  background: var(--bg);
  padding-top: var(--site-header-height);
}
.page-service .container-fluid {
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

/* === ERROR PAGES === */
.error-page {
  min-height: calc(100vh - var(--site-header-height) - 300px);
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
}
.error-page h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.error-page .error-code {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, 0.07);
  display: block;
  margin: 0 0 8px;
  letter-spacing: -4px;
}
.error-page p { font-size: 16px; color: rgba(0,0,0,0.6); }

.service-hero {
  padding: 28px 0 12px;
}
.service-hero__top {
  margin-bottom: 20px;
}
.service-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0,0,0,0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
.service-back-btn:hover {
  color: #000;
  opacity: 1;
  transform: translateX(-3px);
}
.service-back-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.service-back-btn:hover i {
  border-color: rgba(0,0,0,0.45);
  background: rgba(0,0,0,0.05);
  transform: translateX(-2px);
}
.service-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px;
  color: #1c1c1c;
  letter-spacing: 0.5px;
}
.page-service .service-hero .showroom-address {
  margin: -12px 0 24px;
  font-style: normal;
}
.page-service .service-hero .showroom-address__link {
  color: rgba(0, 0, 0, 0.9);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.25s ease;
}
.page-service .service-hero .showroom-address__link:hover {
  color: #000;
}
.service-hero__seo {
  max-width: 820px;
  margin: 0 0 40px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.62);
  font-weight: 300;
}

.service-related {
  padding: 20px 0 72px;
}
.service-related__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  margin: 0 0 32px;
  color: #1c1c1c;
}

.service-body--wp { padding-bottom: 48px; }
.service-external {
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.service-external__link {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
  max-width: 100%;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(28, 28, 28, 0.14);
  background: var(--bg-darker);
  color: inherit;
  text-decoration: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-external__link:hover {
  border-color: rgba(28, 28, 28, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  color: inherit;
}
.service-external__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 10vw, 96px);
  height: clamp(48px, 7vw, 64px);
}
.service-external__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.service-external__text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.service-external__label {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}
.service-external__label p {
  margin: 0;
}
.service-external__label p + p {
  margin-top: 0.35em;
}
.service-external__text .bi {
  flex: 0 0 auto;
  font-size: 14px;
  opacity: 0.55;
}
.service-body--wp .b-subpage-wrapper,
.service-body--wp .b-back-btn,
.service-body--wp .b-back-btn2,
.service-body--wp .stm-button.b-back-btn,
.service-body--wp .stm-button.b-back-btn2 { display: none !important; }
.service-body--wp img { max-width: 100%; height: auto; }
.service-body--wp .b-subpage-wrapper,
.service-body--wp .vc_container-fluid { max-width: 100%; }
.service-body--wp .rl-gallery-container { max-width: none; margin: 0; padding: 0; }
.service-body--wp .rl-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gallery-gap, 12px);
  margin: 0;
  opacity: 0;
  min-height: 120px;
  transition: opacity .35s ease;
}
.service-body--wp .rl-gallery.is-justified-ready { opacity: 1; }
.service-body--wp .rl-gutter-sizer,
.service-body--wp .rl-grid-sizer { display: none; }
.service-body--wp .rl-gallery-item {
  margin: 0;
  flex: 0 0 auto;
}
.service-body--wp .rl-gallery-item-content {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(0,0,0,0.08);
  width: 100%;
  height: 100%;
}
.service-body--wp .rl-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.service-body--wp .rl-gallery-item-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--lightbox-zoom-duration) var(--lightbox-zoom-ease);
}
.service-body--wp .rl-gallery-link:hover img {
  transform: scale(var(--lightbox-zoom-scale));
}
.service-body--wp .stm-button .btn__label { vertical-align: middle; }

.pswp { --pswp-bg: #141414; }
.pswp__button { opacity: 0.85; }
.pswp__button:hover { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .project-img,
  .service-body--wp .rl-gallery-item-content img {
    transition: none;
  }
  .project-img-link:hover .project-img,
  .service-body--wp .rl-gallery-link:hover img {
    transform: none;
  }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .site-header .navbar > .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .navbar-collapse {
    background: rgba(245,242,237,0.97);
    margin-top: 16px;
    padding: 16px;
  }
  .navbar-collapse .nav-link { color: #1c1c1c !important; }
  .navbar-collapse .nav-link::after { background: #1c1c1c; }
  .navbar-collapse .lang-switch__lang,
  .navbar-collapse .lang-switch__sep { color: #1c1c1c; }
  .site-header .nav-link { padding: 8px 0 !important; }
  .page-home .section-about {
    align-items: flex-end;
    justify-content: center;
    padding: 0 16px;
  }
  .section-about__content {
    --about-mobile-gap: clamp(20px, 11vh, 100px);
    width: 100%;
    margin: calc(var(--site-header-height) + 12px) 0 var(--about-mobile-gap);
    max-height: calc(100vh - var(--site-header-height) - 12px - var(--about-mobile-gap) - 8px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .section-about__content h2 { margin-bottom: 20px; }
  .project-feature__stage {
    aspect-ratio: 4 / 3;
    max-height: min(62vh, 520px);
  }
  .project-feature__caption { max-width: 80%; bottom: 44px; }
  .project-feature__dots,
  .project-feature--reverse .project-feature__dots {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: min(90vw, 100%);
    bottom: 18px;
  }
  .service-body--wp .rl-grid-sizer,
  .service-body--wp .rl-gallery-item { width: calc(50% - 6px); }
  .service-body--wp .rl-gallery-item.rl-gallery-item-width-4,
  .service-body--wp .rl-gallery-item.rl-gallery-item-full { width: 100%; }
}

@media (max-width: 991px) and (orientation: landscape) {
  .hero { min-height: unset; }
  /* shrink header to match banner height */
  .site-header { padding: 6px 0; }
  .navbar-brand img { width: 30px; }
  /* compact overlay, no services sub-list */
  .mobile-overlay__link { padding: 8px 24px; font-size: 13px; }
  .overlay-services { display: none; }
}

/* === COOKIE BANNER === */
#cookieScriptBox.cookie-warn-site {
  left: 20px !important;
  right: 20px !important;
  width: auto !important;
  border-radius: 14px !important;
  background: var(--bg) !important;
  color: #1c1c1c !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 162, 122, 0.4) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18) !important;
}
#cookieScriptBox.cookie-warn-site,
#cookieScriptBox.cookie-warn-site * {
  color: #1c1c1c !important;
}
/* Gombok sorrendje: Csak szükséges → Mentés → Mindent elfogad (jobbra) */
#cookieScriptBox.cookie-warn-site span[onclick*="reject();"] { order: 1; }
#cookieScriptBox.cookie-warn-site span[onclick*="acceptSelected"] { order: 2; }
#cookieScriptBox.cookie-warn-site #cookieScriptAccept { order: 3; }
#cookieScriptBox.cookie-warn-site span[onclick*="acceptSelected"],
#cookieScriptBox.cookie-warn-site span[onclick*="reject();"],
#cookieScriptBox.cookie-warn-site .btn-outline-secondary:not(#cookieScriptAccept) {
  color: var(--accent) !important;
  border-color: rgba(29, 77, 68, 0.4) !important;
  background: transparent !important;
}
#cookieScriptBox.cookie-warn-site span[onclick*="acceptSelected"]:hover,
#cookieScriptBox.cookie-warn-site span[onclick*="reject();"]:hover,
#cookieScriptBox.cookie-warn-site .btn-outline-secondary:not(#cookieScriptAccept):hover {
  color: var(--bg) !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
#cookieScriptBox.cookie-warn-site #cookieScriptAccept {
  color: var(--bg-dark-2) !important;
  border-color: var(--gold) !important;
  background: var(--gold) !important;
}
#cookieScriptBox.cookie-warn-site #cookieScriptAccept:hover {
  color: var(--bg) !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
#cookieScriptBox.cookie-warn-site.loaded {
  bottom: 20px !important;
}
@media (max-width: 640px) {
  #cookieScriptBox.cookie-warn-site {
    left: 12px !important;
    right: 12px !important;
    border-radius: 12px !important;
  }
  #cookieScriptBox.cookie-warn-site.loaded {
    bottom: 12px !important;
  }
}
@media (max-width: 575px) {
  .service-body--wp .rl-grid-sizer,
  .service-body--wp .rl-gallery-item { width: 100%; }
}

/* === Passport Café & Bar === */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--green-light);
  background: var(--green-light);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.btn-reserve:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-reserve--overlay {
  margin-top: 1.5rem;
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f4efe6;
  padding: 2rem;
  pointer-events: none;
}
.hero-copy__eyebrow {
  font-family: var(--font-sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.hero-copy__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  letter-spacing: 0.12em;
  margin: 0;
  font-weight: 400;
}
.hero-copy__identity-logo {
  width: clamp(220px, 42vw, 520px);
  max-width: 80vmin;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}
.hero-copy__sub {
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0.75rem 0 1.5rem;
}
.hero-copy__actions { pointer-events: auto; display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.btn-hero {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background: var(--green-light);
  color: #f4efe6;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.btn-hero--ghost { background: transparent; color: #f4efe6; border: 1px solid rgba(244,239,230,0.7); }
.btn-hero:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }
.btn-hero--ghost:hover { background: rgba(244,239,230,0.12); color: #f4efe6; }

.section-featured, .section-hours, .section-menu, .section-about-page { padding: var(--home-section-gap) 0; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.featured-card { color: inherit; text-decoration: none; display: block; transition: transform 0.3s ease; }
.featured-card:hover { transform: translateY(-4px); }
.featured-card__media { aspect-ratio: 4/5; overflow: hidden; background: #111; }
.featured-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.featured-card:hover .featured-card__img { transform: scale(1.04); }
.featured-card__body { padding: 0.85rem 0 0.25rem; }
.featured-card__name { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 0.25rem; letter-spacing: 0.04em; }
.featured-card__desc { font-size: 0.85rem; font-weight: 500; opacity: 0.8; margin: 0 0 0.4rem; }
.featured-card__price { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; color: var(--green-light); }
.featured-drinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.featured-drink { text-decoration: none; color: inherit; text-align: center; }
.featured-drink__img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.featured-drink span { display: block; margin-top: 0.5rem; font-size: 0.8rem; letter-spacing: 0.06em; }

.hours-list { max-width: 420px; margin: 1.5rem auto 0; padding: 0; list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.12); font-size: 0.95rem; }
.hours-list__days { font-family: var(--font-serif); letter-spacing: 0.06em; }
.hours-address { margin-top: 1.5rem; }

.footer-hours { list-style: none; padding: 0.75rem 0 0; margin: 0; font-size: 0.8rem; opacity: 0.85; }
.footer-hours li { display: flex; justify-content: space-between; gap: 0.5rem; }
.footer-logo { width: 180px; height: auto; }

.menu-lead { max-width: 36rem; margin: 0.75rem auto 2rem; opacity: 0.75; }
.menu-kind { font-family: var(--font-serif); letter-spacing: 0.16em; text-transform: uppercase; font-size: 1.4rem; margin: 2.5rem 0 1rem; }
.menu-section { margin-bottom: 2rem; }
.menu-section__title { font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase; }
.menu-section__desc { opacity: 0.7; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-item { display: grid; grid-template-columns: 88px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.menu-item:not(:has(.menu-item__media)) { grid-template-columns: 1fr; }
.menu-item__img { width: 88px; height: 88px; object-fit: cover; }
.menu-item__row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.menu-item__name { margin: 0; font-size: 1.05rem; font-family: var(--font-serif); letter-spacing: 0.04em; }
.menu-item__price { white-space: nowrap; font-weight: 700; color: var(--green-light); }
.menu-item__desc { margin: 0.25rem 0 0; font-size: 0.88rem; font-weight: 500; opacity: 0.82; }
.menu-item__tags { display: flex; gap: 0.4rem; list-style: none; padding: 0.4rem 0 0; margin: 0; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

.about-page-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.about-page-media img { width: 100%; height: auto; object-fit: cover; }

.page-contact .section-contact { padding-top: calc(var(--site-header-height) + 2rem); }
.page-menu .section-menu { padding-top: calc(var(--site-header-height) + 2rem); }
.page-about .section-about-page { padding-top: calc(var(--site-header-height) + 2rem); }

@media (max-width: 991px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-drinks { grid-template-columns: repeat(2, 1fr); }
  .about-page-grid { grid-template-columns: 1fr; }
  .btn-reserve { display: none; }
  .btn-reserve--overlay { display: inline-flex; }
}
@media (max-width: 575px) {
  .featured-grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 1fr; }
}

/* === Menu lightbox === */
.menu-item__img-link { display: block; cursor: zoom-in; }
.menu-item__img-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* PhotoSwipe caption */
.pswp__custom-caption {
  background: rgba(0, 0, 0, 0.55);
  color: #f4efe6;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.2rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0;
  pointer-events: none;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}


/*# sourceMappingURL=app.min.css.map*/