/* ============================================================
   CVJEĆARNA IVANA — styles
   Paleta iz loga: magenta / limeta zelena / zlatna, topla krema
   ============================================================ */

:root {
  /* brand */
  --magenta:        #b41d8f;
  --magenta-bright: #d81f92;
  --magenta-deep:   #7c1668;
  --green:          #7cc02c;
  --green-deep:     #579633;
  --green-ink:      #3c5320;
  --gold:           #d29a1c;
  --gold-deep:      #a9770f;

  /* neutrals (warm, lightly tinted) */
  --cream:   #fbf7f0;
  --cream-2: #f3ebdf;
  --card:    #ffffff;
  --ink:     #2b2422;
  --ink-soft:#5c534e;
  --line:    #e9ddcd;

  /* system */
  --accent: var(--magenta);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --shadow-sm: 0 2px 10px rgba(60, 30, 55, 0.06);
  --shadow:    0 18px 44px rgba(90, 25, 75, 0.12);
  --shadow-lg: 0 34px 70px rgba(90, 25, 75, 0.20);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

/* playful highlighter on part of headings */
.tw {
  background-image: linear-gradient(120deg,
    color-mix(in srgb, var(--gold) 42%, transparent),
    color-mix(in srgb, var(--gold) 42%, transparent));
  background-repeat: no-repeat;
  background-size: 100% 34%;
  background-position: 0 78%;
  padding: 0 .04em;
}

p { text-wrap: pretty; }

section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem); }
.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.section-head__lead { font-size: 1.12rem; color: var(--ink-soft); margin: 1rem auto 0; max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 1rem;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--magenta);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s var(--ease-out), box-shadow .25s var(--ease-out), background .2s var(--ease-soft), color .2s var(--ease-soft);
  will-change: transform;
}
.btn--solid { background: var(--btn-bg); color: #fff; box-shadow: 0 10px 24px rgba(180, 29, 143, .28); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(180, 29, 143, .36); }
.btn--ghost { background: transparent; color: var(--magenta-deep); border-color: color-mix(in srgb, var(--magenta) 40%, transparent); }
.btn--ghost:hover { background: color-mix(in srgb, var(--magenta) 8%, transparent); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--magenta-deep); box-shadow: 0 10px 24px rgba(169,119,15,.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(169,119,15,.5); background: #e0a726; }
.btn:active { transform: scale(.97); }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.dot--magenta { background: var(--magenta); }
.dot--green { background: var(--green); }
.dot--gold { background: var(--gold); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px;
}

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .7rem clamp(1.25rem, 5vw, 4rem);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__brand { flex: none; line-height: 0; }
.nav__logo { height: 72px; width: auto; transition: height .3s var(--ease-out); }
.nav.is-scrolled .nav__logo { height: 58px; }
.nav__links { display: flex; gap: .3rem; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-weight: 500; color: var(--ink);
  padding: .5rem .85rem; border-radius: 100px; position: relative;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--magenta-deep); background: color-mix(in srgb, var(--magenta) 8%, transparent); }
.nav__cta { padding: .6rem 1.25rem; font-size: .95rem; }
.nav__burger { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  transform: translateY(-100%); transition: transform .45s var(--ease-out);
  padding: 2rem;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { text-decoration: none; font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--ink); padding: .6rem 1rem; }
.mobile-menu a.btn { font-family: var(--font-body); font-size: 1.05rem; margin-top: 1rem; color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(7rem, 14vw, 10rem);
  background:
    radial-gradient(120% 90% at 85% -10%, color-mix(in srgb, var(--magenta) 10%, transparent), transparent 55%),
    radial-gradient(90% 80% at -10% 110%, color-mix(in srgb, var(--green) 14%, transparent), transparent 55%),
    var(--cream);
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  position: relative; z-index: 2;
}
.hero__title { font-size: clamp(2.7rem, 6.4vw, 5rem); font-weight: 600; letter-spacing: -0.01em; }
.hero__title em { font-style: normal; color: var(--magenta); position: relative; display: inline-block; }
.hero__title .squiggle {
  position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .32em;
  overflow: visible;
}
.hero__title .squiggle path { stroke-dasharray: 300; stroke-dashoffset: 300; animation: draw 1s var(--ease-out) .55s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 46ch; margin: 1.5rem 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__meta { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; color: var(--ink-soft); font-size: .95rem; flex-wrap: wrap; }
.hero__meta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* hero media */
.hero__media { position: relative; aspect-ratio: 1 / 1; }
.hero__photo { margin: 0; position: absolute; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--card); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main {
  width: 68%; height: 86%; right: 4%; top: 0;
  border-radius: 44% 44% 44% 44% / 40% 40% 40% 40%;
}
.hero__photo--sub {
  width: 44%; height: 44%; left: 0; bottom: 2%;
  border-radius: 42% 42% 42% 42% / 46% 46% 46% 46%;
  border: 6px solid var(--cream);
  animation: floaty 7s ease-in-out infinite;
}
.hero__badge { position: absolute; top: 6%; left: 8%; width: clamp(64px, 9vw, 96px); height: auto; filter: drop-shadow(0 8px 16px rgba(124,26,104,.28)); z-index: 3; }
.hero__badge-spin { transform-origin: 60px 60px; animation: spin 26s linear infinite; }

/* organic blobs + petals */
.hero__blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; z-index: 0; }
.hero__blob--1 { width: 380px; height: 380px; background: color-mix(in srgb, var(--magenta) 24%, transparent); top: -80px; right: -60px; }
.hero__blob--2 { width: 340px; height: 340px; background: color-mix(in srgb, var(--green) 30%, transparent); bottom: -120px; left: -80px; }
.hero__petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__petals span {
  position: absolute; top: -8%; width: 18px; height: 22px;
  background: var(--magenta); border-radius: 0 100% 0 100%;
  opacity: .55; will-change: transform;
  animation: fall linear infinite;
}

@keyframes fall {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg); }
  100% { transform: translateY(112vh) translateX(40px) rotate(320deg); }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ O NAMA ============ */
.about {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.about__visual { position: relative; aspect-ratio: 4 / 5; }
.about__photo { margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--main {
  position: absolute; inset: 0 8% 8% 0;
  border-radius: 46% 46% 46% 46% / 38% 38% 38% 38%;
}
.about__photo--inset {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4/5;
  border-radius: 24px; border: 8px solid var(--cream); box-shadow: var(--shadow-lg);
}
.about__leaf { position: absolute; top: -14px; left: 12%; width: 58px; rotate: -18deg; filter: drop-shadow(0 6px 10px rgba(60,83,32,.25)); animation: floaty 6s ease-in-out infinite; }
.about__body h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1.1rem; }
.about__body p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 1.1rem; max-width: 52ch; }
.about__body strong { color: var(--ink); }
.about__points { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .8rem; }
.about__points li { display: flex; align-items: center; gap: .75rem; font-weight: 500; }

/* ============ USLUGE ============ */
.services { background: var(--cream-2); }
.services__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.svc {
  background: var(--card); border-radius: var(--radius-lg); padding: 2rem 1.9rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc--feature {
  grid-column: 1 / -1; flex-direction: row; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem); padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(120deg, #fff, color-mix(in srgb, var(--magenta) 7%, #fff));
}
.svc--feature .svc__icon { margin-bottom: 0; flex: none; width: 84px; height: 84px; border-radius: 22px; }
.svc--feature .svc__icon svg { width: 44px; height: 44px; }
.svc__body { display: flex; flex-direction: column; align-items: flex-start; }
.svc--feature .svc__body { max-width: 62ch; }
.svc--feature .svc__link { margin-top: .4rem; }
.svc--accent { background: linear-gradient(160deg, color-mix(in srgb, var(--green) 12%, #fff), #fff); }
.svc__icon {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  color: var(--magenta); background: color-mix(in srgb, var(--magenta) 10%, #fff);
  margin-bottom: 1.3rem; transition: transform .3s var(--ease-out);
}
.svc--accent .svc__icon { color: var(--green-deep); background: color-mix(in srgb, var(--green) 16%, #fff); }
.svc:hover .svc__icon { transform: rotate(-8deg) scale(1.06); }
.svc__icon svg { width: 34px; height: 34px; }
.svc h3 { font-size: 1.4rem; margin-bottom: .55rem; }
.svc--feature h3 { font-size: 1.75rem; }
.svc p { color: var(--ink-soft); margin: 0 0 1.3rem; font-size: 1rem; }
.svc__link {
  margin-top: auto; text-decoration: none; font-weight: 600; color: var(--magenta-deep);
  display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s var(--ease-out);
}
.svc--accent .svc__link { color: var(--green-deep); }
.svc__link span { transition: transform .2s var(--ease-out); }
.svc__link:hover span { transform: translateX(4px); }

/* ============ DOSTAVA ============ */
.delivery { background:
  radial-gradient(90% 120% at 100% 0%, color-mix(in srgb, var(--green) 12%, transparent), transparent 50%),
  var(--cream); }
.delivery__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.delivery__text h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1rem; }
.delivery__lead { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 1.8rem; max-width: 46ch; }
.delivery__lead strong, .delivery__note strong { color: var(--magenta-deep); }
.delivery__free { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.6rem; }
.delivery__free-title { display: flex; align-items: center; gap: .6rem; font-weight: 600; margin: 0 0 .9rem; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  background: color-mix(in srgb, var(--green) 12%, #fff); color: var(--green-ink);
  border: 1px solid color-mix(in srgb, var(--green) 28%, transparent);
  padding: .35rem .8rem; border-radius: 100px; font-size: .9rem; font-weight: 500;
}
.delivery__note { color: var(--ink-soft); font-size: 1rem; margin: 0 0 1.8rem; max-width: 50ch; }
.delivery__note a { color: var(--magenta-deep); text-decoration: underline; text-underline-offset: 3px; }
.delivery__map { display: flex; flex-direction: column; align-items: center; }
.delivery__map svg { width: 100%; max-width: 360px; height: auto; }
.map-label { font-family: var(--font-display); font-weight: 700; font-size: 20px; fill: var(--magenta-deep); }
.map-pin { transform-origin: 160px 160px; animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.delivery__map-cap { color: var(--ink-soft); font-size: .95rem; margin: .6rem 0 0; }

/* ============ GALERIJA ============ */
.gallery__masonry {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.gitem {
  margin: 0; position: relative; overflow: hidden; aspect-ratio: 4 / 5;
  border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--cream-2);
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gitem figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem 1.1rem .95rem;
  color: #fff; font-weight: 600; font-size: 1.02rem;
  background: linear-gradient(to top, rgba(43,20,40,.82), rgba(43,20,40,0));
  transform: translateY(8px); opacity: 0; transition: transform .35s var(--ease-out), opacity .35s var(--ease-out);
}
.gitem::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 2px transparent; transition: box-shadow .3s; pointer-events: none;
}
.gitem:hover img { transform: scale(1.06); }
.gitem:hover figcaption { transform: translateY(0); opacity: 1; }
.gitem:hover::after { box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--gold) 70%, transparent); }
.gallery__cta { text-align: center; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; max-width: 540px; }
.gallery__cta p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 500; margin: 0 0 1.3rem; color: var(--ink); }

/* ============ ZAŠTO ============ */
.why { background: linear-gradient(165deg, var(--magenta-deep), var(--magenta) 60%, #a3237f); color: #fff; }
.why__inner { max-width: var(--maxw); margin: 0 auto; }
.why__inner > h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why__item { padding: 1.8rem 1.5rem; border-radius: var(--radius-lg); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); transition: transform .3s var(--ease-out), background .3s; }
.why__item:hover { transform: translateY(-6px) rotate(-1.2deg); background: rgba(255,255,255,.13); }
.why__ico {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold); color: var(--magenta-deep); margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(169,119,15,.4);
}
.why__ico svg { width: 30px; height: 30px; }
.why__item h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.why__item p { color: rgba(255,255,255,.82); margin: 0; font-size: .98rem; }

/* ============ KONTAKT ============ */
.contact { background: var(--cream); }
.contact__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.contact__info h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1rem; }
.contact__lead { color: var(--ink-soft); font-size: 1.1rem; margin: 0 0 2rem; max-width: 42ch; }
.contact__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico { width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center; color: var(--magenta); background: color-mix(in srgb, var(--magenta) 10%, #fff); }
.contact__ico svg { width: 24px; height: 24px; }
.contact__list a { color: var(--magenta-deep); text-decoration: none; }
.contact__list a:hover { text-decoration: underline; }
.contact__socials { display: flex; gap: .8rem; flex-wrap: wrap; }
.social { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 500;
  padding: .6rem 1rem; border-radius: 100px; border: 1px solid var(--line); background: var(--card); transition: transform .2s var(--ease-out), border-color .2s, color .2s; }
.social svg { width: 20px; height: 20px; color: var(--magenta); }
.social:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--magenta) 40%, transparent); color: var(--magenta-deep); }

/* form */
.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #a99e93; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px color-mix(in srgb, var(--magenta) 16%, transparent); }
.field.has-error input, .field.has-error textarea { border-color: #d13b3b; }
.field__error { display: block; color: #c62f2f; font-size: .84rem; margin-top: .35rem; min-height: 1em; }
.form-note { font-size: .9rem; color: var(--ink-soft); margin: 1rem 0 0; text-align: center; }
.form-note strong { color: var(--magenta-deep); }
.form-note.is-sent { color: var(--green-deep); font-weight: 600; }
.form-note.is-error { color: #c62f2f; font-weight: 600; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* ============ RECENZIJE ============ */
.reviews { background: var(--cream-2); }
.reviews__rating { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.05rem; }
.reviews__rating strong { color: var(--ink); }
.reviews__stars, .review__stars { color: var(--gold); letter-spacing: 2px; }
.reviews__grid {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.review {
  margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.review:hover { transform: translateY(-4px) rotate(-.6deg); box-shadow: var(--shadow); }
.review__stars { display: block; font-size: 1.1rem; margin-bottom: .9rem; }
.review blockquote { margin: 0 0 1.1rem; font-size: 1.1rem; line-height: 1.55; color: var(--ink); font-family: var(--font-display); font-weight: 500; }
.review figcaption { color: var(--ink-soft); font-weight: 600; }
.review figcaption::before { content: "— "; color: var(--magenta); }

/* ============ KONTAKT KARTA ============ */
.contact__map { max-width: var(--maxw); margin: clamp(2rem, 4vw, 3rem) auto 0; }
.contact__map iframe {
  width: 100%; height: 380px; border: 0; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); filter: saturate(1.05);
}
.contact__map-link {
  display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--magenta-deep);
  text-decoration: none; border-bottom: 2px solid color-mix(in srgb, var(--magenta) 35%, transparent); padding-bottom: 2px;
  transition: border-color .2s;
}
.contact__map-link:hover { border-color: var(--magenta); }

/* ============ FOOTER ============ */
.footer { padding: 0 clamp(.9rem, 3vw, 2rem) clamp(.9rem, 3vw, 2rem); background: var(--cream); }
.footer__panel {
  position: relative; overflow: hidden;
  max-width: 1320px; margin: 0 auto;
  background:
    radial-gradient(80% 120% at 100% 0%, color-mix(in srgb, var(--green) 40%, var(--green-ink)), transparent 60%),
    linear-gradient(150deg, var(--green-ink), #2c4218);
  color: #fff;
  border-radius: clamp(28px, 4vw, 46px);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.6rem, 4vw, 4rem) clamp(1.6rem, 3vw, 2.5rem);
}
.footer__deco { position: absolute; pointer-events: none; opacity: .9; }
.footer__deco--1 { width: clamp(90px, 12vw, 150px); top: -28px; right: 8%; rotate: -12deg; animation: floaty 8s ease-in-out infinite; }
.footer__deco--2 { width: 64px; bottom: 22%; left: -14px; opacity: .5; animation: floaty 6s ease-in-out infinite; }

.footer__top {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start; padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer__pitch h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.05; margin-bottom: 1rem; color: #fff; }
.footer__pitch .tw { background-image: linear-gradient(120deg, color-mix(in srgb, var(--gold) 60%, transparent), color-mix(in srgb, var(--gold) 60%, transparent)); background-size: 100% 30%; background-position: 0 82%; }
.footer__pitch p { color: rgba(255,255,255,.78); max-width: 46ch; margin: 0 0 1.8rem; font-size: 1.05rem; }
.footer__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.footer__mail { color: #fff; text-decoration: none; font-weight: 600; border-bottom: 2px solid rgba(255,255,255,.35); padding-bottom: 2px; transition: border-color .2s; }
.footer__mail:hover { border-color: var(--gold); }

.footer__meta { justify-self: end; text-align: left; max-width: 260px; }
.footer__logo { height: 78px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer__addr { color: rgba(255,255,255,.78); margin: 0 0 1.4rem; line-height: 1.6; }
.footer__addr a { color: #fff; text-decoration: none; font-weight: 600; }
.footer__addr a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: .7rem; flex-wrap: wrap; }
.footer__socials a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .95rem; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: .92rem;
  color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  transition: background .2s, transform .2s, color .2s;
}
.footer__socials svg { width: 19px; height: 19px; }
.footer__socials a:hover { background: var(--gold); color: var(--magenta-deep); transform: translateY(-2px); }

.footer__bottom {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; flex-wrap: wrap;
  padding-top: clamp(1.4rem, 3vw, 2rem);
}
.footer__links { display: flex; gap: .4rem; flex-wrap: wrap; }
.footer__links a {
  text-decoration: none; color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem;
  padding: .4rem .9rem; border-radius: 100px; transition: background .2s, color .2s;
}
.footer__links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.footer__copy { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer__legal {
  position: relative; z-index: 2;
  margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.5;
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav__burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .about { grid-template-columns: 1fr; }
  .about__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc--feature { grid-row: span 1; grid-column: span 2; }
  .delivery__inner { grid-template-columns: 1fr; }
  .delivery__map { order: -1; }
  .gallery__masonry { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__meta { justify-self: start; max-width: none; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .svc--feature { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .svc--feature .svc__icon { margin-bottom: 1.3rem; }
  .gallery__masonry { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__map iframe { height: 300px; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__meta { font-size: .88rem; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__petals { display: none; }
  .hero__badge-spin, .map-pin, .hero__photo--sub, .about__leaf { animation: none; }
  .gitem img { transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .gitem figcaption { opacity: 1; transform: none; }
}
