:root {
  --green-dark: #234231;
  --green-deep: #1a3124;
  --green-soft: #3f5f48;
  --beige: #d8c7a8;
  --beige-light: #f4efe5;
  --white: #ffffff;
  --text: #243126;
  --text-soft: #5b665d;
  --border: #dcd6ca;
  --shadow: 0 12px 30px rgba(20, 28, 21, 0.08);
  --radius: 18px;
  --container: 1180px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

img {
  width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 49, 38, 0.08);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.logo-img {
  height: 125px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--green-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--green-dark);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--beige);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--beige-light);
  padding: 0.3rem;
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(35, 66, 49, 0.2);
  color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--beige-light);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--green-dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(36, 49, 38, 0.08);
}

.mobile-menu.open {
  display: flex;
}

.site-header {
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav-wrapper {
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.logo-img {
  transition: height 0.25s ease;
}

.main-nav a {
  transition: color 0.25s ease, font-size 0.25s ease;
}

.desktop-call {
  transition: padding 0.25s ease, font-size 0.25s ease;
}

/* Alleen de gescrollde toestand kleiner maken */
.site-header.shrink {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.site-header.shrink .nav-wrapper {
  min-height: 68px;
}

.site-header.shrink .logo-img {
  height: 82px;
}

.site-header.shrink .main-nav a {
  font-size: 0.95rem;
}

.site-header.shrink .desktop-call {
  padding: 0.75rem 1.15rem;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-home {
  background-image: url("images/hero-agralin.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 35, 25, 0.78) 0%, rgba(20, 35, 25, 0.58) 40%, rgba(20, 35, 25, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 5rem 0;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow {
  color: var(--white);
}

.section-label {
  color: var(--green-soft);
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  color:#e6d3a3; /* beige */
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-soft);
}

.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 1.3rem 0 2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 5.5rem 0;
}

.page-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--white) 100%);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.image-card,
.info-card,
.contact-card,
.map-card,
.cta-box,
.trust-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(36, 49, 38, 0.06);
}

.info-card img {
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.simple-card {
  background: var(--beige-light);
}

.trust-section {
  background: #faf8f3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.trust-item {
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid rgba(36, 49, 38, 0.06);
}

.trust-item span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.alt-bg {
  background: var(--beige-light);
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-soft) 100%);
  color: var(--white);
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.cta-box h2,
.cta-box p,
.cta-box .section-label {
  color: var(--white);
}

.cta-box .section-label {
  opacity: 0.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 1.5rem;
}

.contact-card,
.map-card {
  background: var(--white);
  border: 1px solid rgba(36, 49, 38, 0.08);
}

.contact-card {
  padding: 2rem;
}

.contact-list {
  display: grid;
  gap: 1.4rem;
  margin: 1.8rem 0;
}

.contact-list span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-soft);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.contact-list a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}

.map-card {
  min-height: 460px;
}

.full-width {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 6rem;
  margin-top: 4rem;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.mobile-call-bar {
  display: none !important;
}

@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }

  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .main-nav,
  .desktop-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    margin-left: auto;
  }

  .grid-2,
  .card-grid,
  .trust-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    min-height: 74px;
  }

  .logo-text {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 76vh;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .language-switcher {
    display: none;
  }

  .reverse-mobile > :first-child {
    order: 2;
  }

  .reverse-mobile > :last-child {
    order: 1;
  }

  .mobile-call-bar {
    display: block;
  }

  .site-footer {
    padding-bottom: 8rem;
  }
}

