/* 
  Picerija Familija - premium demo
  HTML/CSS/JS bez build koraka.
*/

:root {
  --bg: #050302;
  --bg-2: #100B08;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.70);
  --soft: rgba(255, 255, 255, 0.095);
  --line: rgba(255, 255, 255, 0.13);
  --red: #C81916;
  --red-2: #F0442E;
  --gold: #DFA64A;
  --cream: #F7EFE3;
  --cream-2: #E8D5BA;
  --dark-text: #1B120E;
  --shadow: 0 28px 90px rgba(0,0,0,.50);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(185, 19, 16, .18), transparent 25rem),
    radial-gradient(circle at 80% 30%, rgba(255, 180, 73, .08), transparent 28rem),
    #050302;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 1000;
  background-image:
    radial-gradient(rgba(255,255,255,.17) .8px, transparent .8px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-2);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  display: block;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .section-kicker::before {
  display: none;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: .018em;
}

h1 {
  font-size: clamp(78px, 11vw, 174px);
  line-height: .82;
  margin-bottom: 24px;
  text-transform: uppercase;
  max-width: 850px;
}

h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,.92);
  text-shadow: 0 0 32px rgba(215, 25, 25, .32);
}

h2 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .9;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.btn {
  --btn-bg: transparent;
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--red {
  --btn-bg: linear-gradient(135deg, #E13A25, #98100C);
  box-shadow: 0 16px 34px rgba(215, 25, 25, .36);
}

.btn--red:hover {
  box-shadow: 0 22px 46px rgba(215, 25, 25, .46);
}

.btn--ghost {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
}

.btn--ghost-light {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform .25s ease;
}

.text-link:hover svg {
  transform: translateX(6px);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(205, 23, 20, .18), transparent 24rem),
    #050302;
  transition: opacity .55s ease, visibility .55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader img {
  width: 170px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}

.preloader p {
  position: absolute;
  margin-top: 240px;
  color: rgba(255,255,255,.7);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 11px;
}

.preloader__ring {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255,255,255,.08);
  border-top-color: var(--red-2);
  border-radius: 50%;
  position: absolute;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  min-height: 92px;
  padding: 18px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: background .3s ease, border-color .3s ease, min-height .3s ease, padding .3s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 76px;
  background: rgba(5, 4, 3, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 155px;
}

.logo-link img {
  width: 115px;
  max-height: 68px;
  object-fit: contain;
}

.logo-link span {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  margin-inline: auto;
}

.desktop-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.78);
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--red-2);
  transition: width .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-phone {
  gap: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  white-space: nowrap;
}

.header-phone svg,
.social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}

.social:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.5);
  color: var(--red-2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle .close-icon {
  display: none;
}

.site-header.menu-open .menu-toggle .open-icon {
  display: none;
}

.site-header.menu-open .menu-toggle .close-icon {
  display: inline-block;
}

.mobile-panel {
  position: fixed;
  inset: 76px 16px auto 16px;
  z-index: 880;
  background: rgba(10, 8, 7, .95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 26px;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-panel nav {
  display: grid;
  gap: 6px;
}

.mobile-panel a {
  text-decoration: none;
}

.mobile-panel nav a {
  padding: 15px 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-main-call {
  width: 100%;
  margin-top: 24px;
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 125px;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  filter: contrast(1.14) saturate(1.04) brightness(.66);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,4,3,.98) 0%, rgba(5,4,3,.88) 30%, rgba(5,4,3,.28) 63%, rgba(5,4,3,.76) 100%),
    linear-gradient(0deg, rgba(5,4,3,.95) 0%, rgba(5,4,3,.1) 35%, rgba(5,4,3,.7) 100%);
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
}

.hero__glow--one {
  background: rgba(215, 25, 25, .8);
  right: 12%;
  top: 15%;
}

.hero__glow--two {
  background: rgba(244, 182, 66, .28);
  left: 8%;
  bottom: 0;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 50px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 24px;
}

.hero__eyebrow span {
  width: 46px;
  height: 2px;
  background: var(--red-2);
}

.hero__lead {
  font-size: clamp(18px, 1.45vw, 23px);
  max-width: 680px;
  color: rgba(255,255,255,.84);
  margin-bottom: 24px;
}

.hero__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 12px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

.hero__checks svg {
  width: 20px;
  height: 20px;
  fill: var(--red-2);
}

.hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  justify-self: end;
  width: min(100%, 310px);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 14, 12, .88), rgba(7, 6, 5, .76));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
}

.google-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 28px;
  color: #4285f4;
  background: #fff;
  margin-bottom: 14px;
}

.hero-card p {
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.hero-card strong {
  font-size: 74px;
  line-height: 1;
  display: block;
  letter-spacing: -.06em;
}

.stars,
.review-stars {
  display: flex;
  gap: 5px;
  color: var(--gold);
  margin: 10px 0 12px;
}

.stars svg,
.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-card span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(8, 7, 6, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}

.hero-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 26px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.hero-strip__item:last-child {
  border-right: 0;
}

.hero-strip__item svg {
  width: 32px;
  height: 32px;
  fill: var(--red-2);
  flex: 0 0 auto;
}

.hero-strip__item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-strip__item span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  margin-top: 4px;
}

/* Trust */
.trust-bar {
  position: relative;
  padding: 54px 0 76px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}

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

.trust-card {
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.trust-card svg {
  width: 44px;
  height: 44px;
  fill: var(--red-2);
  margin-bottom: 24px;
}

.trust-card h3 {
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.trust-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Story */
.story {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.story::before,
.story::after {
  content: "";
  position: absolute;
  left: -5%;
  width: 110%;
  height: 34px;
  background:
    linear-gradient(135deg, transparent 35%, var(--cream) 35% 65%, transparent 65%) 0 0 / 42px 34px repeat-x;
  pointer-events: none;
}

.story::before {
  top: -1px;
  transform: rotate(180deg);
}

.story::after {
  bottom: -1px;
}

.story p {
  color: rgba(21,17,15,.72);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.story-collage {
  position: relative;
  min-height: 620px;
}

.photo {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(50, 36, 20, .22);
  border: 10px solid rgba(255,255,255,.55);
  background: #fff;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo--large {
  position: absolute;
  inset: 0 110px 90px 0;
}

.photo--small {
  position: absolute;
  width: 285px;
  height: 250px;
}

.photo--one {
  right: 0;
  top: 62px;
  transform: rotate(3deg);
}

.photo--two {
  right: 55px;
  bottom: 0;
  transform: rotate(-4deg);
}

.story-copy .section-kicker {
  color: var(--red);
}

.story-copy h2 {
  color: var(--dark-text);
}

.story-copy h2::after {
  content: "Familija";
  display: block;
  font-family: "Caveat", cursive;
  color: var(--red);
  font-size: clamp(48px, 6vw, 76px);
  line-height: .8;
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 30px;
}

.story-stats div {
  padding: 22px 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,15,12,.1);
  border-radius: 22px;
}

.story-stats strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--red);
}

.story-stats span {
  color: rgba(21,17,15,.68);
  font-weight: 700;
  font-size: 13px;
}

/* Menu */
.menu {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(215,25,25,.22), transparent 24rem),
    radial-gradient(circle at 92% 20%, rgba(244,182,66,.1), transparent 24rem),
    var(--bg);
}

.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 34px;
}

.menu-tabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .11em;
  font-weight: 900;
  transition: .25s ease;
}

.menu-tabs button:hover,
.menu-tabs button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(215,25,25,.28);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #120D0A;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, opacity .25s ease;
}

.menu-card.is-hidden {
  display: none;
}

.menu-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transition: transform .55s ease;
}

.menu-card:hover img {
  transform: scale(1.07);
}

.menu-card__body {
  padding: 20px 20px 24px;
}

.menu-card__body span {
  display: inline-flex;
  color: var(--red-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 10px;
}

.menu-card h3 {
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 9px;
}

.menu-card p {
  font-size: 14px;
  line-height: 1.55;
  min-height: 66px;
  margin-bottom: 16px;
}

.menu-card strong {
  color: var(--red-2);
  font-size: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.menu-cta {
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-cta p {
  margin: 0;
}

/* Split */
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: #100B08;
  min-height: 660px;
}

.split-feature__image {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.split-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(18,13,11,.35));
}

.split-feature__content {
  padding: clamp(56px, 8vw, 118px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.split-feature__content p {
  font-size: 18px;
}

.mini-list {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.mini-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.mini-list svg {
  width: 20px;
  height: 20px;
  fill: var(--red-2);
}

/* Gallery */
.gallery {
  background:
    linear-gradient(180deg, #080604, #050302);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  gap: 16px;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #120D0A;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* Reviews */
.reviews {
  background:
    radial-gradient(circle at 8% 55%, rgba(215,25,25,.16), transparent 23rem),
    #070504;
}

.reviews-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.review-slider {
  position: relative;
  min-height: 360px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.review-slider::before {
  content: "4.9";
  position: absolute;
  right: 28px;
  top: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 190px;
  line-height: .7;
  color: rgba(255,255,255,.04);
}

.review-card {
  position: absolute;
  inset: 0;
  padding: clamp(34px, 5vw, 64px);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .35s ease, transform .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
}

.review-card p {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.18;
  color: #fff;
  max-width: 700px;
  margin-bottom: 28px;
  letter-spacing: -.04em;
}

.review-card strong {
  color: rgba(255,255,255,.66);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}

.slider-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: .25s ease;
}

.slider-controls button:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Order */
.order-section {
  padding: 0 0 112px;
  background: #070504;
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(36px, 6vw, 70px);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(160, 12, 12, .96), rgba(215, 25, 25, .86)),
    url("../img/pizza_close.webp") center/cover;
  background-blend-mode: multiply;
  box-shadow: 0 36px 90px rgba(147, 12, 12, .38);
}

.order-card .section-kicker {
  color: #fff;
}

.order-card h2 {
  margin-bottom: 10px;
}

.order-card p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}

.order-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.big-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: .02em;
  color: #fff;
}

.big-phone svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

/* Contact */
.contact {
  background: var(--cream);
  color: var(--dark-text);
  padding-bottom: 95px;
}

.contact p {
  color: rgba(21,17,15,.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: stretch;
}

.contact-info {
  padding: 46px;
  border-radius: 34px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(21,17,15,.1);
}

.contact-info .section-kicker {
  color: var(--red);
}

.contact-info h2 {
  color: var(--dark-text);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(21,17,15,.08);
  text-decoration: none;
  font-weight: 800;
  color: var(--dark-text);
  transition: transform .25s ease, background .25s ease;
}

.contact-list a:hover {
  transform: translateX(4px);
  background: #fff;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
  flex: 0 0 auto;
}

.map-card {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.78)),
    radial-gradient(circle at 35% 30%, rgba(215,25,25,.2), transparent 16rem),
    linear-gradient(90deg, rgba(21,17,15,.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21,17,15,.12) 1px, transparent 1px),
    #D8C7AD;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 26px 75px rgba(45, 30, 15, .18);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
}

.map-card__content {
  position: absolute;
  inset: auto 38px 38px auto;
  width: min(380px, calc(100% - 76px));
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.map-card__content img {
  width: 112px;
  margin-bottom: 12px;
}

.map-card__content h3 {
  margin-bottom: 8px;
  color: var(--dark-text);
}

.map-card__content p {
  margin-bottom: 18px;
}

/* Footer */
.site-footer {
  padding: 70px 0 24px;
  background: #050302;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr .7fr;
  gap: 34px;
  padding-bottom: 45px;
}

.footer-grid img {
  width: 132px;
  margin-bottom: 16px;
}

.footer-grid h4 {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.footer-grid a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.76);
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--red-2);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

/* Floating phone */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #E13A25, #8E0D09);
  box-shadow: 0 20px 44px rgba(215,25,25,.38);
  text-decoration: none;
  animation: pulse 2.4s ease-in-out infinite;
}

.floating-call svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@keyframes pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.04); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.88);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 94vw);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(0,0,0,.6);
}

.lightbox__close {
  position: fixed;
  right: 24px;
  top: 24px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.lightbox__close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.trust-card:nth-child(2),
.menu-card:nth-child(2),
.gallery-item:nth-child(2) { transition-delay: .08s; }
.trust-card:nth-child(3),
.menu-card:nth-child(3),
.gallery-item:nth-child(3) { transition-delay: .16s; }
.trust-card:nth-child(4),
.menu-card:nth-child(4),
.gallery-item:nth-child(4) { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1180px) {
  .header-actions .btn {
    display: none;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-card {
    justify-self: start;
    width: 280px;
  }

  .hero-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 40px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .site-header {
    min-height: 76px;
  }

  .logo-link img {
    width: 98px;
    max-height: 58px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero__bg {
    object-position: 62% center;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.72) 70%, rgba(5,4,3,.72) 100%),
      linear-gradient(0deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.18) 45%, rgba(5,4,3,.82) 100%);
  }

  .hero-strip,
  .trust-grid,
  .story-grid,
  .reviews-grid,
  .contact-grid,
  .footer-grid,
  .order-card {
    grid-template-columns: 1fr;
  }

  .hero-strip__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 16px;
  }

  .hero-strip__item:last-child {
    border-bottom: 0;
  }

  .story-collage {
    min-height: 540px;
  }

  .photo--large {
    inset: 0 70px 100px 0;
  }

  .photo--small {
    width: 250px;
    height: 220px;
  }

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

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature__image {
    min-height: 420px;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .order-actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  .logo-link span {
    display: none;
  }

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 54px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero__checks li {
    align-items: flex-start;
  }

  .hero__buttons,
  .menu-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__buttons .btn,
  .menu-cta .btn {
    width: 100%;
  }

  .hero-card {
    width: 100%;
  }

  .trust-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .story-collage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .photo,
  .photo--large,
  .photo--small,
  .photo--one,
  .photo--two {
    position: static;
    width: auto;
    height: 290px;
    transform: none;
    border-width: 7px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .split-feature__content {
    padding: 48px 20px;
  }

  .review-slider {
    min-height: 430px;
  }

  .order-card {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .big-phone {
    font-size: 40px;
  }

  .big-phone svg {
    width: 34px;
    height: 34px;
  }

  .contact-info {
    padding: 26px;
  }

  .map-card {
    min-height: 480px;
  }

  .map-card__content {
    inset: auto 18px 18px 18px;
    width: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* === Mobile hero polish patch === */
@media (max-width: 760px) {
  .site-header {
    padding: 14px 22px;
  }

  .logo-link img {
    width: 82px;
    max-height: 52px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.74) 62%, rgba(5,4,3,.86) 100%),
      linear-gradient(0deg, rgba(5,4,3,.98) 0%, rgba(5,4,3,.28) 44%, rgba(5,4,3,.84) 100%);
  }

  .hero__container {
    width: calc(100% - 46px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__eyebrow {
    font-size: 11px;
    letter-spacing: .2em;
    margin-bottom: 18px;
  }

  .hero__eyebrow span {
    width: 34px;
  }

  h1 {
    font-size: clamp(56px, 17vw, 76px);
    line-height: .88;
    letter-spacing: .01em;
    margin-bottom: 24px;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.65;
    max-width: 92%;
    margin-bottom: 24px;
  }

  .hero__checks {
    gap: 14px;
    margin-bottom: 30px;
    max-width: 94%;
  }

  .hero__checks li {
    font-size: 15px;
    line-height: 1.35;
    gap: 10px;
  }

  .hero__checks svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex: 0 0 auto;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    min-height: 58px;
  }

  .hero-card {
    width: 100%;
    margin-top: 4px;
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card strong {
    font-size: 62px;
  }

  .hero-strip {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: calc(100% - 46px);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 28px;
  }

  .hero-strip__item {
    padding: 18px 16px;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .hero-strip__item:last-child {
    border-bottom: 0;
  }

  .hero-strip__item svg {
    width: 28px;
    height: 28px;
  }

  .hero-strip__item strong {
    font-size: 12px;
    letter-spacing: .12em;
  }

  .hero-strip__item span {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 18px;
  }

  .hero__container,
  .hero-strip {
    width: calc(100% - 38px);
  }

  h1 {
    font-size: clamp(52px, 16.5vw, 66px);
  }

  .hero__lead,
  .hero__checks {
    max-width: 100%;
  }

  .hero-card {
    padding: 22px;
  }
}


/* === Mobile hero layout final fix === */
@media (max-width: 980px) {
  .hero {
    display: block !important;
    align-items: initial !important;
    min-height: auto !important;
    padding: 108px 0 44px !important;
  }

  .hero__container {
    width: min(100% - 42px, var(--container)) !important;
    display: block !important;
    margin-inline: auto !important;
  }

  .hero__copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero__eyebrow {
    margin-bottom: 18px !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(54px, 15vw, 76px) !important;
    line-height: .88 !important;
    margin-bottom: 22px !important;
    word-break: normal !important;
  }

  .hero__lead {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
  }

  .hero__checks {
    max-width: 100% !important;
    margin-bottom: 28px !important;
  }

  .hero__checks li {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .hero__buttons {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero__buttons .btn {
    width: 100% !important;
    min-height: 58px !important;
  }

  .hero-card {
    width: 100% !important;
    max-width: none !important;
    margin-top: 24px !important;
    padding: 24px !important;
    justify-self: auto !important;
  }

  .hero-card strong {
    font-size: 58px !important;
  }

  .hero-strip {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: min(100% - 42px, var(--container)) !important;
    margin: 24px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 10px !important;
    border-radius: 26px !important;
  }

  .hero-strip__item {
    width: 100% !important;
    padding: 17px 16px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
  }

  .hero-strip__item:last-child {
    border-bottom: 0 !important;
  }

  .hero-strip__item svg {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 18px !important;
  }

  .hero {
    padding-top: 104px !important;
  }

  .hero__container,
  .hero-strip {
    width: calc(100% - 36px) !important;
  }

  .hero h1 {
    font-size: clamp(50px, 14.8vw, 64px) !important;
    line-height: .9 !important;
  }

  .hero__lead {
    font-size: 16px !important;
  }

  .hero__eyebrow {
    font-size: 10px !important;
    letter-spacing: .18em !important;
  }

  .hero__checks li {
    font-size: 14.5px !important;
  }

  .hero-strip,
  .hero-card {
    border-radius: 24px !important;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 46px !important;
  }

  .hero__container,
  .hero-strip {
    width: calc(100% - 28px) !important;
  }
}


/* === Refined pizzeria palette patch ===
   Premium smer: peć/crna + espresso braon + paradajz crvena + zlatna kora + topli papir.
*/
body {
  background:
    radial-gradient(circle at 14% 7%, rgba(200, 25, 22, .16), transparent 25rem),
    radial-gradient(circle at 82% 28%, rgba(223, 166, 74, .085), transparent 28rem),
    var(--bg);
}

.btn--red,
.order-card,
.floating-call {
  background-image: linear-gradient(135deg, #E13A25 0%, #C81916 48%, #8E0D09 100%);
}

.btn--red {
  box-shadow: 0 16px 34px rgba(200, 25, 22, .34);
}

.btn--red:hover {
  box-shadow: 0 22px 46px rgba(200, 25, 22, .44);
}

.site-header.is-scrolled,
.site-header.menu-open,
.mobile-panel,
.hero-card,
.review-slider {
  background-color: rgba(8, 5, 4, .88);
}

.hero__media::after {
  background:
    linear-gradient(90deg, rgba(5,3,2,.98) 0%, rgba(5,3,2,.88) 30%, rgba(5,3,2,.27) 63%, rgba(5,3,2,.78) 100%),
    linear-gradient(0deg, rgba(5,3,2,.95) 0%, rgba(5,3,2,.1) 35%, rgba(5,3,2,.7) 100%);
}

.hero__glow--one {
  background: rgba(200, 25, 22, .74);
}

.hero__glow--two {
  background: rgba(223, 166, 74, .27);
}

.story,
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.story::before,
.story::after {
  background:
    linear-gradient(135deg, transparent 35%, var(--cream) 35% 65%, transparent 65%) 0 0 / 42px 34px repeat-x;
}

.trust-card,
.menu-card,
.mini-list div,
.contact-info {
  border-color: rgba(255,255,255,.11);
}

.menu {
  background:
    radial-gradient(circle at 10% 10%, rgba(200,25,22,.20), transparent 24rem),
    radial-gradient(circle at 92% 20%, rgba(223,166,74,.10), transparent 24rem),
    var(--bg);
}

.review-stars,
.stars {
  color: var(--gold);
}

.section-kicker,
.menu-card__body span,
.menu-card strong,
.cta p,
.hero__checks svg,
.trust-card svg,
.mini-list svg,
.contact-list svg {
  color: var(--red-2);
  fill: currentColor;
}

@media (max-width: 760px) {
  .hero__media {
    background: url("../img/hero-pizza.webp") center center / cover no-repeat;
  }

  .hero__bg {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: contrast(1.05) saturate(1.05) brightness(.92) !important;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(5,3,2,.88) 0%, rgba(5,3,2,.68) 58%, rgba(5,3,2,.84) 100%),
      linear-gradient(0deg, rgba(5,3,2,.92) 0%, rgba(5,3,2,.22) 45%, rgba(5,3,2,.78) 100%) !important;
  }
}