/* ==========================================================================
   MOJA BOROVNICA — V4.1 Design system
   Pravac: premium domaći food brend + shop. Editorial Luxury.
   Topli krem, šumska zelena kao baza, BLUEBERRY PLAVA kao jasan akcenat,
   velike prave fotografije, suptilna grain tekstura. Hand-built, bez build-a.
   ========================================================================== */

:root {
  /* Pozadine (tintovane ka brendu, nikad čisto belo/crno) */
  --bg:        #FAF7EF;   /* topli krem */
  --bg-2:      #F1EAD9;   /* oat */
  --bg-3:      #E9F0E1;   /* svetli zeleni „mist" — za shop akcent sekcije */
  --bg-green-soft: #EDF3E4; /* nežna zelena pozadina */
  --surface:   #FFFEFB;

  /* Tekst — duboka šumska, ne ljubičasta */
  --ink:       #1B2A17;
  --ink-soft:  #4C5944;
  --ink-faint: #828C78;

  /* Zelena — primarni brend (priroda/plantaža) */
  --green:       #3C6A34;
  --green-deep:  #21401D;
  --green-700:   #2F5A2E;
  --green-soft:  #6E9A52;
  --moss:        #88A86A;

  /* Blueberry plava — JASAN AKCENAT (CTA sekundarni, badge, linije, hover) */
  --berry:        #3C57A6;   /* blueberry */
  --berry-deep:   #2A3E7C;
  --berry-bright: #5B79CE;   /* za ikone na tamnoj podlozi */
  --berry-mist:   #E5EAF5;   /* svetla plava pozadina chip-a */

  --gold:      #C9A24B;   /* sunce — vrlo štedljivo */

  --line:        rgba(27,42,23,.12);
  --line-strong: rgba(27,42,23,.20);
  --line-berry:  rgba(60,87,166,.22);

  --shadow-sm: 0 1px 2px rgba(20,40,18,.05), 0 3px 8px rgba(20,40,18,.06);
  --shadow-md: 0 10px 26px rgba(20,40,18,.10), 0 3px 8px rgba(20,40,18,.06);
  --shadow-lg: 0 28px 64px rgba(20,40,18,.20), 0 10px 24px rgba(20,40,18,.12);
  --shadow-berry: 0 16px 40px rgba(42,62,124,.22), 0 4px 12px rgba(42,62,124,.14);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.23,1,.32,1);
  --ease-emph: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink); background: var(--bg);
  line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* suptilna grain tekstura preko celog sajta (premium „papir" osećaj) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::before { display: none; } }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--berry); text-decoration: none; transition: color .2s; }
a:hover { color: var(--berry-deep); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--berry-bright); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--berry); color: #fff; }

/* Typografija */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.018em; color: var(--green-deep); font-optical-sizing: auto; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.5vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.45rem); line-height: 1.05; }
h3 { font-size: clamp(1.32rem, 2.6vw, 1.74rem); letter-spacing: -.012em; }
p { color: var(--ink-soft); text-wrap: pretty; max-width: 68ch; }
strong { color: var(--ink); font-weight: 700; }

.eyebrow { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-sans); font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green-700); }
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--green-soft), var(--berry)); display: inline-block; }
.eyebrow.is-light { color: #cfe0b8; }
.eyebrow.is-light::before { background: var(--berry-bright); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.section { padding-block: clamp(66px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section-head { max-width: 700px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 16px; }
.bg-oat { background: var(--bg-2); }
.bg-mist { background: linear-gradient(180deg, var(--bg-3), #F3F7EC); }
.bg-green { background: var(--green-deep); color: #DCE7D2; }
.bg-green h2, .bg-green h3 { color: #fff; }
.bg-green p { color: #C2D2B4; }

/* hairline razdelnik sa blueberry tačkom */
.rule-berry { display: flex; align-items: center; gap: 14px; color: var(--line-strong); }
.rule-berry::before, .rule-berry::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.rule-berry span { width: 7px; height: 7px; border-radius: 50%; background: var(--berry); box-shadow: 0 0 0 4px var(--berry-mist); }

/* ============ Buttons (sa „button-in-button" strelicom) ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: .9em 1.5em; font-weight: 600; font-size: .98rem; letter-spacing: .005em; border-radius: var(--radius-pill); border: 1.5px solid transparent; transition: transform .18s var(--ease-out), box-shadow .3s var(--ease-out), background .2s var(--ease-out), color .2s, border-color .2s; line-height: 1; text-align: center; will-change: transform; }
.btn:active { transform: scale(.97); }
.btn .ico { display: inline-grid; place-items: center; width: 1.7em; height: 1.7em; margin-right: -.45em; border-radius: 50%; background: rgba(255,255,255,.2); transition: transform .25s var(--ease-out), background .2s; }
.btn .ico svg { width: .95em; height: .95em; }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary .ico { background: rgba(255,255,255,.18); }
.btn-berry { background: var(--berry); color: #fff; box-shadow: var(--shadow-berry); }
.btn-berry .ico { background: rgba(255,255,255,.2); }
.btn-ghost { background: transparent; color: var(--green-deep); border-color: var(--line-strong); }
.btn-ghost .ico { background: var(--berry-mist); color: var(--berry); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-light .ico { background: var(--berry-mist); color: var(--berry); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.btn-block { width: 100%; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .btn-berry:hover { background: var(--berry-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .btn-primary:hover .ico, .btn-berry:hover .ico { transform: translate(2px,-2px); background: rgba(255,255,255,.3); }
  .btn-ghost:hover { border-color: var(--berry); background: var(--berry-mist); color: var(--berry-deep); transform: translateY(-2px); }
  .btn-ghost:hover .ico { transform: translate(2px,-2px); }
  .btn-light:hover { color: var(--berry-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .btn-ghost-light:hover { background: rgba(255,255,255,.22); border-color: #fff; transform: translateY(-2px); }
}

/* ============ Header / Nav ============ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background .3s var(--ease), box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: clamp(10px, 2vw, 24px); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.04rem, 1.2vw, 1.18rem); color: #fff; letter-spacing: -.01em; transition: color .3s; flex: 0 1 auto; min-width: 0; }
.brand:hover { color: #fff; }
.brand > span { display: flex; flex-direction: column; white-space: nowrap; min-width: 0; }
.brand .brand-mark { width: 46px; height: 46px; flex: none; border-radius: 50%; box-shadow: var(--shadow-sm); background: #fff; }
.brand small { display: block; font-family: var(--font-sans); font-weight: 600; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: #cfe0b8; margin-top: 2px; transition: color .3s; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: clamp(0px, .4vw, 4px); flex: 0 1 auto; }
.nav-links a { color: rgba(255,255,255,.92); font-weight: 600; font-size: .94rem; padding: 9px clamp(9px, 1.1vw, 14px); border-radius: var(--radius-pill); transition: background .2s, color .2s; position: relative; white-space: nowrap; }
.nav-links a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav-links a.is-shop { color: #dbe9c6; }
.nav-cta { display: flex; align-items: center; gap: clamp(8px, 1vw, 10px); flex: none; }

.site-header.scrolled { background: rgba(250,247,239,.9); backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(20,40,18,.06); }
.site-header.scrolled .brand { color: var(--green-deep); }
.site-header.scrolled .brand small { color: var(--berry); }
.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a:hover { background: var(--berry-mist); color: var(--berry-deep); }
.site-header.scrolled .nav-links a.is-shop { color: var(--berry); }
.site-header.scrolled .btn-ghost-light { background: transparent; color: var(--green-deep); border-color: var(--line-strong); }
.site-header.scrolled .btn-ghost-light:hover { border-color: var(--berry); background: var(--berry-mist); color: var(--berry-deep); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 12px; background: rgba(255,255,255,.12); align-items: center; justify-content: center; }
.site-header.scrolled .nav-toggle { border-color: var(--line-strong); background: var(--surface); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: transform .3s var(--ease), opacity .2s, background .3s; }
.site-header.scrolled .nav-toggle span, .site-header.scrolled .nav-toggle span::before, .site-header.scrolled .nav-toggle span::after { background: var(--ink); }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ============ HERO (svetliji foto/video + lakši overlay) ============ */
.hero { position: relative; min-height: min(96vh, 920px); display: grid; align-items: end; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; overflow: hidden; z-index: -2; background: #2a3b22; }
.hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Lakši overlay — plantaža se jasno vidi, tekst ostaje čitljiv (čitljivost grade dolje-levo) */
/* V4.4: blaži, lokalizovani overlay — video se jasno vidi, tekst (dole-levo) ostaje čitljiv */
.hero-overlay { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,18,10,.10) 0%, transparent 32%, rgba(8,15,9,.10) 60%, rgba(8,15,9,.46) 100%),
    linear-gradient(100deg, rgba(8,15,9,.52) 0%, rgba(8,15,9,.20) 32%, rgba(8,15,9,.02) 56%, transparent 72%);
}
.hero strong, .cta-band strong, .bg-green strong, .site-footer strong, .hero-strip strong, .fullbleed strong, .media-band strong, .quote-band strong, .season-motion strong { color: #fff; font-weight: 700; }
/* V4.4: vrlo blag drift (manje upscale-a = manje pikselizacije na 720p izvoru) */
.hero-video { animation: heroDrift 36s var(--ease) infinite alternate; transform-origin: 50% 55%; }
@keyframes heroDrift { from { transform: scale(1.0); } to { transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .hero-video { animation: none; } }
.hero-inner { padding-block: clamp(136px, 20vh, 230px) clamp(48px, 8vh, 92px); max-width: 820px; }
.hero-eyebrow { color: #eaf3da; margin-bottom: 22px; text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hero-eyebrow.eyebrow::before { background: var(--berry-bright); }
.hero h1 { color: #fff; margin-bottom: 24px; font-size: clamp(2.9rem, 7vw, 5.3rem); font-weight: 600; line-height: 1.02; letter-spacing: -.022em; text-shadow: 0 2px 30px rgba(0,0,0,.38); }
.hero h1 .accent { color: #d4e9b3; font-style: italic; font-weight: 500; }
.hero .lead { color: #fff; max-width: 44ch; margin-bottom: 32px; font-size: clamp(1.1rem, 1.6vw, 1.34rem); line-height: 1.55; text-shadow: 0 1px 3px rgba(0,0,0,.45), 0 2px 22px rgba(0,0,0,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ Page hero (Shop i druge podstrane) ============ */
.page-hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; display: grid; align-items: end; padding-block: clamp(118px, 17vh, 178px) clamp(44px, 7vw, 80px); }
.page-hero .ph-media { position: absolute; inset: 0; z-index: -2; background: #2a3b22; overflow: hidden; }
.page-hero .ph-media img, .page-hero .ph-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* svetliji prirodni overlay — tamnije dole-levo (čitljiv tekst), svetlije desno (vidi se video) */
.page-hero .ph-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(12,28,14,.74) 0%, rgba(12,28,14,.42) 40%, rgba(12,28,14,.08) 70%, transparent 100%),
  linear-gradient(180deg, rgba(8,15,9,.20) 0%, transparent 30%, rgba(8,15,9,.55) 100%); }
.page-hero .ph-inner { max-width: 760px; }
.page-hero .eyebrow { color: #eaf3da; margin-bottom: 18px; }
.page-hero .eyebrow::before { background: var(--berry-bright); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 3.9rem); line-height: 1.04; margin-bottom: 16px; text-shadow: 0 2px 26px rgba(0,0,0,.4); }
.page-hero p { color: #fff; max-width: 58ch; font-size: clamp(1.05rem, 1.5vw, 1.26rem); text-shadow: 0 1px 3px rgba(0,0,0,.45); }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* 3 istaknuta proizvoda (teaser na početnoj) */
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.shop-teaser-cta { margin-top: clamp(28px, 4vw, 40px); text-align: center; }

/* 2 veće kartice u redu (shop — da diše, premium) */
.product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 34px); }
.product-grid.cols-2 .pcard-body { padding: 24px 24px 26px; }
.product-grid.cols-2 .pcard-body h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
.product-grid.cols-2 .meta { font-size: .86rem; }
.product-grid.cols-2 .pcard p { font-size: .98rem; margin: 10px 0 18px; }

/* video story banda (reuse fullbleed media) */
.fullbleed .fb-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fullbleed .fb-stats { display: flex; flex-wrap: wrap; gap: 16px 34px; margin-top: 26px; }
.fullbleed .fb-stats .stat::before { background: linear-gradient(180deg, var(--moss), var(--berry-bright)); }
.fullbleed .fb-stats .stat b { color: #fff; }
.fullbleed .fb-stats .stat span { color: rgba(255,255,255,.86); }

/* ============ Media band — vertikalni video u panelu (crisp, ne razvučen) ============ */
.media-band { position: relative; background: var(--green-deep); color: #fff; overflow: hidden; }
.media-band .mb-grid { display: grid; grid-template-columns: 1fr clamp(300px, 38vw, 520px); min-height: clamp(420px, 58vh, 580px); }
.media-band.reverse .mb-grid { grid-template-columns: clamp(300px, 38vw, 520px) 1fr; }
.media-band.reverse .mb-media { order: -1; }
.media-band .mb-text { align-self: center; padding: clamp(40px, 6vw, 80px) clamp(22px, 5vw, 60px); max-width: 660px; }
.media-band .mb-media { position: relative; min-height: 340px; background: #1a2d16; }
.media-band .mb-media video, .media-band .mb-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.media-band .mb-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-deep), rgba(33,64,29,.25) 16%, transparent 34%); }
.media-band.reverse .mb-media::after { background: linear-gradient(270deg, var(--green-deep), rgba(33,64,29,.25) 16%, transparent 34%); }
.media-band .eyebrow { color: #cfe0b8; margin-bottom: 16px; }
.media-band .eyebrow::before { background: var(--berry-bright); }
.media-band h2 { color: #fff; margin-bottom: 16px; }
.media-band p { color: rgba(255,255,255,.9); }
.media-band .mb-stats { display: flex; flex-wrap: wrap; gap: 14px 32px; margin: 24px 0; }
.media-band .mb-stats .stat::before { background: linear-gradient(180deg, var(--moss), var(--berry-bright)); }
.media-band .mb-stats .stat b { color: #fff; }
.media-band .mb-stats .stat span { color: rgba(255,255,255,.82); }
.media-band .mb-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.media-band .mb-chips span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); font-size: .84rem; font-weight: 600; color: #eaf3da; }
.media-band .mb-chips svg { width: 15px; height: 15px; color: var(--berry-bright); flex: none; }
@media (max-width: 860px) {
  .media-band .mb-grid, .media-band.reverse .mb-grid { grid-template-columns: 1fr; }
  .media-band.reverse .mb-media { order: 0; }
  .media-band .mb-media { min-height: 0; aspect-ratio: 3/2; }
  .media-band .mb-media::after { background: linear-gradient(0deg, var(--green-deep), transparent 45%); }
  .media-band.reverse .mb-media::after { background: linear-gradient(0deg, var(--green-deep), transparent 45%); }
}

/* ============ Quote band — blueberry gradient mesh + grain + dubina ============ */
.quote-band { position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(150deg, #16235a 0%, #25306e 38%, #34357e 64%, #46398a 100%); color: #fff; }
/* meke „berry" svetlosne forme (organski blur, daje dubinu) */
.quote-band::before { content: ""; position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 52% at 14% 18%, rgba(91,121,206,.55), transparent 62%),
    radial-gradient(42% 50% at 88% 82%, rgba(124,92,184,.50), transparent 60%),
    radial-gradient(26% 34% at 64% 26%, rgba(180,200,255,.16), transparent 60%),
    radial-gradient(60% 80% at 50% 120%, rgba(8,12,30,.55), transparent 60%); }
/* suptilan grain + blagi vignette */
.quote-band::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.quote-band .story-quote { position: relative; z-index: 2; }
.quote-band .story-quote .mark { font-size: 5rem; color: rgba(190,205,255,.65); opacity: 1; text-shadow: 0 2px 30px rgba(70,57,138,.5); }
.quote-band .story-quote p { color: #fff; text-shadow: 0 1px 24px rgba(10,15,40,.35); }
.quote-band .story-quote .sig { color: #d4ddff; }
.quote-band .story-quote .sig span { color: rgba(255,255,255,.72); }
@media (prefers-reduced-motion: reduce) { .quote-band::after { display: none; } }

/* ============ „Sezona u pokretu" — premium video story (editorial) ============ */
.season-motion { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding-block: clamp(64px, 9vw, 132px); }
.season-motion::before { content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(58% 50% at 16% 10%, rgba(60,87,166,.30), transparent 60%),
    radial-gradient(54% 60% at 92% 90%, rgba(42,62,124,.34), transparent 60%),
    linear-gradient(160deg, #1b3a17 0%, #1a3320 46%, #1c2d49 100%); }
.season-motion::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.season-motion .container { max-width: 1180px; }
.sm-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.sm-head .eyebrow { justify-content: center; color: #cfe0b8; margin-bottom: 16px; }
.sm-head .eyebrow::before { background: var(--berry-bright); }
.sm-head h2 { color: #fff; }
.sm-head p { color: rgba(255,255,255,.82); margin-inline: auto; margin-top: 14px; }

.sm-row { display: grid; grid-template-columns: minmax(0,1fr) clamp(300px, 31%, 392px); gap: clamp(34px, 5vw, 76px); align-items: center; }
.sm-row.reverse { grid-template-columns: clamp(300px, 31%, 392px) minmax(0,1fr); }
.sm-row + .sm-row { margin-top: clamp(52px, 8vw, 104px); }
.sm-copy { max-width: 560px; }
.sm-copy .eyebrow { color: #cfe0b8; margin-bottom: 14px; }
.sm-copy .eyebrow::before { background: var(--berry-bright); }
.sm-copy h3 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.15rem); line-height: 1.08; margin-bottom: 14px; }
.sm-copy p { color: rgba(255,255,255,.88); }

/* editorial brojke — velike serif cifre sa hairline razdelnicima (ne boksaste kartice) */
.sm-stats { display: flex; flex-wrap: wrap; gap: clamp(14px, 2vw, 30px); margin: 26px 0 30px; }
.sm-stat b { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 2.8vw, 2.5rem); line-height: 1; letter-spacing: -.02em; color: #fff; white-space: nowrap; }
.sm-stat span { display: block; margin-top: 9px; font-size: .8rem; line-height: 1.3; color: rgba(255,255,255,.74); max-width: 13ch; }
.sm-stat + .sm-stat { padding-left: clamp(14px, 2vw, 30px); border-left: 1px solid rgba(255,255,255,.18); }
/* chip varijanta (činjenice o dostavi) */
.sm-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.sm-chips span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: var(--radius-pill); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); font-size: .86rem; font-weight: 600; color: #eaf3da; }
.sm-chips svg { width: 15px; height: 15px; color: var(--berry-bright); flex: none; }

/* portret video kartica — phone-like, sheen + lift; 9/16 = native za naše snimke (bez cropa) */
.sm-media { justify-self: center; width: 100%; }
.sm-card { position: relative; width: 100%; max-width: 384px; margin-inline: auto; aspect-ratio: 9/16; border-radius: 28px; overflow: hidden; background: #10210d;
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 34px 80px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.16); }
.sm-card video, .sm-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.sm-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 22%, transparent 72%, rgba(8,15,9,.42)); pointer-events: none; }
.sm-card .sm-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: var(--radius-pill); font-size: .8rem; font-weight: 700; color: #fff;
  background: rgba(16,24,40,.5); border: 1px solid rgba(255,255,255,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.sm-card .sm-tag svg { width: 15px; height: 15px; color: var(--berry-bright); }
@media (hover: hover) { .sm-card:hover video { transform: scale(1.045); } }
.sm-cta { margin-top: 4px; }

@media (max-width: 900px) {
  .sm-row, .sm-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .sm-row .sm-media, .sm-row.reverse .sm-media { order: -1; }
  .sm-card { max-width: 300px; }
  .sm-copy { max-width: none; }
}
@media (max-width: 420px) {
  .sm-stats { gap: 14px; }
  .sm-stat + .sm-stat { padding-left: 14px; }
}

/* trust traka ispod hero-a — blueberry ikone */
.hero-strip { background: var(--green-deep); color: #DCE7D2; position: relative; z-index: 2; }
.hero-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 20px; }
.hs-item { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: #E6EFDC; }
.hs-item svg { width: 20px; height: 20px; color: var(--berry-bright); flex: none; }

/* ============ Sezonski banner ============ */
.season-banner { background: linear-gradient(100deg, var(--green-deep), var(--green)); color: #fff; position: relative; z-index: 2; }
.season-banner .container { display: flex; align-items: center; justify-content: center; gap: 14px 22px; flex-wrap: wrap; padding-block: 14px; text-align: center; }
.season-banner .pulse { width: 9px; height: 9px; border-radius: 50%; background: #aef0c3; box-shadow: 0 0 0 0 rgba(174,240,195,.7); animation: pulse 2.4s var(--ease) infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(174,240,195,.6); } 70% { box-shadow: 0 0 0 10px rgba(174,240,195,0); } 100% { box-shadow: 0 0 0 0 rgba(174,240,195,0); } }
.season-banner b { color: #fff; font-weight: 700; }
.season-banner span { color: #e7f0da; font-size: .96rem; }
.season-banner a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .season-banner .pulse { animation: none; } }

/* ============ Foto okviri ============ */
.media { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--bg-2); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.media.tall { aspect-ratio: 4/5; }
.media.wide { aspect-ratio: 3/2; }
.media.square { aspect-ratio: 1/1; }
.badge-float { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; background: rgba(33,64,29,.92); color: #fff; padding: 10px 16px; border-radius: var(--radius-pill); font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-md); backdrop-filter: blur(3px); }
.badge-float svg { width: 18px; height: 18px; color: var(--berry-bright); }
.badge-float.berry { background: rgba(42,62,124,.94); }
.badge-float.berry svg { color: #bcd0ff; }

/* ============ Story / quote ============ */
.story-quote { max-width: 920px; margin-inline: auto; text-align: center; }
.story-quote .mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--berry); opacity: .5; display: block; margin-bottom: 8px; }
.story-quote p { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.32; color: var(--green-deep); font-weight: 400; max-width: none; }
.story-quote .sig { margin-top: 26px; font-weight: 700; letter-spacing: .04em; color: var(--berry); font-size: .95rem; }
.story-quote .sig span { display: block; font-weight: 500; color: var(--ink-faint); letter-spacing: normal; font-size: .85rem; margin-top: 2px; }

/* ============ Split (editorial) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.split-media .media { aspect-ratio: 4/5; height: 100%; }
.split-media:hover .media img { transform: scale(1.04); }

.points { margin-top: 28px; display: grid; gap: 16px; }
.points li { display: flex; gap: 14px; align-items: flex-start; }
.points .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--berry-mist); color: var(--berry); display: grid; place-items: center; }
.points .ic svg { width: 22px; height: 22px; }
.points b { color: var(--ink); display: block; font-size: 1.02rem; }
.points span { font-size: .94rem; color: var(--ink-soft); }

.cert-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cert { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); font-weight: 700; font-size: .9rem; color: var(--green-deep); }
.cert svg { width: 20px; height: 20px; color: var(--berry); }

/* ============ Ponuda / dostava na gajbicu ============ */
.offer-facts { display: grid; gap: 14px; margin: 26px 0 24px; }
.offer-facts li { display: flex; gap: 16px; align-items: center; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s; }
@media (hover:hover){ .offer-facts li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-berry); } }
.offer-facts .ic { width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--green); color: #fff; }
.offer-facts .ic.berry { background: var(--berry); }
.offer-facts .ic.gold { background: var(--gold); }
.offer-facts .ic svg { width: 24px; height: 24px; }
.offer-facts b { display: block; color: var(--ink); font-size: 1.06rem; }
.offer-facts span { font-size: .92rem; color: var(--ink-soft); }
.offer-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 6px; }
.offer-note { margin-top: 14px; font-size: .9rem; color: var(--ink-faint); }

/* ============ FULL-BLEED editorial ============ */
.fullbleed { position: relative; isolation: isolate; color: #fff; min-height: clamp(440px, 62vh, 660px); display: grid; align-items: center; overflow: hidden; }
.fullbleed .fb-media { position: absolute; inset: 0; z-index: -2; }
.fullbleed .fb-media img { width: 100%; height: 100%; object-fit: cover; }
.fullbleed .fb-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(92deg, rgba(10,18,10,.72) 0%, rgba(10,18,10,.46) 42%, rgba(10,18,10,.12) 72%, transparent 100%); }
.fullbleed .fb-inner { max-width: 620px; }
.fullbleed .eyebrow { color: #cde0ff; }
.fullbleed .eyebrow::before { background: var(--berry-bright); }
.fullbleed h2 { color: #fff; margin-bottom: 18px; }
.fullbleed p { color: rgba(255,255,255,.92); margin-bottom: 26px; font-size: 1.1rem; }

/* ============ SHOP / Naši proizvodi ============ */
.shop-featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-bottom: clamp(36px, 5vw, 56px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.shop-featured .sf-media { position: relative; align-self: stretch; min-height: 340px; }
.shop-featured .sf-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-featured .sf-body { padding: clamp(26px, 4vw, 48px) clamp(24px, 4vw, 52px) clamp(30px, 4vw, 52px) 0; }
.shop-featured .sf-body.pad { padding-inline: clamp(24px,4vw,48px); }
.shop-featured h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--green-deep); margin: 12px 0 10px; }
.shop-featured p { font-size: 1.02rem; margin-bottom: 20px; }
.sf-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.sf-facts span { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 600; color: var(--green-deep); background: var(--bg-2); border: 1px solid var(--line); padding: 7px 13px; border-radius: var(--radius-pill); }
.sf-facts span svg { width: 15px; height: 15px; color: var(--berry); }
.sf-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; display: flex; flex-direction: column; position: relative; }
@media (hover:hover){ .pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-berry); } }
.pcard .media { border-radius: 0; aspect-ratio: 4/5; box-shadow: none; background: var(--bg-2); }
.pcard:hover .media img { transform: scale(1.05); }
.pcard-status { position: absolute; top: 12px; left: 12px; z-index: 3; }
.pcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { color: var(--green-deep); font-size: 1.12rem; margin-bottom: 4px; }
.pcard .meta { font-size: .82rem; color: var(--ink-faint); font-weight: 600; letter-spacing: .02em; }
.pcard p { font-size: .9rem; margin: 8px 0 16px; color: var(--ink-soft); }
.pcard .pcard-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.pcard .pcard-foot .btn { width: 100%; }
.pcard .way { font-size: .8rem; color: var(--ink-faint); font-weight: 600; }
.pcard .btn-sm { padding: .68em 1.05em; font-size: .86rem; }

/* status pill-ovi */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--radius-pill); backdrop-filter: blur(4px); box-shadow: var(--shadow-sm); }
.pill.active { color: #fff; background: var(--green); }
.pill.soon { color: var(--berry-deep); background: rgba(229,234,245,.94); border: 1px solid var(--line-berry); }
.pill.prep { color: #6a5410; background: rgba(247,238,214,.94); border: 1px solid rgba(201,162,75,.4); }
.pill.season { color: #6a5410; background: rgba(247,238,214,.94); border: 1px solid rgba(201,162,75,.4); }
.pill.inquiry { color: var(--green-deep); background: rgba(233,240,225,.96); border: 1px solid rgba(110,154,82,.4); }
.pill.limited { color: #fff; background: linear-gradient(100deg, var(--berry-deep), var(--berry)); }

/* shop kategorije — chip navigacija */
.shop-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 6px auto clamp(8px, 2vw, 20px); }
.shop-cats a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); color: var(--green-deep); font-weight: 600; font-size: .9rem; transition: border-color .2s, background .2s, color .2s, transform .2s; }
@media (hover:hover){ .shop-cats a:hover { border-color: var(--green); background: var(--bg-green-soft); transform: translateY(-2px); } }

/* shop kategorije */
.shop-group { margin-top: clamp(34px, 5vw, 56px); scroll-margin-top: 96px; }
.shop-group + .shop-group { margin-top: clamp(40px, 6vw, 68px); }
.shop-cat { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.shop-cat h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green-deep); }
.shop-cat .count { font-family: var(--font-sans); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green-soft); }

/* placeholder kartice (bez foto) */
.pcard.is-placeholder .media { display: grid; place-items: center; background:
   radial-gradient(120% 120% at 30% 20%, var(--berry-mist), var(--bg-2) 70%); }
.ph-art { display: grid; place-items: center; gap: 12px; color: var(--berry); padding: 22px; text-align: center; }
.ph-art svg { width: 54px; height: 54px; opacity: .85; }
.ph-art .ph-cap { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--green-700); }

.shop-note { margin-top: 28px; display: flex; gap: 12px; align-items: flex-start; justify-content: center; flex-wrap: wrap; text-align: center; font-size: .94rem; color: var(--ink-soft); max-width: 760px; margin-inline: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-sm); }
.shop-note svg { width: 22px; height: 22px; color: var(--berry); flex: none; margin-top: 1px; }

/* ============ „Uskoro iz naše radionice" showcase ============ */
.workshop { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,32px); }
.ws-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.ws-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .8s var(--ease); }
@media (hover:hover){ .ws-card:hover img { transform: scale(1.04); } }
.ws-card .ws-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 20px; background: linear-gradient(180deg, transparent, rgba(12,20,12,.78)); color: #fff; }
.ws-card .ws-cap h3 { color: #fff; font-size: 1.32rem; }
.ws-card .ws-cap span { font-size: .9rem; color: #dbe4ff; font-weight: 600; }

/* ============ Timeline „iz zasada do Vašeg stola" ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 12px; counter-reset: tl; }
.tl-step { position: relative; padding-top: 36px; }
.tl-step::before { counter-increment: tl; content: counter(tl); position: absolute; top: 0; left: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 600; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.tl-step::after { content: ""; position: absolute; top: 19px; left: 48px; right: -10px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-berry) 0 7px, transparent 7px 13px); }
.tl-step:last-child::after { display: none; }
.tl-step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.tl-step p { font-size: .92rem; }

/* ============ Galerija (masonry) ============ */
.gallery { columns: 4; column-gap: 16px; }
.gallery .g { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery .g img { width: 100%; transition: transform .8s var(--ease); }
@media (hover:hover){ .gallery .g:hover img { transform: scale(1.05); } }
.gallery .g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px; background: linear-gradient(180deg, transparent, rgba(12,22,12,.74)); color: #fff; font-size: .86rem; font-weight: 600; letter-spacing: .01em; }
.gallery-cta { margin-top: 32px; text-align: center; }

/* ============ Ljudi iza berbe (story + statistika) ============ */
.stat-row { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 26px 0 4px; }
.stat { position: relative; padding-left: 16px; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--green-soft), var(--berry)); }
.stat b { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.5rem); line-height: 1; color: var(--green-deep); letter-spacing: -.02em; }
.stat span { display: block; font-size: .86rem; color: var(--ink-soft); margin-top: 6px; max-width: 18ch; }
.callout { margin-top: clamp(28px, 4vw, 44px); background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; box-shadow: var(--shadow-sm); }
.callout .callout-text { flex: 1 1 380px; }
.callout h3 { color: var(--green-deep); margin-bottom: 8px; }
.callout p { font-size: .98rem; margin: 0; }
.callout .btn { flex: none; }

/* ============ Steps (kako poručiti) ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius-lg); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.step .num { counter-increment: step; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--green-deep); width: 44px; height: 44px; border-radius: 50%; background: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-md); }
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; color: #fff; }
.step p { font-size: .94rem; color: #C2D2B4; }

/* ============ Kontakt ============ */
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-info { display: grid; gap: 14px; }
.ci-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s; }
@media (hover:hover){ .ci-card:hover { border-color: var(--line-berry); transform: translateY(-2px); } }
.ci-card .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--berry-mist); color: var(--berry); display: grid; place-items: center; }
.ci-card .ic svg { width: 24px; height: 24px; }
.ci-card b { display: block; color: var(--ink); font-size: 1rem; }
.ci-card a, .ci-card span { color: var(--ink-soft); font-size: .96rem; word-break: break-word; }
.ci-card a { color: var(--berry); }
.ci-card a:hover { color: var(--berry-deep); }
.ci-card .maps-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-weight: 600; font-size: .9rem; color: var(--berry); }
.ci-card .maps-link svg { width: 15px; height: 15px; }
.map-card { margin-top: 4px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; height: 230px; border: 0; }

.order-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow-md); }
.order-form h3 { margin-bottom: 6px; }
.order-form .form-intro { font-size: .94rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--berry); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; font: inherit; font-size: .98rem; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line-strong); border-radius: 12px; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--berry); box-shadow: 0 0 0 4px rgba(60,87,166,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .82rem; color: var(--ink-faint); margin-top: 14px; text-align: center; }
.field-help { font-size: .82rem; color: var(--ink-faint); margin: -4px 0 16px; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: .92rem; font-weight: 600; display: none; }
.form-status.ok { display: block; background: var(--berry-mist); color: var(--berry-deep); }
.form-status.err { display: block; background: rgba(170,60,50,.1); color: #9a3030; }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--berry); border-bottom: 2px solid var(--berry); transform: translateY(-70%) rotate(45deg); pointer-events: none; }

/* ============ FAQ ============ */
.faq { max-width: 840px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 48px 22px 0; position: relative; font-family: var(--font-display); font-size: clamp(1.08rem, 2vw, 1.3rem); font-weight: 600; color: var(--green-deep); }
.faq-q::after { content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px; border-right: 2.5px solid var(--berry); border-bottom: 2.5px solid var(--berry); transform: translateY(-65%) rotate(45deg); transition: transform .3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-25%) rotate(-135deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--ink-soft); font-size: 1rem; }
.faq-a-inner p + p { margin-top: 10px; }

/* ============ CTA band ============ */
.cta-band { position: relative; color: #fff; isolation: isolate; text-align: center; }
.cta-band .cta-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,28,14,.66), rgba(15,28,14,.8)); }
.cta-band .container { max-width: 780px; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.92); margin-bottom: 30px; font-size: 1.12rem; margin-inline: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.site-footer { background: var(--green-deep); color: #C2D2B4; padding-block: clamp(48px, 6vw, 74px) 28px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--berry-bright); }
.footer-about { margin-top: 16px; max-width: 38ch; font-size: .95rem; color: #AEC09F; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--berry); color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 22px; height: 22px; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #C2D2B4; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #93A584; }
.footer-bottom a { color: #AEC09F; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-emph), transform .7s var(--ease-emph); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none; } .media img, .gallery .g img, .ws-card img { transition: none !important; } }

.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--berry); color: #fff; padding: 10px 18px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; color: #fff; }

/* ============ Responsive ============ */
/* laptop: oslobodi mesto u headeru pre nego što se sve stisne */
@media (max-width: 1180px) {
  .nav-cta .btn-ghost-light { display: none; }
  .nav-links a { font-size: .9rem; }
}
@media (max-width: 1040px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 540px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .steps, .timeline { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 3; }
  .shop-featured { grid-template-columns: 1fr; }
  .shop-featured .sf-media { min-height: 300px; aspect-ratio: 16/10; }
  .shop-featured .sf-body { padding: clamp(24px,4vw,40px); }
  .tl-step::after { display: none; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-ghost-light, .nav-cta .btn-berry { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open { background: var(--bg); }
  .site-header.nav-open .brand { color: var(--green-deep); }
  .site-header.nav-open .brand small { color: var(--berry); }
  .site-header.nav-open .nav-toggle { border-color: var(--line-strong); background: var(--surface); }
  .site-header.nav-open .nav-toggle span::before, .site-header.nav-open .nav-toggle span::after { background: var(--ink); }
  .mobile-menu { position: fixed; inset: 74px 0 auto 0; z-index: 55; background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 26px; display: none; box-shadow: var(--shadow-lg); }
  .nav-open .mobile-menu { display: block; }
  .mobile-menu a { display: block; padding: 14px 6px; font-weight: 600; font-size: 1.08rem; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-of-type { border-bottom: 0; }
  .mobile-menu .btn { margin-top: 16px; }
  .workshop { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .product-grid, .product-grid.cols-3, .product-grid.cols-2 { grid-template-columns: 1fr; }
  .steps, .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: 12px; }
  .hero { min-height: 90vh; }
  .season-banner .container { padding-block: 12px; }
}
@media (max-width: 380px) {
  .brand { font-size: 1.02rem; gap: 9px; }
  .brand small { display: none; }
  .brand .brand-mark { width: 40px; height: 40px; }
}
@media print { .site-header, .nav-toggle, .mobile-menu, body::before { display: none; } }
