/* ============================================================
   EXPORT POTATOES — exportpotatoes.com
   Shared Stylesheet — matches stamagri.nl design language
   Fonts: Fraunces (display) + Instrument Sans (body) via Google Fonts
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --ink:          #0F0B06;
  --gold:         #B8832A;
  --gold-light:   #f5ede0;
  --green:        #1E3A10;
  --green-dark:   #142808;
  --green-light:  #eef4e8;
  --creme:        #F7F0E3;
  --surface:      #ffffff;
  --text:         #0F0B06;
  --muted:        #5c5444;
  --line:         #ddd5c5;

  --radius-sm:    14px;
  --radius:       24px;
  --shadow:       0 8px 40px rgba(15,11,6,.10);
  --shadow-hover: 0 16px 48px rgba(15,11,6,.14);
  --max:          1160px;

  --text-xs:   clamp(.75rem,  1.5vw, .82rem);
  --text-sm:   clamp(.85rem,  1.8vw, .92rem);
  --text-base: clamp(.95rem,  2vw,  1.05rem);
  --text-lg:   clamp(1.05rem, 2.2vw, 1.2rem);
  --text-xl:   clamp(1.2rem,  2.5vw, 1.4rem);
  --text-2xl:  clamp(1.5rem,  3vw,  1.8rem);
  --text-3xl:  clamp(1.8rem,  3.5vw, 2.6rem);
  --text-hero: clamp(2.2rem,  5vw,  3.8rem);

  --section-py: clamp(48px, 8vw, 80px);
  --gap:        clamp(14px, 2.5vw, 20px);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: var(--text-base);
  color: var(--text);
  background: var(--creme);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap {
  width: min(var(--max), calc(100% - clamp(24px, 5vw, 48px)));
  margin: 0 auto;
}
section { padding: var(--section-py) 0; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; }
h1 { font-size: var(--text-hero); font-weight: 700; }
h2 { font-size: var(--text-3xl); font-weight: 700; margin-bottom: .5rem; }
h3 { font-size: var(--text-xl);  font-weight: 700; margin-bottom: .5rem; }
h4 { font-size: var(--text-lg);  font-weight: 700; margin-bottom: .25rem; }
p  { max-width: 68ch; }

.kicker {
  display: block; color: var(--gold); font-weight: 600;
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .6rem;
}
.lead { font-size: var(--text-lg); color: var(--muted); max-width: 56ch; margin-top: .75rem; }
.lead-light { color: rgba(255,255,255,.8); }
.text-light { color: rgba(255,255,255,.72); }
.text-white { color: #fff; }
.sec-head { margin-bottom: clamp(24px, 4vw, 40px); }
.sec-head p { color: var(--muted); margin-top: .5rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .65em 1.4em; border-radius: 999px;
  font-family: 'Instrument Sans', sans-serif; font-size: var(--text-sm);
  font-weight: 600; border: 1.5px solid transparent; cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, opacity .18s;
  white-space: nowrap;
}
.btn-primary       { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-gold          { background: var(--gold); color: #fff; }
.btn-gold:hover    { opacity: .88; }
.btn-ghost         { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover   { background: #fff; border-color: var(--green); }
.btn-white         { background: #fff; color: var(--green); }
.btn-white:hover   { background: var(--green-light); }
.btn-outline-white { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-wa     { background: #25d366; color: #fff; gap: 9px; }
.btn-wa:hover { background: #1ebe5c; }
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,240,227,.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: clamp(34px, 5vw, 44px); width: auto; }

.header-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* Language flags */
.lang-switch-flags {
  display: flex; align-items: center; gap: 6px;
  font-size: 1.25rem; line-height: 1;
}
.lang-switch-flags a {
  opacity: .5; transition: opacity .18s; padding: 2px;
}
.lang-switch-flags a:hover,
.lang-switch-flags a.active { opacity: 1; }

/* Hamburger */
.nav-toggle {
  display: flex; background: none;
  border: 1.5px solid var(--line); border-radius: 10px;
  cursor: pointer; padding: 8px; color: var(--text);
  transition: border-color .18s;
}
.nav-toggle:hover { border-color: var(--green); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Dropdown nav */
.main-nav {
  display: none; width: 100%; flex-direction: column; gap: 4px;
  padding: 12px 0 4px; border-top: 1px solid var(--line);
}
.main-nav.open { display: flex; }
.main-nav a {
  color: var(--muted); font-weight: 500; font-size: var(--text-sm);
  transition: color .18s, background .18s; white-space: nowrap;
  padding: 10px 16px; border-radius: var(--radius-sm);
}
.main-nav a:hover { color: var(--text); background: var(--green-light); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(420px, 60vh, 600px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,11,6,.72) 0%, rgba(20,40,8,.6) 50%, rgba(15,11,6,.78) 100%);
}
.hero-content { position: relative; z-index: 1; padding: clamp(60px, 10vw, 100px) 0; }
.hero-kicker {
  display: inline-block; color: var(--gold);
  font-weight: 700; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .75rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: clamp(12px, 2vw, 20px);
  max-width: 18ch;
}
.hero .lead {
  color: rgba(255,255,255,.78);
  max-width: 48ch; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--ink);
  padding: clamp(16px, 3vw, 24px) 0;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(16px, 3vw, 32px);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: var(--text-sm);
  font-weight: 600; white-space: nowrap;
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(184,131,42,.2); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}

/* ── GREEN SECTION ────────────────────────────────────────── */
.section-green-full {
  background: var(--green);
  padding: var(--section-py) 0;
}
.section-green-full h2 { color: #fff; }
.section-green-full .kicker { color: var(--gold); }

/* ── CONTENT BLOCKS ───────────────────────────────────────── */
.content-block { padding: var(--section-py) 0; }
.content-block--alt { background: var(--surface); }

/* ── CARDS GRID ───────────────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.card p { color: var(--muted); font-size: var(--text-sm); margin-top: .5rem; }

/* Cards on dark bg */
.card-dark {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px);
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.card-dark:hover { background: rgba(255,255,255,.13); }
.card-dark h3 { color: #fff; }
.card-dark p { color: rgba(255,255,255,.72); font-size: var(--text-sm); margin-top: .5rem; }
.card-dark .card-icon { background: rgba(184,131,42,.2); }

/* ── THREE-COL GRID ───────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }

/* ── FACILITY STATS ───────────────────────────────────────── */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap); margin-top: clamp(24px, 4vw, 40px);
}
.stat-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 32px);
  text-align: center;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--text-3xl); font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { color: rgba(255,255,255,.8); font-size: var(--text-sm); font-weight: 500; }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.product-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card-header {
  background: var(--green); padding: clamp(18px, 3vw, 24px);
  color: #fff;
}
.product-card-header .kicker { color: var(--gold); margin-bottom: .3rem; }
.product-card-header h3 { color: #fff; margin-bottom: .3rem; }
.product-card-header p { color: rgba(255,255,255,.75); font-size: var(--text-sm); }
.product-card-body {
  padding: clamp(18px, 3vw, 24px);
}
.product-card-body ul { display: flex; flex-direction: column; gap: 8px; }
.product-card-body li {
  font-size: var(--text-sm); color: var(--muted);
  padding-left: 18px; position: relative;
}
.product-card-body li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.product-featured .product-card-header {
  padding: clamp(24px, 4vw, 36px);
}

/* ── VARIETY GRID ─────────────────────────────────────────── */
.variety-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.variety-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(4px); transition: background .2s;
}
.variety-card:hover { background: rgba(255,255,255,.15); }
.variety-card-body { padding: clamp(18px, 3vw, 24px); }
.variety-badge {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 3px 12px; border-radius: 999px;
  font-size: var(--text-xs); font-weight: 700; margin-bottom: .75rem;
}
.variety-card h3 { color: #fff; font-size: var(--text-2xl); margin-bottom: .4rem; }
.variety-card p { color: rgba(255,255,255,.75); font-size: var(--text-sm); }

/* ── EXPORT MARKETS ───────────────────────────────────────── */
.market-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.market-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.market-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.market-card h3 { color: var(--green); margin-bottom: .5rem; }
.market-card p { color: var(--muted); font-size: var(--text-sm); }
.market-icon {
  font-size: 2rem; margin-bottom: .75rem;
}

/* ── SERVICES LIST ────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-item {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: clamp(18px, 3vw, 24px);
  display: flex; gap: 14px; align-items: flex-start;
}
.service-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(184,131,42,.2); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.service-item h4 { color: #fff; font-size: var(--text-base); margin-bottom: .2rem; }
.service-item p { color: rgba(255,255,255,.72); font-size: var(--text-sm); margin: 0; }

/* ── TESTIMONIAL ──────────────────────────────────────────── */
.testimonial-section { padding: var(--section-py) 0; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--text-2xl); font-style: italic;
  color: var(--text); line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.testimonial-gold-bar {
  width: 48px; height: 3px; background: var(--gold);
  margin: 0 auto 1.5rem;
}
.testimonial-author {
  font-size: var(--text-sm); color: var(--muted); font-weight: 600;
}

/* ── NEWS BANNER ──────────────────────────────────────────── */
.news-section { padding: var(--section-py) 0; padding-top: 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.news-card {
  background: var(--gold-light); border: 1px solid rgba(184,131,42,.25);
  border-radius: var(--radius-sm);
  padding: clamp(18px, 3vw, 24px);
}
.news-date {
  font-size: var(--text-xs); color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem;
}
.news-card p { font-size: var(--text-sm); color: var(--muted); }

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: center;
}
.about-visual {
  border-radius: var(--radius); min-height: 320px;
  overflow: hidden;
}
.about-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; object-position: center 30%;
  border-radius: var(--radius);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap); align-items: start;
}
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px); box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: var(--text-xs); font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Instrument Sans', sans-serif; font-size: var(--text-sm);
  color: var(--text); background: var(--surface);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: .65em 1em; outline: none; transition: border-color .18s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { align-self: flex-start; }

.contact-info-card {
  background: var(--green); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px); color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1.25rem; font-size: var(--text-sm);
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text { color: rgba(255,255,255,.9); }
.contact-detail-text strong { display: block; color: #fff; margin-bottom: 2px; }
.contact-detail-text a { color: rgba(255,255,255,.9); text-decoration: underline; text-underline-offset: 2px; }
.contact-detail-text a:hover { color: #fff; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--green); border-radius: var(--radius);
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4.5vw, 52px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); margin: .5rem 0 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.65);
  padding: clamp(40px, 7vw, 64px) 0 clamp(24px, 4vw, 32px);
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(28px, 4vw, 40px);
}
.footer-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,.5); max-width: 36ch; }
.footer-col h4 {
  font-family: 'Instrument Sans', sans-serif; font-weight: 600;
  font-size: var(--text-sm); color: #fff; margin-bottom: .9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.6); transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: var(--text-xs); color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── WHATSAPP FLOATING BUTTON ─────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── TAGS ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--green-light); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 12px;
  font-size: var(--text-xs); font-weight: 600; color: var(--green);
}
.tag-light {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 4px 14px;
  font-size: var(--text-xs); font-weight: 600; color: #fff;
}
.block-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }

/* ── PAGE HERO SMALL (subpages) ───────────────────────────── */
.page-hero-small {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, var(--ink) 100%);
  padding: clamp(100px, 12vw, 140px) 0 clamp(40px, 6vw, 60px);
  position: relative;
}
.page-hero-small .hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(184,131,42,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,58,16,.4) 0%, transparent 50%);
}
.page-hero-small .wrap { position: relative; z-index: 1; }
.breadcrumb {
  font-size: var(--text-xs); color: rgba(255,255,255,.55);
  margin-bottom: 1rem; font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.75); }
.page-hero-small h1 {
  color: #fff; font-size: var(--text-3xl); font-weight: 700;
  margin-bottom: .5rem; max-width: 24ch;
}
.page-hero-small .lead {
  color: rgba(255,255,255,.78); max-width: 60ch; margin-top: .5rem;
}

/* ── VARIETY CATALOG ─────────────────────────────────────── */
.variety-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.variety-filter-btn {
  display: inline-flex; align-items: center;
  padding: .5em 1.2em; border-radius: 999px;
  font-family: 'Instrument Sans', sans-serif; font-size: var(--text-sm);
  font-weight: 600; border: 1.5px solid var(--line); cursor: pointer;
  background: var(--surface); color: var(--muted);
  transition: background .18s, border-color .18s, color .18s;
}
.variety-filter-btn:hover { border-color: var(--green); color: var(--text); }
.variety-filter-btn.active {
  background: var(--green); border-color: var(--green); color: #fff;
}

.variety-catalog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.variety-catalog-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.variety-catalog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.variety-catalog-card-stripe {
  height: 6px; background: var(--green);
}
.variety-catalog-card--featured .variety-catalog-card-stripe {
  height: 6px; background: var(--gold);
}
.variety-catalog-card--featured {
  border: 2px solid var(--gold);
}

.variety-catalog-card-body {
  padding: clamp(18px, 3vw, 28px);
}
.variety-catalog-card-body h3 {
  font-size: var(--text-xl); margin-bottom: .4rem;
}

.variety-segment-badge {
  display: inline-block;
  background: var(--green-light); color: var(--green);
  padding: 3px 12px; border-radius: 999px;
  font-size: var(--text-xs); font-weight: 700;
  margin-bottom: .75rem;
}
.variety-catalog-card--featured .variety-segment-badge {
  background: var(--gold-light); color: var(--gold);
}

.variety-catalog-card-body ul {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: .75rem;
}
.variety-catalog-card-body li {
  font-size: var(--text-sm); color: var(--muted);
  padding-left: 22px; position: relative;
}
.variety-check {
  position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700; font-size: var(--text-sm);
}

.variety-catalog-card .variety-quote-link {
  display: inline-block; margin-top: 1rem;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--green); transition: color .18s;
}
.variety-catalog-card .variety-quote-link:hover { color: var(--gold); }

/* ── SPEC GRID ──────────────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.spec-block {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 2rem;
}
.spec-block h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: 1rem;
}
.spec-block p,
.spec-block li {
  color: rgba(255,255,255,.85);
  font-size: var(--text-base);
  line-height: 1.7;
}
.spec-block ul {
  list-style: none;
  padding: 0;
}
.spec-block li::before {
  content: "\2713 ";
  color: var(--gold);
  font-weight: 700;
}

/* ── FACILITY IMAGE ───────────────────────────────────────── */
.facility-img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; max-height: 360px;
}

/* ── IMAGE BREAK ─────────────────────────────────────────── */
.img-break {
  position: relative; overflow: hidden;
  height: clamp(200px, 30vh, 320px);
}
.img-break-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .variety-grid { grid-template-columns: 1fr 1fr; }
  .variety-catalog-grid { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand img { height: auto; width: clamp(120px, 45vw, 180px); }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .cards-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .variety-grid { grid-template-columns: 1fr; }
  .variety-catalog-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .trust-items { gap: 12px; }
  .trust-item { font-size: var(--text-xs); }
}
