/* KVK Interijeri — Website UI Kit base styles. Imports the shared token layer. */
@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; }
::selection { background: var(--zlatna-200); color: var(--brand-crna); }

/* shared kit helpers */
/* horizontalni padding skalira s ekranom da na laptopu sekcije ne izgledaju zbijeno */
.kvk-wrap { max-width: 1660px; margin: 0 auto; padding: 0 clamp(28px, 8vw, 150px); }
@media (max-width: 1024px){ .kvk-wrap { padding: 0 clamp(24px, 6vw, 64px); } }
@media (max-width: 768px){ .kvk-wrap { padding: 0 22px; } }

.kvk-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: .20em;
  text-transform: uppercase; color: var(--text-accent); }

body.kvk-hide-eyebrow .kvk-eyebrow { display: none !important; }
body.kvk-hide-rule .kvk-rule { display: none !important; }
.kvk-card { border-radius: var(--kvk-card-radius, 0); overflow: hidden; }
.kvk-face { border-radius: var(--kvk-card-radius, 0); overflow: hidden; }

/* fade-in on mount — transform-only so content is never left invisible if the
   animation clock is throttled/frozen (opacity fades can stick at 0). */
@keyframes kvkFade { from { transform: translateY(10px); } to { transform: none; } }
.kvk-fade { animation: kvkFade .5s var(--ease) both; }

/* hero staged reveal handled in React (opacity state + transitions). */

/* formatted project copy from admin */
.kvk-project-rich {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.kvk-project-rich p,
.kvk-project-rich div { margin: 0 0 12px; }
.kvk-project-rich b,
.kvk-project-rich strong { font-weight: 600; color: var(--text-primary); }
.kvk-project-rich i,
.kvk-project-rich em { color: var(--text-primary); }
.kvk-project-rich a { color: var(--text-accent); text-decoration: underline; text-underline-offset: 3px; }
.kvk-project-rich ul,
.kvk-project-rich ol { margin: 12px 0 0; padding-left: 22px; }
.kvk-project-rich li { margin: 6px 0; }

/* Flat image gallery */
.kvk-gallery-hero {
  background: var(--bez-50);
  border-bottom: 1px solid var(--border-subtle);
}
.kvk-gallery-hero-inner {
  padding-top: 140px;
  padding-bottom: 56px;
  text-align: center;
}
.kvk-gallery-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin: 12px 0 0;
  color: var(--text-primary);
}
.kvk-gallery-lead {
  font-weight: 300;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 18px auto 0;
}
.kvk-gallery-filterbar {
  position: sticky;
  top: 72px;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.kvk-gallery-filters {
  display: flex;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.kvk-gallery-filter {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-secondary);
}
.kvk-gallery-filter.is-active {
  border-color: var(--brand-crna);
  background: var(--brand-crna);
  color: var(--brand-bijela);
}
.kvk-kitchen-video {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  background: var(--bez-50);
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}
@media (max-width: 880px) {
  .kvk-kitchen-video { height: 360px; }
}
@media (max-width: 560px) {
  .kvk-kitchen-video { height: 260px; }
}
.kvk-about-story-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}
.kvk-about-story-copy {
  min-width: 0;
}
.kvk-about-story-video {
  display: flex;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: var(--bez-50);
}
.kvk-about-story-video-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  background: var(--bez-50);
}
.kvk-about-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #F2EDE2;
}
.kvk-about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.kvk-about-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  background: linear-gradient(90deg, #F2EDE2 0%, #F2EDE2 26%, rgba(242,237,226,.82) 40%, rgba(242,237,226,.35) 56%, rgba(242,237,226,0) 72%);
}
.kvk-about-hero-overlay.is-visible {
  opacity: 1;
}
.kvk-about-hero-inner {
  position: relative;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 80px;
}
.kvk-about-hero-content {
  max-width: 620px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease) .25s, transform .9s var(--ease) .25s;
}
.kvk-about-hero-content.is-visible {
  opacity: 1;
  transform: none;
}
.kvk-about-eyebrow,
.kvk-about-eyebrow-lg {
  margin-bottom: 16px;
}
.kvk-about-eyebrow-lg {
  margin-bottom: 18px;
}
.kvk-about-hero-title,
.kvk-about-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-primary);
}
.kvk-about-hero-title {
  font-size: clamp(36px,5vw,64px);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0;
}
.kvk-about-hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 26px 0 32px;
  max-width: 520px;
}
.kvk-about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.kvk-about-section-title {
  font-size: clamp(28px,3.4vw,42px);
  line-height: 1.18;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}
.kvk-about-section-title.is-closing {
  margin-bottom: 22px;
}
.kvk-about-text {
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.kvk-about-text.is-last {
  margin-bottom: 0;
}
.kvk-about-text.is-cta {
  margin-bottom: 28px;
}
.kvk-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 56px;
}
.kvk-about-value-card {
  background: var(--brand-bijela);
  border: 0.5px solid var(--brand-zlatna);
  box-shadow: var(--shadow-sm);
  padding: 32px 26px;
}
.kvk-about-value-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--text-accent);
  margin: 20px 0 10px;
}
.kvk-about-value-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.kvk-about-closing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.kvk-about-closing-media {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}
.kvk-about-closing-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.kvk-materials-accordion {
  margin-top: 8px;
}
.kvk-materials-item {
  border-bottom: 1px solid var(--border-default);
}
.kvk-materials-button {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}
.kvk-materials-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.kvk-materials-number {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brand-zlatna);
  flex: none;
}
.kvk-materials-title {
  font-family: var(--font-display);
  font-size: clamp(22px,2.4vw,28px);
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.kvk-materials-toggle {
  transform: none;
  transition: transform var(--dur-fast);
  flex: none;
}
.kvk-materials-toggle.is-open {
  transform: rotate(45deg);
}
.kvk-materials-panel {
  padding-left: 34px;
  padding-bottom: 30px;
  max-width: 760px;
}
.kvk-materials-text,
.kvk-service-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 14px 0 0;
}
.kvk-materials-text.is-first,
.kvk-service-text.is-first {
  margin-top: 0;
}
.kvk-materials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}
.kvk-materials-link {
  font-size: 14px;
  color: var(--text-accent);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.kvk-service-media-frame {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}
.kvk-service-thumbs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 10px;
}
.kvk-service-thumb {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.kvk-service-thumb:hover,
.kvk-service-thumb:focus-visible {
  transform: scale(1.03);
}
.kvk-service-eyebrow {
  margin-bottom: 14px;
}
.kvk-service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px,3.2vw,40px);
  line-height: 1.18;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--text-primary);
}
.kvk-service-rule {
  margin: 22px 0;
}
.kvk-service-list-wrap {
  margin-top: 22px;
}
.kvk-service-list-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 12px;
}
.kvk-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.kvk-service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
}
.kvk-service-list-icon {
  margin-top: 3px;
  flex: 0 0 auto;
}
.kvk-service-list-label {
  font-weight: 500;
}
.kvk-service-list-desc {
  color: var(--text-secondary);
  font-weight: 300;
}
.kvk-service-actions,
.kvk-services-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.kvk-service-actions {
  margin-top: 28px;
}
.kvk-services-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #F2EDE2;
}
.kvk-services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.kvk-services-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  background: linear-gradient(90deg, #F2EDE2 0%, #F2EDE2 26%, rgba(242,237,226,.82) 40%, rgba(242,237,226,.35) 56%, rgba(242,237,226,0) 72%);
}
.kvk-services-hero-overlay.is-visible {
  opacity: 1;
}
.kvk-services-hero-inner {
  position: relative;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 80px;
}
.kvk-services-hero-content {
  max-width: 640px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease) .25s, transform .9s var(--ease) .25s;
}
.kvk-services-hero-content.is-visible {
  opacity: 1;
  transform: none;
}
.kvk-services-hero-eyebrow {
  margin-bottom: 18px;
}
.kvk-services-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px,4.6vw,60px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 0;
  color: var(--text-primary);
}
.kvk-services-hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 26px 0 32px;
  max-width: 500px;
}
.kvk-services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.kvk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
  align-items: start;
}
.kvk-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border-subtle);
  background: var(--bez-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: left;
  cursor: zoom-in;
  transition: box-shadow var(--dur-normal) var(--ease);
}
.kvk-gallery-item:hover,
.kvk-gallery-item:focus-visible {
  box-shadow: var(--shadow-lg);
}
.kvk-gallery-item-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  background: var(--bez-100);
  overflow: hidden;
}
.kvk-gallery-lightbox-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: min(62vh, 620px);
  max-height: 82vh;
  overflow: hidden;
}
@keyframes kvkGallerySkeleton {
  from { background-position: -180% 0; }
  to { background-position: 180% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .kvk-gallery-media-skeleton { animation: none !important; }
}
.kvk-gallery-media-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, var(--bez-100) 28%, var(--bez-50) 48%, var(--bez-100) 68%);
  background-size: 220% 100%;
  animation: kvkGallerySkeleton 1.2s ease-in-out infinite;
  opacity: 1;
  transition: opacity var(--dur-normal) var(--ease);
  pointer-events: none;
}
.kvk-gallery-lightbox-media .kvk-gallery-media-skeleton {
  background: linear-gradient(100deg, rgba(242,237,226,.08) 28%, rgba(242,237,226,.18) 48%, rgba(242,237,226,.08) 68%);
  background-size: 220% 100%;
}
.kvk-gallery-item-media.is-loaded .kvk-gallery-media-skeleton,
.kvk-gallery-lightbox-media.is-loaded .kvk-gallery-media-skeleton {
  opacity: 0;
}
.kvk-gallery-item-img,
.kvk-gallery-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kvk-gallery-item-img {
  display: block;
  opacity: 1;
  transition: opacity var(--dur-normal) var(--ease), transform var(--dur-slow) var(--ease);
}
.kvk-gallery-item-media.is-loading .kvk-gallery-item-img,
.kvk-gallery-lightbox-media.is-loading .kvk-gallery-lightbox-img {
  opacity: 0;
}
.kvk-gallery-item-media.is-loaded .kvk-gallery-item-img,
.kvk-gallery-lightbox-media.is-loaded .kvk-gallery-lightbox-img {
  opacity: 1;
}
.kvk-gallery-item:hover .kvk-gallery-item-img,
.kvk-gallery-item:focus-visible .kvk-gallery-item-img {
  transform: scale(1.04);
}
.kvk-gallery-video-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  background: rgba(17,17,17,.68);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}
.kvk-focal-center { object-position: center center; }
.kvk-focal-top { object-position: center top; }
.kvk-focal-bottom { object-position: center bottom; }
.kvk-focal-left { object-position: left center; }
.kvk-focal-right { object-position: right center; }
.kvk-gallery-item-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  background: linear-gradient(to top, rgba(17,17,17,.72) 0%, rgba(17,17,17,0) 62%);
  transition: opacity var(--dur-normal) var(--ease);
  pointer-events: none;
}
.kvk-gallery-item:hover .kvk-gallery-item-caption,
.kvk-gallery-item:focus-visible .kvk-gallery-item-caption {
  opacity: 1;
}
.kvk-gallery-item-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
}
.kvk-gallery-item-desc {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--bez-200);
}
.kvk-gallery-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  margin: 0;
}
.kvk-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(17,17,17,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.kvk-gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.kvk-gallery-lightbox-figure {
  margin: 0;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kvk-gallery-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  opacity: 1;
  transition: opacity var(--dur-normal) var(--ease);
}
.kvk-gallery-lightbox-caption {
  text-align: center;
  margin-top: 18px;
  max-width: 760px;
}
.kvk-gallery-lightbox-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
}
.kvk-gallery-lightbox-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bez-200);
  margin-top: 8px;
}

/* Legal pages, cookie consent and third-party embed gates */
.kvk-legal-hero {
  background: var(--bez-50);
  border-bottom: 1px solid var(--border-subtle);
}
.kvk-legal-hero-inner {
  padding-top: 150px;
  padding-bottom: 74px;
  max-width: 1060px;
}
.kvk-legal-eyebrow {
  margin-bottom: 16px;
}
.kvk-legal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -.04em;
  color: var(--text-primary);
  margin: 0;
}
.kvk-legal-lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}
.kvk-legal-updated {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}
.kvk-legal-actions,
.kvk-map-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.kvk-legal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
}
.kvk-legal-button.is-primary {
  border-color: var(--brand-crna);
  background: var(--brand-crna);
  color: var(--brand-bijela);
}
.kvk-legal-body {
  padding: 78px 0 98px;
  background: var(--brand-bijela);
}
.kvk-legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 860px);
  gap: 58px;
  align-items: start;
}
.kvk-legal-note {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  background: var(--bez-50);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.kvk-legal-note strong {
  color: var(--text-primary);
  font-size: 16px;
}
.kvk-legal-note a {
  color: var(--text-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.kvk-legal-content {
  min-width: 0;
}
.kvk-legal-section {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--border-subtle);
}
.kvk-legal-section h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.kvk-legal-section p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-secondary);
  font-weight: 300;
}
.kvk-legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 42px;
  border: 1px solid var(--border-subtle);
}
.kvk-legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--brand-bijela);
}
.kvk-legal-table th,
.kvk-legal-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}
.kvk-legal-table th {
  background: var(--bez-50);
  color: var(--text-primary);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kvk-footer-cookie-btn {
  padding: 0;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
}
.kvk-consent {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 520;
  width: min(620px, calc(100vw - 36px));
}
.kvk-consent-panel {
  border: 1px solid var(--border-default);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-xl);
  padding: 22px;
}
.kvk-consent-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 29px;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.kvk-consent-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.kvk-consent-settings {
  margin-top: 18px;
  border-top: 1px solid var(--border-subtle);
}
.kvk-consent-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}
.kvk-consent-toggle strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.kvk-consent-toggle small {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.kvk-consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kvk-consent-switch {
  position: relative;
  width: 46px;
  height: 26px;
  border: 1px solid var(--border-default);
  background: var(--bez-100);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.kvk-consent-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: var(--text-muted);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.kvk-consent-toggle input:checked + .kvk-consent-switch {
  border-color: var(--brand-zlatna);
  background: var(--zlatna-50);
}
.kvk-consent-toggle input:checked + .kvk-consent-switch::after {
  transform: translateX(20px);
  background: var(--brand-zlatna);
}
.kvk-consent-toggle.is-disabled {
  cursor: default;
}
.kvk-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.kvk-consent-btn {
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.kvk-consent-btn.is-primary {
  border-color: var(--brand-crna);
  background: var(--brand-crna);
  color: var(--brand-bijela);
}
.kvk-map-frame {
  display: block;
  margin-top: 28px;
  border: 1px solid var(--border-subtle);
  height: 230px;
  position: relative;
  overflow: hidden;
}
.kvk-map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  filter: grayscale(.2);
}
.kvk-map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,.92);
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kvk-map-consent {
  margin-top: 28px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--border-subtle);
  background: var(--bez-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kvk-map-consent h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.kvk-map-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.kvk-contact-privacy {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.kvk-contact-privacy a {
  color: var(--text-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .kvk-home-hero {
    height: 100svh !important;
    min-height: 780px;
  }

  .kvk-light-hero-overlay,
  .kvk-home-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(242,237,226,.97) 0%,
      rgba(242,237,226,.94) 46%,
      rgba(242,237,226,.88) 68%,
      rgba(242,237,226,.74) 82%,
      rgba(242,237,226,.28) 100%
    ) !important;
  }

  .kvk-home-hero-content {
    padding-top: 102px !important;
    padding-bottom: 84px !important;
  }

  .kvk-home-hero-logo {
    height: 76px !important;
    margin-bottom: 22px !important;
  }

  .kvk-kitchen-video {
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: contain !important;
    background: var(--brand-bijela);
  }

  .kvk-fab-bar {
    right: 14px !important;
    bottom: 14px !important;
    gap: 8px !important;
  }

  .kvk-fab-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .kvk-trust-item {
    width: min(100%, 320px);
    padding: 22px 18px !important;
  }

  .kvk-trust-number {
    order: 2;
    margin: 8px 0 !important;
  }

  .kvk-trust-small {
    order: 1;
    margin-bottom: 6px;
  }

  .kvk-trust-caption {
    order: 3;
    line-height: 1.45;
  }

  .kvk-testimonials-carousel {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .kvk-gallery-hero-inner {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .kvk-about-story-split {
    align-items: start;
  }

  .kvk-about-story-video-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .kvk-gallery-item-media {
    height: auto;
  }

  .kvk-gallery-grid {
    gap: 12px;
  }

  .kvk-gallery-lightbox {
    padding: 18px;
  }

  .kvk-gallery-lightbox-close {
    top: 12px;
    right: 14px;
  }

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

  .kvk-legal-note {
    position: static;
  }

  .kvk-consent {
    inset: auto 10px 10px 10px;
    width: auto;
  }

  .kvk-consent-actions {
    justify-content: stretch;
  }

  .kvk-consent-btn,
  .kvk-legal-button {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .kvk-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .kvk-gallery-item-media {
    aspect-ratio: 4 / 3;
  }

  .kvk-gallery-video-badge {
    right: 6px;
    bottom: 6px;
    padding: 4px 6px;
    font-size: 9px;
    letter-spacing: .08em;
  }
}
