:root {
  --orange: #FF834F;
  --dark: #4D4D4D;
  --light: #F7F7F5;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--dark);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  height: clamp(88px, 10vw, 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo {
  display: block;
  width: clamp(220px, 22vw, 280px);
  height: auto;
}

/* =========================
   HERO
   Zelfde compositie op elk apparaat
   ========================= */

.hero {
  position: relative;
  height: clamp(350px, 36vw, 455px);
  min-height: 350px;
  overflow: hidden;
  background: #fff;
}

.mountain-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/mountains.png");
  background-repeat: no-repeat;
  background-size: clamp(720px, 76vw, 970px) auto;
  background-position: right 0 bottom clamp(-90px, -7vw, -55px);
}

/* Witte fade tussen tekst en bergbeeld */
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.99) 24%,
      rgba(255,255,255,.90) 40%,
      rgba(255,255,255,.42) 56%,
      rgba(255,255,255,.08) 75%,
      rgba(255,255,255,0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,0) 60%,
      rgba(255,255,255,.68) 100%
    );
}

/* Logo berg.png vóór mountains.png */
.mountain-logo {
  position: absolute;
  z-index: 3;
  width: clamp(360px, 47.5vw, 608.33px);
  height: auto;

  /* huidige gekozen desktoppositie proportioneel behouden */
  right: clamp(-52px, -4vw, -18px);
  top: clamp(18px, 2.2vw, 28px);

  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(1000px, calc(100% - clamp(32px, 5vw, 56px)));
  height: 100%;
  margin: 0 auto;
}

.hero-copy {
  width: clamp(360px, 41vw, 520px);
  padding-top: clamp(42px, 5vw, 63px);
}

.eyebrow {
  margin-bottom: clamp(18px, 2vw, 26px);
  color: var(--orange);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(38px, 4.3vw, 55px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.orange-rule {
  width: 38px;
  height: 2px;
  margin: clamp(20px, 2vw, 26px) 0 clamp(22px, 2.4vw, 30px);
  background: var(--orange);
}

.hero p {
  margin: 0;
  color: #555;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.6;
  font-weight: 400;
}

/* =========================
   CONTACT
   ========================= */

.contact {
  min-height: clamp(155px, 13.5vw, 170px);
  padding: clamp(22px, 2.1vw, 26px) 20px clamp(26px, 2.4vw, 30px);
  background: linear-gradient(180deg, #fafaf8 0%, #f7f7f5 100%);
}

.contact-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(22px, 2.15vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.contact-rule {
  width: 38px;
  height: 2px;
  margin: 12px auto 16px;
  background: var(--orange);
}

.contact p {
  margin: 0 0 14px;
  color: #666;
  font-size: clamp(13px, 1.1vw, 14px);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 16px);
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  text-decoration: none;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
}

.contact-link:hover {
  color: var(--orange);
}

.separator {
  width: 1px;
  height: 22px;
  background: #bdbdbd;
}

.mail-icon {
  position: relative;
  width: 19px;
  height: 14px;
  border: 2px solid var(--orange);
  border-radius: 1px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 11px;
  height: 2px;
  background: var(--orange);
}

.mail-icon::before {
  left: 1px;
  transform: rotate(34deg);
  transform-origin: left center;
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-34deg);
  transform-origin: right center;
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  color: var(--orange);
  font-size: 23px;
  line-height: 1;
  transform: rotate(-35deg);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  min-height: 42px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #424242;
  color: rgba(255,255,255,.72);
  font-size: clamp(10px, .95vw, 12px);
  letter-spacing: .01em;
  text-align: center;
}

/* =========================
   SMALLER SCREENS
   Geen nieuwe compositie:
   alleen proportioneel schalen
   ========================= */

@media (max-width: 760px) {
  .hero {
    height: 405px;
    min-height: 405px;
  }

  .mountain-bg {
    background-size: 760px auto;
    background-position: right -135px bottom -40px;
  }

  .mountain-logo {
    width: 470px;
    right: -105px;
    top: 28px;
  }

  .hero-inner {
    width: calc(100% - 28px);
  }

  .hero-copy {
    width: min(355px, 72vw);
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(34px, 7vw, 42px);
  }

  .hero p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact {
    min-height: 158px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 82px;
  }

  .logo {
    width: 205px;
  }

  .hero {
    height: 365px;
    min-height: 365px;
  }

  .mountain-bg {
    background-size: 650px auto;
    background-position: right -178px bottom -22px;
  }

  .mountain-logo {
    width: 390px;
    right: -105px;
    top: 30px;
  }

  .hero-copy {
    width: min(300px, 76vw);
    padding-top: 34px;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .orange-rule {
    margin: 18px 0 18px;
  }

  .hero p {
    font-size: 12px;
    line-height: 1.45;
  }

  .desktop-only {
    display: none;
  }

  .contact {
    min-height: 170px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .contact h2 {
    font-size: 21px;
  }

  .contact-row {
    gap: 8px 12px;
  }

  .contact-link {
    font-size: 13px;
  }

  .separator {
    height: 18px;
  }

  .site-footer {
    min-height: 46px;
    font-size: 10px;
    line-height: 1.35;
  }
}
