/* ===========================================================
   M&A rođendaonica — landing page
   Palette (variant 1a — vesela & razigrana)
   =========================================================== */
:root {
  --cream: #fdf1e2;
  --purple: #5e2b8f;
  --purple-dark: #4a2270;
  --magenta: #e6118c;
  --blue: #2ca7e0;
  --yellow: #ffc61a;
  --green: #25d366;
  --ink: #3a1d52;
  --ink-2: #4a2e5c;
  --muted: #6b4a7e;
  --muted-2: #8a6a9c;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- keyframes ---------- */
@keyframes ma-float     { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(6deg); } }
@keyframes ma-floatslow { 0%,100% { transform: translateY(0); }              50% { transform: translateY(-22px); } }
@keyframes ma-spin      { to { transform: rotate(360deg); } }
@keyframes ma-pop       { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* Sakrij hero dok GSAP ne pokrene uvodnu animaciju (sprječava bljesak).
   GSAP vraća vidljivost; bez JS-a / reduce-motion hero ostaje vidljiv. */
.has-js .hero { visibility: hidden; }
@media (prefers-reduced-motion: reduce) {
  .has-js .hero { visibility: visible; }
}

/* ---------- quick contact rail (fixed, right) ---------- */
@keyframes qc-wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }
@keyframes qc-ring   { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

.quick-contact {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.qc-btn {
  position: relative; display: flex; align-items: center; color: #fff;
  border-radius: 999px 0 0 999px; overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, filter .2s ease;
}
.qc-ico {
  flex: 0 0 auto; width: 56px; height: 56px;
  display: grid; place-items: center; font-size: 22px;
}
.qc-ico svg { width: 28px; height: 28px; }
.qc-label {
  white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 16px;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .35s cubic-bezier(.34,1.56,.64,1), opacity .25s ease, padding .35s ease;
}
/* telefon: label uvijek vidljiv */
.qc-phone { background: var(--blue); box-shadow: 0 8px 22px rgba(44,167,224,.45); }
.qc-phone .qc-label { max-width: 200px; opacity: 1; padding-left: 20px; }
.qc-mail  { background: var(--magenta); box-shadow: 0 8px 22px rgba(230,17,140,.45); }
.qc-wa    { background: var(--green);   box-shadow: 0 8px 22px rgba(37,211,102,.45); }

/* hover: pomak ulijevo, poskok, otkrij label, wiggle ikone */
.qc-btn:hover { transform: translateX(-6px) scale(1.05); box-shadow: 0 12px 30px rgba(0,0,0,.32); filter: brightness(1.05); }
.qc-btn:hover .qc-label { max-width: 200px; opacity: 1; padding-left: 20px; }
.qc-btn:hover .qc-ico { animation: qc-wiggle .5s ease; }
.qc-btn:active { transform: translateX(-2px) scale(.97); }

/* pulsirajući prsten oko WhatsAppa — privlači pažnju */
.qc-wa::before {
  content: ''; position: absolute; right: 14px; top: 50%; width: 44px; height: 44px;
  margin-top: -22px; border-radius: 50%; background: var(--green); z-index: -1;
  animation: qc-ring 2s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .qc-wa::before { animation: none; display: none; }
  .qc-btn, .qc-label { transition: none; }
}

/* ---------- promo bar ---------- */
.promo {
  background: var(--magenta); color: #fff; text-align: center; padding: 11px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .3px;
}

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw; position: sticky; top: 0; z-index: 20;
  background: var(--cream); box-shadow: 0 4px 20px rgba(94,43,143,.06);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.brand span {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--purple);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 800; color: var(--purple); }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 3px; width: 0;
  background: var(--magenta); border-radius: 3px; transition: width .2s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--blue); color: #fff; padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(44,167,224,.4);
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 30px; color: var(--purple); line-height: 1; padding: 4px 8px;
}

/* ---------- generic section helpers ---------- */
.section { padding: 70px 6vw; }
.section-title {
  font-family: var(--font-display); font-size: 42px; text-align: center;
  margin: 0 0 6px; color: var(--purple);
}
.section-sub {
  text-align: center; color: var(--muted-2); font-weight: 600; margin: 0 0 44px; font-size: 17px;
}
.inner { max-width: var(--maxw); margin: 0 auto; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 44px 6vw 70px; overflow: hidden; }
.hero .deco { position: absolute; }
.deco.d1 { top: 24px;  left: 3vw;   font-size: 26px; color: var(--purple); animation: ma-float 5s ease-in-out infinite; }
.deco.d2 { top: 140px; left: 1vw;   font-size: 30px; color: var(--blue);   animation: ma-floatslow 7s ease-in-out infinite; }
.deco.d3 { top: 44px;  right: 46%;  font-size: 22px; color: var(--yellow); animation: ma-float 6s ease-in-out infinite; }
.hero-grid {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 58px; line-height: 1;
  margin: 0 0 18px; color: var(--purple); text-shadow: 2px 2px 0 #fff;
}
.hero h1 .accent { color: var(--magenta); }
.hero p {
  font-size: 19px; line-height: 1.6; color: var(--muted); font-weight: 600;
  margin: 0 0 26px; max-width: 470px;
}
.price-badge {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: var(--magenta); color: #fff; padding: 16px 30px;
  border-radius: 38px 44px 40px 46px; transform: rotate(-2deg);
  box-shadow: 0 14px 30px rgba(230,17,140,.35); margin-bottom: 26px;
}
.price-badge .label { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 1px; }
.price-badge .amount { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-weight: 800; font-size: 17px; padding: 16px 30px; border-radius: 999px;
  display: inline-block; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 12px 26px rgba(94,43,143,.4); }
.btn-ghost { background: #fff; color: var(--purple); border: 2px solid #f0d9c6; }
.hero-photo { position: relative; }
.hero-photo .ring {
  position: absolute; inset: -16px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--yellow), var(--magenta), var(--blue), var(--purple), var(--yellow));
  filter: blur(3px); opacity: .6; animation: ma-spin 20s linear infinite;
}
.hero-photo img { position: relative; width: 100%; border-radius: 50%; box-shadow: 0 24px 50px rgba(0,0,0,.2); }
.hero-photo .stamp {
  position: absolute; bottom: -8px; right: -8px; background: var(--yellow); color: var(--purple);
  font-family: var(--font-display); font-weight: 800; font-size: 15px; padding: 12px 16px;
  border-radius: 50%; width: 88px; height: 88px; display: grid; place-items: center;
  text-align: center; line-height: 1.1; box-shadow: 0 10px 22px rgba(0,0,0,.2);
  animation: ma-pop 3s ease-in-out infinite;
}

/* ---------- o nama ---------- */
.onama { padding: 64px 6vw; background: #fff; }
.onama .inner { max-width: 1000px; text-align: center; }
.pill {
  display: inline-block; background: #ffe9f6; color: var(--magenta);
  font-weight: 800; padding: 7px 18px; border-radius: 999px; font-size: 14px; margin-bottom: 18px;
}
.onama h2 { font-family: var(--font-display); font-size: 40px; margin: 0 0 18px; color: var(--purple); }
.onama p  { font-size: 19px; line-height: 1.7; color: var(--muted); margin: 0; font-weight: 500; }

/* ---------- includes strip ---------- */
.includes { background: var(--purple); color: #fff; padding: 48px 6vw; }
.includes h2 { font-family: var(--font-display); font-size: 28px; text-align: center; margin: 0 0 30px; }
.includes-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.include { text-align: center; }
.include .ic {
  width: 66px; height: 66px; border-radius: 20px; margin: 0 auto 12px;
  display: grid; place-items: center; font-size: 30px;
}
.include .txt { font-weight: 800; font-size: 14px; line-height: 1.25; }
.bg-magenta { background: var(--magenta); }
.bg-blue    { background: var(--blue); }
.bg-yellow  { background: var(--yellow); }
.bg-purple  { background: var(--purple); }

/* ---------- ponuda ---------- */
.ponuda { padding: 70px 6vw; background: var(--cream); }
.ponuda-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr .9fr; gap: 26px; align-items: stretch;
}
.pkg {
  position: relative; background: #fff; border-radius: 28px; padding: 40px;
  border: 3px solid #ffd9ee; box-shadow: 0 24px 60px rgba(94,43,143,.1);
}
.pkg .tag {
  position: absolute; top: 26px; right: 26px; background: var(--yellow); color: var(--purple);
  font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 999px;
}
.pkg .kicker {
  font-family: var(--font-display); font-size: 15px; letter-spacing: 1px;
  color: var(--magenta); font-weight: 600; padding-right: 96px;
}
.pkg .price { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 1; color: var(--purple); margin: 6px 0 4px; }
.pkg .price-note { color: var(--muted-2); font-weight: 700; margin-bottom: 24px; }
.feature-list { display: grid; gap: 13px; }
.feature { display: flex; gap: 12px; align-items: flex-start; }
.feature .check { color: var(--magenta); font-weight: 800; }
.feature span:last-child { font-weight: 600; color: var(--ink-2); }
.pkg .btn-book {
  display: block; text-align: center; margin-top: 28px; background: var(--magenta); color: #fff;
  font-weight: 800; font-size: 17px; padding: 16px; border-radius: 999px;
  box-shadow: 0 12px 26px rgba(230,17,140,.3); transition: transform .15s ease;
}
.pkg .btn-book:hover { transform: translateY(-2px); }
.addons { background: var(--purple); color: #fff; border-radius: 28px; padding: 36px; }
.addons h3 { font-family: var(--font-display); font-size: 24px; margin: 0 0 6px; }
.addons .sub { color: #d8c3ec; font-size: 14px; margin: 0 0 24px; }
.addon-list { display: grid; gap: 14px; }
.addon {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.08); border-radius: 14px; padding: 14px 18px;
}
.addon .name { font-weight: 700; }
.addon .val { color: var(--yellow); font-weight: 800; }
.addons .fine { margin: 24px 0 0; font-size: 13px; color: #d8c3ec; line-height: 1.5; }

/* ---------- teme ---------- */
.teme { padding: 70px 6vw; background: #fff; }
.teme-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tema {
  background: var(--cream); border-radius: 22px; padding: 28px; border: 3px solid #ffd9ee;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tema:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(94,43,143,.12); }
.tema.b-yellow { border-color: #fff0c2; }
.tema.b-blue   { border-color: #cfeafb; }
.tema.b-purple { border-color: #e2d2f2; }
.tema .ic { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 16px; display: grid; place-items: center; font-size: 26px; }
.tema h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; color: var(--purple); }
.tema p  { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; font-weight: 600; }

/* ---------- galerija ---------- */
.galerija { padding: 70px 6vw; background: var(--cream); }
/* overlapping foto collage — rotirane polaroid kartice koje se preklapaju */
.collage {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  padding: 34px 10px;
}
.gcell {
  --r: 0deg;
  flex: 0 0 auto; width: clamp(140px, 20vw, 208px);
  margin: -16px; padding: 0; border: none; cursor: pointer;
  background: #fff; border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  transform: rotate(var(--r));
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  overflow: hidden;
}
.gcell img {
  display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 6px solid #fff; border-radius: 10px; box-sizing: border-box;
}
/* rotacije + slojevi za organski, razbacan izgled */
.gcell:nth-child(1)  { --r: -7deg; z-index: 1; }
.gcell:nth-child(2)  { --r:  4deg; z-index: 3; }
.gcell:nth-child(3)  { --r: -3deg; z-index: 2; }
.gcell:nth-child(4)  { --r:  6deg; z-index: 4; }
.gcell:nth-child(5)  { --r: -5deg; z-index: 2; }
.gcell:nth-child(6)  { --r:  3deg; z-index: 5; }
.gcell:nth-child(7)  { --r: -6deg; z-index: 3; }
.gcell:nth-child(8)  { --r:  5deg; z-index: 4; }
.gcell:nth-child(9)  { --r: -4deg; z-index: 2; }
.gcell:nth-child(10) { --r:  7deg; z-index: 3; }
.gcell:hover, .gcell:focus-visible {
  transform: rotate(0deg) scale(1.14); z-index: 20; outline: none;
  box-shadow: 0 24px 48px rgba(0,0,0,.34);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(35,12,50,.93); padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img.lb-img {
  max-width: 90vw; max-height: 88vh; border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: lb-pop .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lb-pop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.14); color: #fff; border: none;
  cursor: pointer; display: grid; place-items: center; border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.lightbox button:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
.lb-close { top: 3vh; right: 4vw; width: 52px; height: 52px; font-size: 26px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 34px; line-height: 1; }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.1); }
.lb-count {
  position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  background: rgba(255,255,255,.14); padding: 6px 16px; border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
  .lightbox img.lb-img { animation: none; }
  .gcell, .gcell img { transition: none; }
}
.cake-banner {
  max-width: 1150px; margin: 34px auto 0; background: #fff; border-radius: 22px; padding: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 3px solid #ffd9ee;
}
.cake-banner h3 { font-family: var(--font-display); font-size: 26px; margin: 0 0 6px; color: var(--purple); }
.cake-banner p  { margin: 0; color: var(--muted); font-weight: 600; font-size: 16px; max-width: 560px; }
.cake-banner a {
  background: var(--magenta); color: #fff; font-weight: 800; padding: 14px 26px;
  border-radius: 999px; white-space: nowrap; transition: transform .15s ease;
}
.cake-banner a:hover { transform: translateY(-2px); }

/* ---------- kontakt ---------- */
.kontakt { padding: 70px 6vw; background: var(--purple); color: #fff; }
.kontakt-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.kontakt h2 { font-family: var(--font-display); font-size: 40px; margin: 0 0 14px; }
.kontakt .lead { font-size: 17px; line-height: 1.6; opacity: .92; margin: 0 0 26px; }
.contact-lines { display: flex; flex-direction: column; gap: 14px; font-size: 17px; font-weight: 700; }
.contact-lines a, .contact-lines > div { display: flex; align-items: center; gap: 12px; }
.contact-lines .badge { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.2); display: grid; place-items: center; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { padding: 10px 18px; border-radius: 999px; transition: transform .15s ease; }
.socials a:hover { transform: translateY(-2px); }
.social-ig { background: var(--magenta); }
.social-fb { background: var(--blue); }
.form-card { background: #fff; border-radius: 22px; padding: 28px; color: var(--ink); }
.form-card .fields { display: grid; gap: 14px; }
.form-card input, .form-card textarea {
  padding: 14px 16px; border-radius: 12px; border: 2px solid #eceef4;
  font-size: 15px; font-family: inherit; width: 100%;
}
.form-card textarea { resize: none; }
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--magenta); }
.form-card button {
  background: var(--magenta); color: #fff; font-weight: 800; font-size: 17px;
  padding: 15px; border: none; border-radius: 12px; cursor: pointer;
  font-family: var(--font-display); transition: transform .15s ease;
}
.form-card button:hover { transform: translateY(-2px); }

/* ---------- footer ---------- */
.footer-cta {
  background: var(--magenta); color: #fff; text-align: center; padding: 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.footer-copy { background: var(--purple-dark); color: #c9b3dd; text-align: center; padding: 18px; font-size: 14px; }

/* precrtana redovna cijena uz akcijsku */
.old-price {
  font-size: .42em; opacity: .6; text-decoration: line-through;
  text-decoration-thickness: 2px; font-weight: 700; margin-right: 12px; vertical-align: middle;
}
/* kružna fotka na kartici vrste proslave */
.tema-img {
  width: 112px; height: 112px; border-radius: 50%; object-fit: cover;
  margin-bottom: 16px; border: 5px solid var(--magenta);
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}
.ring-magenta { border-color: var(--magenta); }
.ring-green   { border-color: var(--green); }
.ring-purple  { border-color: var(--purple); }
.ring-yellow  { border-color: var(--yellow); }
.ring-blue    { border-color: var(--blue); }
/* dodatne teme (manja, sekundarna grupa) */
.teme-extra-title {
  font-family: var(--font-display); font-size: 24px; text-align: center;
  color: var(--purple); margin: 48px 0 20px;
}
.teme-extra { max-width: 860px; }

/* NOVO badge na kartici teme */
.tema { position: relative; }
.tema-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--yellow); color: var(--purple);
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ---------- pojačani, razigrani hover na svim gumbima ---------- */
.btn, .btn-book, .nav-cta, .cake-banner a, .socials a, .form-card button {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, filter .2s ease;
  will-change: transform;
}
.btn:hover, .btn-book:hover, .nav-cta:hover, .cake-banner a:hover, .socials a:hover, .form-card button:hover {
  transform: translateY(-3px) scale(1.05) rotate(-1.5deg);
  filter: brightness(1.06);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(94,43,143,.5); }
.btn-book:hover    { box-shadow: 0 18px 34px rgba(230,17,140,.42); }
.nav-cta:hover     { box-shadow: 0 14px 28px rgba(44,167,224,.5); }
.btn:active, .btn-book:active, .nav-cta:active, .cake-banner a:active, .socials a:active, .form-card button:active {
  transform: translateY(-1px) scale(.96); filter: brightness(.98);
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn-book, .nav-cta, .cake-banner a, .socials a, .form-card button { transition: none; }
  .btn:hover, .btn-book:hover, .nav-cta:hover, .cake-banner a:hover, .socials a:hover, .form-card button:hover { transform: none; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 900px) {
  .nav { padding: 16px 6vw; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); box-shadow: 0 12px 24px rgba(94,43,143,.12);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a { padding: 14px 6vw; border-top: 1px solid rgba(94,43,143,.08); }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 12px 6vw; text-align: center; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .deco.d3 { display: none; }

  .includes-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .ponuda-grid { grid-template-columns: 1fr; }
  .teme-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .cake-banner { flex-direction: column; align-items: flex-start; }
  .collage { max-width: 720px; }
}

@media (max-width: 560px) {
  .section, .hero, .onama, .includes, .ponuda, .teme, .galerija, .kontakt { padding-left: 5vw; padding-right: 5vw; }
  .hero h1 { font-size: 42px; }
  .section-title, .onama h2, .kontakt h2 { font-size: 32px; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .teme-grid { grid-template-columns: 1fr; }
  .collage .gcell { width: clamp(130px, 42vw, 175px); margin: -11px; }
  /* na mobitelu: samo ikone (labeli skriveni), telefon ne zauzima pola ekrana */
  .quick-contact .qc-phone .qc-label { max-width: 0; opacity: 0; padding-left: 0; }
  .quick-contact .qc-btn:hover .qc-label { max-width: 0; opacity: 0; padding-left: 0; }
  .quick-contact .qc-ico { width: 48px; height: 48px; }
  .price-badge .amount { font-size: 44px; }
}
