/* ============================================================
   Mike Adriaans · site-custom.css
   Layout skeleton + cinematic component library
   modern-fresh-bento · hell · Blattgrün
   (MUSS von jeder *.html verlinkt sein — Deploy-Gate)
   ============================================================ */

/* --- Scroll-progress bar --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-leaf), var(--c-brand));
  transform-origin: left center; transform: scaleX(0);
  z-index: 100; pointer-events: none;
}

/* ============================================================
   HERO — Cinematic-v2 hell (Crossfade + Ken Burns + Haze + Dust)
   ============================================================ */
.hero-cinematic {
  position: relative; min-height: 100vh;
  display: grid; place-items: center;
  overflow: hidden; isolation: isolate;
  background: var(--c-brand-deep);
}
.hero-cinematic > .bg {
  position: absolute; inset: -4%; z-index: 0;
  background-size: cover; background-position: center center;
  filter: saturate(1.08) brightness(1.02) contrast(1.02);
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform; opacity: 0; transition: opacity 2s ease;
}
.hero-cinematic > .bg.bg-1 { animation: kenburns 30s ease-in-out infinite alternate,    fade-cycle-1 27s ease-in-out infinite; }
.hero-cinematic > .bg.bg-2 { animation: kenburns 30s ease-in-out infinite alternate -10s, fade-cycle-2 27s ease-in-out infinite; }
.hero-cinematic > .bg.bg-3 { animation: kenburns 30s ease-in-out infinite alternate -20s, fade-cycle-3 27s ease-in-out infinite; }
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -3%); }
}
@keyframes fade-cycle-1 { 0%,28%{opacity:1;} 36%,92%{opacity:0;} 100%{opacity:1;} }
@keyframes fade-cycle-2 { 0%,28%{opacity:0;} 36%,61%{opacity:1;} 69%,100%{opacity:0;} }
@keyframes fade-cycle-3 { 0%,61%{opacity:0;} 69%,92%{opacity:1;} 100%{opacity:0;} }

/* Light, fresh wash — NOT a dark letterbox look, but a reliable scrim behind copy */
.hero-cinematic > .wash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,46,28,0.46) 0%, rgba(20,46,28,0.16) 30%, rgba(20,46,28,0.30) 60%, rgba(20,46,28,0.68) 100%),
    radial-gradient(58% 46% at 50% 50%, rgba(15,38,23,0.46), transparent 72%),
    radial-gradient(70% 50% at 50% 24%, rgba(255,255,255,0.08), transparent 60%);
}
.hero-cinematic > .haze {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(45% 35% at 28% 18%, rgba(255,255,255,0.22), transparent 70%);
  mix-blend-mode: screen;
}
.hero-cinematic > .dust {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    radial-gradient(circle 1.5px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(circle 1px at 80% 22%, rgba(255,255,255,0.5), transparent),
    radial-gradient(circle 2px at 52% 70%, rgba(255,255,255,0.5), transparent),
    radial-gradient(circle 1.5px at 70% 82%, rgba(255,255,255,0.45), transparent),
    radial-gradient(circle 1px at 12% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(circle 1.5px at 90% 50%, rgba(255,255,255,0.5), transparent),
    radial-gradient(circle 1px at 33% 86%, rgba(255,255,255,0.5), transparent),
    radial-gradient(circle 1.5px at 62% 16%, rgba(255,255,255,0.5), transparent);
  background-size: 100% 100%;
  animation: dust-drift 28s linear infinite; opacity: 0.7;
}
@keyframes dust-drift {
  0%{transform:translateY(0) translateX(0);opacity:0.25;}
  50%{transform:translateY(-18px) translateX(10px);opacity:0.7;}
  100%{transform:translateY(-34px) translateX(-6px);opacity:0.2;}
}
.hero-cinematic .hero-inner {
  position: relative; z-index: 3; text-align: center;
  color: #fff; padding: 0 var(--gap-md); max-width: 980px;
}
.hero-cinematic .hero-eyebrow {
  font-family: var(--f-ui); font-size: 0.82rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: #c4e8a6; font-weight: 700;
  text-shadow: 0 1px 14px rgba(0,0,0,0.55);
  margin-bottom: var(--gap-md);
  opacity: 0; transform: translateY(-12px); transition: opacity 1.2s 0.3s, transform 1.2s 0.3s;
}
.hero-cinematic.in-view .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-cinematic .hero-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: var(--size-hero); line-height: 0.98; letter-spacing: -0.035em;
  color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,0.35); margin: 0 0 var(--gap-md);
}
.hero-cinematic .hero-title .char {
  display: inline-block; opacity: 0;
  transform: translateY(34px) rotateX(-28deg); filter: blur(8px);
  transition: opacity 1.3s cubic-bezier(.2,.7,.2,1), transform 1.3s cubic-bezier(.2,.7,.2,1), filter 1.3s;
}
.hero-cinematic.in-view .hero-title .char { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
.hero-cinematic .hero-title em { color: var(--c-leaf); font-style: normal; }
.hero-cinematic .hero-sub {
  font-family: var(--f-body); font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: #ffffff; max-width: 56ch; margin: 0 auto var(--gap-lg); line-height: 1.6;
  text-shadow: 0 1px 18px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(16px); transition: opacity 1.3s 0.7s, transform 1.3s 0.7s;
}
.hero-cinematic.in-view .hero-sub { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: inline-flex; flex-wrap: wrap; gap: var(--gap-sm); justify-content: center;
  opacity: 0; transform: translateY(14px); transition: opacity 1.3s 1s, transform 1.3s 1s;
}
.hero-cinematic.in-view .hero-actions { opacity: 1; transform: translateY(0); }
.hero-trust {
  display: inline-flex; flex-wrap: wrap; gap: var(--gap-md); align-items: center; justify-content: center;
  margin-top: var(--gap-lg); font-family: var(--f-ui); font-size: 0.82rem; letter-spacing: 0.08em;
  color: #ffffff; text-shadow: 0 1px 12px rgba(0,0,0,0.55);
  opacity: 0; transform: translateY(12px); transition: opacity 1.3s 1.3s, transform 1.3s 1.3s;
}
.hero-cinematic.in-view .hero-trust { opacity: 1; transform: translateY(0); }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--c-leaf); }
.hero-trust strong { color: #fff; font-weight: 700; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4;
  font-family: var(--f-ui); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-white-faint); display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  animation: cueFloat 2.6s ease-in-out infinite;
}
.scroll-cue::after { content: "↓"; font-size: 1.1rem; }
@keyframes cueFloat { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(7px);} }

/* ============================================================
   SUB-PAGE HERO (compact, image strip)
   ============================================================ */
.page-hero {
  position: relative; min-height: 52vh; display: grid; align-items: end;
  overflow: hidden; isolation: isolate; background: var(--c-brand-deep);
}
.page-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; filter: saturate(1.05) brightness(0.96); will-change: transform;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,46,28,0.42) 0%, rgba(20,46,28,0.22) 40%, rgba(20,46,28,0.86) 100%);
}
.page-hero .page-hero-inner { position: relative; z-index: 2; padding: var(--gap-2xl) 0 var(--gap-xl); color: #fff; }
.page-hero h1 { color: #fff; font-size: var(--size-h1); text-shadow: 0 3px 30px rgba(0,0,0,0.45); margin-bottom: var(--gap-sm); }
.page-hero p { color: #ffffff; max-width: 56ch; font-size: 1.1rem; margin: 0; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.page-hero .crumbs { font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #c4e8a6; margin-bottom: var(--gap-md); font-weight: 600; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento {
  display: grid; gap: var(--gap-md);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
.bento-cell {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--c-cream); box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.bento-cell:hover img { transform: scale(1.06); }
.bento-cell .b-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gap-md); z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(31,68,41,0.78) 100%);
  color: #fff;
}
.bento-cell .b-overlay .tag { font-family: var(--f-ui); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-leaf); font-weight: 700; margin-bottom: 4px; }
.bento-cell .b-overlay h3 { color: #fff; font-size: 1.25rem; margin: 0; }
.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.row-2 { grid-row: span 2; }
.bento-cell.text {
  display: flex; flex-direction: column; justify-content: center; padding: var(--gap-lg);
  background: var(--c-brand); color: #fff;
}
.bento-cell.text .eyebrow { color: var(--c-leaf); }
.bento-cell.text .eyebrow::before { background: var(--c-leaf); }
.bento-cell.text h3 { color: #fff; }
.bento-cell.text p { color: var(--c-white-mute); font-size: 0.95rem; margin: 0; }
.bento-cell.stat { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: var(--gap-lg); background: #fff; border: 1px solid var(--c-rule); }
.bento-cell.stat .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.6rem,5vw,3.8rem); color: var(--c-brand); line-height: 1; letter-spacing: -0.04em; }
.bento-cell.stat .label { font-family: var(--f-ui); font-size: 0.82rem; color: var(--c-ink-mute); margin-top: 0.4rem; }
@media (max-width: 920px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-cell.span-2 { grid-column: span 2; }
  .bento-cell.row-2 { grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento-cell.span-2 { grid-column: span 1; }
}

/* ============================================================
   SPLIT (image + text) — alternating
   ============================================================ */
.split {
  display: grid; gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1fr 1fr; align-items: center;
}
.split + .split { margin-top: var(--gap-2xl); }
.split.reverse .split-text { order: 2; }
.split-img {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(.2,.7,.2,1); transform: scale(1.08); }
.split.in-view .split-img img { transform: scale(1); }
.split-img .float-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  background: rgba(251,252,251,0.94); backdrop-filter: blur(6px);
  padding: 0.7rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow-sm);
  font-family: var(--f-ui); font-size: 0.8rem; font-weight: 600; color: var(--c-brand-deep);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.split-img .float-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-brand); }
.split-text .num-kick { font-family: var(--f-display); font-weight: 800; font-size: 0.95rem; color: var(--c-brand-light); letter-spacing: 0.05em; }
.split-text ul { list-style: none; margin: var(--gap-md) 0 0; padding: 0; }
.split-text ul li { position: relative; padding-left: 1.8rem; margin-bottom: 0.7rem; color: var(--c-ink-mute); }
.split-text ul li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 9px; height: 9px; border-radius: 50%; background: var(--c-brand); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap-md); }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-rule);
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card .svc-img { aspect-ratio: 3/2; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.55); transition: transform .8s, filter .6s; }
.svc-card:hover .svc-img img { transform: scale(1.07); filter: saturate(1.1); }
.svc-card .svc-body { padding: var(--gap-lg); flex: 1; display: flex; flex-direction: column; }
.svc-card .svc-num { font-family: var(--f-display); font-weight: 800; font-size: 0.85rem; color: var(--c-brand-light); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.svc-card p { color: var(--c-ink-mute); font-size: 0.96rem; margin: 0 0 var(--gap-md); }
.svc-card .svc-link { margin-top: auto; font-family: var(--f-ui); font-weight: 700; font-size: 0.88rem; color: var(--c-brand); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .svc-link .arrow { transition: transform .25s; }
.svc-card:hover .svc-link .arrow { transform: translateX(4px); }

/* Detailed service rows (leistungen page) */
.svc-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; padding: var(--gap-2xl) 0; border-bottom: 1px solid var(--c-rule); }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail.reverse .sd-text { order: 2; }
.svc-detail .sd-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.svc-detail .sd-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(.2,.7,.2,1); transform: scale(1.08); }
.svc-detail.in-view .sd-img img { transform: scale(1); }
.svc-detail .sd-num { font-family: var(--f-display); font-weight: 800; font-size: 3.2rem; color: var(--c-brand-soft); line-height: 1; letter-spacing: -0.04em; -webkit-text-stroke: 1.5px var(--c-brand-light); color: transparent; }
.svc-detail .sd-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--gap-md); }
.svc-detail .sd-chips span { font-family: var(--f-ui); font-size: 0.78rem; font-weight: 500; padding: 0.4rem 0.85rem; border-radius: 999px; background: var(--c-brand-soft); color: var(--c-brand-dark); }
@media (max-width: 820px) { .svc-detail { grid-template-columns: 1fr; } .svc-detail.reverse .sd-text { order: 0; } }

/* ============================================================
   BEFORE / AFTER SLIDER (draggable)
   ============================================================ */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); cursor: ew-resize;
  user-select: none; touch-action: none; background: var(--c-cream);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); will-change: clip-path; }
.ba-slider .ba-label {
  position: absolute; top: 16px; z-index: 4; font-family: var(--f-ui); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: rgba(29,38,32,0.7); padding: 0.4rem 0.8rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.ba-slider .ba-label.before { left: 16px; }
.ba-slider .ba-label.after { right: 16px; background: rgba(63,125,79,0.85); }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  z-index: 5; transform: translateX(-50%); box-shadow: 0 0 18px rgba(0,0,0,0.4);
}
.ba-slider .ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff; z-index: 6;
  box-shadow: var(--shadow-md); display: grid; place-items: center;
  color: var(--c-brand); font-size: 1.2rem; font-weight: 700;
}
.ba-slider .ba-knob::before { content: "‹ ›"; letter-spacing: -2px; }

/* ============================================================
   GALLERY (masonry) + LIGHTBOX
   ============================================================ */
.gal-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: var(--gap-xl); }
.gal-filter button {
  font-family: var(--f-ui); font-size: 0.85rem; font-weight: 600; cursor: pointer;
  padding: 0.55rem 1.15rem; border-radius: 999px; border: 1.5px solid var(--c-rule);
  background: transparent; color: var(--c-ink-mute); transition: all .25s;
}
.gal-filter button:hover { border-color: var(--c-brand-light); color: var(--c-brand); }
.gal-filter button.active { background: var(--c-brand); border-color: var(--c-brand); color: #fff; }

.masonry { column-count: 3; column-gap: var(--gap-md); }
@media (max-width: 920px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }
.masonry .m-item {
  break-inside: avoid; margin-bottom: var(--gap-md); position: relative;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: opacity .4s, transform .4s;
}
.masonry .m-item img { width: 100%; display: block; filter: saturate(0.7); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s; }
.masonry .m-item:hover img { transform: scale(1.05); filter: saturate(1.12); }
.masonry .m-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31,68,41,0.55));
  opacity: 0; transition: opacity .4s;
}
.masonry .m-item:hover::after { opacity: 1; }
.masonry .m-item .m-cat {
  position: absolute; bottom: 12px; left: 12px; z-index: 2; color: #fff;
  font-family: var(--f-ui); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s;
}
.masonry .m-item:hover .m-cat { opacity: 1; transform: translateY(0); }
.masonry .m-item.hide { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(15,22,17,0.94); backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer; border-radius: 50%; width: 52px; height: 52px;
  display: grid; place-items: center; font-size: 1.4rem; transition: background .2s, transform .2s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox .lb-close { top: 4vh; right: 4vw; }
.lightbox .lb-nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox .lb-nav.next:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--gap-md); }
.team-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--c-cream); aspect-ratio: 4/5;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: transform .8s, filter .6s; }
.team-card:hover img { transform: scale(1.05); filter: saturate(1.05); }
.team-card .t-info {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gap-md); color: #fff;
  background: linear-gradient(180deg, transparent 45%, rgba(31,68,41,0.55) 70%, rgba(31,68,41,0.92) 100%);
}
.team-card .t-info .role { font-family: var(--f-ui); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-leaf); font-weight: 700; }
.team-card .t-info .name { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; margin: 2px 0 0; letter-spacing: -0.02em; }
.team-card .t-quote {
  position: absolute; inset: 0; z-index: 3; display: flex; align-items: center;
  padding: var(--gap-lg); background: rgba(31,68,41,0.92); color: #fff;
  font-family: var(--f-body); font-style: italic; font-size: 1rem; line-height: 1.55;
  opacity: 0; transition: opacity .4s; text-align: center;
}
.team-card:hover .t-quote { opacity: 1; }

/* ============================================================
   STAT BAND (counters)
   ============================================================ */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); text-align: center; }
.stat-band .stat-item { padding: var(--gap-md); }
.stat-band .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--c-brand); line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.stat-band .label { font-family: var(--f-ui); font-size: 0.85rem; color: var(--c-ink-mute); margin-top: 0.5rem; }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CINEMATIC BLEED STRIP (light overlay statement)
   ============================================================ */
.bleed-strip {
  position: relative; min-height: 70vh; display: grid; place-items: center;
  overflow: hidden; isolation: isolate;
}
.bleed-strip > img { position: absolute; inset: 0; width: 100%; height: 130%; object-fit: cover; z-index: -1; will-change: transform; filter: saturate(1.05) brightness(0.92); }
.bleed-strip::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, rgba(31,68,41,0.78), rgba(63,125,79,0.42)); mix-blend-mode: multiply; }
.bleed-inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 0 var(--gap-lg); max-width: 820px; }
.bleed-inner .eyebrow { color: var(--c-leaf); justify-content: center; }
.bleed-inner h2 { color: #fff; font-size: clamp(2rem, 5vw, 4rem); text-shadow: 0 2px 30px rgba(0,0,0,0.3); margin: 0 0 var(--gap-md); }
.bleed-inner p { color: var(--c-white-mute); font-size: 1.15rem; margin: 0 auto; max-width: 54ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-dark) 100%);
  border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 5rem); text-align: center;
  position: relative; overflow: hidden; color: #fff;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 20%, rgba(143,191,111,0.3), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-band p { color: var(--c-white-mute); font-size: 1.15rem; max-width: 50ch; margin: 0 auto var(--gap-lg); }
.cta-band .cta-actions { display: inline-flex; flex-wrap: wrap; gap: var(--gap-sm); justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--c-rule); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.8rem; margin-bottom: var(--gap-md); }
.contact-field { display: flex; gap: var(--gap-md); padding: var(--gap-md) 0; border-bottom: 1px solid var(--c-rule); }
.contact-field:last-child { border-bottom: 0; }
.contact-field .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--c-brand-soft); display: grid; place-items: center; color: var(--c-brand); font-size: 1.2rem; }
.contact-field .cf-label { font-family: var(--f-ui); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-ink-faint); font-weight: 600; margin-bottom: 2px; }
.contact-field .cf-value { font-size: 1.05rem; font-weight: 500; }
.contact-field .cf-value a:hover { color: var(--c-brand); }
.region-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.region-map img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.region-map .map-link {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--c-brand-deep); padding: 0.7rem 1.3rem; border-radius: 999px;
  font-family: var(--f-ui); font-weight: 700; font-size: 0.88rem; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.region-map .map-link:hover { background: var(--c-cream); }
.region-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--gap-md); }
.region-chips span { font-family: var(--f-ui); font-size: 0.82rem; padding: 0.45rem 0.9rem; border-radius: 999px; background: var(--c-brand-soft); color: var(--c-brand-dark); }
.cform { display: grid; gap: var(--gap-md); }
.cform label { font-family: var(--f-ui); font-size: 0.78rem; font-weight: 600; color: var(--c-ink-mute); display: block; margin-bottom: 0.35rem; }
.cform input, .cform textarea, .cform select {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--c-ink);
  background: var(--c-off-white); border: 1.5px solid var(--c-rule); border-radius: 12px; padding: 0.85rem 1rem;
  transition: border-color .25s, box-shadow .25s;
}
.cform input:focus, .cform textarea:focus, .cform select:focus { outline: none; border-color: var(--c-brand-light); box-shadow: 0 0 0 4px var(--c-brand-soft); }
.cform textarea { resize: vertical; min-height: 120px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL pages
   ============================================================ */
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.5rem; margin-top: var(--gap-xl); }
.legal-body h3 { font-size: 1.15rem; margin-top: var(--gap-lg); }
.legal-body p, .legal-body li { color: var(--c-ink-mute); font-size: 0.96rem; line-height: 1.7; }
.legal-body a { color: var(--c-brand); border-bottom: 1px solid var(--c-rule); }
.legal-note { background: var(--c-brand-soft); border-left: 3px solid var(--c-brand); border-radius: 0 12px 12px 0; padding: var(--gap-md) var(--gap-lg); margin: var(--gap-lg) 0; }
.legal-note p { color: var(--c-ink); margin: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }

/* Parallax bleed wrapper */
.parallax-img { overflow: hidden; }
.parallax-img img { will-change: transform; }

/* --- Reduce motion --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress, .hero-cinematic > .bg, .hero-cinematic > .dust, .bleed-strip > img, .page-hero > img,
  .hero-title .char, .split-img img, .svc-detail .sd-img img {
    transition: none !important; animation: none !important; transform: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-cinematic > .bg.bg-1 { opacity: 1 !important; }
}
