/* ============================================================
   AJ Garten & Landschaftsbau — LAYOUT / COMPONENT LAYER
   Cinematic hero · Bento gallery · Before/After slider
   ============================================================ */

/* ====================== CINEMATIC HERO ====================== */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: grid; place-items: center; overflow: hidden; isolation: isolate;
  background: var(--c-char-deep);
}
.hero .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; z-index: -3; will-change: transform, opacity;
}
.hero .bg.b1 { animation: kb 30s ease-in-out infinite alternate, fade1 27s ease-in-out infinite; }
.hero .bg.b2 { animation: kb 30s ease-in-out infinite alternate -10s, fade2 27s ease-in-out infinite; }
.hero .bg.b3 { animation: kb 30s ease-in-out infinite alternate -20s, fade3 27s ease-in-out infinite; }
@keyframes kb { 0% { transform: scale(1.06) translate(0,0); } 100% { transform: scale(1.2) translate(-2%,-2%); } }
@keyframes fade1 { 0%,28%{opacity:1} 36%,94%{opacity:0} 100%{opacity:1} }
@keyframes fade2 { 0%,28%{opacity:0} 36%,61%{opacity:1} 69%,100%{opacity:0} }
@keyframes fade3 { 0%,61%{opacity:0} 69%,94%{opacity:1} 100%{opacity:0} }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22,23,15,0.5) 0%, rgba(22,23,15,0.15) 30%, rgba(22,23,15,0.55) 75%, rgba(22,23,15,0.9) 100%),
    radial-gradient(80% 70% at 30% 40%, transparent 30%, rgba(22,23,15,0.55) 100%);
}
.hero .haze {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(50% 45% at 22% 26%, rgba(143,194,79,0.14), transparent 70%);
}
.hero .dust { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5; }
.hero .dust::before, .hero .dust::after {
  content: ""; position: absolute; inset: -20%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(237,233,222,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(237,233,222,0.4), transparent),
    radial-gradient(2px 2px at 40% 80%, rgba(143,194,79,0.4), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(237,233,222,0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(237,233,222,0.35), transparent);
  background-size: 600px 600px; animation: dustdrift 32s linear infinite;
}
.hero .dust::after { animation-duration: 46s; animation-direction: reverse; opacity: 0.6; }
@keyframes dustdrift { 0% { transform: translate(0,0); } 100% { transform: translate(60px,-80px); } }

.hero .letterbox { position: absolute; left: 0; right: 0; height: 0; background: var(--c-char-deep); z-index: 5; transition: height 1.1s var(--ease); }
.hero .letterbox.top { top: 0; } .hero .letterbox.bottom { bottom: 0; }
.hero.in-view .letterbox { height: clamp(28px, 5vh, 60px); }

.hero-inner { position: relative; z-index: 6; text-align: center; padding: 0 clamp(1.25rem, 5vw, 3rem); max-width: 1100px; }
.hero-eyebrow {
  font-family: var(--f-ui); font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--c-green-bright); font-weight: 600; margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(20px); transition: opacity .8s .3s, transform .8s .3s;
}
.hero.in-view .hero-eyebrow { opacity: 1; transform: none; }
.hero-title {
  font-family: var(--f-display); font-weight: 900; line-height: 0.98; letter-spacing: -0.03em;
  font-size: var(--size-hero); color: var(--c-cream); margin: 0 0 1.3rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .char { display: inline-block; opacity: 0; transform: translateY(44px) rotateX(-40deg); filter: blur(8px); transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); }
.hero.in-view .hero-title .char { opacity: 1; transform: none; filter: blur(0); }
.hero-title .accent { color: var(--c-green-bright); }
.hero-sub {
  font-family: var(--f-body); font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--c-cream-mute);
  max-width: 600px; margin: 0 auto 2rem; line-height: 1.6;
  opacity: 0; transform: translateY(24px); transition: opacity .8s .55s, transform .8s .55s;
}
.hero.in-view .hero-sub { opacity: 1; transform: none; }
.hero-actions { display: inline-flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; opacity: 0; transform: translateY(24px); transition: opacity .8s .7s, transform .8s .7s; }
.hero.in-view .hero-actions { opacity: 1; transform: none; }
.hero-trust {
  margin-top: 2.4rem; display: inline-flex; gap: clamp(1.2rem,3vw,2.6rem); flex-wrap: wrap; justify-content: center;
  font-family: var(--f-ui); font-size: 0.82rem; color: var(--c-cream-mute); letter-spacing: 0.04em;
  opacity: 0; transition: opacity 1s .9s;
}
.hero.in-view .hero-trust { opacity: 1; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5em; }
.hero-trust .tk { color: var(--c-green-bright); font-weight: 700; font-family: var(--f-display); }
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 6;
  font-family: var(--f-ui); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-cream-faint);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: cuepulse 2.4s ease-in-out infinite;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--c-green-bright), transparent); }
@keyframes cuepulse { 0%,100%{opacity:.5; transform:translate(-50%,0)} 50%{opacity:1; transform:translate(-50%,5px)} }
@media (max-width: 620px) { .hero-trust { gap: 1.1rem; font-size: 0.74rem; } }

/* ====================== INTRO / WILLKOMMEN ====================== */
.intro { background: var(--c-char); }
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.intro-grid h2 { font-size: var(--size-h1); color: var(--c-cream); }
.intro-grid .lead { font-size: 1.15rem; color: var(--c-cream-mute); margin-bottom: 1.4rem; line-height: 1.7; }
.intro-grid p { color: var(--c-cream-mute); }
.intro-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7); }
.intro-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s var(--ease); }
.intro-media:hover img { transform: scale(1.06); }
.intro-media .tag {
  position: absolute; bottom: 18px; left: 18px; background: rgba(22,23,15,0.82);
  border: 1px solid var(--c-rule); border-radius: 12px; padding: 0.7rem 1rem; backdrop-filter: blur(6px);
}
.intro-media .tag .big { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--c-green-bright); line-height: 1; }
.intro-media .tag .lbl { font-family: var(--f-ui); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-cream-mute); }
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; } .intro-media { aspect-ratio: 16/11; } }

/* ====================== STATS BAR ====================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.stat { text-align: center; padding: 1.4rem 1rem; border: 1px solid var(--c-rule); border-radius: var(--radius); background: var(--c-char-soft); }
.stat .num { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--c-green-bright); line-height: 1; font-variant-numeric: tabular-nums; }
.stat .lbl { font-family: var(--f-ui); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-cream-mute); margin-top: 0.5rem; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ====================== SERVICE CARDS ====================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.svc-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  display: flex; align-items: flex-end; isolation: isolate;
  background: var(--c-char-card); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 1s var(--ease), filter .6s; filter: saturate(0.92) brightness(0.82);
}
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(22,23,15,0.45) 60%, rgba(22,23,15,0.92) 100%); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -22px rgba(0,0,0,0.7); }
.svc-card:hover img { transform: scale(1.08); filter: saturate(1.08) brightness(0.9); }
.svc-body { position: relative; padding: 1.5rem; z-index: 2; }
.svc-num { font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.18em; color: var(--c-green-bright); font-weight: 600; }
.svc-card h3 { font-size: 1.4rem; color: var(--c-cream); margin: 0.4rem 0 0.5rem; }
.svc-card p { font-size: 0.92rem; color: var(--c-cream-mute); margin: 0; line-height: 1.55; }
.svc-card .more { display: inline-flex; align-items: center; gap: 0.4em; margin-top: 0.9rem; font-family: var(--f-ui); font-size: 0.82rem; color: var(--c-green-bright); font-weight: 600; opacity: 0; transform: translateY(8px); transition: .4s; }
.svc-card:hover .more { opacity: 1; transform: none; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { aspect-ratio: 16/11; } }

/* ====================== BENTO GALLERY ====================== */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px;
}
.bento .cell { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--c-char-card); }
.bento .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; filter: saturate(0.9) brightness(0.88); }
.bento .cell:hover img { transform: scale(1.07); filter: saturate(1.12) brightness(1); }
.bento .cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(22,23,15,0.78)); opacity: 0; transition: opacity .4s; }
.bento .cell:hover::after { opacity: 1; }
.bento .cell .cap { position: absolute; left: 12px; bottom: 10px; z-index: 2; font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--c-cream); opacity: 0; transform: translateY(8px); transition: .4s; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.bento .cell:hover .cap { opacity: 1; transform: none; }
.bento .cell .zoom { position: absolute; top: 12px; right: 12px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: rgba(22,23,15,0.7); display: grid; place-items: center; color: var(--c-green-bright); opacity: 0; transform: scale(.7); transition: .4s; }
.bento .cell:hover .zoom { opacity: 1; transform: none; }
.bento .w2 { grid-column: span 2; } .bento .h2 { grid-row: span 2; }
/* reveal-on-scroll for cells */
.bento .cell { opacity: 0; transform: translateY(30px) scale(.97); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.bento.in-view .cell { opacity: 1; transform: none; }
.bento.in-view .cell:nth-child(2){transition-delay:.05s}.bento.in-view .cell:nth-child(3){transition-delay:.1s}
.bento.in-view .cell:nth-child(4){transition-delay:.15s}.bento.in-view .cell:nth-child(5){transition-delay:.2s}
.bento.in-view .cell:nth-child(6){transition-delay:.25s}.bento.in-view .cell:nth-child(7){transition-delay:.3s}
.bento.in-view .cell:nth-child(8){transition-delay:.35s}.bento.in-view .cell:nth-child(9){transition-delay:.4s}
@media (max-width: 860px) { .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .bento .w2 { grid-column: span 1; } .bento .h2 { grid-row: span 2; } }
@media (max-width: 520px) { .bento { grid-auto-rows: 150px; gap: 10px; } }

/* gallery filter bar */
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: var(--gap-lg); }
.filter-bar button {
  font-family: var(--f-ui); font-size: 0.82rem; font-weight: 500; cursor: pointer;
  padding: 0.55rem 1.1rem; border-radius: 999px; border: 1px solid var(--c-rule);
  background: transparent; color: var(--c-cream-mute); transition: .3s;
}
.filter-bar button:hover { border-color: var(--c-green); color: var(--c-cream); }
.filter-bar button.active { background: var(--c-green); border-color: var(--c-green); color: #fff; }
.filter-bar.ink button { border-color: var(--c-ink-faint); color: var(--c-ink-mute); }
.filter-bar.ink button:hover { border-color: var(--c-green-dark); color: var(--c-ink); }
.filter-bar.ink button.active { background: var(--c-green-dark); border-color: var(--c-green-dark); color: #fff; }
.bento .cell.hide { display: none; }

/* ====================== LIGHTBOX ====================== */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(16,17,11,0.96); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; backdrop-filter: blur(6px); }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 40px 90px -20px rgba(0,0,0,0.8); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(237,233,222,0.1); border: 1px solid var(--c-rule); color: var(--c-cream);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; display: grid; place-items: center; transition: .25s;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--c-green); border-color: var(--c-green); }
.lightbox .lb-close { top: 1.4rem; right: 1.6rem; }
.lightbox .lb-prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-cap { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-family: var(--f-ui); font-size: 0.85rem; color: var(--c-cream-mute); }
@media (max-width: 600px) { .lightbox .lb-prev { left: 0.6rem; } .lightbox .lb-next { right: 0.6rem; } .lightbox .lb-close { top: 0.8rem; right: 0.8rem; } }

/* ====================== BEFORE / AFTER SLIDER ====================== */
.ba-wrap { display: grid; grid-template-columns: 1fr; gap: var(--gap-lg); }
.ba {
  position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden;
  user-select: none; cursor: ew-resize; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7); background: var(--c-char-card);
}
.ba > img.after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; z-index: 1; }
.ba .before-wrap { position: absolute; top: 0; left: 0; bottom: 0; z-index: 2; width: 50%; overflow: hidden; }
/* the before image must fill the FULL container width so it aligns 1:1 with the after image */
.ba .before-wrap img { position: absolute; top: 0; left: 0; height: 100%; width: var(--ba-w, 880px); max-width: none; object-fit: cover; pointer-events: none; }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3; width: 3px; background: var(--c-cream); transform: translateX(-50%); }
.ba .handle::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--c-green); border: 3px solid var(--c-cream); box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.ba .handle::after { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #fff; font-family: var(--f-ui); font-weight: 700; font-size: 1.1rem; letter-spacing: -2px; z-index: 1; }
.ba .lab { position: absolute; bottom: 14px; z-index: 4; font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 999px; backdrop-filter: blur(6px); }
.ba .lab.l-before { left: 14px; background: rgba(22,23,15,0.7); color: var(--c-stone-light); }
.ba .lab.l-after { right: 14px; background: rgba(111,158,63,0.85); color: #fff; }
.ba-cap { text-align: center; font-family: var(--f-ui); font-size: 0.9rem; color: var(--c-cream-mute); }

/* ====================== VALUE / WHY-US ====================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.why-card { padding: 1.8rem 1.5rem; border-radius: var(--radius); background: var(--c-char-soft); border: 1px solid var(--c-rule); transition: transform .4s var(--ease), border-color .4s; }
.why-card:hover { transform: translateY(-5px); border-color: var(--c-green); }
.why-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--c-green-soft); display: grid; place-items: center; color: var(--c-green-bright); margin-bottom: 1rem; }
.why-card .ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.1rem; color: var(--c-cream); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.92rem; color: var(--c-cream-mute); margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ====================== REVIEWS ====================== */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gap-md); }
.rev-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--c-paper-warm); position: relative; }
.rev-card .stars { color: var(--c-green-dark); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.rev-card .quote { font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; line-height: 1.4; color: var(--c-ink); margin-bottom: 1.2rem; letter-spacing: -0.01em; }
.rev-card .who { font-family: var(--f-ui); font-size: 0.85rem; color: var(--c-ink-mute); display: flex; align-items: center; gap: 0.6rem; }
.rev-card .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--c-green-dark); color: #fff; display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: 1rem; }
.rev-card::before { content: "\201C"; position: absolute; top: 0.4rem; right: 1.4rem; font-family: var(--f-display); font-weight: 900; font-size: 4.5rem; color: var(--c-green-soft); line-height: 1; }

/* ====================== BLEED STRIP ====================== */
.bleed { position: relative; height: 64vh; min-height: 420px; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.bleed > img { position: absolute; inset: 0; width: 100%; height: 130%; object-fit: cover; z-index: -2; will-change: transform; filter: saturate(0.92) brightness(0.6); }
.bleed::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(22,23,15,0.55), rgba(77,110,44,0.4)); }
.bleed .bleed-in { text-align: center; max-width: 760px; padding: 0 var(--gap-lg); }
.bleed h2 { font-size: clamp(2rem, 5vw, 4rem); color: var(--c-cream); text-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.bleed p { color: var(--c-cream-mute); font-size: 1.1rem; }

/* ====================== CTA BAND ====================== */
.cta-band { background: linear-gradient(135deg, var(--c-green-dark), var(--c-green)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 4.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 20%, rgba(255,255,255,0.12), transparent); }
.cta-band h2 { color: #fff; font-size: var(--size-h2); position: relative; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 540px; margin: 0 auto 1.8rem; position: relative; }
.cta-band .btn-primary { background: #fff; color: var(--c-green-dark); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4); position: relative; }
.cta-band .btn-primary:hover { background: var(--c-char); color: #fff; }
.cta-band .actions { display: inline-flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; position: relative; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }

/* ====================== PAGE HERO (sub-pages) ====================== */
.page-hero { position: relative; min-height: 52vh; display: grid; place-items: center; overflow: hidden; isolation: isolate; background: var(--c-char-deep); padding: 6rem 0 4rem; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; z-index: -2; filter: saturate(0.9) brightness(0.55); will-change: transform; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,23,15,0.55), rgba(22,23,15,0.85)); }
.page-hero .ph-inner { text-align: center; max-width: 820px; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.page-hero h1 { font-size: var(--size-hero); color: var(--c-cream); margin-bottom: 1rem; text-shadow: 0 4px 36px rgba(0,0,0,0.45); }
.page-hero p { color: var(--c-cream-mute); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.crumb { font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-green-bright); margin-bottom: 1rem; }
.crumb a:hover { color: var(--c-cream); }

/* ====================== LEISTUNGEN detail rows ====================== */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; margin-bottom: var(--gap-2xl); }
.svc-row:last-child { margin-bottom: 0; }
.svc-row.flip .svc-media { order: 2; }
.svc-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 36px 70px -30px rgba(0,0,0,0.7); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 7s var(--ease); }
.svc-media:hover img { transform: scale(1.06); }
.svc-row h2 { font-size: var(--size-h2); color: var(--c-cream); }
.svc-row .lead { color: var(--c-cream-mute); font-size: 1.08rem; margin-bottom: 1.2rem; }
.svc-row ul { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.6rem; }
.svc-row ul li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--c-cream-mute); }
.svc-row ul li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; border-radius: 5px; background: var(--c-green-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fc24f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }
@media (max-width: 820px) { .svc-row { grid-template-columns: 1fr; gap: 1.6rem; } .svc-row.flip .svc-media { order: 0; } }

/* ====================== CONTACT ====================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.contact-card { background: var(--c-char-soft); border: 1px solid var(--c-rule); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.6rem); }
.contact-info .ci { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--c-rule); }
.contact-info .ci:last-child { border-bottom: 0; }
.contact-info .ci .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--c-green-soft); display: grid; place-items: center; color: var(--c-green-bright); }
.contact-info .ci .ic svg { width: 22px; height: 22px; }
.contact-info .ci .lbl { font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-cream-faint); }
.contact-info .ci .val { font-size: 1.05rem; color: var(--c-cream); font-weight: 500; }
.contact-info .ci .val a:hover { color: var(--c-green-bright); }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-family: var(--f-ui); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--c-cream-mute); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--c-rule);
  background: var(--c-char-deep); color: var(--c-cream); font-family: var(--f-body); font-size: 1rem;
  transition: border-color .25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--c-green); }
.form-field textarea { resize: vertical; min-height: 120px; }
.region-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.region-list span { font-family: var(--f-ui); font-size: 0.8rem; padding: 0.4rem 0.85rem; border-radius: 999px; background: var(--c-green-soft); color: var(--c-green-bright); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ====================== LEGAL ====================== */
.legal { max-width: 820px; margin: 0 auto; padding: var(--gap-2xl) 0; }
.legal h1 { font-size: var(--size-h1); color: var(--c-cream); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; color: var(--c-green-bright); margin: 2rem 0 0.6rem; }
.legal p, .legal li { color: var(--c-cream-mute); }
.legal a { color: var(--c-green-bright); } .legal a:hover { text-decoration: underline; }
.legal .demo-box { background: var(--c-green-soft); border: 1px solid var(--c-green-dark); border-radius: var(--radius); padding: 1.3rem 1.6rem; margin-bottom: 2rem; }
.legal .demo-box strong { color: var(--c-green-bright); }

/* parallax helpers */
.parallax-img { will-change: transform; }
