/* ===========================
   VAN BERGEN | Vertrouwenspunt BVB
   Brand stylesheet
   =========================== */

:root {
  --navy: #102E56;
  --navy-deep: #0a1f3d;
  --navy-soft: #1a3d6b;
  --green: #2F6B46;
  --green-soft: #3d8459;
  --green-deep: #1f4a30;
  --cream: #F1EFEA;
  --cream-light: #F5F4F2;
  --charcoal: #333333;
  --grey-soft: #6b6b6b;
  --grey-line: #e3ddd2;
  --white: #ffffff;

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;

  --container: 1200px;
  --container-narrow: 920px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--green); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--grey-soft);
  font-weight: 300;
}

.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.leaf-divider .line {
  height: 1px;
  background: var(--green);
  width: 60px;
  opacity: 0.5;
}
.leaf-divider svg { width: 22px; height: 22px; color: var(--green); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--container-narrow); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--grey-line);
  background: rgba(255, 255, 255, 0.98);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.85rem; }
.nav__logo img { height: 46px; width: auto; transition: height 0.3s var(--ease); }
.nav.scrolled .nav__logo img { height: 38px; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.nav__logo-text span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 0.25rem;
  font-weight: 500;
}

.nav__menu { display: flex; align-items: center; gap: 2.2rem; }
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.35s var(--ease);
}
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }
.nav__menu a.active { color: var(--green); }

.nav__cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: 2px;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: all 0.3s var(--ease) !important;
}
.nav__cta:hover {
  background: var(--green) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--navy);
  transition: all 0.3s var(--ease);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(16, 46, 86, 0.35);
}
.btn--secondary { background: var(--green); color: var(--white); }
.btn--secondary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(47, 107, 70, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--cream); color: var(--navy); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fafaf7 0%, var(--cream-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(47, 107, 70, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 46, 86, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.hero__content { position: relative; z-index: 2; }
.hero__title { margin-bottom: 1.5rem; font-weight: 400; }
.hero__title em { font-style: italic; color: var(--green); font-weight: 400; }
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--grey-soft);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.65;
}
.hero__lvv-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem 0.75rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(16, 46, 86, 0.08);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  margin-bottom: 2.25rem;
  box-shadow: 0 8px 24px -12px rgba(16, 46, 86, 0.18);
  max-width: 460px;
}
.hero__lvv-badge img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.hero__lvv-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero__lvv-badge-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.hero__lvv-badge-text span {
  font-size: 0.78rem;
  color: var(--grey-soft);
  letter-spacing: 0.02em;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.92);
  box-shadow: 0 30px 80px -30px rgba(16, 46, 86, 0.35);
}
.hero__visual::before {
  content: '';
  position: absolute;
  top: -25px; left: -25px;
  width: 100%; height: 100%;
  border: 1px solid var(--green);
  z-index: -1;
  opacity: 0.4;
}
.hero__visual::after {
  content: '';
  position: absolute;
  bottom: -25px; right: -25px;
  width: 60%; height: 60%;
  background: var(--green);
  z-index: -1;
  opacity: 0.08;
}

.hero__quote {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: var(--white);
  padding: 1.5rem 1.75rem;
  max-width: 280px;
  box-shadow: 0 20px 60px -20px rgba(16, 46, 86, 0.25);
  border-left: 3px solid var(--green);
  z-index: 3;
}
.hero__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy);
}

/* SECTIONS */
.section { padding: 7rem 0; position: relative; }
.section--cream { background: var(--cream-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .eyebrow { color: #a3c2a0; }
.section--green { background: var(--green); color: var(--white); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--white); }

.section__header { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section__header--left { margin-left: 0; text-align: left; max-width: 720px; margin-bottom: 3rem; }
.section__header h2 { margin-bottom: 1rem; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.pillar { text-align: center; padding: 2rem 1rem; }
.pillar__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
  transition: all 0.4s var(--ease);
  background: var(--white);
}
.pillar:hover .pillar__icon {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
}
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.95rem; color: var(--grey-soft); line-height: 1.5; }

/* SERVICES */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--grey-line);
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--green);
  transition: width 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px -25px rgba(16, 46, 86, 0.18);
  border-color: var(--green);
}
.service-card:hover::before { width: 100%; }
.service-card__number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
  font-style: italic;
}
.service-card h3 { margin-bottom: 1rem; }
.service-card > p { color: var(--grey-soft); font-size: 0.98rem; margin-bottom: 1.5rem; }
.service-card ul { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.service-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--grey-line);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 8px; height: 1px;
  background: var(--green);
}

/* APPROACH */
.approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.approach::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green) 20%, var(--green) 80%, transparent);
  opacity: 0.4;
}
.approach-step { text-align: center; padding: 0 1.5rem; position: relative; }
.approach-step__number {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green);
  font-style: italic;
  position: relative;
  z-index: 2;
}
.approach-step h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.approach-step p { font-size: 0.97rem; color: var(--grey-soft); line-height: 1.6; }

/* ABOUT PREVIEW */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview__image { position: relative; aspect-ratio: 4/5; }
.about-preview__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.95);
}
.about-preview__image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 50%; height: 50%;
  border: 1px solid var(--green);
  z-index: -1;
}
.about-preview__content h2 { margin-bottom: 1.5rem; }
.about-preview__content p { color: var(--charcoal); margin-bottom: 1.25rem; }
.about-preview__sig {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-line);
}
.about-preview__sig strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 500;
  display: block;
}
.about-preview__sig span {
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* QUOTE BLOCK */
.quote-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-style: italic;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  position: relative;
  z-index: 2;
}
.section--navy .quote-block p { color: var(--white); }
.section--navy .quote-block::before { color: #a3c2a0; opacity: 0.3; }
.section--green .quote-block p { color: var(--white); }
.section--green .quote-block::before { color: rgba(255,255,255,0.2); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p {
  color: var(--grey-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-line);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; }
.contact-detail__text small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-soft);
  margin-bottom: 0.2rem;
}
.contact-detail__text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-detail__text a:hover strong { color: var(--green); }

/* FORM */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--grey-line);
  box-shadow: 0 30px 60px -30px rgba(16, 46, 86, 0.12);
}
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p {
  color: var(--grey-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--grey-line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 107, 70, 0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--grey-soft);
  margin-top: 1rem;
  line-height: 1.5;
  font-style: italic;
}
.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(47, 107, 70, 0.08);
  border-left: 3px solid var(--green);
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.form-success.active { display: block; }
.form-error {
  display: none;
  padding: 1.5rem;
  background: rgba(180, 60, 40, 0.06);
  border-left: 3px solid #b43c28;
  color: #8a2e1e;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.form-error.active { display: block; }

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.audience-card {
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.audience-card--green { background: var(--green); color: var(--white); }
.audience-card--green h3, .audience-card--green .audience-card__eyebrow { color: var(--white); }
.audience-card--green p { color: var(--white); opacity: 0.95; }
.audience-card--navy { background: var(--navy); color: var(--white); }
.audience-card--navy h3, .audience-card--navy .audience-card__eyebrow { color: var(--white); }
.audience-card--navy p { color: var(--white); opacity: 0.95; }
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(16, 46, 86, 0.3);
}
.audience-card__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.audience-card h3 { font-size: 1.85rem; margin-bottom: 1.25rem; font-weight: 500; }
.audience-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.audience-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.4rem;
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}
.audience-card__link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  gap: 1rem;
}
.audience-card__link svg { width: 14px; height: 14px; }

/* FOOTER */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.footer__brand-logo-mark {
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.footer__brand-logo-mark img { height: 48px; width: auto; display: block; }
.footer__brand-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer__brand-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.footer__brand-logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a3c2a0;
  margin-top: 0.3rem;
}
.footer__brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 320px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }
.footer ul a:hover { color: var(--white); }

.footer__lvv {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 320px;
}
.footer__lvv img { height: 44px; background: white; padding: 4px 6px; border-radius: 2px; }
.footer__lvv span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.footer__bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer__bottom .tagline {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--white); }
.footer__social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* PAGE HEADER */
.page-header {
  padding: 11rem 0 5rem;
  background: linear-gradient(180deg, var(--cream-light) 0%, #fafaf7 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(47, 107, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-header h1 { margin-bottom: 1.25rem; font-weight: 400; }
.page-header h1 em { font-style: italic; color: var(--green); font-weight: 400; }
.page-header p {
  font-size: 1.15rem;
  color: var(--grey-soft);
  line-height: 1.65;
}
.page-header__breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.two-col--reverse { grid-template-columns: 1.2fr 1fr; }
.two-col__image { position: relative; aspect-ratio: 4/5; position: sticky; top: 6rem; }
.two-col__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.94);
}
.two-col__image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 50%; height: 50%;
  border: 1px solid var(--green);
  z-index: -1;
}
.two-col__content h3 { margin-bottom: 1rem; margin-top: 2.5rem; }
.two-col__content h3:first-child { margin-top: 0; }
.two-col__content p { color: var(--charcoal); margin-bottom: 1.25rem; }
.two-col__content ul { list-style: none; padding: 0; margin: 1rem 0 2rem; }
.two-col__content ul li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--grey-line);
}
.two-col__content ul li:last-child { border-bottom: none; }
.two-col__content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 12px; height: 1px;
  background: var(--green);
}

/* CONTENT BLOCK (full-width readable text) */
.content-block { max-width: 100%; }
.content-block .eyebrow { display: block; margin-bottom: 1rem; }
.content-block h2 { margin-bottom: 1.5rem; }
.content-block h2:not(:first-child) { margin-top: 3rem; }
.content-block h3 { margin-bottom: 1rem; margin-top: 2.5rem; }
.content-block h3:first-child,
.content-block .eyebrow + h2,
.content-block .eyebrow + h3 { margin-top: 0; }
.content-block p { color: var(--charcoal); margin-bottom: 1.25rem; }
.content-block ul { list-style: none; padding: 0; margin: 1rem 0 2rem; }
.content-block ul li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--grey-line);
}
.content-block ul li:last-child { border-bottom: none; }
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 12px; height: 1px;
  background: var(--green);
}

/* CALLOUT */
.callout {
  background: var(--cream);
  padding: 2.5rem;
  border-left: 3px solid var(--green);
  margin: 2rem 0;
  border-radius: 0 2px 2px 0;
}
.callout strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.callout p { color: var(--grey-soft); font-size: 0.98rem; margin: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-line); }
.faq-item summary {
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.3s var(--ease);
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--green);
  transition: transform 0.3s var(--ease);
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--green); }
.faq-item__content {
  padding: 0 0 1.5rem;
  color: var(--grey-soft);
  line-height: 1.7;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.animate.in-view { opacity: 1; transform: translateY(0); }

.hero__content > * { animation: fadeUp 1s var(--ease) backwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.hero__content > *:nth-child(4) { animation-delay: 0.55s; }
.hero__content > *:nth-child(5) { animation-delay: 0.7s; }

.hero__visual { animation: fadeIn 1.4s var(--ease) 0.5s backwards; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__quote { display: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .services { grid-template-columns: 1fr; }
  .approach { grid-template-columns: 1fr; gap: 2rem; }
  .approach::before { display: none; }
  .about-preview { grid-template-columns: 1fr; gap: 3rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .two-col__image { position: relative; top: 0; max-width: 480px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 1.25rem; }
  .nav__menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--grey-line);
    transform: translateY(-150%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
  }
  .nav__menu.active { transform: translateY(0); }
  .nav__menu a { font-size: 1.1rem; padding: 0.5rem 0; }
  .nav__cta { text-align: center; }
  .nav__toggle { display: flex; }
  .nav__inner { padding: 0 1.25rem; }
  .nav__logo-text strong { font-size: 1.05rem; }
  .nav__logo-text span { font-size: 0.62rem; }
  .nav__logo-company { display: none; }
  .nav__logo img { height: 40px; }

  .hero__lvv-badge { padding: 0.65rem 1rem 0.65rem 0.75rem; gap: 0.75rem; }
  .hero__lvv-badge img { height: 42px; }
  .hero__lvv-badge-text strong { font-size: 0.92rem; }
  .hero__lvv-badge-text span { font-size: 0.72rem; }

  .section { padding: 4.5rem 0; }
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .page-header { padding: 8rem 0 3rem; }
  .pillars { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .service-card { padding: 2.25rem 1.75rem; }
  .audience-card { padding: 2.25rem 1.75rem; }
  .audience-card p { font-size: 1rem; line-height: 1.7; }
  .audience-card h3 { font-size: 1.55rem; }
  .section--green p, .section--green li { font-size: 1rem; line-height: 1.7; }
  .section--navy p, .section--navy li { font-size: 1rem; line-height: 1.7; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .pillars { grid-template-columns: 1fr; }
}
