/* ============================================================
   STAMAGRI BV — Shared Stylesheet
   ============================================================ */

/* ── FONTS ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/playfair-display-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/dm-sans-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/dm-sans-medium.woff2') format('woff2');
  font-weight: 500 600; font-style: normal; font-display: swap;
}

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --bg:           #f5f2eb;
  --surface:      #ffffff;
  --text:         #1a2010;
  --muted:        #5c6b52;
  --line:         #dde3d5;
  --green:        #3d5a2c;
  --green-dark:   #2b4020;
  --green-light:  #eef4e8;
  --sand:         #c8a96e;
  --sand-light:   #f5ede0;

  --radius-sm:    14px;
  --radius:       24px;
  --shadow:       0 8px 40px rgba(26,32,16,.10);
  --shadow-hover: 0 16px 48px rgba(26,32,16,.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: 'DM Sans', system-ui, sans-serif;
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  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: 'Playfair Display', 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(--sand); font-weight: 600;
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .6rem;
}
.kicker-light { color: var(--sand); }
.kicker-sand  { color: var(--sand); }
.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: 'DM 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-ghost         { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover   { background: #fff; border-color: var(--green); }
.btn-sand          { background: var(--sand); color: #fff; }
.btn-sand:hover    { opacity: .88; }
.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(245,242,235,.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: flags + hamburger on ONE line */
.header-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* Language: flags only, no text */
.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,
.main-nav a[aria-current="page"] { color: var(--text); background: var(--green-light); }

/* ── HERO — compact ───────────────────────────────────────── */
.hero-full {
  position: relative;
  height: clamp(280px, 35vh, 400px);
  display: flex; align-items: flex-end;
  overflow: hidden; padding: 0;
}
.hero-full-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 70%; /* show bottom part of image, crop unsharp top */
}
.hero-full-overlay {
  position: relative; z-index: 1; width: 100%;
  background: linear-gradient(to top, rgba(26,32,16,.88) 0%, rgba(26,32,16,.45) 55%, transparent 100%);
  padding: clamp(28px, 5vw, 48px) 0 clamp(24px, 4vw, 40px);
}
.hero-kicker {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
  opacity: .9;
}
.hero-full h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900; line-height: .95;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  text-shadow: 0 3px 20px rgba(0,0,0,.3);
}
.hero-nav-links { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-link {
  display: inline-flex; align-items: center;
  padding: .6em 1.4em;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px; color: #fff;
  font-weight: 600; font-size: var(--text-sm);
  transition: background .18s, border-color .18s, transform .18s;
}
.hero-link:hover {
  background: rgba(255,255,255,.25); border-color: #fff;
  transform: translateY(-2px);
}

/* ── SECTION WITH IMAGE BACKGROUND ────────────────────────── */
.section-image-bg {
  position: relative; overflow: hidden;
  padding: 0;
}
.section-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.section-bg-overlay {
  position: relative; z-index: 1;
  background: rgba(26,32,16,.78);
  padding: var(--section-py) 0;
}
.section-image-bg h2 { color: #fff; }

.img-section-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.img-section-grid--reverse {
  grid-template-columns: 260px 1fr;
}
.img-section-grid--reverse .img-section-content { order: 2; }
.img-section-grid--reverse .img-section-aside { order: 1; }

/* ── GREEN FULL-WIDTH SECTION ─────────────────────────────── */
.section-green-full {
  background: var(--green);
  padding: var(--section-py) 0;
}
.green-section-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

/* ── LIGHT TAGS (on dark/image backgrounds) ───────────────── */
.block-tags-light { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }
.tag-light {
  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;
}

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

.tag {
  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);
}

/* ── TWO-COLUMN SECTION LAYOUT ────────────────────────────── */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.section-photo-col {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 300px;
  background: var(--green-light);
}
.section-photo-col img {
  width: 100%; height: 100%;
  min-height: 300px;
  object-fit: cover; display: block;
}
.section-photo-col--rounded { border-radius: var(--radius); }

.section-actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px; margin-top: 1.75rem;
}

/* ── INLINE CONTACT (compact WhatsApp link) ───────────────── */
.contact-inline {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; font-size: var(--text-sm);
  transition: opacity .18s;
  padding: .55em 1.2em;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 999px;
}
.contact-inline:hover { opacity: .85; }
.contact-inline--dark {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line);
}
.contact-inline--dark:hover { border-color: #25d366; }
.contact-inline-name { white-space: nowrap; }
.wa-mini {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; min-width: 28px; min-height: 28px;
  background: #25d366;
  border-radius: 50%; flex-shrink: 0; overflow: hidden;
}
.wa-mini svg { width: 16px; height: 16px; min-width: 16px; min-height: 16px; fill: #fff; max-width: 16px; }
.wa-mini--green { background: #25d366; }

/* ── ABOUT PEOPLE ─────────────────────────────────────────── */
.about-people {
  display: flex; gap: 20px; margin-top: 1.5rem; flex-wrap: wrap;
}
.about-person {
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  flex: 1; min-width: 180px;
}
.about-person strong { display: block; color: var(--green-dark); margin-bottom: 2px; }
.about-person span { font-size: var(--text-xs); color: var(--muted); }

/* ── WHATSAPP CONTACT CARD ────────────────────────────────── */
.wa-contact-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 32px) clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  gap: 6px;
}
.wa-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover); border-color: #25d366;
}
.wa-icon-large {
  width: 56px; height: 56px; background: #25d366;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin-bottom: 8px;
}
.wa-icon-large svg { width: 28px; height: 28px; fill: #fff; }
.wa-contact-card strong { font-size: var(--text-lg); color: var(--text); }
.wa-contact-card span  { font-size: var(--text-xs); color: var(--muted); }
.wa-cta {
  margin-top: 8px;
  font-weight: 700 !important; color: #25d366 !important;
  font-size: var(--text-sm) !important;
}

/* ── OBAMA DETAIL ─────────────────────────────────────────── */
.obama-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--gap); align-items: start;
}
.obama-side { display: flex; flex-direction: column; gap: var(--gap); }
.obama-features {
  background: var(--green-light); border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px);
}
.ras-specs {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px); box-shadow: var(--shadow);
}
.spec-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th {
  text-align: left; font-weight: 600; color: var(--muted);
  padding: 11px 12px 11px 0; width: 42%;
}
.spec-table td { padding: 11px 0; color: var(--text); }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: .5rem; }

/* ── BLOG / VERHALEN CARDS ────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.blog-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;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img {
  height: 200px; overflow: hidden; background: var(--green-light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body {
  padding: clamp(18px, 3vw, 24px);
}
.blog-card-body h3 { font-size: var(--text-lg); margin-bottom: .4rem; }
.blog-card-body p { color: var(--muted); font-size: var(--text-sm); }

/* ── NEWS BANNER ──────────────────────────────────────────── */
.news-banner-section { padding: 0 0 var(--section-py); }
.news-banner {
  background: var(--sand-light); border: 1px solid rgba(200,169,110,.3);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-size: var(--text-sm);
}
.news-label {
  background: var(--sand); color: #fff;
  padding: 3px 12px; border-radius: 999px;
  font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  flex-shrink: 0;
}
.news-link {
  margin-left: auto; color: var(--green);
  font-weight: 700; flex-shrink: 0;
}
.news-link:hover { text-decoration: underline; }

/* ── CONTACT INFO ROW ─────────────────────────────────────── */
.contact-info-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap); margin-top: clamp(24px, 4vw, 40px);
}
.contact-info-item {
  background: var(--green-light); border-radius: var(--radius-sm);
  padding: 18px 20px; font-size: var(--text-sm);
}
.contact-info-item strong { display: block; margin-bottom: 4px; color: var(--green); }
.contact-info-item a { color: var(--green); font-weight: 600; }

/* ── 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(--text); 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: 'DM 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); }

/* ── SUBPAGE STYLES (kept for other pages) ────────────────── */
.page-hero {
  background: var(--green);
  padding: clamp(40px, 7vw, 72px) 0 clamp(36px, 6vw, 64px); color: #fff;
}
.page-hero .kicker { color: var(--sand); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.75); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); color: rgba(255,255,255,.6); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }

.handel-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--gap); align-items: stretch; }
.handel-copy { display: flex; flex-direction: column; justify-content: center; }
.handel-items { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 14px; }
.handel-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow);
}
.handel-item h4 { font-size: var(--text-base); margin-bottom: 3px; }
.handel-item p { color: var(--muted); font-size: var(--text-sm); margin: 0; }
.handel-photo {
  border-radius: var(--radius); overflow: hidden;
  min-height: 340px; background: var(--green-light); position: relative;
}
.handel-photo img { width: 100%; height: 100%; object-fit: cover; }

.friet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
.friet-copy { display: flex; flex-direction: column; gap: 1rem; }
.friet-features { display: flex; flex-direction: column; gap: 10px; margin: .5rem 0 1.25rem; }
.friet-feature { display: flex; align-items: center; gap: 10px; font-size: var(--text-sm); }
.friet-feature::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.levertijden-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px); box-shadow: var(--shadow);
}
.levertijden-card h3 { margin-bottom: 1.25rem; }
.levertijd-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: var(--text-sm);
}
.levertijd-item:last-of-type { border-bottom: none; }
.levertijden-card .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

.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-card .role { color: var(--muted); font-size: var(--text-sm); margin: .25rem 0 1.25rem; }
.contact-card .btn { margin-top: .75rem; }
.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: 'DM 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: 120px; }
.contact-form .btn { align-self: flex-start; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; height: 280px; background: var(--green-light); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.address-card {
  background: var(--green-light); border-radius: var(--radius-sm);
  padding: 18px 20px; margin-top: 14px; font-size: var(--text-sm);
}
.address-card strong { display: block; margin-bottom: 4px; }

.ras-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap); align-items: start; }

.section-green {
  background: var(--green); border-radius: 32px;
  margin: 0 clamp(12px, 2.5vw, 24px); padding: var(--section-py) 0;
}
.section-green .sec-head h2, .section-green .sec-head p { color: #fff; }
.section-green .sec-head p { color: rgba(255,255,255,.7); }
.section-green .kicker { color: var(--sand); }
.ras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.ras-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;
}
.ras-card:hover { background: rgba(255,255,255,.15); }
.ras-card-header { padding: clamp(20px, 3.5vw, 28px); }
.ras-badge {
  display: inline-block; background: var(--sand); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-size: var(--text-xs); font-weight: 700; margin-bottom: 1rem;
}
.ras-card h3 { color: #fff; font-size: var(--text-2xl); margin-bottom: .5rem; }
.ras-card p { color: rgba(255,255,255,.75); font-size: var(--text-sm); }
.ras-card-footer {
  background: rgba(0,0,0,.12);
  padding: clamp(14px, 2.5vw, 20px) clamp(20px, 3.5vw, 28px);
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ras-feat {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border-radius: 999px; padding: 4px 12px;
  font-size: var(--text-xs); font-weight: 600;
}

.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--gap); align-items: stretch; }
.story-photo {
  border-radius: var(--radius); overflow: hidden;
  min-height: 380px; background: var(--green-light); position: relative;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center;
}
.story-copy .lead { margin-bottom: 1.5rem; }
.story-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.75rem; }
.story-point {
  background: var(--green-light); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--green-dark); font-weight: 600; font-size: var(--text-sm);
}
.photo-caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,.92); padding: 7px 15px;
  border-radius: 999px; font-size: var(--text-xs); font-weight: 600; color: var(--green);
}

.prose { max-width: 70ch; font-size: var(--text-base); line-height: 1.75; }
.prose h2 { margin: 2rem 0 .75rem; }
.prose h3 { margin: 1.5rem 0 .5rem; }
.prose p  { margin-bottom: 1rem; color: var(--muted); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--muted); margin-bottom: .35rem; }

.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.act-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;
}
.act-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.act-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;
}
.act-card p { color: var(--muted); font-size: var(--text-sm); margin: .5rem 0 1.1rem; }
.card-link { color: var(--green); font-weight: 700; font-size: var(--text-sm); }
.card-link:hover { text-decoration: underline; }

.img-placeholder {
  width: 100%; height: 100%; min-height: inherit;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  color: var(--muted); font-size: var(--text-sm);
  font-weight: 600; flex-direction: column; gap: 8px;
}
.img-placeholder svg { width: 32px; height: 32px; opacity: .4; }

/* Old lang-switch kept for subpages */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  font-size: var(--text-xs); font-weight: 600; flex-shrink: 0;
  border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden;
}
.lang-switch a { padding: 5px 11px; color: var(--muted); transition: background .15s, color .15s; }
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active { background: var(--green); color: #fff; }
.nav-group { display: flex; align-items: center; gap: 20px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .img-section-grid,
  .img-section-grid--reverse,
  .green-section-grid { grid-template-columns: 1fr; }
  .img-section-grid--reverse .img-section-content { order: 1; }
  .img-section-grid--reverse .img-section-aside { order: 2; }

  .section-two-col {
    grid-template-columns: 1fr;
  }
  .section-photo-col { min-height: 240px; }
  .section-photo-col img { min-height: 240px; }

  .obama-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .story-grid { grid-template-columns: 1fr; }
  .story-photo { min-height: 260px; }
  .ras-grid { grid-template-columns: 1fr; }
  .handel-grid { grid-template-columns: 1fr; }
  .handel-photo { min-height: 240px; order: -1; }
  .friet-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ras-detail-grid { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; }
  .acts { grid-template-columns: 1fr 1fr; }

  .wa-contact-card {
    flex-direction: row; text-align: left;
    padding: 18px 22px; gap: 12px;
  }
  .wa-icon-large { margin-bottom: 0; flex-shrink: 0; }
}

@media (max-width: 640px) {
  .brand img { height: auto; width: clamp(140px, 50vw, 200px); }
  .hero-full { height: clamp(220px, 30vh, 300px); }
  .hero-full h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .blog-grid { grid-template-columns: 1fr; }
  .acts { grid-template-columns: 1fr; }
  .story-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .news-banner { flex-direction: column; align-items: flex-start; }
  .news-link { margin-left: 0; }

  /* Mobile nav for subpages with nav-group */
  .nav-group { width: 100%; flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-group.open .main-nav { display: flex; }
}
