/* ============================================================
   OLIWA Z OLIWEK — style.css
   oliwa-z-oliwek.pl  |  OPG Branko Marinov
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --olive:        #2d5016;
  --olive-dark:   #1c3209;
  --olive-mid:    #3d6b20;
  --olive-light:  #5a8c33;
  --olive-pale:   #d6e8c0;
  --olive-xpale:  #eef5e6;
  --gold:         #c4932a;
  --gold-light:   #ddb84a;
  --gold-dark:    #9e7520;
  --cream:        #faf8f2;
  --beige:        #f5ede0;
  --beige-dark:   #ece0cc;
  --dark:         #1a1a1a;
  --text:         #2c2c2c;
  --text-mid:     #555;
  --text-light:   #888;
  --border:       #e4d8c4;
  --white:        #fff;
  --whatsapp:     #25d366;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.11);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.15);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.18);
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;
  --max-w:      1200px;
  --max-w-text: 760px;
  --hh:         76px;        /* header height */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --t: .25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container        { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: var(--max-w-text); margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-header { text-align: center; max-width: 660px; margin: 0 auto 3rem; }
.section-header .section-label { display: block; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--text-mid); font-size: 1.05rem; }

.divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--r-full);
  font-family: var(--sans); font-size: .93rem; font-weight: 600;
  transition: var(--t); white-space: nowrap; line-height: 1;
}
.btn--primary   { background: var(--gold); color: var(--white); box-shadow: 0 4px 16px rgba(196,147,42,.3); }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196,147,42,.4); }
.btn--outline   { background: transparent; color: var(--olive); border: 2px solid var(--olive); }
.btn--outline:hover { background: var(--olive); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--ghost { color: var(--gold); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--gold-dark); gap: .8rem; }
.btn--lg  { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--sm  { padding: .55rem 1.3rem; font-size: .84rem; }
.btn--whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh); display: flex; align-items: center;
  background: var(--olive-dark); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled { background: var(--olive); border-bottom-color: rgba(255,255,255,.12); box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; }
.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }
.logo-text { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo-text span { display: block; font-size: .67rem; font-family: var(--sans); font-weight: 500; color: var(--gold-light); letter-spacing: .07em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: .15rem; }
.main-nav a { padding: .45rem .85rem; border-radius: var(--r-full); font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.82); transition: color var(--t), background var(--t); }
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); background: rgba(255,255,255,.1); }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; border-radius: var(--r-sm); }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  padding: calc(var(--hh) + 1.5rem) 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 1rem 0; font-size: 1.2rem; font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--border); font-family: var(--serif); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; }

/* ── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(26,26,26,.97); backdrop-filter: blur(8px);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-inner p { color: rgba(255,255,255,.8); font-size: .86rem; margin: 0; flex: 1; min-width: 260px; line-height: 1.6; }
.cookie-inner a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.btn--cookie-accept { background: var(--gold); color: var(--white); padding: .6rem 1.4rem; border-radius: var(--r-full); font-size: .85rem; font-weight: 600; transition: var(--t); }
.btn--cookie-accept:hover { background: var(--gold-dark); }
.btn--cookie-reject { background: transparent; color: rgba(255,255,255,.6); padding: .6rem 1.2rem; border-radius: var(--r-full); font-size: .85rem; border: 1px solid rgba(255,255,255,.2); transition: var(--t); }
.btn--cookie-reject:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--hh);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero-olive-oil.jpg');
  background-size: cover; background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(22,40,8,.86) 0%, rgba(22,40,8,.62) 55%, rgba(22,40,8,.28) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; padding: 4rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,147,42,.18); border: 1px solid rgba(196,147,42,.45);
  color: var(--gold-light); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--r-full); margin-bottom: 1.5rem;
}
.hero h1  { color: var(--white); margin-bottom: 1.2rem; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.83); margin-bottom: 2rem; max-width: 540px; line-height: 1.75; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--gold-light); line-height: 1; }
.hero-stat span   { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounceY 2s infinite;
}
.hero-scroll svg { width: 20px; }
@keyframes bounceY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip { background: var(--olive); padding: 1.2rem 0; }
.trust-strip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.5rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.9); font-size: .83rem; font-weight: 500; white-space: nowrap; }
.trust-item svg { width: 17px; flex-shrink: 0; color: var(--gold-light); }

/* ── Products ────────────────────────────────────────────── */
.products { padding: 6rem 0; background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.product-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), var(--shadow-md); }
.product-badge { position: absolute; top: .9rem; right: .9rem; background: var(--gold); color: var(--white); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .28rem .7rem; border-radius: var(--r-full); }
.product-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; transition: transform .45s ease; }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-size { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.product-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.product-body p  { font-size: .86rem; color: var(--text-mid); flex: 1; margin-bottom: 1rem; }
.product-card .btn { width: 100%; justify-content: center; }

/* ── Why Quality ─────────────────────────────────────────── */
.why { padding: 6rem 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.75rem; }
.why-feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon { width: 50px; height: 50px; background: var(--olive-xpale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--olive); }
.why-icon svg { width: 22px; }
.why-feature h4 { margin-bottom: .3rem; color: var(--olive-dark); }
.why-feature p  { font-size: .9rem; color: var(--text-mid); margin: 0; }
.why-img { border-radius: var(--r-xl); overflow: hidden; position: relative; }
.why-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-img-badge {
  position: absolute; bottom: 2rem; left: -1.5rem;
  background: var(--white); border-radius: var(--r-md); padding: .9rem 1.2rem;
  box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: .7rem;
}
.why-img-badge .icon { font-size: 1.9rem; }
.why-img-badge strong { display: block; font-size: .88rem; }
.why-img-badge span   { font-size: .75rem; color: var(--text-light); }

/* ── Family (dark) ───────────────────────────────────────── */
.family {
  padding: 6rem 0;
  background: var(--olive-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.family::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/opg-primosten-maslina.jpg') center/cover no-repeat;
  opacity: .06;
}
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; }
.family-content .section-label { color: var(--gold-light); }
.family-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.family-content p  { color: rgba(255,255,255,.78); margin-bottom: 1rem; line-height: 1.85; }
.family-stats { display: flex; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.family-stat strong { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--gold-light); line-height: 1; }
.family-stat span   { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.family-img { border-radius: var(--r-xl); overflow: hidden; position: relative; }
.family-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.family-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(22,40,8,.93));
  padding: 3rem 1.75rem 1.75rem; color: var(--white);
}
.family-quote blockquote { font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.65; margin-bottom: .5rem; }
.family-quote cite { font-size: .78rem; color: var(--gold-light); font-style: normal; }

/* ── Process ─────────────────────────────────────────────── */
.process {
  padding: 6rem 0;
  background: var(--beige);
  position: relative;
}
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.process-step { background: var(--white); border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--border); transition: box-shadow var(--t), transform var(--t); }
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num { width: 42px; height: 42px; background: var(--olive); color: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; margin-bottom: 1.2rem; }
.process-step h4 { color: var(--olive-dark); margin-bottom: .55rem; }
.process-step p  { font-size: .88rem; color: var(--text-mid); margin: 0; }

/* ── Dishes / Food imagery ───────────────────────────────── */
.dishes-section {
  padding: 5rem 0;
  background: var(--olive-dark);
  position: relative;
  overflow: hidden;
}
.dishes-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/pexels-roman-odintsov-5668052.jpg') center/cover no-repeat;
  opacity: .18;
}
.dishes-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.dishes-inner .section-label { color: var(--gold-light); }
.dishes-inner h2 { color: var(--white); margin-bottom: 1rem; }
.dishes-inner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── Blog Preview ────────────────────────────────────────── */
.blog-preview { padding: 6rem 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.blog-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); background: var(--beige); padding: .25rem .65rem; border-radius: var(--r-full); margin-bottom: .85rem; }
.blog-card-body h3 { font-size: 1.02rem; margin-bottom: .55rem; line-height: 1.4; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--olive); }
.blog-card-body p  { font-size: .86rem; color: var(--text-mid); flex: 1; margin-bottom: 1rem; }
.read-more { display: inline-flex; align-items: center; gap: .4rem; font-size: .86rem; font-weight: 600; color: var(--olive); margin-top: auto; transition: gap var(--t), color var(--t); }
.read-more:hover { gap: .7rem; color: var(--gold-dark); }
.read-more svg { width: 15px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 6rem 0; background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 0; font-weight: 600; font-size: .98rem; color: var(--dark); text-align: left; gap: 1rem; }
.faq-question:hover { color: var(--olive); }
.faq-icon { width: 28px; height: 28px; border-radius: var(--r-full); background: var(--olive-xpale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--olive); transition: transform var(--t), background var(--t); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--olive); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding-bottom: 1.35rem; color: var(--text-mid); font-size: .93rem; line-height: 1.8; }
.faq-answer-inner a { color: var(--olive); text-decoration: underline; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding: 5.5rem 0; background: var(--olive);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/opg-primosten-maslina.jpg') center/cover no-repeat;
  opacity: .1;
}
.cta-banner .container { position: relative; }
.cta-banner .section-label { color: var(--gold-light); }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--hh) + 3.5rem) 0 4rem;
  background: var(--olive-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: url('/images/opg-primosten-maslina.jpg') center/cover no-repeat; opacity: .07; }
.page-hero--img::after { background-image: var(--hero-img, none); opacity: .22; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .35; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── About Page ──────────────────────────────────────────── */
.about-intro { padding: 6rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-label { margin-bottom: .5rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { color: var(--text-mid); line-height: 1.85; }
.about-text .btn { margin-top: 1.5rem; }
.about-img { border-radius: var(--r-xl); overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.about-story { padding: 5rem 0; background: var(--cream); }
.about-story .container--narrow h2 { text-align: center; margin-bottom: 2rem; }
.about-story p { color: var(--text-mid); line-height: 1.9; margin-bottom: 1.25rem; }

.story-quote {
  border-left: 4px solid var(--gold); padding: 1.25rem 2rem;
  margin: 2.5rem 0; background: var(--beige);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.story-quote blockquote { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--olive-dark); line-height: 1.72; }
.story-quote cite { display: block; margin-top: .5rem; font-size: .83rem; color: var(--text-light); font-style: normal; }

.values { padding: 6rem 0; background: var(--beige); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; text-align: center; border: 1px solid var(--border); transition: box-shadow var(--t), transform var(--t); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 2.4rem; margin-bottom: .75rem; }
.value-card h4 { color: var(--olive-dark); margin-bottom: .5rem; }
.value-card p  { font-size: .86rem; color: var(--text-mid); margin: 0; }

.dalmatia { padding: 6rem 0; background: var(--olive-dark); color: var(--white); }
.dalmatia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.dalmatia-content .section-label { color: var(--gold-light); }
.dalmatia-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.dalmatia-content p { color: rgba(255,255,255,.78); line-height: 1.88; margin-bottom: 1rem; }
.dalmatia-img { border-radius: var(--r-xl); overflow: hidden; }
.dalmatia-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── Blog Listing ────────────────────────────────────────── */
.blog-listing { padding: 5rem 0; background: var(--cream); }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-listing-grid .blog-card-body h2 { font-size: 1.1rem; line-height: 1.4; margin-bottom: .55rem; }
.blog-listing-grid .blog-card-body h2 a { color: var(--dark); }
.blog-listing-grid .blog-card-body h2 a:hover { color: var(--olive); }

/* ── Blog Post ───────────────────────────────────────────── */
.post-wrap { padding: 4rem 0 6rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.post-meta .blog-tag { margin: 0; }
.post-meta time { font-size: .83rem; color: var(--text-light); }
.post-intro { font-size: 1.12rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 2.5rem; }
.post-img-main { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 3rem; }
.post-img-main img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.post-body h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: var(--olive-dark); }
.post-body h3 { font-size: 1.25rem; margin: 2rem 0 .75rem; color: var(--dark); }
.post-body p  { color: var(--text-mid); line-height: 1.9; margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { color: var(--text-mid); line-height: 1.82; margin-bottom: .5rem; }
.post-body strong { color: var(--dark); }
.post-body a { color: var(--olive); text-decoration: underline; }
.post-highlight { background: var(--beige); border-left: 4px solid var(--gold); padding: 1.4rem 2rem; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 2rem 0; }
.post-highlight p { color: var(--text); font-size: .97rem; margin: 0; }
.post-faq { margin-top: 3rem; }
.post-faq h2 { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--olive-dark); }
.post-cta { background: var(--olive); color: var(--white); padding: 2.5rem; border-radius: var(--r-lg); text-align: center; margin-top: 3.5rem; }
.post-cta h3 { color: var(--white); margin-bottom: .75rem; }
.post-cta p  { color: rgba(255,255,255,.78); margin-bottom: 1.5rem; font-size: .93rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-section { padding: 5rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.82; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); padding: 1rem 1.25rem; border-radius: var(--r-md); border: 1px solid var(--border); }
.contact-detail-icon { width: 38px; height: 38px; background: var(--olive-xpale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--olive); flex-shrink: 0; }
.contact-detail-icon svg { width: 17px; }
.contact-detail strong { display: block; font-size: .83rem; margin-bottom: .2rem; }
.contact-detail span, .contact-detail a { font-size: .88rem; color: var(--text-mid); }
.contact-detail a:hover { color: var(--olive); }
.contact-ctas { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.contact-ctas .btn { justify-content: center; }
.response-box { background: var(--olive-xpale); border: 1px solid var(--olive-pale); border-radius: var(--r-md); padding: 1rem 1.25rem; font-size: .86rem; color: var(--olive-dark); }
.contact-form-wrap { background: var(--white); border-radius: var(--r-xl); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--text-light); font-size: .86rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; margin-bottom: .4rem; }
.form-control { width: 100%; padding: .72rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-md); font-family: var(--sans); font-size: .91rem; color: var(--dark); background: var(--white); transition: border-color var(--t), box-shadow var(--t); outline: none; }
.form-control:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(45,80,22,.1); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: 1.5rem; }
.form-check input { margin-top: .2rem; flex-shrink: 0; accent-color: var(--olive); width: 16px; height: 16px; }
.form-check label { font-size: .81rem; color: var(--text-mid); }
.form-check a { color: var(--olive); text-decoration: underline; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: .76rem; color: var(--text-light); text-align: center; margin-top: .75rem; }
.location-section { padding: 4rem 0; background: var(--beige); }
.location-card { background: var(--white); border-radius: var(--r-xl); padding: 3rem; text-align: center; max-width: 500px; margin: 0 auto; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.location-emoji { font-size: 3rem; margin-bottom: 1rem; }
.location-card h3 { margin-bottom: .75rem; }
.location-card p  { color: var(--text-mid); font-size: .91rem; margin-bottom: 1.5rem; }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-wrap { padding: 4rem 0 6rem; }
.legal-wrap h2 { font-size: 1.4rem; margin: 2.5rem 0 .75rem; color: var(--olive-dark); }
.legal-wrap p, .legal-wrap li { color: var(--text-mid); line-height: 1.85; font-size: .95rem; margin-bottom: .75rem; }
.legal-wrap ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.legal-wrap a { color: var(--olive); text-decoration: underline; }
.legal-wrap strong { color: var(--dark); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.72); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 2rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.78; margin-top: 1rem; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.38); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.62); transition: color var(--t); }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .75rem; font-size: .86rem; }
.footer-contact-item svg { width: 15px; flex-shrink: 0; margin-top: .15rem; color: var(--gold-light); }
.footer-contact-item a { color: rgba(255,255,255,.62); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.38); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.42); }
.footer-legal a:hover { color: rgba(255,255,255,.78); }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Back to Top ─────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 2rem; right: 1.5rem;
  width: 44px; height: 44px; background: var(--olive); color: var(--white);
  border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t); z-index: 100;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }
.back-top svg { width: 17px; }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 960px) {
  .main-nav, .header-cta .btn--primary { display: none; }
  .burger { display: flex; }
  .why-grid, .family-grid, .dalmatia-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-img, .family-img { order: -1; }
  .why-img-badge { left: 1rem; }
  .blog-grid, .blog-listing-grid, .process-steps, .values-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  :root { --hh: 64px; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-listing-grid, .process-steps, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .trust-strip-grid { gap: .75rem 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .family-stats { gap: 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cookie-btns { width: 100%; }
  .btn--cookie-accept, .btn--cookie-reject { flex: 1; justify-content: center; text-align: center; }
  .hero-stats { gap: 1.2rem; }
}
