/* ==========================================================================
   Ferma Bunicilor — Design System
   Palette, type and spacing follow CLAUDE.md brief.
   ========================================================================== */

:root {
  --bg-primary: #F8F6F2;
  --bg-secondary: #FFFFFF;
  --green-primary: #2F5D3A;
  --green-primary-dark: #234630;
  --green-secondary: #4E7A59;
  --berry: #8F2746;
  --berry-dark: #711d38;
  --hazelnut: #8A6242;
  --hazelnut-dark: #6d4d34;
  --cream: #EFE7D8;
  --text-dark: #243126;
  --text-light: #67716B;

  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 16px rgba(36, 49, 38, 0.07);
  --shadow-md: 0 12px 32px rgba(36, 49, 38, 0.10);
  --shadow-lg: 0 24px 64px rgba(36, 49, 38, 0.16);

  --ease: cubic-bezier(.25, .8, .25, 1);
  --transition: 0.45s var(--ease);

  --container: 1220px;
  --pad-inline: clamp(1.25rem, 5vw, 3.5rem);
  --section-pad: clamp(4.5rem, 9vw, 8.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 3.2vw + 1.6rem, 4.6rem); font-weight: 480; }
h2 { font-size: clamp(2.1rem, 1.8vw + 1.5rem, 3.1rem); }
h3 { font-size: clamp(1.4rem, 0.8vw + 1.15rem, 1.9rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-light); }
.text-dark { color: var(--text-dark) !important; }

:focus-visible {
  outline: 2px solid var(--berry);
  outline-offset: 3px;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
.section { padding-block: var(--section-pad); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.bg-white { background: var(--bg-secondary); }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green-primary); color: #fff; }
.bg-green p, .bg-green h2, .bg-green h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1rem;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.1rem; }

.lede {
  font-size: 1.2rem;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--berry); color: #fff; }
.btn-primary:hover { background: var(--berry-dark); }
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
  box-shadow: none;
}
.btn-secondary:hover { background: var(--text-dark); color: #fff; }
.btn-on-dark {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  box-shadow: none;
}
.btn-on-dark:hover { background: rgba(255,255,255,0.9); color: var(--text-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.92rem; }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.cta-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.4rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar.is-scrolled, .navbar.is-solid {
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding-block: 0.9rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}
.logo span { color: var(--berry); }
.navbar.is-transparent:not(.is-scrolled) .logo,
.navbar.is-transparent:not(.is-scrolled) .nav-links > a:not(.btn) {
  color: #fff;
}
.navbar.is-transparent:not(.is-scrolled) .logo span { color: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links > a:not(.btn) {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text-dark);
  position: relative;
  padding-block: 0.3rem;
  transition: color var(--transition);
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: currentColor;
  transition: width var(--transition);
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a.active::after { width: 100%; }
.nav-links > a.active { font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.navbar.is-transparent:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-open span { background: var(--text-dark) !important; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links > a:not(.btn) { font-size: 1.3rem; color: var(--text-dark) !important; }
  .navbar.is-transparent:not(.is-scrolled) .nav-links.is-open > a:not(.btn) { color: var(--text-dark) !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,20,0.35) 0%, rgba(18,24,18,0.35) 45%, rgba(15,20,16,0.78) 100%);
  z-index: -1;
}
.hero-inner {
  padding-block: clamp(6rem, 14vw, 9rem) clamp(4rem, 9vw, 6rem);
  max-width: 780px;
}
.hero .eyebrow { color: var(--cream); }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero p.lede { color: rgba(255,255,255,0.88); margin-bottom: 2.2rem; }

.scroll-cue {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-cue .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

.page-hero {
  min-height: 56vh;
  align-items: center;
}
.page-hero .hero-inner { padding-block: clamp(7rem, 12vw, 8rem) clamp(2.5rem, 5vw, 3.5rem); }

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-media.wide img { aspect-ratio: 16/11; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: clamp(1.5rem, 3vw, 2.1rem); display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.card-badge {
  align-self: flex-start;
  background: var(--cream);
  color: var(--green-primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}
.card-body h3 { margin: 0; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--berry);
  transition: gap var(--transition);
}
.card-link svg { width: 1.1em; height: 1.1em; transition: transform var(--transition); }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- Icon grid (Why choose us / Values) ---------- */
.icon-grid-item {
  text-align: center;
  padding: clamp(1.8rem, 3vw, 2.4rem) 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-grid-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-circle {
  width: 64px; height: 64px;
  margin-inline: auto 1.1rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle svg { width: 30px; height: 30px; stroke: var(--green-primary); }
.icon-grid-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.icon-grid-item p { font-size: 0.96rem; margin: 0; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  color: var(--green-primary);
  display: block;
}
.stat-label { font-size: 0.92rem; color: var(--text-light); }

/* ---------- Masonry gallery ---------- */
.masonry {
  column-count: 3;
  column-gap: clamp(1rem, 2vw, 1.6rem);
}
@media (max-width: 980px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.masonry-item:hover img { transform: scale(1.07); }
.masonry-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(15,20,16,0.72), transparent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.masonry-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Gallery grid page ---------- */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3.2;
  cursor: zoom-in;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.2rem 1.1rem 0.9rem;
  background: linear-gradient(0deg, rgba(15,20,16,0.75), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Gallery filter page ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--bg-secondary);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.is-active { background: var(--berry); color: #fff; }
.gallery-item.is-hidden { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 18, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.9); color: var(--text-dark); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ---------- Season banner ---------- */
.season-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--green-primary), var(--green-secondary));
  color: #fff;
  padding: clamp(2rem, 4vw, 3.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.season-banner::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.season-banner h3 { color: #fff; margin-bottom: 0.4rem; }
.season-banner p { color: rgba(255,255,255,0.85); margin: 0; }
.season-banner .eyebrow { color: var(--cream); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-quote { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 1.4rem; }
.testimonial-quote::before { content: "\201C"; color: var(--berry); font-family: var(--font-heading); }
.testimonial-quote::after { content: "\201D"; color: var(--berry); font-family: var(--font-heading); }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.avatar-initial {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-light); }
.stars { color: var(--berry); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,20,0.55), rgba(15,20,16,0.75));
  z-index: -1;
}
.cta-band-inner { max-width: 620px; padding: 2rem; color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.75); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3.5rem, 6vw, 5rem) 3rem;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
.footer .logo { color: #fff; }
.footer .logo span { color: var(--cream); }
.footer-brand p { color: rgba(255,255,255,0.65); margin-block: 1.2rem 1.4rem; max-width: 32ch; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--berry); }
.footer-social svg { width: 18px; height: 18px; }
.footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; margin-inline: auto; max-width: 780px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--cream);
}
@media (min-width: 700px) { .timeline::before { left: 50%; transform: translateX(-1px); } }
.timeline-item {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--berry);
  border: 4px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--berry);
}
@media (min-width: 700px) {
  .timeline-item { width: 47%; padding-left: 0; padding-right: 2.6rem; text-align: right; }
  .timeline-item::before { left: auto; right: -2.5%; }
  .timeline-item:nth-child(even) {
    margin-left: 53%;
    padding-right: 0;
    padding-left: 2.6rem;
    text-align: left;
  }
  .timeline-item:nth-child(even)::before { right: auto; left: -2.5%; }
}
.timeline-year { font-family: var(--font-heading); color: var(--berry); font-size: 1.3rem; display: block; margin-bottom: 0.3rem; }

/* ---------- Values / mission list ---------- */
.value-row {
  display: flex;
  gap: 1.2rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid rgba(36,49,38,0.08);
}
.value-row:first-child { padding-top: 0; }
.value-row svg { width: 26px; height: 26px; stroke: var(--berry); flex-shrink: 0; margin-top: 0.2rem; }
.value-row h4 { margin-bottom: 0.3rem; }
.value-row p { margin: 0; }

/* ---------- Products page sections ---------- */
.product-section:nth-child(even) .split { direction: rtl; }
.product-section:nth-child(even) .split > * { direction: ltr; }
.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-block: 1.6rem;
}
@media (max-width: 620px) { .product-meta { grid-template-columns: 1fr; } }
.product-meta-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}
.product-meta-item span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-primary-dark); font-weight: 600; margin-bottom: 0.3rem; }
.product-meta-item strong { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 500; }
.benefit-list { display: flex; flex-direction: column; gap: 0.7rem; margin-block: 1.4rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text-dark); }
.benefit-list svg { width: 20px; height: 20px; stroke: var(--green-primary); flex-shrink: 0; margin-top: 2px; }
.availability-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  color: var(--green-primary-dark);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.availability-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-primary); }

/* ---------- Blog ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
@media (max-width: 860px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.blog-featured-body { padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.tag {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry);
  background: var(--cream);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}
.post-meta { font-size: 0.85rem; color: var(--text-light); }

/* ---------- Recipe cards ---------- */
.recipe-details {
  margin-top: 0.2rem;
  border-top: 1px solid rgba(36,49,38,0.08);
  padding-top: 0.9rem;
}
.recipe-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--berry);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.recipe-details summary::-webkit-details-marker { display: none; }
.recipe-details summary::before {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition);
}
.recipe-details[open] summary::before { transform: rotate(45deg); }
.recipe-content { padding-top: 0.9rem; }
.recipe-content h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary-dark);
  margin-bottom: 0.6rem;
}
.recipe-content h4:not(:first-child) { margin-top: 1.2rem; }
.recipe-content .benefit-list { margin-block: 0; }
.recipe-steps {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--text-dark);
  font-size: 0.94rem;
}
.recipe-meta-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
}
.recipe-meta-row span { display: inline-flex; align-items: center; gap: 0.35rem; }
.recipe-meta-row svg { width: 16px; height: 16px; stroke: var(--berry); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 0.3rem 1.6rem;
  margin-bottom: 1rem;
}
.faq-item summary {
  cursor: pointer;
  padding-block: 1.3rem;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--berry);
  transition: transform var(--transition);
  font-family: var(--font-body);
  font-weight: 400;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.3rem; margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.contact-card svg { width: 26px; height: 26px; stroke: var(--berry); flex-shrink: 0; margin-top: 3px; }
.contact-card h4 { margin-bottom: 0.3rem; }
.contact-card p { margin: 0; }
.contact-cards { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.6rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid rgba(36,49,38,0.08); font-size: 0.96rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text-dark); }

.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.5rem; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(36,49,38,0.14);
  background: var(--bg-secondary);
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--berry);
}
.form-note { font-size: 0.85rem; color: var(--text-light); margin-top: 1rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: rgba(36,49,38,0.1); border: none; margin-block: 0; }
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 4rem); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--berry); color: #fff;
  padding: 0.8rem 1.2rem; border-radius: var(--radius-sm);
  z-index: 999; transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }
