/* ============================================
   Bakker-Bloem Website
   Design system extending the coming-soon page
   Built: 2026-05
   ============================================ */

:root {
  /* Brand colors */
  --green-dark: #142828;
  --green-darker: #0e1e1e;
  --green-mid: #273939;
  --green-soft: #2c4040;
  --green-light: #CDEED3;
  --green-lighter: #EBF9F2;
  --green-accent: #0FD972;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FAF8F4;
  --gray-50: #F7F7F7;
  --gray-100: #F3F3F3;
  --gray-200: #EBEBEB;
  --gray-300: #DCDCDC;
  --gray-400: #BEBEBE;
  --gray-500: #787878;
  --gray-600: #575757;
  --gray-800: #2A2A2A;
  --gray-900: #131313;

  /* Surface tones */
  --surface-white: #FFFFFF;
  --surface-cream: #FAF8F4;
  --surface-mint: #EBF9F2;

  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 240px;

  /* Typography */
  --font-heading: 'Bricolage Grotesque', serif;
  --font-body: 'Instrument Sans', sans-serif;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease-out;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(20, 40, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 40, 40, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 40, 40, 0.12);
}

/* ---- Reset ---- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

/* ---- Reveal animation ---- */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Layout ---- */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-tight {
  padding: 80px 0 40px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
}
.btn-light:hover {
  background: var(--green-lighter);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-arrow::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>") center/contain no-repeat;
  transition: transform var(--transition-fast);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---- Section tags / pill labels ---- */

.section-tag {
  display: inline-block;
  background: var(--green-lighter);
  color: var(--green-dark);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.tag-on-green { background: rgba(255, 255, 255, 0.6); }

.tag-on-dark {
  background: rgba(205, 238, 211, 0.15);
  border: 1px solid rgba(205, 238, 211, 0.3);
  color: var(--green-light);
  backdrop-filter: blur(8px);
}

/* ---- Typography helpers ---- */

.eyebrow {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 640px;
}

.section-header {
  margin-bottom: 56px;
  max-width: 800px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Navbar ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: var(--transition);
}

/* Light mode: white nav for content pages */
.navbar.light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

/* Dark scrolled state (transparent variant) */
.navbar.scrolled:not(.light) {
  background: rgba(20, 40, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-self: start;
}

.nav-logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

/* Logo swap on light nav */
.navbar.light .nav-logo .logo-white { display: none; }
.navbar.light .nav-logo .logo-dark { display: block; }
.navbar:not(.light) .nav-logo .logo-white { display: block; }
.navbar:not(.light) .nav-logo .logo-dark { display: none; }

.nav-links {
  display: flex;
  gap: 2px;
  justify-self: center;
  align-items: center;
}

.nav-link {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.navbar.light .nav-link { color: var(--green-dark); }

.nav-link:hover {
  background: rgba(205, 238, 211, 0.10);
  color: var(--white);
}

.navbar.light .nav-link:hover {
  background: var(--green-lighter);
}

.nav-link[aria-current="page"],
.nav-link-parent[data-active="true"] {
  background: rgba(205, 238, 211, 0.14);
  color: var(--green-light);
}

.navbar.light .nav-link[aria-current="page"],
.navbar.light .nav-link-parent[data-active="true"] {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ---- Nav dropdown ---- */

.nav-item-has-dropdown {
  position: relative;
}

.nav-link-parent {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  width: 11px;
  height: 11px;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item-has-dropdown:hover .nav-link-parent .nav-caret,
.nav-link-parent[data-active="true"] .nav-caret {
  opacity: 1;
}

.nav-item-has-dropdown:hover .nav-caret,
.nav-item-has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(20, 40, 40, 0.18);
  border: 1px solid var(--gray-200);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 110;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-link:hover {
  background: var(--green-lighter);
}

.nav-dropdown-link[aria-current="page"] {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Hover-bridge: ensures dropdown stays open as cursor moves from parent to menu */
.nav-item-has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
}

.navbar.light .nav-social { color: var(--green-dark); }

.nav-social:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar.light .nav-social:hover {
  background: var(--green-lighter);
}

.nav-social svg {
  width: 18px;
  height: 18px;
}

.nav-cta {
  /* Inlog ASN button -- white in dark nav, dark in light nav */
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.navbar.light .nav-toggle { color: var(--green-dark); }

.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 200;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-drawer.open { transform: translateY(0); }

.nav-drawer .nav-link {
  color: var(--white);
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Drawer accordion (mobile dropdowns) */
.drawer-group { display: block; }

.drawer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: none;
  cursor: pointer;
}

.drawer-toggle .nav-caret {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  color: rgba(255, 255, 255, 0.6);
}

.drawer-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
  color: var(--green-light);
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-group.is-open .drawer-submenu {
  display: flex;
}

.drawer-sublink {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.drawer-sublink:hover {
  color: var(--green-light);
}

.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-drawer-close svg { width: 28px; height: 28px; }

.nav-drawer-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.nav-drawer-cta {
  margin-top: 24px;
}

/* ---- Home Hero ---- */

.hero-home {
  background: var(--green-dark);
  min-height: 100vh;
  padding: 130px 32px 32px;
  display: flex;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 80vh;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 30, 30, 0.88) 0%,
    rgba(14, 30, 30, 0.7) 40%,
    rgba(14, 30, 30, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 56px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 80vh;
  max-width: 820px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Page Hero (interior pages) ---- */

.page-hero {
  background: var(--green-dark);
  padding: 160px 0 0;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 60px;
}

.page-hero-text {
  color: var(--white);
  padding-bottom: 40px;
}

.page-hero-text .section-tag { color: var(--green-light); }

.page-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero-text p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.page-hero-image {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simpler page hero (no image, just text on dark) */
.page-hero-text-only {
  background: var(--green-dark);
  padding: 160px 0 100px;
  text-align: center;
  color: var(--white);
}

.page-hero-text-only h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero-text-only p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Prose / text content ---- */

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin: 56px 0 20px;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin: 40px 0 12px;
}

.prose p {
  color: var(--gray-800);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.prose p.lead {
  font-size: 1.25rem;
  color: var(--green-dark);
  line-height: 1.55;
  margin-bottom: 28px;
}

.prose ul.bullets {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul.bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-800);
  font-size: 1.05rem;
  line-height: 1.6;
}

.prose ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--green-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ---- Two-column text + image ---- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse .split-text { order: 2; }

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-image.landscape { aspect-ratio: 4 / 3; }

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Feature / pillar card grid ---- */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* When showing 5 pillars in one view: force 5 columns on wide screens,
   then gracefully wrap to 3, 2, 1 on smaller widths. */
@media (min-width: 1280px) {
  .pillars-grid.pillars-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .pillars-grid.pillars-5 .pillar-card {
    padding: 28px 22px;
  }
  .pillars-grid.pillars-5 .pillar-card h3 {
    font-size: 1.08rem;
  }
  .pillars-grid.pillars-5 .pillar-card p {
    font-size: 0.9rem;
  }
}

.pillar-card {
  background: var(--surface-cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.pillar-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- Service / large CTA cards ---- */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
  transition: var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg, none);
  background-size: cover;
  background-position: var(--card-bg-pos, center);
  z-index: 0;
  transition: transform 0.6s var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 30, 30, 0.05) 0%, rgba(14, 30, 30, 0.85) 100%);
  z-index: 1;
}

.service-card:hover::before { transform: scale(1.04); }

.service-card > * { position: relative; z-index: 2; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 380px;
}

.service-card .btn {
  align-self: flex-start;
}

/* ---- Product list (for service detail pages) ---- */

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.product-item {
  background: var(--surface-cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.product-item:hover {
  border-color: var(--green-light);
  background: var(--green-lighter);
}

.product-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.product-icon svg { width: 18px; height: 18px; }

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

/* ---- Testimonial / quote ---- */

.quote-block {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.quote-attribution {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.7;
}

/* ---- News card grid ---- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}

.news-card:hover {
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.news-card-image {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 24px 24px 28px;
}

.news-card-date {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.news-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.news-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.news-empty {
  background: var(--surface-cream);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.news-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.news-empty p {
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Downloads list ---- */

.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  transition: var(--transition);
}

.download-item:hover {
  border-color: var(--green-light);
  background: var(--green-lighter);
}

.download-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-icon svg { width: 22px; height: 22px; }

.download-info {
  flex: 1;
}

.download-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.download-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.download-button {
  flex-shrink: 0;
}

.downloads-empty {
  background: var(--surface-cream);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

/* ---- Contact ---- */

.contact-section {
  padding: 80px 24px 100px;
  background: var(--white);
}

.contact-card {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-value {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--green-dark);
  transition: var(--transition);
}

a.contact-value:hover { color: var(--green-accent); }

.contact-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: stretch;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

/* ---- Contact form ---- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green-dark);
  transition: border-color var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
}

.form-field textarea { resize: vertical; min-height: 140px; }

/* ---- Big CTA / final call to action ---- */

.cta-band {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  color: var(--white);
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Footer ---- */

.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.5;
}

.footer-since {
  font-size: 0.85rem;
  color: var(--green-light);
  letter-spacing: 0.02em;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--green-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--green-light); }

.footer-partner {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partner-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

.footer-partner img {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: var(--transition-fast);
}

.footer-social:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 0;
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.01em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: var(--green-light); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---- Large screens ---- */
@media (min-width: 1440px) {
  .container { max-width: 1400px; padding: 0 60px; }
  .nav-inner { max-width: 1480px; padding: 0 60px; }
  .nav-logo img { height: 68px; }
  .hero-content h1 { font-size: 4rem; }
}

@media (min-width: 1920px) {
  .container { max-width: 1600px; padding: 0 80px; }
  .nav-inner { max-width: 1720px; padding: 0 80px; }
  .nav-logo img { height: 76px; }
  .hero-content h1 { font-size: 4.6rem; }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero-content { padding: 48px 40px 44px; max-width: 100%; }

  .page-hero { padding-top: 130px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-image { height: 360px; border-radius: var(--radius-lg); }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-text { order: 0; }
  .split-image { aspect-ratio: 4 / 3; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }

  .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .contact-portrait img { min-height: 280px; max-height: 360px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .container, .container-narrow, .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }

  .nav-right { gap: 4px; }
  .nav-social { width: 36px; height: 36px; }
  .nav-cta { padding: 10px 18px; font-size: 0.85rem; }
  .nav-logo img { height: 44px; }

  .hero-home { padding: 100px 8px 8px; }
  .hero-content { padding: 36px 28px 32px; min-height: 70vh; }
  .hero-frame { min-height: 70vh; }

  .page-hero { padding-top: 110px; }
  .page-hero-text h1 { font-size: 2rem; }
  .page-hero-image { height: 240px; }

  .page-hero-text-only { padding: 130px 0 70px; }

  .prose h2 { margin-top: 40px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .product-list { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .service-card { padding: 28px; min-height: 320px; }
  .service-card h3 { font-size: 1.6rem; }

  .quote-block { padding: 36px 28px; }
  .cta-band { padding: 48px 32px; }

  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
