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

html {
  scroll-behavior: smooth;
  /* Firefox scrollbar — thin brown thumb on cream track */
  scrollbar-color: #452B1D #F4EEE6;
  scrollbar-width: thin;
}

/* WebKit (Chrome, Safari, Edge) scrollbar — match site palette */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F4EEE6;
}

::-webkit-scrollbar-thumb {
  background: #452B1D;
  border: 2px solid #F4EEE6;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2D251E;
}

::-webkit-scrollbar-corner {
  background: #F4EEE6;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F4EEE6;
  color: #452B1D;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #F4EEE6;
  border-bottom: 1px solid rgba(69, 43, 29, 0.1);
  transition: transform 0.32s ease;
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

/* Hidden on desktop; shown inside mobile burger overlay */
.navbar__menu-logo {
  display: none;
}

/* Truly centered nav */
.navbar__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__list {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar__link {
  font-size: 15px;
  font-weight: 500;
  color: #452B1D;
  letter-spacing: 0.02em;
  position: relative;
  transition: opacity 0.2s;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #632C11;
  transition: width 0.25s ease;
}

.navbar__link:hover::after  { width: 100%; }
.navbar__link:hover         { opacity: 0.7; }

.navbar__link.is-active::after { width: 100%; }
.navbar__link.is-active        { opacity: 1; color: #632C11; }

/* Burger button */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  flex-shrink: 0;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #452B1D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.navbar__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  flex: 1;
}

/* ============================================================
   HERO  (full-bleed image, premium overlay)
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  height: calc(100svh - 72px);
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background: #1a120c;
  margin-top: 72px;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -6% -3% -6% -3%;
  z-index: 0;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform, opacity;
}

/* Layered overlay: dark vignette + bottom legibility scrim */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(20,12,8,0.72) 0%, rgba(20,12,8,0.32) 38%, rgba(20,12,8,0.18) 60%, rgba(20,12,8,0.45) 100%),
    linear-gradient(to top, rgba(15,10,6,0.65) 0%, rgba(15,10,6,0) 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 8vh, 80px) clamp(28px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-size: clamp(40px, 6.4vw, 92px);
  font-weight: 600;
  color: #FCF2EC;
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 16ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: rgba(252, 242, 236, 0.7);
}

.hero__desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(252, 242, 236, 0.78);
  
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Primary CTA — solid cream pill, expanding-circle hover */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 24px;
  background: #FCF2EC;
  color: #452B1D;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.45s ease;
}

.hero__cta-text {
  position: relative;
  z-index: 3;
  font-size: 13px;
  font-weight: 500;
}

.hero__cta-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #452B1D;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: background-color 0.45s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__cta::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #452B1D;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero__cta:hover::before        { transform: translateY(-50%) scale(22); }
.hero__cta:hover                { color: #FCF2EC; }
.hero__cta:hover .hero__cta-dot { background-color: #FCF2EC; transform: scale(1.18); }

/* Word-split helper — used across the site by GSAP */
.g-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  /* Breathing room so italic accents (e.g. the dot on "i") and
     descenders/ascenders aren't clipped by the overflow box. */
  padding: 0.2em 0.15em 0.18em;
  margin: -0.2em -0.15em -0.18em;
}

.g-word__inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* Pre-animation state for hero — keeps text hidden until GSAP plays.
   The .gsap-ready class on <html> is added by animations.js the moment
   it runs; if GSAP fails to load the items remain visible (graceful). */
html:not(.gsap-ready) [data-anim="hero-title"],
html:not(.gsap-ready) [data-anim="hero-desc"],
html:not(.gsap-ready) [data-anim="hero-ctas"] {
  opacity: 0;
  animation: hero-fallback-reveal 0.6s ease 2.5s forwards;
}

@keyframes hero-fallback-reveal {
  to { opacity: 1; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  padding: 96px 24px;
}

.why__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.why__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.why__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why__title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why__desc {
  font-size: 15px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.72;
}

/* Cards grid */
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Base card */
.why-card {
  background: #F7ECDD;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px 3px rgba(69, 43, 29, 0.20);
}

/* Image — slightly inset with padding + inner rounded corners */
.why-card__img-wrap {
  padding: 10px 10px 0;
}

.why-card__img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

/* Card body */
.why-card__body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.why-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #452B1D;
  line-height: 1.3;
}

.why-card__text {
  font-size: 14px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.68;
}

/* ============================================================
   NAŠE USLUGE
   ============================================================ */
.services {
  padding: 96px 24px;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header row: left title / right CTA */
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.services__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services__title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.2;
}

/* CTA button — inverted hero style */
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 20px;
  background: #452B1D;
  color: #FCF2EC;
  border: 1.5px solid transparent;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.45s ease, border-color 0.45s ease;
}


.svc-cta__text {
  position: relative;
  z-index: 3;
  font-size: 13px;
  font-weight: 500;
}

.svc-cta__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FCF2EC;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: background-color 0.45s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-cta::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FCF2EC;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.svc-cta:hover::before       { transform: translateY(-50%) scale(22); }
.svc-cta:hover               { color: #452B1D; border-color: #452B1D; }
.svc-cta:hover .svc-cta__dot { background-color: #452B1D; transform: scale(1.18); }

/* Services card container */
.services__card {
  border: 1.5px solid #452B1D;
  border-radius: 20px;
  overflow: hidden;
  background: #F7ECDD;
}

/* Individual row — also used as <a> */
.svc-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 35px 32px;
  border-bottom: 1px solid rgba(69, 43, 29, 0.15);
  cursor: pointer;
  color: inherit;
  overflow: hidden;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    padding-left 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-row:last-child {
  border-bottom: none;
}

/* Hover row: dark fill + shift content right to clear the image */
.svc-row:hover {
  background-color: #452B1D;
  border-bottom-color: rgba(252, 242, 236, 0.12);
  padding-left: calc(220px + 24px);
}

/* Row image — left/top/bottom flush, fixed width, slides in on hover */
.svc-row__img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  z-index: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: #3a2418;
  transition: width 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-row__img-wrap img {
  /* Match final strip width so object-fit does not rescale while width animates 0→220px */
  width: 220px;
  min-width: 220px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-row:hover .svc-row__img-wrap {
  width: 220px;
}

.svc-row:hover .svc-row__img-wrap img {
  transform: none;
}

/* Row text */
.svc-row__text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.svc-row__title {
  font-size: 20px;
  font-weight: 600;
  color: #452B1D;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.svc-row:hover .svc-row__title { color: #FCF2EC; }

.svc-row__desc {
  font-size: 14px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.65;
  max-width: 560px;
  transition: color 0.3s ease;
}

.svc-row:hover .svc-row__desc { color: rgba(252, 242, 236, 0.72); }

/* Badge — pill with number or arrow */
.svc-row__badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 34px;
  margin-left: 24px;
  border: 1.5px solid #452B1D;
  border-radius: 9999px;
  background: #F7ECDD;
  color: #452B1D;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  overflow: hidden;
}

.svc-row:hover .svc-row__badge {
  background: transparent;
  border-color: rgba(252, 242, 236, 0.45);
  color: #FCF2EC;
}

/* Number ↔ arrow swap */
.svc-row__badge-num,
.svc-row__badge-arrow {
  position: absolute;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-row__badge-arrow {
  opacity: 0;
  transform: translateX(-8px);
}

.svc-row:hover .svc-row__badge-num {
  opacity: 0;
  transform: translateX(8px);
}

.svc-row:hover .svc-row__badge-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESTAURACIJA
   ============================================================ */
.resto {
  background: linear-gradient(135deg, #2D251E 0%, #4F3521 35%, #4F3521 70%, #2D251E 100%);
  padding: 96px 24px;
}

.resto__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Centered header */
.resto__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.resto__label {
  font-size: 12px;
  font-weight: 600;
  color: #E2B76B;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resto__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #FCF2EC;
  line-height: 1.18;
}

/* CTA — same mechanics as hero button */
.resto__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 20px;
  background: #FCF2EC;
  color: #452B1D;
  border: 1px solid transparent;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.45s ease, border-color 0.45s ease;
}

.resto__cta-text {
  position: relative;
  z-index: 3;
  font-size: 13px;
  font-weight: 500;
}

.resto__cta-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #452B1D;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: background-color 0.45s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.resto__cta::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #452B1D;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.resto__cta:hover::before         { transform: translateY(-50%) scale(22); }
.resto__cta:hover                 { color: #FCF2EC; border-color: #FCF2EC; }
.resto__cta:hover .resto__cta-dot { background-color: #FCF2EC; transform: scale(1.18); }

/* Before / After slider wrapper */
.ba-wrap {
  width: 100%;
}

.ba-slider {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #E2B76B;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  /* height driven by the after image */
  line-height: 0;
}

/* Both images sit on the same grid */
.ba-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* BEFORE — clipped container sitting on top */
.ba-before {
  position: absolute;
  inset: 0;
  width: 50%;         /* JS overrides this */
  overflow: hidden;
}

.ba-before .ba-img {
  width: auto;          /* keep natural width so it fills the parent */
  min-width: 100%;      /* always matches the slider width */
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Divider line */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;           /* JS overrides */
  width: 2px;
  background: #E2B76B;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 10;
}

.ba-divider:active {
  cursor: grabbing;
}

/* Wide invisible hit area so the divider is easy to grab */
.ba-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
}

/* Handle with the two arrow buttons */
.ba-handle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #452B1D;
  border-radius: 9999px;
  padding: 6px 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  pointer-events: none;  /* clicks pass through to buttons */
}

/* Individual arrow buttons */
.ba-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #F7ECDD;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.ba-btn:hover {
  background: rgba(247, 236, 221, 0.15);
}

/* ============================================================
   O NAMA
   ============================================================ */
.about {
  background: linear-gradient(135deg, #2D251E 0%, #4F3521 35%, #4F3521 70%, #2D251E 100%);
  padding: 100px 24px;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header — centered above content */
.about__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.about__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about__title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #FCF2EC;
  line-height: 1.25;
}

/* Two-column layout */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image — frame + image */
.about__img-side {
  display: flex;
  justify-content: center;
}

.about__img-frame {
  border: 2px solid #452B1D;
  border-radius: 24px;
  padding: 8px;
  width: 100%;
}

.about__img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

/* Text paragraphs */
.about__text-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__para {
  font-size: 15px;
  font-weight: 400;
  color: rgba(252, 242, 236, 0.82);
  line-height: 1.78;
}

/* ============================================================
   BANNER (full-width image section)
   ============================================================ */
.banner {
  padding: 32px 24px;
}

.banner__wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  /* height driven by image, min for small screens */
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 48px rgba(69, 43, 29, 0.22);
}

/* Background image */
.banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay — stronger at bottom for legibility */
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

/* Content row pinned to bottom */
.banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 44px;
}

.banner__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner__sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(252, 242, 236, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.banner__title {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 600;
  color: #FCF2EC;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

/* CTA — same expanding-circle style as hero */
.banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 20px;
  background: #FCF2EC;
  color: #452B1D;
  border: 1px solid transparent;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.45s ease, border-color 0.45s ease;
}

.banner__cta-text {
  position: relative;
  z-index: 3;
  font-size: 13px;
  font-weight: 500;
}

.banner__cta-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #452B1D;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: background-color 0.45s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner__cta::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #452B1D;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.banner__cta:hover::before          { transform: translateY(-50%) scale(22); }
.banner__cta:hover                  { color: #FCF2EC; border-color: #FCF2EC; }
.banner__cta:hover .banner__cta-dot { background-color: #FCF2EC; transform: scale(1.18); }

/* ============================================================
   PARTNER
   ============================================================ */
.partner {
  padding: 96px 24px;
}

.partner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;   /* 60 / 40 */
  gap: 72px;
  align-items: center;
}

/* ---- Left column ---- */
.partner__title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.partner__paras {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}

.partner__para {
  font-size: 15px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.75;
}

/* Feature blocks */
.partner__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(69, 43, 29, 0.12);
}

.partner__feature-title {
  font-size: 15px;
  font-weight: 600;
  color: #452B1D;
  line-height: 1.35;
  margin-bottom: 10px;
}

.partner__feature-text {
  font-size: 14px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.68;
}

/* ---- Right column ---- */
.partner__img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 96px 24px;
}

.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq__header {
  text-align: center;
  margin-bottom: 72px;
}

.faq__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq__title {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.22;
}

/* List */
.faq__list {
  display: flex;
  flex-direction: column;
}

/* Item */
.faq__item {
  border-bottom: 1px solid #8B776B;
}

.faq__item:first-child {
  border-top: 1px solid #8B776B;
}

/* Trigger row */
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Question text — shifts right on hover */
.faq__question {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: #452B1D;
  line-height: 1.35;
  transition: transform 0.25s ease;
  display: block;
}

.faq__trigger:hover .faq__question {
  transform: translateX(8px);
}

/* Plus icon pill */
.faq__icon {
  flex-shrink: 0;
  width: 56px;
  height: 34px;
  border-radius: 9999px;
  border: 1.5px solid #452B1D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #452B1D;
  transition: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.faq__trigger:hover .faq__icon {
  background-color: #452B1D;
  color: #FCF2EC;
}

/* Rotate + to × when open */
.faq__icon svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.28s ease,
              stroke 0.28s ease;
}

.faq__item.is-open .faq__icon {
  background-color: #452B1D;
  color: #FCF2EC;
  border-color: #452B1D;
}

.faq__item.is-open .faq__icon svg {
  transform: rotate(45deg);
}

/* Answer body — smooth height accordion */
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer {
  font-size: 15px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.75;
  padding-bottom: 28px;
  max-width: 720px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 24px;
}

.footer__card {
  background: linear-gradient(to right, #632C11, #352116, #181818);
  border-radius: 20px;
  overflow: hidden;
  padding: 56px 56px 32px;
  color: #FCF2EC;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  height: 44px;
  width: auto;
}

.footer__slogan {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(252, 242, 236, 0.8);
  max-width: 260px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #FCF2EC;
  transition: opacity 0.2s;
}

.footer__social-link:hover { opacity: 0.7; }

.footer__social-link svg {
  flex-shrink: 0;
  color: #FCF2EC;
}

.footer__col-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.footer__col-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(252, 242, 236, 0.85);
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(252, 242, 236, 0.55);
}

.footer__contact-value {
  font-size: 14px;
  font-weight: 400;
  color: #FCF2EC;
  transition: opacity 0.2s;
}

.footer__contact-value:hover { opacity: 0.7; }

.footer__contact-email {
  margin-top: 4px;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(to right, #632C11, #FCF2EC, #181818);
  margin: 40px 0 24px;
  border-radius: 1px;
}

.footer__copyright {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: rgba(252, 242, 236, 0.6);
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  /* Hero — tablet (fills remaining viewport below navbar) */
  .hero {
    height: calc(100svh - 72px);
    min-height: calc(100svh - 72px);
  }

  /* FAQ */
  .faq {
    padding: 72px 24px;
  }

  .faq__header {
    margin-bottom: 52px;
  }

  /* Partner */
  .partner {
    padding: 72px 24px;
  }

  .partner__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Image above text on tablet only (mobile resets in ≤640px) */
  .partner__right {
    order: -1;
  }

  .partner__img {
    max-height: 420px;
  }

  /* Banner */
  .banner {
    padding: 0 24px 28px;
  }

  .banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 32px;
  }

  /* Restauracija */
  .resto {
    padding: 80px 24px;
  }

  /* Services section */
  .services {
    padding: 72px 24px;
  }

  .services__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .svc-row {
    padding: 26px 24px;
  }

  .svc-row__title {
    font-size: 18px;
  }

  /* About section */
  .about {
    padding: 80px 24px;
  }

  .about__header {
    margin-bottom: 52px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Why section */
  .why {
    padding: 72px 24px;
  }

  .why__header {
    margin-bottom: 48px;
  }

  .why__cards {
    grid-template-columns: 1fr 1fr;
  }

  .why-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }

  /* Footer */
  .footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__card {
    padding: 44px 40px 28px;
  }
}

/* ============================================================
   RADOVI PAGE — HERO CAROUSEL
   ============================================================ */
/* ============================================================
   RADOVI HERO — full-bleed cinematic carousel
   The image fills the entire hero. A subtle dark gradient at the
   bottom keeps the title + description legible without dimming
   the whole frame. Dots sit at bottom-center.
   ============================================================ */
.rh {
  position: relative;
  margin-top: 72px;
  height: calc(100svh - 72px);
  min-height: 560px;
  background: #1a120c;
  overflow: hidden;
  isolation: isolate;
}

/* Full-bleed image stage — fills the hero entirely. */
.rh__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.rh__stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Cover the whole hero — slight art-directed bias toward the upper
     part of the frame so subjects don't get hidden by the bottom
     gradient. */
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.rh__stage-img.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Subtle dark gradient anchored at the bottom for text legibility. */
.rh__overlay {
  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.42) 22%,
      rgba(0, 0, 0, 0.16) 50%,
      rgba(0, 0, 0, 0)    78%);
}

/* Foreground container */
.rh__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px) clamp(20px, 5vw, 64px) clamp(80px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rh__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}

.rh__title {
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 700;
  color: #FCF2EC;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  /* Pre-allocate enough room for the longest title so layout
     doesn't jump as text swaps. */
  min-height: 2.2em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.rh__desc {
  font-size: clamp(14.5px, 1.05vw, 17px);
  font-weight: 400;
  color: rgba(252, 242, 236, 0.88);
  line-height: 1.72;
  max-width: 540px;
  min-height: 5em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

/* Dots — anchored bottom-center of the hero */
.rh__dots {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.rh__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(252, 242, 236, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.35s ease,
              transform 0.35s ease,
              width 0.35s ease;
}

.rh__dot:hover {
  background: rgba(252, 242, 236, 0.7);
}

.rh__dot.is-active {
  background: #FCF2EC;
  width: 28px;
  border-radius: 9999px;
}

/* Pre-animation guard */
html:not(.gsap-ready) [data-anim="rh-hero"] .rh__title,
html:not(.gsap-ready) [data-anim="rh-hero"] .rh__desc,
html:not(.gsap-ready) [data-anim="rh-hero"] .rh__dots {
  opacity: 0;
  animation: hero-fallback-reveal 0.6s ease 2.5s forwards;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: 96px 24px;
}

.gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.gallery__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery__title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gallery__desc {
  font-size: 15px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.72;
}

.gallery__filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.gallery__filter-btn {
  padding: 9px 20px;
  border-radius: 9999px;
  border: 1.5px solid rgba(69,43,29,0.2);
  background: transparent;
  color: #8B776B;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery__filter-btn:hover {
  border-color: #452B1D;
  color: #452B1D;
}

.gallery__filter-btn.is-active {
  background: #452B1D;
  color: #FCF2EC;
  border-color: #452B1D;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gcard {
  border-radius: 20px;
  overflow: hidden;
  background: #F7ECDD;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(69,43,29,0.14);
  cursor: pointer;
}

.gcard.is-hidden {
  display: none;
}

.gallery__grid.is-updating {
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.gallery__empty,
.gallery__error {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 15px;
  color: #8B776B;
  padding: 48px 16px;
}

.gallery__pagination {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery__pagination-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery__page-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gallery__page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 9999px;
  border: 1.5px solid rgba(69, 43, 29, 0.2);
  background: transparent;
  color: #8B776B;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery__page-btn:hover:not(:disabled) {
  border-color: #452B1D;
  color: #452B1D;
}

.gallery__page-btn.is-active {
  background: #452B1D;
  color: #FCF2EC;
  border-color: #452B1D;
}

.gallery__page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery__page-btn--arrow {
  min-width: auto;
  padding: 0 18px;
}

.gallery__page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: #8B776B;
  font-size: 14px;
  user-select: none;
}

.gallery__page-info {
  font-size: 13px;
  color: #8B776B;
  margin: 0;
}

.gcard__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.gcard__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gcard:hover .gcard__img-wrap img {
  transform: scale(1.04);
}

.gcard__body {
  padding: 16px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gcard__category {
  font-size: 11px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gcard__title {
  font-size: 15px;
  font-weight: 600;
  color: #452B1D;
  margin-top: 4px;
}

.gcard--ba {
  grid-column: span 1;
}

.gcard__ba {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.gcard__ba-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcard__ba-before {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.gcard__ba-before .gcard__ba-img {
  width: auto;
  min-width: 100%;
  max-width: none;
  object-position: left center;
}

.gcard__ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  z-index: 5;
}

.gcard__ba-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #E2B76B;
  transform: translateX(-50%);
  pointer-events: none;
}

.gcard__ba-handle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #452B1D;
  border-radius: 9999px;
  padding: 7px 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.4);
  pointer-events: none;
}

.gcard__ba-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #F7ECDD;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.gcard__ba-btn:hover {
  background: rgba(247,236,221,0.15);
}

.gcard__ba-tag {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FCF2EC;
  background: rgba(69,43,29,0.68);
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 4;
  pointer-events: none;
}

.gcard__ba-tag--left  { left: 10px; }
.gcard__ba-tag--right { right: 10px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.4,0,0.2,1);
}

.lb.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,10,6,0.92);
  cursor: zoom-out;
}

.lb__stage {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb__img {
  display: block;
  max-width: 100%;
  max-height: 88svh;
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.93);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
  -webkit-user-select: none;
}

.lb.is-open .lb__img {
  transform: scale(1);
}

.lb__close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(69,43,29,0.75);
  border: none;
  color: #FCF2EC;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lb__close:hover { background: rgba(69,43,29,0.95); }

.lb__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(69,43,29,0.75);
  border: none;
  color: #FCF2EC;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lb__arrow:hover { background: rgba(69,43,29,0.95); }
.lb__arrow:disabled { opacity: 0.25; pointer-events: none; }

.lb__arrow--prev { left: 16px; }
.lb__arrow--next { right: 16px; }

.lb__counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(252,242,236,0.7);
  letter-spacing: 0.06em;
  pointer-events: none;
}

.lb__caption {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.lb__caption-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2B76B;
  display: block;
  margin-bottom: 2px;
}

.lb__caption-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FCF2EC;
  white-space: nowrap;
}

/* Before/After lightbox stage */
.lb__ba-stage {
  display: none;
  position: relative;
  z-index: 1;
  gap: 3px;
  max-width: min(94vw, 1200px);
  max-height: 82svh;
  width: 100%;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.93);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}

.lb.is-open .lb__ba-stage {
  transform: scale(1);
}

.lb__ba-side {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  overflow: hidden;
  background: #1a120c;
}

.lb__ba-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-select: none;
}

.lb__ba-label {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FCF2EC;
  background: rgba(69,43,29,0.72);
  padding: 4px 12px;
  border-radius: 9999px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lb__ba-divider-line {
  width: 3px;
  flex-shrink: 0;
  background: #E2B76B;
  align-self: stretch;
}

@media (max-width: 600px) {
  .lb__ba-stage {
    flex-direction: column;
    max-height: 80svh;
    gap: 3px;
  }
  .lb__ba-divider-line {
    width: 100%;
    height: 3px;
  }
  .lb__arrow { width: 40px; height: 40px; }
  .lb__arrow--prev { left: 8px; }
  .lb__arrow--next { right: 8px; }
  .lb__caption-title { font-size: 13px; }
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px) — radovi additions
   ============================================================ */
@media (max-width: 900px) {
  .rh__inner {
    padding: clamp(20px, 4vw, 36px) clamp(20px, 4vw, 36px) clamp(72px, 10vw, 96px);
  }

  .rh__title {
    font-size: clamp(34px, 6.4vw, 56px);
    min-height: 2.4em;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* ---- Navbar burger menu ---- */
  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #F4EEE6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    /* override desktop absolute centering */
  }

  /* Logo at the top of the burger menu — clickable link to home */
  .navbar__menu-logo {
    display: block;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
    z-index: 1;
  }

  .navbar__menu-logo img {
    height: 40px;
    width: auto;
    display: block;
  }

  .navbar__nav.is-open .navbar__menu-logo {
    opacity: 1;
  }

  .navbar__nav.is-open {
    transform: translateX(0);
  }

  .navbar__list {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .navbar__link {
    font-size: 22px;
    font-weight: 600;
  }

  .navbar__burger {
    display: flex;
  }

  /* ---- FAQ ---- */
  .faq {
    padding: 56px 16px;
  }

  .faq__header {
    margin-bottom: 40px;
  }

  .faq__trigger {
    padding: 22px 0;
  }

  .faq__icon {
    width: 46px;
    height: 30px;
  }

  .faq__answer {
    font-size: 14px;
    padding-bottom: 22px;
  }

  /* ---- Partner ---- */
  .partner {
    padding: 56px 16px;
  }

  /* Text first, image second (override tablet order: -1) */
  .partner__right {
    order: initial;
  }

  /* Center all text on mobile */
  .partner__left {
    text-align: center;
  }

  .partner__features {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .partner__paras {
    margin-bottom: 36px;
  }

  .partner__img {
    max-height: 300px;
    border-radius: 14px;
  }

  /* ---- Banner ---- */
  .banner {
    padding: 32px 14px 20px;
  }

  .banner__wrap {
    min-height: 340px;
    border-radius: 16px;
  }

  .banner__content {
    padding: 24px 22px;
    gap: 16px;
  }

  .banner__sub {
    font-size: 11px;
  }

  /* ---- Restauracija ---- */
  .resto {
    padding: 60px 16px;
    gap: 32px;
  }

  .resto__title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .ba-slider {
    border-radius: 14px;
  }

  /* ---- Services section ---- */
  .services {
    padding: 56px 16px;
  }

  /* Center the label, heading, and CTA on mobile */
  .services__header {
    align-items: center;
    text-align: center;
  }

  .services__header-left,
  .services__header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* No hover image reveal on touch screens */
  .svc-row:hover .svc-row__img-wrap {
    width: 0;
  }
  .svc-row:hover {
    padding-left: 18px;
  }

  .svc-row {
    padding: 22px 18px;
  }

  .svc-row__title {
    font-size: 16px;
  }

  .svc-row__desc {
    font-size: 13px;
  }

  .svc-row__badge {
    width: 46px;
    height: 30px;
    margin-left: 12px;
    font-size: 12px;
  }

  /* ---- About section ---- */
  .about {
    padding: 64px 16px;
  }

  .about__header {
    margin-bottom: 40px;
  }

  .about__para {
    font-size: 14px;
  }

  /* ---- Why section ---- */
  .why {
    padding: 56px 16px;
  }

  .why__header {
    margin-bottom: 36px;
  }

  .why__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .why-card__body {
    padding: 18px 20px 24px;
  }

  /* ---- Hero ---- */
  .hero {
    height: calc(100svh - 72px);
    min-height: calc(100svh - 72px);
  }

  .hero__inner {
    padding: clamp(32px, 6vh, 56px) 22px;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero__ctas {
    margin-bottom: 0;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 14px 14px 20px;
  }

  .footer__card {
    padding: 36px 24px 24px;
    border-radius: 16px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__col--brand {
    grid-column: auto;
    align-items: center;
    text-align: center;
  }

  .footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__slogan {
    max-width: none;
    text-align: center;
  }

  .footer__social {
    align-items: center;
  }

  .footer__contact-list {
    align-items: center;
  }

  .footer__contact-list li {
    align-items: center;
  }

  .footer__divider {
    margin: 28px 0 20px;
  }

  /* ---- Radovi hero ---- */
  .rh {
    height: calc(100svh - 72px);
    min-height: 520px;
  }

  .rh__inner {
    padding: 24px 18px 72px;
  }

  .rh__title {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 14px;
    min-height: 2.4em;
  }

  .rh__desc {
    font-size: 14px;
    line-height: 1.65;
  }

  .rh__dots {
    bottom: 24px;
  }

  .rh__overlay {
    /* Slightly stronger gradient on small screens since the text
       block sits closer to the bottom edge. */
    background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.48) 26%,
      rgba(0, 0, 0, 0.18) 56%,
      rgba(0, 0, 0, 0)    82%);
  }

  /* ---- Gallery ---- */
  .gallery {
    padding: 64px 16px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__filters {
    gap: 6px;
  }

  .gallery__filter-btn {
    padding: 7px 14px;
    font-size: 13px;
  }

  .gallery__pagination {
    margin-top: 36px;
  }

  .gallery__page-btn--arrow {
    padding: 0 14px;
    font-size: 13px;
  }

  .gallery__page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ============================================================
   KONTAKT PAGE  (scoped under .kk-*)
   ============================================================ */

/* Reveal animation — used across the whole page.
   Pre-animation state hides elements until GSAP is ready.
   When GSAP is loaded it takes full control of the motion;
   .is-in is just a "triggered" flag — no CSS transition runs
   so GSAP and CSS don't fight each other. */
html.gsap-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* Without GSAP: fall back to a CSS transition so elements still reveal */
html:not(.gsap-ready) [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html:not(.gsap-ready) [data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ---- Shared CTA (matches existing button family) ---- */
.kk-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 13px 13px 22px;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: color 0.45s ease, border-color 0.45s ease, background-color 0.35s ease;
}

.kk-cta__text {
  position: relative;
  z-index: 3;
}

.kk-cta__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: background-color 0.45s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-cta::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.kk-cta:hover::before { transform: translateY(-50%) scale(22); }
.kk-cta:hover .kk-cta__dot { transform: scale(1.18); }

/* Light pill on dark hero */
.kk-cta--light {
  background: #FCF2EC;
  color: #452B1D;
}
.kk-cta--light .kk-cta__dot { background: #452B1D; }
.kk-cta--light::before     { background: #452B1D; }
.kk-cta--light:hover               { color: #FCF2EC; border-color: #FCF2EC; }
.kk-cta--light:hover .kk-cta__dot  { background-color: #FCF2EC; }

/* Ghost outline pill on dark hero */
.kk-cta--ghost {
  background: transparent;
  color: #FCF2EC;
  border-color: rgba(252, 242, 236, 0.35);
  padding: 13px 22px;
}
.kk-cta--ghost:hover { border-color: #FCF2EC; background-color: rgba(252, 242, 236, 0.05); }

/* Solid dark pill (form submit) */
.kk-cta--solid {
  background: #FCF2EC;
  color: #452B1D;
}
.kk-cta--solid .kk-cta__dot { background: #452B1D; }
.kk-cta--solid::before     { background: #452B1D; }
.kk-cta--solid:hover               { color: #FCF2EC; border-color: #452B1D; }
.kk-cta--solid:hover .kk-cta__dot  { background-color: #FCF2EC; }

/* Inverted solid pill — starts dark, reveals cream on hover */
.kk-cta--solid-inv {
  background: #452B1D;
  color: #FCF2EC;
  border-color: #452B1D;
}
.kk-cta--solid-inv .kk-cta__dot { background: #FCF2EC; }
.kk-cta--solid-inv::before      { background: #FCF2EC; }
.kk-cta--solid-inv:hover               { color: #452B1D; border-color: #452B1D; }
.kk-cta--solid-inv:hover .kk-cta__dot  { background-color: #452B1D; }

/* ============================================================
   HERO
   ============================================================ */
.kk-hero {
  position: relative;
  background: linear-gradient(135deg, #2D251E 0%, #4F3521 35%, #4F3521 70%, #2D251E 100%);
  /* Taller hero: padding + min-height scale with viewport (svh accounts for mobile browser UI) */
  padding: calc(72px + clamp(72px, 7.5vw, 120px)) 24px clamp(140px, 20vh, 240px);
  padding: calc(72px + clamp(72px, 7.5vw, 120px)) 24px clamp(140px, 20svh, 240px);
  min-height: clamp(460px, 52vh, 760px);
  min-height: clamp(460px, 52svh, 760px);
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}

.kk-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.kk-hero__text {
  color: #FCF2EC;
}

.kk-hero__title {
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.kk-hero__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(252, 242, 236, 0.78);
  max-width: 520px;
  margin-bottom: 36px;
}

.kk-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* Subtle radial glow behind hero */
.kk-hero__glow {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(178, 146, 92, 0.28), rgba(178, 146, 92, 0) 72%);
  z-index: 1;
  pointer-events: none;
  filter: blur(8px);
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.kk-info {
  padding: 96px 24px 56px;
  background: #F4EEE6;
}

.kk-info__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.kk-info__header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}

.kk-info__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kk-info__title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.2;
}

.kk-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Cards reuse the expanding-circle hover pattern */
.kk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 26px 24px;
  background: #FCF2EC;
  border: 1.5px solid rgba(69, 43, 29, 0.18);
  border-radius: 20px;
  color: #452B1D;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s ease,
              border-color 0.45s ease,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-card::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #452B1D;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.kk-card:hover                { color: #FCF2EC; border-color: #452B1D; transform: translateY(-4px); }
.kk-card:hover::before        { transform: scale(28); }

.kk-card__icon,
.kk-card__label,
.kk-card__value,
.kk-card__arrow {
  position: relative;
  z-index: 1;
}

.kk-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(69, 43, 29, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #452B1D;
  margin-bottom: 6px;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.kk-card:hover .kk-card__icon {
  background: rgba(252, 242, 236, 0.12);
  color: #FCF2EC;
}

.kk-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B776B;
  transition: color 0.4s ease;
}

.kk-card:hover .kk-card__label { color: rgba(252, 242, 236, 0.6); }

.kk-card__value {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.kk-card__arrow {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(69, 43, 29, 0.25);
  color: #452B1D;
  opacity: 0;
  transform: translate(-6px, 0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease, color 0.4s ease;
}

.kk-card:hover .kk-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
  border-color: rgba(252, 242, 236, 0.55);
  color: #FCF2EC;
}

/* Social strip */
.kk-social {
  margin-top: 32px;
  padding: 22px 28px;
  border-radius: 9999px;
  border: 1.5px solid rgba(69, 43, 29, 0.18);
  background: #FCF2EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.kk-social__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #8B776B;
}

.kk-social__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.kk-social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #452B1D;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.kk-social__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: #452B1D;
  transition: width 0.3s ease;
}

.kk-social__link:hover::after { width: 100%; }

/* ============================================================
   FORM SECTION
   ============================================================ */
.kk-form-section {
  padding: 80px 24px 96px;
  background: #F4EEE6;
}

.kk-form-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.kk-form-section__intro {
  position: sticky;
  top: 100px;
}

.kk-form-section__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kk-form-section__title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.18;
  margin-bottom: 18px;
}

.kk-form-section__desc {
  font-size: 15px;
  line-height: 1.78;
  color: #8B776B;
  max-width: 440px;
  margin-bottom: 28px;
}

.kk-form-section__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kk-form-section__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #452B1D;
}

.kk-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #452B1D;
  color: #FCF2EC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Form card */
.kk-form {
  background: #FCF2EC;
  border: 1.5px solid rgba(69, 43, 29, 0.18);
  border-radius: 24px;
  padding: 40px 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 22px;
  position: relative;
  box-shadow: 0 24px 48px -28px rgba(45, 37, 30, 0.25);
}

.kk-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.kk-form__field--full {
  grid-column: 1 / -1;
}

.kk-form__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B776B;
}

.kk-form__input {
  width: 100%;
  padding: 14px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: #452B1D;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(69, 43, 29, 0.22);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.kk-form__input::placeholder { color: rgba(69, 43, 29, 0.4); }

.kk-form__input:focus {
  border-bottom-color: #452B1D;
}

.kk-form__textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
  line-height: 1.6;
}

.kk-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23452B1D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}

.kk-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(69, 43, 29, 0.12);
}

.kk-form__note {
  font-size: 12px;
  color: #8B776B;
  max-width: 320px;
}

.kk-form__success {
  grid-column: 1 / -1;
  margin-top: -8px;
  padding: 14px 18px;
  background: rgba(69, 43, 29, 0.92);
  color: #FCF2EC;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-form__success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   QUICK FAQ
   ============================================================ */
.kk-faq {
  padding: 96px 24px 120px;
  background: #F4EEE6;
}

.kk-faq__inner {
  max-width: 880px;
  margin: 0 auto;
}

.kk-faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.kk-faq__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kk-faq__title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.22;
  margin-bottom: 14px;
}

.kk-faq__desc {
  font-size: 15px;
  color: #8B776B;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.kk-faq__list {
  display: flex;
  flex-direction: column;
}

.kk-faq__item {
  border-bottom: 1px solid rgba(69, 43, 29, 0.18);
}

.kk-faq__item:first-child {
  border-top: 1px solid rgba(69, 43, 29, 0.18);
}

.kk-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.kk-faq__question {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  color: #452B1D;
  line-height: 1.4;
  transition: transform 0.3s ease;
  display: block;
}

.kk-faq__trigger:hover .kk-faq__question { transform: translateX(8px); }

.kk-faq__icon {
  flex-shrink: 0;
  width: 52px;
  height: 32px;
  border-radius: 9999px;
  border: 1.5px solid #452B1D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #452B1D;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.kk-faq__trigger:hover .kk-faq__icon {
  background: #452B1D;
  color: #FCF2EC;
}

.kk-faq__icon svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease, stroke 0.3s ease;
}

.kk-faq__item.is-open .kk-faq__icon {
  background: #452B1D;
  color: #FCF2EC;
}

.kk-faq__item.is-open .kk-faq__icon svg {
  transform: rotate(45deg);
}

.kk-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-faq__answer {
  font-size: 15px;
  color: #8B776B;
  line-height: 1.78;
  padding-bottom: 26px;
  max-width: 720px;
}

/* ============================================================
   KONTAKT — RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .kk-hero {
    padding: calc(72px + clamp(52px, 6vw, 88px)) 22px clamp(112px, 16vh, 200px);
    padding: calc(72px + clamp(52px, 6vw, 88px)) 22px clamp(112px, 16svh, 200px);
    min-height: clamp(420px, 48vh, 640px);
    min-height: clamp(420px, 48svh, 640px);
  }

  .kk-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kk-form-section__intro {
    position: static;
  }

  .kk-form {
    padding: 32px 28px 28px;
  }
}

@media (max-width: 640px) {
  .kk-hero {
    padding: calc(72px + clamp(36px, 8vw, 52px)) 16px clamp(88px, 14vh, 160px);
    padding: calc(72px + clamp(36px, 8vw, 52px)) 16px clamp(88px, 14svh, 160px);
    min-height: clamp(360px, 44vh, 520px);
    min-height: clamp(360px, 44svh, 520px);
    text-align: center;
  }

  .kk-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .kk-hero__title {
    line-height: 1.12;
  }

  .kk-hero__desc {
    margin-bottom: 28px;
  }

  .kk-hero__ctas {
    width: auto;
    justify-content: center;
  }

  .kk-info {
    padding: 64px 16px 40px;
  }

  .kk-info__grid {
    grid-template-columns: 1fr;
  }

  .kk-card {
    padding: 22px 22px 20px;
  }

  .kk-card__arrow {
    top: 22px;
    right: 18px;
    opacity: 1;
    transform: translate(0, 0);
  }

  .kk-social {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    padding: 22px;
  }

  .kk-form-section {
    padding: 56px 16px 72px;
  }

  .kk-form-section__intro {
    text-align: center;
  }

  .kk-form-section__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .kk-form-section__checks {
    align-items: center;
  }

  .kk-form {
    grid-template-columns: 1fr;
    padding: 26px 22px 22px;
    border-radius: 20px;
  }

  .kk-form__footer {
    flex-direction: column;
    align-items: center;
  }

  .kk-faq {
    padding: 64px 16px 80px;
  }

  .kk-faq__trigger {
    padding: 22px 0;
  }

  .kk-faq__icon {
    width: 44px;
    height: 28px;
  }
}

/* ============================================================
   USLUGE PAGE  (scoped under .us-*)
   ============================================================ */

/* ---- Hero ---- */
.us-hero {
  position: relative;
  padding: calc(72px + 96px) 24px 120px;
  background: #F4EEE6;
  overflow: hidden;
  isolation: isolate;
}

.us-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(178, 146, 92, 0.18), transparent 70%),
    radial-gradient(closest-side at 85% 80%, rgba(99, 44, 17, 0.10), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.us-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.us-hero__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.us-hero__title {
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.us-hero__title-accent {
  color: #8B776B;
  font-style: italic;
  font-weight: 500;
}

.us-hero__desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #8B776B;
  line-height: 1.78;
  max-width: 620px;
  margin: 0 auto 36px;
}

.us-hero__ctas {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.us-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #452B1D;
  position: relative;
  padding: 4px 0;
  transition: gap 0.3s ease;
}

.us-hero__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: #452B1D;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.us-hero__link:hover { gap: 12px; }
.us-hero__link:hover::after { transform: scaleX(1); }

/* Stats row */
.us-hero__stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 36px;
  border-top: 1px solid rgba(69, 43, 29, 0.15);
}

.us-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.us-hero__stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #452B1D;
  line-height: 1;
  letter-spacing: -0.02em;
}

.us-hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #8B776B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 180px;
  line-height: 1.4;
}

/* Subtle scroll indicator */
.us-hero__scroll {
  display: block;
  margin: 80px auto 0;
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(69, 43, 29, 0.4);
  border-radius: 9999px;
  position: relative;
}

.us-hero__scroll-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #452B1D;
  animation: us-scroll-bob 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes us-scroll-bob {
  0%   { transform: translate(-50%, 0);  opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: 0; }
  61%  { transform: translate(-50%, 0);  opacity: 0; }
  100% { transform: translate(-50%, 0);  opacity: 1; }
}

/* ============================================================
   STACKING SERVICE CARDS
   ============================================================ */
.us-stack {
  background: #F4EEE6;
  padding: 0 24px 80px;
}

.us-stack__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Each card pins as the user scrolls — sticky stacking */
.us-card {
  position: sticky;
  top: 100px;
  margin-bottom: 36px;
  /* Each successive card sits a few px lower so the stacked stack peeks */
  margin-top: calc(var(--i, 0) * 18px);
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 50% 0%;
  /* Solid container so cards stacking on top fully cover those below */
  background: #FCF2EC;
  border: 1.5px solid rgba(69, 43, 29, 0.18);
  border-radius: 28px;
  box-shadow: 0 32px 64px -32px rgba(45, 37, 30, 0.32);
  overflow: hidden;
  padding: 22px;
}

/* Inner = the actual visible card (matches reference design) */
.us-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: transparent;
  align-items: stretch;
}

/* Alternate layout — image on the right */
.us-card--alt .us-card__inner {
  grid-template-columns: 1fr 1.05fr;
}

.us-card--alt .us-card__media {
  order: 2;
}

.us-card--alt .us-card__body {
  order: 1;
  padding: 32px 36px 32px 28px;
}

/* Media (image) side */
.us-card__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 460px;
  background: #2D251E;
}

.us-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.us-card:hover .us-card__media img {
  transform: scale(1.04);
}

/* Number badge sitting on image */
.us-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(252, 242, 236, 0.92);
  color: #452B1D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Body (text) side */
.us-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px 32px 36px;
  min-height: 460px;
}

.us-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.us-card__title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  color: #452B1D;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  max-width: 520px;
}

.us-card__title-soft {
  color: #8B776B;
  font-weight: 500;
}

.us-card__points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

.us-card__point-title {
  font-size: 16px;
  font-weight: 600;
  color: #452B1D;
  margin-bottom: 6px;
}

.us-card__point-text {
  font-size: 14px;
  font-weight: 400;
  color: #8B776B;
  line-height: 1.7;
  max-width: 460px;
}

.us-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #452B1D;
  padding: 12px 0;
  position: relative;
  transition: gap 0.3s ease;
}

.us-card__cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1.5px;
  background: #452B1D;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.us-card__cta:hover { gap: 14px; }
.us-card__cta:hover::after { transform: scaleX(1); }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.us-end {
  background: linear-gradient(135deg, #2D251E 0%, #4F3521 35%, #4F3521 70%, #2D251E 100%);
  padding: 110px 24px;
  text-align: center;
  color: #FCF2EC;
}

.us-end__inner {
  max-width: 720px;
  margin: 0 auto;
}

.us-end__label {
  font-size: 12px;
  font-weight: 600;
  color: #B2925C;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.us-end__title {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
}

.us-end__desc {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(252, 242, 236, 0.78);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ============================================================
   USLUGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .us-card__inner,
  .us-card--alt .us-card__inner {
    grid-template-columns: 1fr 1fr;
  }

  .us-card__body,
  .us-card--alt .us-card__body {
    padding: 28px 24px;
    min-height: 420px;
  }

  .us-card__media {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  /* Tablet range: drop to single column but keep cards in normal flow.
     The mobile breakpoint below re-enables sticky stacking for phones. */
  .us-card {
    position: relative;
    top: auto;
    margin-top: 0;
    margin-bottom: 28px;
  }

  .us-card__inner,
  .us-card--alt .us-card__inner {
    grid-template-columns: 1fr;
  }

  .us-card__media,
  .us-card--alt .us-card__media {
    order: 1;
    min-height: 280px;
  }

  .us-card__body,
  .us-card--alt .us-card__body {
    order: 2;
    padding: 28px 24px 28px;
    min-height: 0;
  }

  .us-card__title {
    margin-bottom: 24px;
  }

  .us-hero {
    padding: calc(72px + 64px) 22px 80px;
  }

  .us-hero__stats {
    margin-top: 56px;
  }
}

@media (max-width: 640px) {
  .us-hero {
    padding: calc(72px + 40px) 16px 64px;
  }

  .us-hero__title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .us-hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .us-hero__ctas .kk-cta {
    width: auto;
    align-self: center;
    padding: 12px 14px 12px 22px;
    justify-content: center;
  }

  .us-hero__stats {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .us-hero__stat {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .us-hero__stat-label {
    max-width: 220px;
    margin: 0 auto;
  }

  .us-hero__scroll {
    display: none;
  }

  /* ---- Mobile stacking card animation ----
     Reuse the same sticky-stack pattern as desktop, but tuned for
     small screens so titles and bodies still breathe. */
  .us-stack {
    padding: 0 14px 56px;
  }

  .us-stack__inner {
    padding-bottom: 24px;
  }

  /* On mobile each card must fully cover the previous one when it
     pins, so they all share the same sticky anchor and have no gap
     between them. The peek-offset trick used on desktop would leave
     leftover edges of the lower card visible. */
  .us-card {
    position: sticky;
    top: 88px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px;
    border-radius: 22px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Visual separation between cards is provided by the gap between
     each card and the one stacked above it, not by margin — so the
     gap only appears in normal flow, never under a pinned card. */
  .us-card + .us-card {
    margin-top: 24px;
  }

  .us-card__inner {
    /* Outer padding gives the rounded inner image room to breathe
       without inflating the card itself. */
    padding: 0;
    border-radius: 0;
  }

  .us-card__media,
  .us-card--alt .us-card__media {
    min-height: 220px;
    border-radius: 16px;
  }

  .us-card__badge {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .us-card__body,
  .us-card--alt .us-card__body {
    padding: 22px 14px 14px;
  }

  .us-card__title {
    margin-bottom: 22px;
  }

  .us-end {
    padding: 72px 22px;
  }
}


