/* ============================================================
   PureFoodCorner — "Midnight Pantry" dark organic market
   Fonts: Fraunces (display serif) + Cabin (body)
   Palette: warm dark olive-brown + olive/wheat + tomato accent
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Cabin:wght@400;500;600;700&display=swap');

:root {
  --bg: #16150e;
  --bg2: #1c1b12;
  --card: #222115;
  --card2: #2a2919;
  --line: rgba(214, 205, 160, 0.14);
  --text: #f3efe2;
  --muted: #b9b298;
  --olive: #b3c255;
  --olive-deep: #8a9a3d;
  --wheat: #e9dfb8;
  --tomato: #e4572e;
  --tomato-soft: #f0885f;
  --grad: linear-gradient(115deg, #8a9a3d, #b3c255);
  --grad-tomato: linear-gradient(115deg, #cf4a22, #e4572e);
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow: 0 16px 38px rgba(8, 8, 3, .55);
  --shadow-soft: 0 8px 22px rgba(8, 8, 3, .4);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Cabin', 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
}
h1, h2, h3, h4, .logo { font-family: 'Fraunces', Georgia, serif; line-height: 1.16; letter-spacing: -.01em; font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: var(--olive); text-decoration: none; transition: color .25s; }
a:hover { color: var(--wheat); }
button { cursor: pointer; font-family: inherit; }

/* grid blowout guard */
.hero-grid > *, .grid-2 > *, .grid-3 > *, .grid-4 > *, .split > *, .foot-grid > *, .market-grid > *, .journey-grid > * { min-width: 0; }

::selection { background: var(--tomato); color: #fff; }
:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg2); }

/* organic wavy divider */
.wave-div { display: block; width: 100%; height: 60px; margin-bottom: -1px; }
.wave-div path { fill: var(--bg2); }
.wave-div.flip { transform: scaleY(-1); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  padding: 16px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(22, 21, 14, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(8, 8, 3, .5);
  padding: 9px 0;
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { font-size: 1.45rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 11px; }
.logo-badge {
  width: 42px; height: 42px; border-radius: 50% 46% 52% 48% / 48% 52% 46% 52%;
  background: var(--grad); display: grid; place-items: center; box-shadow: var(--shadow-soft);
}
.logo-badge svg { width: 23px; height: 23px; }
.logo em { font-style: normal; color: var(--olive); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: .97rem; position: relative; padding: 4px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -3px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--tomato); opacity: 0; transform: translateX(-50%) scale(0);
  transition: opacity .3s, transform .3s var(--spring);
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { opacity: 1; transform: translateX(-50%) scale(1); }
.nav-cta { margin-left: 6px; }
.burger {
  display: none; background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; width: 46px; height: 46px; box-shadow: var(--shadow-soft);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 15px 30px; border: none; border-radius: 999px;
  font-family: 'Cabin', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  color: #1a1a10; background: var(--grad); box-shadow: var(--shadow-soft);
  transition: transform .25s var(--spring), box-shadow .25s var(--ease), filter .25s;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.08); color: #1a1a10; box-shadow: var(--shadow); }
.btn:active { transform: scale(.96); }
.btn-tomato { background: var(--grad-tomato); color: #fff; }
.btn-tomato:hover { color: #fff; }
.btn-ghost { background: var(--card); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { color: var(--olive); }
.btn-sm { padding: 11px 22px; font-size: .93rem; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 150px 0 90px; overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 85% 8%, rgba(179, 194, 85, .13), transparent 65%),
    radial-gradient(560px 400px at 8% 92%, rgba(228, 87, 46, .1), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  font-weight: 700; font-size: .86rem; color: var(--olive); letter-spacing: .08em; text-transform: uppercase;
  box-shadow: var(--shadow-soft); margin-bottom: 22px;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tomato); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(228, 87, 46, .5); } 60% { box-shadow: 0 0 0 8px rgba(228, 87, 46, 0); } }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); font-weight: 700; margin-bottom: 20px; }
.accent-olive { color: var(--olive); font-style: italic; }
.accent-tomato { color: var(--tomato-soft); font-style: italic; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 54ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-visual { position: relative; }
.hero-img-organic {
  border-radius: 58% 42% 45% 55% / 48% 55% 45% 52%; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  animation: morph 12s ease-in-out infinite alternate;
}
@keyframes morph {
  0% { border-radius: 58% 42% 45% 55% / 48% 55% 45% 52%; }
  50% { border-radius: 46% 54% 56% 44% / 55% 44% 56% 45%; }
  100% { border-radius: 52% 48% 42% 58% / 44% 56% 48% 55%; }
}
.hero-img-organic img { width: 100%; height: 470px; object-fit: cover; }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--card2); border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 18px; box-shadow: var(--shadow-soft);
  font-weight: 700; font-size: .9rem; animation: bob 5s ease-in-out infinite;
}
.float-chip svg { width: 20px; height: 20px; flex: none; }
.chip-1 { top: 30px; left: -30px; }
.chip-2 { bottom: 46px; right: -22px; animation-delay: 1.6s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* stats */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px 22px 22px 6px; box-shadow: var(--shadow-soft);
  padding: 24px 16px; text-align: center; transition: transform .3s var(--spring), border-color .3s;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(179, 194, 85, .35); }
.stat-card .num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--olive); }
.stat-card .lbl { color: var(--muted); font-size: .9rem; font-weight: 600; }

/* ---------- section headers ---------- */
.sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin: 0 0 46px; text-align: left; }
.sec-tag {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--tomato-soft); margin-bottom: 12px;
}
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.sec-head p { color: var(--muted); }

/* ---------- grids & cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.o-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); border-top-left-radius: 46px;
  box-shadow: var(--shadow-soft); padding: 34px 28px; position: relative;
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .35s;
}
.o-card:hover { transform: translateY(-8px); border-color: rgba(179, 194, 85, .3); box-shadow: var(--shadow); }
.o-icon {
  width: 60px; height: 60px; display: grid; place-items: center;
  border-radius: 54% 46% 50% 50% / 48% 52% 48% 52%;
  background: var(--grad); box-shadow: var(--shadow-soft); margin-bottom: 20px;
  transition: transform .35s var(--spring);
}
.o-card:hover .o-icon { transform: rotate(-8deg) scale(1.07); }
.o-icon.tomato { background: var(--grad-tomato); }
.o-icon.wheat { background: linear-gradient(115deg, #d9c476, #e9dfb8); }
.o-icon svg { width: 29px; height: 29px; }
.o-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.o-card p { color: var(--muted); font-size: .98rem; }
.price-tag {
  display: inline-block; margin-top: 16px; font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 1.1rem; color: var(--wheat);
  background: rgba(233, 223, 184, .08); border: 1px solid rgba(233, 223, 184, .22);
  padding: 6px 16px; border-radius: 999px;
}
.card-link { font-weight: 700; display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s var(--spring); }
.card-link:hover svg { transform: translateX(5px); }
.tilt { transform-style: preserve-3d; }

/* ---------- FARM-TO-TABLE JOURNEY (scroll-driven path) ---------- */
.journey { position: relative; }
.journey-svg-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.journey-svg { width: 100%; height: auto; display: block; overflow: visible; }
.journey-path {
  fill: none; stroke: var(--line); stroke-width: 3; stroke-dasharray: 10 12; stroke-linecap: round;
}
.journey-path-progress {
  fill: none; stroke: var(--olive); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: var(--jlen, 2000); stroke-dashoffset: var(--jlen, 2000);
}
.journey-walker {
  position: absolute; width: 54px; height: 54px; left: 0; top: 0;
  margin: -27px 0 0 -27px;
  offset-rotate: 0deg;
  display: grid; place-items: center;
  background: var(--grad-tomato); border-radius: 50%;
  box-shadow: 0 10px 24px rgba(228, 87, 46, .4);
  z-index: 3; pointer-events: none;
}
.journey-walker svg { width: 28px; height: 28px; }
.journey-stop {
  position: absolute; transform: translate(-50%, -50%);
  display: grid; place-items: center; text-align: center; width: 170px;
}
.journey-stop .stop-dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--card2);
  border: 3px solid var(--olive); margin: 0 auto 10px;
  transition: background .3s, box-shadow .3s;
}
.journey-stop.reached .stop-dot { background: var(--olive); box-shadow: 0 0 0 7px rgba(179, 194, 85, .18); }
.journey-stop h4 { font-size: 1.02rem; margin-bottom: 3px; }
.journey-stop p { color: var(--muted); font-size: .84rem; line-height: 1.45; }

/* ---------- MARKET GRID + FLIP FILTER ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.chip {
  padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--card); color: var(--muted); font-weight: 700; font-size: .93rem;
  transition: color .25s, border-color .25s, background .25s, transform .2s var(--spring);
}
.chip:hover { color: var(--text); transform: translateY(-2px); }
.chip.active { background: var(--grad); color: #1a1a10; border-color: transparent; }
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.m-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: clip; transition: transform .45s var(--ease), opacity .35s var(--ease), border-color .3s;
  will-change: transform;
}
.m-item:hover { border-color: rgba(179, 194, 85, .35); }
.m-item.hide { display: none; }
.m-item .m-img { position: relative; overflow: clip; }
.m-item .m-img img { width: 100%; height: 150px; object-fit: cover; transition: transform .5s var(--ease); }
.m-item:hover .m-img img { transform: scale(1.08); }
.m-badge {
  position: absolute; top: 10px; left: 10px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
  background: rgba(22, 21, 14, .82); color: var(--wheat); border: 1px solid var(--line);
}
.m-body { padding: 16px 18px 18px; }
.m-body h3 { font-size: 1.05rem; margin-bottom: 3px; }
.m-body .m-farm { color: var(--muted); font-size: .84rem; margin-bottom: 8px; }
.m-body .m-price { font-family: 'Fraunces', serif; font-weight: 700; color: var(--olive); font-size: 1.05rem; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { position: relative; padding-top: 28px; }
.step-card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -8px; left: 26px;
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 52% 48% 46% 54% / 50% 46% 54% 50%;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; color: #fff;
  background: var(--grad-tomato); box-shadow: var(--shadow-soft); z-index: 2;
}

/* ---------- testimonials ---------- */
.quote-card { padding: 34px 30px; }
.quote-stars { color: var(--wheat); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.quote-card blockquote { color: var(--text); font-size: 1.01rem; margin-bottom: 18px; font-style: italic; font-family: 'Fraunces', serif; }
.quote-who { display: flex; align-items: center; gap: 13px; }
.quote-who img { width: 48px; height: 48px; border-radius: 50% 46% 52% 48% / 48% 52% 46% 52%; object-fit: cover; box-shadow: var(--shadow-soft); }
.quote-who .nm { font-weight: 700; font-size: .96rem; }
.quote-who .rl { color: var(--muted); font-size: .84rem; }

/* ---------- marquee ---------- */
.marquee { overflow: clip; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--muted); display: flex; align-items: center; gap: 12px; white-space: nowrap; font-style: italic; }
.marquee-track .spark { color: var(--tomato-soft); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: 46px 26px 46px 26px; overflow: clip;
  background: var(--grad); padding: 62px 48px; text-align: center; box-shadow: var(--shadow);
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .13); filter: blur(6px);
}
.cta-band::before { width: 180px; height: 180px; top: -70px; left: -40px; }
.cta-band::after { width: 230px; height: 230px; bottom: -100px; right: -60px; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: #1a1a10; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-band p { color: rgba(26, 26, 16, .82); max-width: 52ch; margin: 0 auto 28px; position: relative; z-index: 1; font-weight: 600; }
.cta-band .btn { background: #1a1a10; color: var(--wheat); position: relative; z-index: 1; }
.cta-band .btn:hover { color: var(--wheat); }

/* ---------- page hero ---------- */
.page-hero { padding: 170px 0 76px; text-align: center; position: relative; overflow: clip; }
.page-hero::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: var(--olive-deep); filter: blur(110px); opacity: .18; top: -140px; left: 50%; transform: translateX(-50%);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); margin-bottom: 14px; position: relative; }
.page-hero p { color: var(--muted); max-width: 60ch; margin: 0 auto; position: relative; }
.crumbs { font-size: .87rem; color: var(--muted); margin-bottom: 18px; position: relative; font-weight: 600; }

/* ---------- about ---------- */
.about-img {
  border-radius: 58% 42% 45% 55% / 48% 55% 45% 52%; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.about-img img { width: 100%; height: 440px; object-fit: cover; }
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list svg { width: 22px; height: 22px; flex: none; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-soft); margin-bottom: 14px; overflow: clip; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text); text-align: left;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.06rem;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q .fx { width: 30px; height: 30px; border-radius: 50%; background: var(--bg2); display: grid; place-items: center; flex: none; transition: transform .35s var(--spring), background .3s; }
.faq-item.open .faq-q .fx { transform: rotate(45deg); background: var(--tomato); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 24px 20px; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; margin-bottom: 16px; }
.info-card .ic {
  width: 50px; height: 50px; border-radius: 54% 46% 50% 50% / 48% 52% 48% 52%;
  background: var(--grad); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-soft);
}
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: .94rem; }
.info-card a:hover { color: var(--olive); }

.form-card { padding: 38px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg2); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  color: var(--text); padding: 13px 16px; font-family: inherit; font-size: .97rem;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 4px rgba(179, 194, 85, .14);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: #f0885f; font-size: .82rem; margin-top: 5px; display: none; font-weight: 700; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #f0885f; }
.form-ok {
  display: none; margin-top: 16px; padding: 16px 20px; border-radius: var(--r-sm);
  background: rgba(179, 194, 85, .12); border: 1px solid rgba(179, 194, 85, .3); color: #cdd98a; font-weight: 700;
}
.form-ok.show { display: block; }
.map-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); margin-top: 40px; }
.map-card iframe { width: 100%; height: 360px; border: 0; display: block; filter: invert(88%) hue-rotate(140deg) saturate(.55) sepia(.15); }

/* ---------- blog ---------- */
.post-card { overflow: clip; padding: 0; display: flex; flex-direction: column; border-top-left-radius: var(--r-lg); }
.post-card .thumb { overflow: clip; }
.post-card .thumb img { width: 100%; height: 210px; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.07); }
.post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.post-meta .cat { background: rgba(228, 87, 46, .12); border: 1px solid rgba(228, 87, 46, .3); color: var(--tomato-soft); border-radius: 999px; padding: 3px 12px; }
.post-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-body h3 a { color: var(--text); }
.post-body h3 a:hover { color: var(--olive); }
.post-body p { color: var(--muted); font-size: .95rem; flex: 1; }

/* article */
.article { max-width: 760px; margin: 0 auto; }
.article-hero img { width: 100%; height: 400px; object-fit: cover; border-radius: 46px 26px 26px 26px; box-shadow: var(--shadow); border: 1px solid var(--line); margin-bottom: 36px; }
.article h2 { font-size: 1.6rem; margin: 38px 0 14px; }
.article h3 { font-size: 1.24rem; margin: 28px 0 10px; }
.article p { color: var(--muted); margin-bottom: 16px; }
.article ul, .article ol { color: var(--muted); margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 4px solid var(--olive); background: var(--card); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px; margin: 22px 0; color: var(--text); font-family: 'Fraunces', serif; font-style: italic;
}
.article .tip-box {
  background: rgba(179, 194, 85, .08); border: 1px solid rgba(179, 194, 85, .25);
  border-radius: var(--r-md); padding: 20px 24px; margin: 24px 0;
}
.article .tip-box b { color: var(--olive); }
.related { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 34px; }
.related h2 { margin-top: 0; }

/* ---------- legal ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 1.38rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { margin: 0 0 16px 22px; }
.legal .updated { color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 26px; }

/* ---------- footer ---------- */
.site-footer { background: #100f0a; border-top: 1px solid var(--line); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px; margin-bottom: 44px; }
.foot-grid h4 { font-size: 1.02rem; margin-bottom: 16px; color: var(--text); }
.foot-grid p { color: var(--muted); font-size: .93rem; }
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid ul a { color: var(--muted); font-size: .93rem; font-weight: 600; }
.foot-grid ul a:hover { color: var(--olive); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .92rem; }
.foot-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .87rem; }
.foot-bottom a { color: var(--muted); font-weight: 600; }
.foot-bottom a:hover { color: var(--olive); }

/* ---------- cookie banner ---------- */
.cookie-pop {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200;
  max-width: 460px; background: var(--card2); border: 1px solid var(--line);
  border-radius: 26px 18px 26px 18px; box-shadow: var(--shadow); padding: 24px;
  transform: translateY(140%); transition: transform .55s var(--spring);
}
.cookie-pop.show { transform: translateY(0); }
.cookie-pop h4 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.cookie-pop h4 svg { width: 21px; height: 21px; }
.cookie-pop p { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.cookie-pop p a { font-weight: 700; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-pop { opacity: 0; transform: scale(.9); transition: opacity .6s var(--spring), transform .6s var(--spring); }
.reveal-pop.in { opacity: 1; transform: scale(1); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; } .d5 { transition-delay: .4s; } .d6 { transition-delay: .48s; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .grid-4, .stats-band { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .chip-1 { left: 6px; } .chip-2 { right: 6px; }
  .contact-grid { grid-template-columns: 1fr; }
  .journey-stop { width: 130px; }
  .journey-stop p { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .main-nav {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 96px 7% 34px;
    background: rgba(22, 21, 14, .97); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; gap: 20px;
    transform: translateY(-110%); transition: transform .45s var(--spring);
    border-bottom: 1px solid var(--line); z-index: -1;
  }
  .main-nav.open { transform: translateY(0); }
  .burger { display: flex; }
  .hero { padding-top: 128px; min-height: 0; }
  .hero-img-organic img { height: 320px; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 46px 26px; }
  .journey-walker { width: 40px; height: 40px; margin: -20px 0 0 -20px; }
  .journey-walker svg { width: 21px; height: 21px; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .steps, .stats-band { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .float-chip { display: none; }
  .article-hero img { height: 230px; }
  .market-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .m-item .m-img img { height: 110px; }
  .journey-stop { width: 96px; }
  .journey-stop h4 { font-size: .8rem; }
}

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