:root {
  --bg: #f4f6f2;
  --surface: #ffffff;
  --surface-soft: #e8eee8;
  --text: #111512;
  --muted: #5f675f;
  --line: rgba(17, 21, 18, 0.1);
  --dark: #101713;
  --gold: #a88c4d;
  --container: min(1240px, calc(100% - 40px));
  --header-height: 96px;
  --radius: 8px;
  --shadow: 0 20px 54px rgba(16, 23, 19, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

h1,h2,h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}

p { margin: 0; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: transparent;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease, border-color .28s ease;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  will-change: transform, background-color, box-shadow;
  backface-visibility: hidden;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled, .site-header.menu-open {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  border-bottom-color: rgba(17,17,17,.08);
}
.header-progress {
  position: absolute;
  left: 0; top: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s ease;
}
.site-header.scrolled .header-progress { opacity: 1; }
.header-inner {
  min-height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: min-height .3s cubic-bezier(.22, 1, .36, 1);
}
.site-header.scrolled .header-inner, .site-header.menu-open .header-inner { min-height: 74px; }
.brand {
  position: relative;
  display: grid;
  align-items: center;
  width: 286px;
  max-width: 58vw;
}
.brand-logo {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .25s ease, transform .25s ease;
}
.brand-logo-light { opacity: 1; filter: drop-shadow(0 10px 22px rgba(0,0,0,.2)); }
.brand-logo-dark { opacity: 0; }
.brand:hover .brand-logo { transform: translateY(-1px); }
.site-header.scrolled .brand-logo-light, .site-header.menu-open .brand-logo-light { opacity: 0; }
.site-header.scrolled .brand-logo-dark, .site-header.menu-open .brand-logo-dark { opacity: 1; }
.site-nav {
  display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.86); transition: color .25s ease;
}
.site-header.scrolled .site-nav, .site-header.menu-open .site-nav { color: var(--text); }
.site-nav a { position: relative; font-size: .95rem; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid rgba(255,255,255,.28); padding: 12px 18px; border-radius: 8px;
}
.site-header.scrolled .nav-cta, .site-header.menu-open .nav-cta { border-color: rgba(17,17,17,.14); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; padding: 0; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto; background: #fff;
  transition: transform .25s ease, opacity .25s ease, background-color .25s ease;
}
.site-header.scrolled .nav-toggle span, .site-header.menu-open .nav-toggle span { background: var(--text); }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; min-height: 84svh; color: #fff; overflow: clip; display: flex; align-items: end;
}
.hero-media, .contact-bg { position: absolute; inset: 0; }
.hero-media img, .contact-bg {
  width: 100%; height: 100%; object-fit: cover; transform-origin: center top;
}
.hero-media img {
  position: absolute;
  inset: 0;
  object-position: center center;
  opacity: 0;
  filter: saturate(.94) contrast(.98);
  transform: scale(1.02);
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.hero-media img.is-active {
  opacity: 1;
  animation: heroSlowZoom 9s ease-out forwards;
}
.hero-media img[aria-hidden="true"] {
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,14,15,.76) 7%, rgba(14,14,15,.24) 54%, rgba(14,14,15,.12) 100%),
    linear-gradient(to right, rgba(14,14,15,.36), rgba(14,14,15,.08) 56%);
}
.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .62fr; gap: 36px;
  align-items: end; padding: 140px 0 68px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .24em; font-size: .74rem;
  color: rgba(255,255,255,.7);
}
.eyebrow-dark { color: var(--muted); }
h1 { font-size: clamp(3rem, 6.2vw, 5.8rem); line-height: .98; max-width: 960px; }
h2 { font-size: clamp(2.15rem, 4.3vw, 4.05rem); line-height: 1.06; }
.hero-text, .section-head p, .statement-copy p, .intro-grid p, .process-step p, .contact-copy p {
  color: rgba(255,255,255,.78);
}
.hero-text { max-width: 560px; margin-top: 22px; line-height: 1.75; font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 8px; border: 1px solid transparent; cursor: pointer; text-transform: uppercase;
  letter-spacing: .16em; font-size: .79rem; transition: .25s ease;
}
.btn-primary { background: #fff; color: var(--text); }
.btn-primary:hover { background: #efefef; transform: translateY(-1px); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.26); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.light-ghost { color: #fff; border-color: rgba(255,255,255,.24); }
.btn-block { width: 100%; }

.hero-panel {
  align-self: end; background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.mini-label {
  display: inline-block; padding: 8px 12px; border-radius: 8px; background: rgba(255,255,255,.12);
  text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; margin-bottom: 12px;
}
.hero-panel-top p { color: rgba(255,255,255,.8); line-height: 1.7; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats strong { display: block; font-size: 1.7rem; font-family: "Lora", Georgia, serif; }
.hero-stats span { display: block; margin-top: 6px; font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.45; }
.scroll-indicator {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 34px; height: 60px; z-index: 2;
}
.scroll-indicator span {
  display: block; width: 2px; height: 100%; margin: 0 auto; background: linear-gradient(to bottom, rgba(255,255,255,.65), rgba(255,255,255,0));
}
.scroll-indicator::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%; background: #fff; animation: floatDot 1.9s ease infinite;
}
@keyframes floatDot { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }
@keyframes heroSlowZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }

.intro-band {
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; padding: 62px 0;
}
.intro-grid p:last-child, .statement-copy p, .process-step p { color: var(--muted); }
.trust-strip {
  background: var(--dark);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
}
.trust-strip-inner div {
  min-height: 148px;
  padding: 28px;
  background: var(--dark);
}
.trust-strip-inner span {
  display: inline-block;
  color: var(--gold);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.trust-strip-inner p {
  margin-top: 18px;
  max-width: 310px;
  color: rgba(255,255,255,.78);
  font-family: "Lora", Georgia, serif;
  font-size: 1.74rem;
  line-height: 1.06;
  font-weight: 600;
}
.section { padding: 110px 0; }
.section-head { max-width: 820px; margin-bottom: 42px; }
.section-head p { color: var(--muted); margin-top: 14px; max-width: 620px; line-height: 1.75; }

.about-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.18fr;
  gap: 54px;
  align-items: center;
}
.about-media {
  margin: 0;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 23, 19, .1);
}
.about-media figcaption {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}
.about-copy {
  max-width: 760px;
}
.about-copy h2 {
  max-width: 700px;
}
.about-copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 700px;
}
.about-copy a {
  color: var(--text);
  border-bottom: 1px solid rgba(168, 140, 77, .62);
}
.about-points {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.about-points span {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.services .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}
.services .section-head h2 {
  max-width: 680px;
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
}
.services .section-head p {
  margin-top: 0;
  max-width: 680px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) 1.32fr;
  gap: 34px;
  align-items: start;
}
.services-feature {
  position: relative;
  top: auto;
  margin: 0;
}
.services-image-cut {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 20px 54px rgba(16, 23, 19, .12);
}
.services-image-cut::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(14,14,15,.24), rgba(14,14,15,0) 48%),
    linear-gradient(to right, rgba(14,14,15,.16), rgba(14,14,15,0) 42%);
}
.services-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.06) brightness(.98);
  transform: scale(1.015);
}
.services-feature figcaption {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.services-feature span {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.services-feature p {
  color: var(--muted);
  line-height: 1.7;
}
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease;
}
.service-row::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
  opacity: .62;
}
.service-row > div {
  padding-left: 64px;
}
.service-row:hover {
  color: #000;
}
.service-row h3 {
  font-size: clamp(1.9rem, 2.65vw, 2.7rem);
  line-height: 1;
}
.service-row p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}
.statement-section { padding-top: 0; }
.statement-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: center;
}
.statement-copy p { color: var(--muted); line-height: 1.75; margin-top: 16px; max-width: 560px; }
.benefit-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.benefit-list li {
  padding-left: 18px; position: relative; color: var(--text); border-top: 1px solid var(--line); padding-top: 14px;
}
.benefit-list li::before {
  content: ""; position: absolute; left: 0; top: 20px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.statement-media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.compare-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.before-after {
  --compare: 58%;
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: #ddd;
  touch-action: pan-y;
  user-select: none;
}
.before-after + .before-after { margin-top: 24px; }
.before-after img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.after-wrap {
  position: absolute; inset: 0; width: 100%; overflow: hidden; clip-path: inset(0 calc(100% - var(--compare)) 0 0); pointer-events: none;
}
.after-wrap .after-image {
  width: 100%;
  height: 100%;
}
.before-after::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255,255,255,.82);
  z-index: 3;
  pointer-events: none;
}
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5;
}
.compare-handle {
  position: absolute; top: 50%; left: var(--compare); transform: translate(-50%, -50%); z-index: 4; width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.16); display: grid; place-items: center; pointer-events: none;
}
.compare-handle span {
  width: 14px; height: 14px; border-left: 2px solid var(--text); border-right: 2px solid var(--text);
}
.compare-label {
  position: absolute; top: 18px; padding: 10px 14px; border-radius: 8px; background: rgba(17,17,17,.62); color: #fff; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; z-index: 3;
}
.compare-label-left { left: 18px; }
.compare-label-right { right: 18px; }

.projects { background: #f4f6f2; }
.project-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 20px;
}
.project-card {
  position: relative; overflow: hidden; border-radius: var(--radius); min-height: 0; box-shadow: var(--shadow);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,.08) 56%, rgba(0,0,0,0));
}
.project-overlay { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 18px; color: #fff; }
.project-type { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.wide-card { grid-column: span 8; grid-row: span 2; }
.tall-card { grid-column: span 4; grid-row: span 2; }
.project-card:not(.wide-card):not(.tall-card) { grid-column: span 4; grid-row: span 2; }

.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: start;
}
.process-intro { padding-right: 16px; }
.process-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; min-height: 240px;
}
.process-step span { display: block; color: var(--gold); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; }
.process-step h3 { margin-top: 14px; font-size: 1.7rem; }
.process-step p { margin-top: 10px; line-height: 1.7; }

.contact-section {
  position: relative; color: #fff; overflow: clip;
}
.contact-bg { background-size: cover; background-position: center; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,14,15,.88), rgba(14,14,15,.76)); }
.contact-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: .92fr .78fr; gap: 30px; padding: 110px 0;
}
.contact-copy p { line-height: 1.75; max-width: 560px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.contact-list li {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; display: grid; gap: 8px;
}
.contact-list span { color: rgba(255,255,255,.56); font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; }
.contact-list a, .contact-list strong { color: #fff; font-weight: 500; }
.contact-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  backdrop-filter: blur(14px); padding: 28px; box-shadow: var(--shadow);
}
.quote-form h3 { font-size: 2rem; }
.quote-form p { color: rgba(255,255,255,.7); line-height: 1.65; margin-top: 10px; }
.quote-form label { display: grid; gap: 8px; margin-top: 16px; font-size: .92rem; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.14); color: #fff;
  border-radius: 8px; padding: 15px 16px; outline: none;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.52); }
.quote-form select option { color: var(--text); }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.contact-shortcuts a {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255,255,255,.82);
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background-color .25s ease, border-color .25s ease;
}
.contact-shortcuts a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.7); padding: 30px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-footer p { color: rgba(255,255,255,.5); }
.footer-logo { width: 292px; max-width: 72vw; height: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, .55fr));
  gap: 34px;
  padding: 48px 0 30px;
}
.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  line-height: 1.7;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col h2 {
  font-family: "Inter", sans-serif;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin: 0 0 8px;
}
.footer-col a {
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.js .reveal-delay { transition-delay: .12s; }
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-grid, .intro-grid, .statement-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 132px 0 64px; }
  .hero-panel { max-width: 520px; }
  h1 { font-size: 3.9rem; }
  h2 { font-size: 3.05rem; }
  .services .section-head { grid-template-columns: 1fr; gap: 16px; }
  .services .section-head p { margin-top: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-intro { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-media img { aspect-ratio: 16 / 10; }
  .brands-layout { grid-template-columns: 1fr; gap: 42px; }
  .brand-item:nth-child(even), .brand-item:nth-child(3) { margin-left: 0; }
  .services-layout { grid-template-columns: 1fr; gap: 34px; }
  .services-feature {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 22px;
    align-items: end;
  }
  .services-image-cut { aspect-ratio: 4 / 3; }
  .services-feature figcaption { margin-top: 0; }
}

@media (max-width: 860px) {
  :root { --header-height: 84px; --container: min(1240px, calc(100% - 28px)); }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; left: 14px; right: 14px; top: calc(var(--header-height) + 8px); background: rgba(255,255,255,.97);
    border: 1px solid rgba(17,17,17,.08); border-radius: 8px; padding: 20px; box-shadow: var(--shadow);
    display: grid; gap: 16px; transform: translateY(-12px); opacity: 0; pointer-events: none; color: var(--text);
  }
  h1 { font-size: 3.05rem; line-height: 1; }
  h2 { font-size: 2.45rem; line-height: 1.08; }
  .hero { min-height: 86svh; }
  .hero-grid { padding: 126px 0 56px; }
  .hero-text { font-size: .98rem; line-height: 1.68; }
  .hero-media img:nth-child(1) { object-position: 42% center; }
  .hero-media img:nth-child(2) { object-position: 52% center; }
  .hero-media img:nth-child(3) { object-position: 28% center; }
  .site-header.menu-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .wide-card, .tall-card, .project-card:not(.wide-card):not(.tall-card) { grid-column: auto; grid-row: auto; }
  .project-card { aspect-ratio: 4 / 5; }
  .project-card.wide-card { aspect-ratio: 16 / 10; }
  .form-actions { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .service-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2.15rem; }
  .hero { min-height: auto; }
  .hero-grid { padding: 122px 0 48px; }
  .hero-panel { padding: 22px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .intro-grid { padding: 46px 0; }
  .section { padding: 78px 0; }
  .about-grid { gap: 28px; }
  .about-media figcaption { font-size: .94rem; }
  .services-feature { grid-template-columns: 1fr; }
  .services-feature figcaption { margin-top: 12px; }
  .before-after { aspect-ratio: 4 / 5; }
  .compare-label { top: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-grid { padding: 82px 0; }
}

@media (max-width: 480px) {
  :root { --container: min(1240px, calc(100% - 24px)); --header-height: 78px; }
  .header-inner { gap: 14px; }
  .brand { width: 220px; max-width: calc(100vw - 88px); }
  .site-nav { left: 12px; right: 12px; top: calc(var(--header-height) + 6px); }
  h1 { font-size: 2.24rem; line-height: 1.05; }
  h2 { font-size: 1.92rem; line-height: 1.1; }
  .hero-grid { padding: 112px 0 40px; }
  .hero-text { font-size: .94rem; line-height: 1.62; }
  .hero-panel { display: none; }
  .eyebrow { letter-spacing: .16em; font-size: .68rem; }
  .section-head { margin-bottom: 30px; }
  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px 0 24px;
  }
  .service-row::before { top: 29px; width: 28px; }
  .service-row > div { padding-left: 46px; }
  .service-row h3 { font-size: 1.78rem; }
  .project-overlay { padding: 16px; }
  .contact-list strong, .footer-inner p { overflow-wrap: anywhere; }
  .brand-item { padding: 22px 0; }
}


section[id] { scroll-margin-top: 120px; }


.before-gallery-section {
  padding-top: 28px;
}
.before-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.before-shot-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.before-shot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.before-shot-copy {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,246,242,0.98));
}
.before-shot-copy span {
  display: inline-block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.before-shot-copy h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.25;
}
.before-shot-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
}

/* Voor / Na labels in before-gallery */
.before-shot-pair {
  border-top: 3px solid transparent;
}
.pair-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}
.pair-label-voor {
  background: rgba(168, 140, 77, .12);
  color: #8a6f2e;
  border-top-color: #a88c4d;
}
.pair-label-na {
  background: rgba(26, 90, 55, .1);
  color: #1a5a37;
  border-top-color: #1a5a37;
}
.before-shot-pair.before-shot-pair + .before-shot-pair {
  border-top-color: #1a5a37;
}
/* Kolomindeling: paarkaarten naast elkaar, resto gewoon 2-koloms */
.before-shot-pair { border-top-width: 3px; }

.brands-section {
  padding-top: 98px;
  padding-bottom: 98px;
  background:
    linear-gradient(90deg, rgba(14,14,15,.035) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--surface), #f4f6f2);
  background-size: 52px 100%, auto;
  border-top: 1px solid var(--line);
}
.brands-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.brands-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 560px;
}
.brand-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.brand-flow span {
  border: 1px solid rgba(17,17,17,.13);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.62);
}
.brands-showcase {
  display: grid;
  gap: 12px;
}
.brand-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 116px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.brand-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--gold);
  opacity: .7;
}
.brand-item:hover {
  transform: translateY(-2px);
  border-color: rgba(17,17,17,.18);
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.07);
}
.brand-item:nth-child(even) { margin-left: 34px; }
.brand-item img {
  width: 100%;
  max-width: 230px;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}
.brand-item:nth-child(2) img { max-width: 260px; }
.brand-item:first-child img { max-width: 285px; max-height: 84px; }
.brand-item span {
  display: inline-block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand-item p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}
.brand-item-compact {
  min-height: 94px;
  padding: 18px 24px;
  grid-template-columns: minmax(132px, 230px) 1fr;
}
.brand-item-compact div {
  display: flex;
  align-items: center;
  min-height: 36px;
}
.brand-item-compact img {
  max-height: 64px;
}
.brand-item-compact[href*="gbal.nl"] img {
  max-width: 142px;
  max-height: 76px;
}

.review-section {
  background: var(--surface);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-shell {
  display: grid;
  gap: 26px;
}
.review-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .74fr) auto;
  gap: 22px;
  align-items: end;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--line);
}
.review-heading .eyebrow {
  margin-bottom: 10px;
}
.review-heading h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}
.review-intro {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 660px;
}
.review-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f5;
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}
.review-summary strong {
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.review-summary span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
.review-summary ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}
.review-summary li {
  position: relative;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 14px;
  font-size: .94rem;
}
.review-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.review-btn {
  background: var(--text);
  color: #fff;
  white-space: nowrap;
  min-height: 50px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.review-card {
  grid-column: span 4;
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  overflow: hidden;
  min-height: 220px;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 68px;
  height: 2px;
  background: var(--gold);
}
.review-card-wide {
  grid-column: span 8;
  background: #f7f9f5;
}
.review-card-note {
  background: #fdfcf9;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.review-meta span,
.review-link-card span {
  display: inline-block;
  color: var(--gold);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.review-meta strong {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}
.review-stars {
  margin: 0;
  letter-spacing: .1em;
  font-size: .84rem;
  color: #937637;
}
.review-card blockquote {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.12;
  font-weight: 600;
}
.review-card-wide blockquote {
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  max-width: 900px;
}
.review-author {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(17,21,18,.12);
}
.review-author span {
  color: inherit;
  font-weight: 500;
  font-size: .96rem;
}
.review-author small {
  color: var(--muted);
  font-size: .84rem;
}
.review-link-card {
  grid-column: span 12;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #f1f5ef;
  color: var(--text);
  transition: transform .25s ease, background-color .25s ease;
}
.review-link-card:hover {
  transform: translateY(-2px);
  background: #e8efe6;
}
.review-link-card strong {
  font-family: "Lora", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
  font-weight: 600;
}

.faq-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 68px;
  align-items: start;
}
.faq-copy {
  position: sticky;
  top: 112px;
}
.faq-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 540px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-right: 48px;
  font-family: "Lora", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold);
  transition: transform .24s ease, background-color .24s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: #f4f6f2;
}
.faq-list details p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 780px;
}

.error-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 0 80px;
  background: var(--surface);
}
.error-panel {
  max-width: 760px;
}
.error-panel p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.error-actions .btn-primary {
  background: var(--text);
  color: #fff;
}
.error-actions .btn-ghost {
  color: var(--text);
  border-color: rgba(17,17,17,.18);
}

@media (max-width: 860px) {
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .brands-layout { grid-template-columns: 1fr; gap: 34px; }
  .review-heading { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .review-heading h2 { font-size: 2.35rem; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card, .review-card-wide, .review-link-card { grid-column: 1 / -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-copy { position: relative; top: auto; }
  .review-card { min-height: auto; }
  .review-card blockquote { font-size: 1.44rem; }
  .review-card-wide blockquote { font-size: 1.9rem; }
  .brand-item, .brand-item:nth-child(even) { margin-left: 0; }
  .brand-item { grid-template-columns: 1fr; gap: 14px; }
  .before-gallery-grid { grid-template-columns: 1fr; }
  .brand-item img, .brand-item:first-child img { max-width: 260px; }
}

@media (max-width: 1060px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip-inner div { min-height: auto; }
}

@media (min-width: 861px) and (max-width: 1060px) {
  .brands-layout { grid-template-columns: 1fr; gap: 42px; }
  .brand-item:nth-child(even) { margin-left: 0; }
}

@media (max-width: 720px) {
  .trust-strip-inner div { padding: 22px; }
  .trust-strip-inner p { font-size: 1.45rem; }
  .faq-list summary { font-size: 1.56rem; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 38px; }
  .footer-bottom { display: grid; }
  .review-heading h2 { font-size: 1.95rem; }
  .review-summary { padding: 16px; }
  .review-card { padding: 18px; }
  .review-card-wide blockquote { font-size: 1.72rem; }
  .review-link-card strong { font-size: 1.56rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img.is-active { animation: none; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 56px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .40);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .50);
  background: #20c65c;
}
.whatsapp-float svg { flex-shrink: 0; }

/* Pulse animatie op het WhatsApp icoon */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.38); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.65); }
}
.whatsapp-float { animation: waPulse 3s ease infinite; }
.whatsapp-float:hover { animation: none; }

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 400;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(17,21,18,.14);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, background .22s ease, border-color .22s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--text);
  color: #fff;
  border-color: transparent;
}

/* ===== HERO RATING BADGE ===== */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  transition: opacity .2s ease;
}
.hero-rating:hover { opacity: .8; }
.hero-rating-stars {
  color: #f5c040;
  font-size: 1rem;
  letter-spacing: 1px;
}
.hero-rating-label {
  font-size: .76rem;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* ===== FOOTER COLUMN TITLES ===== */
.footer-col-title {
  font-family: "Inter", sans-serif;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin: 0 0 8px;
}

/* ===== FOCUS VISIBLE VERBETERD ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== MOBILE ADJUSTMENTS VOOR NIEUWE ELEMENTEN ===== */
@media (max-width: 560px) {
  .whatsapp-float { bottom: 20px; right: 16px; padding: 11px 14px 11px 12px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 13px; border-radius: 50%; }
  .back-to-top { bottom: 84px; right: 16px; }
}
