:root {
  --green-950: #08281d;
  --green-900: #0b3022;
  --green-800: #164b32;
  --green-700: #28643c;
  --green-100: #e9f0e8;
  --gold: #c79a4c;
  --gold-light: #e4c17d;
  --cream: #f7f5ef;
  --white: #ffffff;
  --ink: #13231a;
  --muted: #657067;
  --line: #dfe4dd;
  --shadow: 0 18px 46px rgba(15, 45, 28, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.55;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--white);
  border-radius: 5px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  color: var(--white);
  background: rgba(5, 35, 24, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.footer-brand .brand {
  padding: 5px;
  border: 1px solid rgba(199, 154, 76, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.site-header .brand img {
  width: 205px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  font-size: 0.86rem;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.project-card:focus-visible,
.menu-toggle:focus-visible,
.lightbox button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.button-gold {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(199, 154, 76, 0.2);
}

.button-gold:hover {
  background: #b98939;
}

.button-green {
  color: var(--white);
  background: var(--green-700);
}

.button-green:hover {
  background: #34764a;
}

.button-outline-light {
  color: var(--white);
  background: rgba(6, 33, 23, 0.2);
  border-color: rgba(255, 255, 255, 0.76);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.button-outline-green {
  color: var(--green-900);
  background: transparent;
  border-color: var(--green-700);
}

.button-outline-green:hover {
  color: var(--white);
  background: var(--green-700);
}

.header-cta {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 16, 0.92) 0%, rgba(4, 24, 16, 0.72) 43%, rgba(4, 24, 16, 0.16) 75%),
    linear-gradient(0deg, rgba(4, 24, 16, 0.24), rgba(4, 24, 16, 0.04)),
    url("../images/hero/adam-tuinprojecten-hero.webp") center 60% / cover no-repeat;
  transform: scale(1.01);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  padding-top: 130px;
  padding-bottom: 58px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--green-700);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.gold-rule {
  display: block;
  width: 58px;
  height: 3px;
  margin: 22px 0;
  background: var(--gold);
}

.gold-rule.centered {
  margin: 15px auto 14px;
}

.hero-intro {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(18, 43, 28, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 105px;
  padding: 22px 20px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--green-700);
}

.trust-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong,
.trust-item div span {
  display: block;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.trust-item div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}

.page-hero {
  padding: 156px 0 78px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 40, 29, 0.96), rgba(22, 75, 50, 0.88)),
    var(--green-900);
}

.page-hero .container {
  max-width: 860px;
}

.page-hero h1 {
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.7;
}

.privacy-content {
  padding: 76px 0 92px;
  background: var(--cream);
}

.container.narrow {
  width: min(850px, calc(100% - 40px));
}

.privacy-content .narrow {
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.privacy-content h2 {
  margin: 38px 0 12px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.2;
}

.privacy-content h2:first-of-type {
  margin-top: 28px;
}

.privacy-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.privacy-content strong {
  color: var(--ink);
}

.privacy-content a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration-color: rgba(40, 100, 60, 0.35);
  text-underline-offset: 3px;
}

.privacy-content ul {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--muted);
}

.privacy-content li + li {
  margin-top: 7px;
}

.section-heading h2,
.about-copy h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.45rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.services {
  background:
    radial-gradient(circle at 50% 20%, rgba(39, 99, 60, 0.05), transparent 35%),
    var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 238px;
  padding: 27px 16px 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d7ded7;
  border-radius: 7px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #bdcdbf;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card svg {
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.projects {
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  min-width: 0;
  padding: 0;
  color: var(--white);
  background: var(--green-950);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.project-card-wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, opacity 250ms ease;
}

.project-card:hover img {
  opacity: 0.8;
  transform: scale(1.035);
}

.project-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 20px 17px;
  background: linear-gradient(transparent, rgba(3, 25, 16, 0.9));
}

.project-overlay strong,
.project-overlay small {
  display: block;
}

.project-overlay strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.project-overlay small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
}


.reviews {
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 50% 20%, rgba(39, 99, 60, 0.05), transparent 35%),
    var(--cream);
}

.reviews-desktop-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.reviews-artwork {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 11px;
  text-decoration: none;
}

.reviews-hotspot:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.reviews-hotspot-google {
  left: 15.6%;
  top: 70.1%;
  width: 31.6%;
  height: 16.5%;
}

.reviews-hotspot-leave {
  left: 51.1%;
  top: 70.1%;
  width: 31.5%;
  height: 16.5%;
}

.reviews-mobile-card {
  position: relative;
  display: none;
  padding: 36px 18px 34px;
  background: #fffdf8;
  border: 1px solid rgba(205, 184, 143, 0.48);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(77, 60, 27, 0.18);
  text-align: center;
  overflow: hidden;
}

.reviews-mobile-card::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(205, 184, 143, 0.44);
  border-radius: 13px;
  content: "";
  pointer-events: none;
}

.reviews-mobile-card h2 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0 auto;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 10.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.reviews-divider {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(210px, 62vw);
  margin: 14px auto 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #c9a142;
}

.reviews-divider span {
  width: 72px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.78;
}

.reviews-divider svg {
  width: 38px;
  height: 20px;
  fill: currentColor;
}

.reviews-copy {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}

.reviews-copy p {
  margin: 0 auto 7px;
  color: #303633;
  font-size: 1rem;
  line-height: 1.45;
}

.reviews-copy strong {
  color: var(--green-900);
  font-weight: 800;
}

.reviews-stars {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 24px 0 28px;
  justify-content: center;
  gap: 8px;
  color: #c99622;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 3px 8px rgba(120, 82, 5, 0.16);
}

.reviews-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.reviews-button {
  display: inline-flex;
  width: 100%;
  min-height: 64px;
  padding: 14px 16px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.reviews-button:hover {
  transform: translateY(-2px);
}

.reviews-button-icon {
  display: inline-flex;
  min-width: 48px;
  height: 32px;
  margin-right: 14px;
  padding-right: 14px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid currentColor;
}

.reviews-button-google {
  color: var(--white);
  background: linear-gradient(180deg, #d2a03a, #b87c17);
  box-shadow: 0 15px 24px rgba(166, 111, 19, 0.24);
}

.reviews-button-google .reviews-button-icon {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
}

.reviews-button-outline {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.34);
  border: 2px solid var(--green-900);
}

.reviews-button-outline:hover {
  color: var(--white);
  background: var(--green-900);
}

.reviews-button-outline svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.about {
  padding: 92px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(96, 152, 103, 0.18), transparent 36%),
    var(--green-900);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 74px;
}

.about-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  display: grid;
  margin: 26px 0 30px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-light);
  content: "✓";
  font-weight: 800;
}

.about-image {
  position: relative;
  min-height: 460px;
}

.about-image img {
  width: 100%;
  height: 460px;
  border-radius: 8px;
  object-fit: cover;
}

.area-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  min-width: 180px;
  padding: 17px 20px;
  color: var(--green-950);
  background: var(--gold-light);
  border: 6px solid var(--green-900);
  border-radius: 8px;
}

.area-badge strong,
.area-badge span {
  display: block;
}

.area-badge strong {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-badge span {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.approach {
  background: var(--cream);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.approach-grid article {
  position: relative;
  padding: 32px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(16, 48, 30, 0.06);
}

.approach-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.approach-grid h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-band {
  position: relative;
  color: var(--white);
  background: var(--green-950);
  overflow: hidden;
}

.contact-band-media {
  position: absolute;
  inset: 0;
  opacity: 0.27;
  background:
    linear-gradient(90deg, var(--green-950), rgba(8, 40, 29, 0.5)),
    url("../images/projects/groenwerk-tuinaanleg/tuinaanleg-02.webp") center 62% / cover no-repeat;
}

.contact-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 255px;
  padding-top: 52px;
  padding-bottom: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-band-inner > div:first-child {
  max-width: 520px;
}

.contact-band h2 {
  font-size: clamp(2.25rem, 4vw, 3.3rem);
}

.contact-intro {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--white);
}

.contact-actions {
  display: grid;
  flex: 0 1 590px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-actions .button {
  padding-right: 18px;
  padding-left: 18px;
  white-space: nowrap;
}

.mailto-fallback-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: min(560px, calc(100% - 40px));
  padding: 34px 56px 34px 34px;
  border: 2px solid var(--gold);
  border-radius: 18px;
  color: var(--white);
  background: var(--green-950);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  font-size: 1rem;
  transform: translate(-50%, -50%);
}

.mailto-fallback-toast strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.1;
}

.mailto-fallback-toast p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.mailto-fallback-toast a {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  background: rgba(228, 193, 125, 0.12);
  font-weight: 700;
  text-decoration: none;
}

.mailto-fallback-email {
  margin-bottom: 20px;
  padding: 0 !important;
  color: var(--white) !important;
  background: transparent !important;
  font-size: 1.05rem;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.mailto-fallback-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.mailto-fallback-actions a,
.mailto-fallback-actions button {
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(228, 193, 125, 0.42);
  border-radius: 7px;
  color: var(--gold-light);
  background: rgba(228, 193, 125, 0.12);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}

.mailto-fallback-toast a:hover {
  color: var(--green-950);
  background: var(--gold-light);
}

.mailto-fallback-actions button:hover {
  color: var(--green-950);
  background: var(--gold-light);
}

.mailto-fallback-copy-status {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.mailto-fallback-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 1.8rem;
  cursor: pointer;
}

.work-area {
  background: var(--cream);
}

.work-area .section-heading {
  max-width: 820px;
}

.work-area-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.work-area-grid li {
  padding: 14px 16px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

.work-area-contact {
  max-width: 820px;
  margin: 34px auto 0;
  text-align: center;
}

.work-area-contact p {
  margin: 0;
  color: var(--muted);
}

.work-area-actions {
  display: flex;
  margin-top: 22px;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 62px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #061f16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand .brand img {
  width: 162px;
  height: auto;
}

.footer-brand .brand {
  padding: 12px;
  border-radius: 16px;
}

.footer-brand p,
.footer-grid p {
  max-width: 270px;
  margin: 18px 0 0;
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  display: block;
  margin: 7px 0;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-grid > div:not(.footer-brand) > .footer-contact-link {
  display: inline-flex;
  width: min(100%, 240px);
  margin: 6px 0;
  padding: 7px 11px;
  border: 1px solid rgba(228, 193, 125, 0.25);
  border-radius: 6px;
  align-items: center;
  gap: 7px;
}

.footer-contact-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-grid > div:not(.footer-brand) > .footer-contact-link span {
  display: inline;
  margin: 0;
  font-size: inherit;
  overflow-wrap: anywhere;
}

.footer-contact-link:hover {
  border-color: rgba(228, 193, 125, 0.7);
}

.footer-bottom {
  display: grid;
  margin-top: 48px;
  padding-top: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
  grid-template-columns: 1fr auto 1fr;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom > a:last-child {
  justify-self: end;
}

.footer-powered {
  display: block;
  width: 255px;
  justify-self: center;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-powered:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-powered img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  background: rgba(3, 18, 12, 0.94);
  border: 0;
}

.lightbox::backdrop {
  background: rgba(3, 18, 12, 0.94);
}

.lightbox-shell {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 34px 90px;
  align-items: center;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  gap: 20px;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  align-content: center;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  margin: 0 auto;
  border-radius: 7px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
}

.lightbox figcaption {
  display: flex;
  max-width: 900px;
  margin: 12px auto 0;
  color: var(--white);
  justify-content: space-between;
  gap: 30px;
  font-size: 0.82rem;
}

.lightbox figcaption span {
  color: rgba(255, 255, 255, 0.62);
}

.lightbox button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 45px;
  }
}



@media (max-width: 700px) {
  .reviews {
    padding: 62px 0 68px;
  }

  .reviews-desktop-card {
    display: none;
  }

  .reviews-mobile-card {
    display: block;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header,
  .header-inner {
    min-height: 70px;
  }

  .site-header .brand img {
    width: 178px;
    height: 46px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 5px;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 16px 18px;
    background: rgba(5, 35, 24, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(4, 24, 16, 0.9) 0%, rgba(4, 24, 16, 0.62) 75%, rgba(4, 24, 16, 0.34)),
      linear-gradient(0deg, rgba(4, 24, 16, 0.32), rgba(4, 24, 16, 0.08)),
      url("../images/hero/adam-tuinprojecten-hero.webp") center 60% / cover no-repeat;
  }

  .hero-inner {
    padding-top: 110px;
    padding-bottom: 45px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(3rem, 9vw, 4.8rem);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .projects-grid {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-wide {
    grid-column: span 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 390px;
  }

  .about-image img {
    height: 390px;
  }

  .area-badge {
    right: 10px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    flex: none;
  }

  .work-area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-shell {
    padding: 70px 18px 22px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .lightbox button {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }
}



@media (max-width: 540px) {
  .container {
    width: min(100% - 28px, 480px);
  }

  .site-header .brand img {
    width: 158px;
    height: 44px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(4, 24, 16, 0.88), rgba(4, 24, 16, 0.42)),
      url("../images/hero/adam-tuinprojecten-hero.webp") 48% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
    line-height: 1;
  }

  .hero-intro {
    font-size: 0.94rem;
  }


  .hero-actions {
    flex-direction: column;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .work-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .work-area-grid li {
    padding: 11px 8px;
    font-size: 0.78rem;
  }

  .work-area-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .work-area-actions .button {
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .mailto-fallback-toast {
    width: calc(100% - 28px);
    padding: 28px 46px 28px 24px;
  }

  .mailto-fallback-actions {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 86px;
    padding: 16px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section,
  .about {
    padding: 70px 0;
  }

  .page-hero {
    padding: 128px 0 62px;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .privacy-content {
    padding: 54px 0 70px;
  }

  .container.narrow {
    width: min(100% - 28px, 480px);
  }

  .privacy-content .narrow {
    padding: 28px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card {
    min-height: 210px;
    padding: 22px 11px 18px;
  }

  .service-card svg {
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 0.98rem;
  }

  .service-card p {
    font-size: 0.72rem;
  }

  .projects-grid {
    grid-auto-rows: 235px;
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-image img {
    height: 310px;
    min-height: 310px;
  }

  .area-badge {
    right: 10px;
    bottom: -20px;
  }

  .approach-grid article {
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: center;
    gap: 14px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-powered {
    width: min(100%, 255px);
    justify-self: center;
  }

  .footer-bottom > a:last-child {
    justify-self: center;
  }

  .lightbox-shell {
    padding: 70px 8px 16px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 3px;
  }

  .lightbox button {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }

  .lightbox figure img {
    max-height: calc(100vh - 130px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
