/* ═══════════════════════════════════════════════════════════
   HOPPATEE – Gedeelde stijlen
   Gebruik in elke pagina:
     <link rel="stylesheet" href="style.css" />
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Kleuren */
  --rust:     #b54a2b;
  --rust-dk:  #8e3820;
  --cream:    #f5f0e8;
  --warm:     #ede8dc;
  --dark:     #131927;
  --mid:      #4a4440;
  --light:    #9a8f85;
  --green:    #4a7c59;
  --green-lt: #e8f0eb;

  /* Typografie */
  --ff-head: 'Inter', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  /* Overige */
  --radius: 6px;
  --shadow: 0 2px 24px rgba(19,25,39,.10);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAFIE HELPERS ──────────────────────────────────── */
.section-label {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust); font-weight: 500; margin-bottom: .6rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--mid); max-width: 55ch;
  font-size: 1.02rem; line-height: 1.7;
}

/* ─── KNOPPEN ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rust); color: #fff;
  padding: .8rem 1.8rem; border-radius: var(--radius);
  font-weight: 500; text-decoration: none; font-size: 1rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--rust-dk); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--mid); font-weight: 500; text-decoration: none;
  font-size: .95rem; border-bottom: 1px solid var(--light);
  transition: color .2s;
}
.btn-secondary:hover { color: var(--rust); }

/* ─── CHIPS ───────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; color: var(--mid);
  background: var(--warm); padding: .3rem .75rem;
  border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(19,25,39,.08);
  transition: background .2s, color .2s;
}
.chip:hover { background: var(--rust); color: #fff; }

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(19,25,39,.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .7rem;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .9rem; font-weight: 500;
  color: var(--mid); transition: color .2s;
}
.nav-links a:hover { color: var(--rust); }
.nav-links a.active { color: var(--rust); }
.nav-cta {
  background: var(--rust); color: #fff;
  padding: .45rem 1.1rem; border-radius: var(--radius);
  text-decoration: none; font-size: .9rem; font-weight: 500;
  transition: background .2s;
}
.nav-cta:hover { background: var(--rust-dk); }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  opacity: .85;
  transition: opacity .2s;
}
.footer-logo img:hover { opacity: 1; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: #fff; }
footer small { font-size: .8rem; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust); font-weight: 500; margin-bottom: .75rem;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--rust);
  font-size: 0.72em;
  font-weight: 700;
}
.hero-body {
  color: var(--mid);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; gap: 1.5rem; margin-top: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; color: var(--mid);
}
.trust-item svg { color: var(--rust); flex-shrink: 0; }
.contact-chips {
  display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 2rem;
}
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}
/* ─── DIENSTEN ────────────────────────────────────────────── */
.services {
  background: var(--rust);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  color: #fff;
}
.services .section-label { color: rgba(255,255,255,.65); }
.services .section-title { color: #fff; }
.services .section-subtitle { color: rgba(255,255,255,.75); margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.75rem;
  transition: background .2s, transform .2s;
  cursor: default;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.service-image {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.service-card h3 {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 1.15rem;
  margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; opacity: .8; line-height: 1.6; }
.service-tags {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-top: auto;
  padding-top: 1rem;
}
.service-tags span {
  font-size: .75rem;
  background: rgba(255,255,255,.15);
  padding: .2rem .6rem; border-radius: 100px;
}

/* ─── WERKWIJZE ───────────────────────────────────────────── */
.why {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.why-points {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 2rem;
}
.why-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}
.why-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 900; font-size: .9rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-point h4 { font-weight: 600; font-size: 1rem; margin-bottom: .25rem; }
.why-point p { font-size: .9rem; color: var(--mid); }
.why-visual {
  background: var(--warm);
  border-radius: 12px;
  padding: 2rem;
  position: sticky; top: 6.5rem;
}

/* ─── DUURZAAMHEID ────────────────────────────────────────── */
.sustainability {
  background: var(--dark);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.sustainability .section-label { color: var(--green); }
.sustainability .section-title { color: #fff; }
.sustainability .section-subtitle { color: rgba(255,255,255,.65); margin-bottom: 3rem; }
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.sustain-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.75rem;
}
.sustain-card .icon { font-size: 1.6rem; margin-bottom: .85rem; }
.sustain-card h4 { font-weight: 600; font-size: 1rem; margin-bottom: .4rem; }
.sustain-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.bcorp-badge {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--green-lt); color: var(--green);
  padding: .65rem 1.25rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  margin-top: 1rem;
}
.bcorp-badge svg { flex-shrink: 0; }

/* ─── WERKGEBIED ──────────────────────────────────────────── */
.area {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--warm);
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.area-map {
  background: #fff;
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: .9rem; color: var(--light);
  overflow: hidden;
}
.area-map img { width: 100%; height: 100%; object-fit: cover; }
.location-tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.location-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .85rem; color: var(--mid);
  background: #fff; padding: .35rem .85rem;
  border-radius: 100px;
  border: 1px solid rgba(19,25,39,.1);
}
.location-tag.primary { background: var(--rust); color: #fff; border-color: transparent; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.contact-wrapper {
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-info {
  background: var(--rust);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.contact-info .section-label { color: rgba(255,255,255,.65); }
.contact-info .section-title { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.contact-info > p { color: rgba(255,255,255,.8); margin-top: .85rem; font-size: .95rem; }
.contact-methods { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.contact-method {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.contact-method:hover { color: #fff; }
.contact-method-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-privacy {
  margin-top: 1.25rem;
  font-size: .82rem;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.contact-form {
  padding: clamp(2rem, 4vw, 3.5rem);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.6); margin-bottom: .45rem;
  letter-spacing: .04em;
}
.form-optional { opacity: .5; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: #fff;
  padding: .7rem 1rem;
  font-family: var(--ff-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rust);
  background: rgba(255,255,255,.12);
}
.form-group select option { background: #1c2438; color: #fff; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.btn-submit {
  width: 100%;
  background: var(--rust); color: #fff;
  border: none; border-radius: var(--radius);
  padding: .85rem 1.5rem;
  font-family: var(--ff-body);
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: .5rem;
}
.btn-submit:hover { background: var(--rust-dk); transform: translateY(-1px); }

/* ─── ANIMATIES ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.hero .fade-up:nth-child(1) { animation-delay: .1s; }
.hero .fade-up:nth-child(2) { animation-delay: .25s; }
.hero .fade-up:nth-child(3) { animation-delay: .4s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-grid,
  .why-grid,
  .area-grid,
  .contact-wrapper      { grid-template-columns: 1fr; }
  .services-grid        { grid-template-columns: 1fr; }
  .sustain-grid         { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .nav-links            { display: none; }
  .contact-info         { order: -1; }
  .hero-visual          { display: none; }
  .footer-inner         { flex-direction: column; align-items: flex-start; }
}
