/* HO Schoonmaakdiensten — vormgeving */

/* Basiskleuren en instellingen */
:root {
  --background: #fff;
  --foreground: #111312;
  --primary: #111312;
  --primary-foreground: #fff;
  --border: #dededb;
  --radius: 2px;
  --font-sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #797954;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 0.99;
  letter-spacing: -1.7px;
}
h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1px;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
}
p {
  color: #626361;
}
/* Header en navigatie */
header {
  max-width: 1440px;
  min-height: 88px;
  padding: 12px 6.5%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
  font-family: Georgia, serif;
  font-size: 15px;
}
.monogram {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #080909;
  color: white;
  font-size: 29px;
  font-weight: 400;
  border: 1px solid #444;
  box-shadow: inset 0 0 0 3px #080909;
}
nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
}
header nav {
  margin-left: auto;
}
nav a {
  padding: 7px 0;
  border-bottom: 1px solid transparent;
}
nav a:hover {
  border-color: #111;
}
.button {
  display: inline-flex;
  gap: 23px;
  align-items: center;
  justify-content: center;
  padding: 15px 27px;
  background: #101211;
  color: white;
  border: 1px solid #101211;
  border-radius: 2px;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #363c37;
  transform: translateY(-1px);
}
.header-cta {
  padding: 12px 23px;
}
.menu-toggle {
  display: none;
}
/* Introductie */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: #f8f8f6;
  max-width: 1600px;
  margin: auto;
}
.hero-copy {
  padding: 49px 9% 45px 14%;
}
.hero-copy > p {
  max-width: 450px;
  margin: 27px 0 25px;
  font-size: 17px;
  line-height: 1.45;
}
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.signature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 3px;
  color: #686c69;
  margin-top: 37px;
}
.signature span {
  width: 35px;
  height: 1px;
  background: #999;
}
/* Secties en diensten */
.section {
  padding: 40px max(4.6%, calc((100% - 1300px) /2));
}
.section-heading {
  text-align: center;
  margin-bottom: 27px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.9px;
  font-size: 11px;
  margin-top: 9px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 16px;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0000000c;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  display: block;
  margin-bottom: 19px;
}
.service-card p {
  font-size: 16px;
  margin-top: 9px;
  min-height: 53px;
}
.service-card svg {
  margin-top: 12px;
  color: #656965;
}
/* Waarom HO */
.why {
  background: #f7f7f5;
  padding-top: 30px;
  padding-bottom: 35px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 33px;
  text-align: center;
}
.values > div {
  padding: 0 38px;
  border-right: 1px solid var(--border);
}
.values > div:last-child {
  border: 0;
}
.values p {
  margin: 10px auto 0;
  max-width: 290px;
}
/* Klantervaringen */
.experiences {
  padding-top: 32px;
  padding-bottom: 30px;
}
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 23px;
}
.quotes figure {
  margin: 0;
  padding: 40px 45px;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quotes blockquote {
  font-size: 18px;
  max-width: 390px;
  margin: 0 0 17px auto;
}
.quotes figcaption {
  font-size: 14px;
  margin-left: auto;
  width: min(100%, 390px);
}
/* Contact en formulier */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: #f7f7f5;
  padding-top: 38px;
  padding-bottom: 35px;
}
.contact-copy {
  padding: 0 20px;
}
.contact h2 {
  font-family: Arial, sans-serif;
  font-size: 40px;
  margin: 7px 0 13px;
}
.contact-copy > p {
  max-width: 480px;
}
address {
  display: grid;
  gap: 11px;
  margin-top: 32px;
  font-style: normal;
  color: #505350;
}
address a,
address span {
  display: flex;
  align-items: center;
  gap: 23px;
}
address a:hover {
  text-decoration: underline;
}
form {
  border-left: 1px solid var(--border);
  padding-left: 70px;
}
label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}
label > span {
  color: #777;
}
input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #d9dad7;
  background: #fff;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
  margin-top: 3px;
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: #333;
}
.form-note {
  font-size: 12px;
  margin-top: 8px;
}
.status {
  font-size: 14px;
  margin-top: 10px;
}
/* Footer */
footer {
  padding: 25px 6% 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top nav {
  gap: 23px;
  font-size: 12px;
}
.footer-top > .eyebrow {
  font-size: 9px;
  border-left: 1px solid var(--border);
  padding-left: 35px;
}
.copyright {
  font-size: 12px;
  margin-top: 25px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 15px;
  background: white;
  padding: 10px;
  z-index: 9;
}
.skip:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Brede schermen */
@media (min-width: 1600px) {
  .hero-copy {
    padding-left: 100px;
  }
}
/* Tablets en kleinere schermen */
@media (max-width: 1100px) {
  header {
    gap: 20px;
    padding: 14px 4%;
  }
  header nav {
    gap: 17px;
  }
  .header-cta {
    display: none;
  }
  .hero-copy {
    padding-left: 9%;
  }
  .hero-image {
    min-height: 470px;
  }
  .service-card {
    padding: 12px;
  }
  h3 {
    font-size: 20px;
  }
  .contact {
    gap: 30px;
  }
  form {
    padding-left: 30px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > .eyebrow {
    display: none;
  }
}
/* Mobiele telefoons */
@media (max-width: 700px) {
  header {
    min-height: 78px;
    position: relative;
  }
  .logo {
    font-size: 12px;
  }
  .monogram {
    width: 47px;
    height: 47px;
    font-size: 25px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    padding: 10px;
  }
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    z-index: 5;
    border-bottom: 1px solid #ddd;
  }
  header nav.open {
    display: flex;
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 37px 7% 35px;
  }
  h1 {
    font-size: 48px;
  }
  .hero-copy > p {
    font-size: 16px;
    max-width: 460px;
  }
  .hero-image {
    min-height: 0;
    height: auto;
    max-height: 450px;
    aspect-ratio: 1.2;
    object-position: center 45%;
  }
  .signature {
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 27px;
  }
  .section {
    padding: 34px 6%;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card img {
    aspect-ratio: 1.3;
  }
  .service-card h3 {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .service-card p {
    font-size: 14px;
    min-height: 64px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .values {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .values > div {
    border-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .values > div:last-child {
    padding-bottom: 0;
  }
  .quotes {
    grid-template-columns: 1fr;
  }
  .quotes figure {
    padding: 30px;
    min-height: 215px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .contact-copy {
    padding: 0;
  }
  .contact h2 {
    font-size: 35px;
  }
  form {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 25px 0 0;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .copyright {
    line-height: 1.7;
  }
}
/* Toegankelijkheid: minder beweging */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
