/* Stöcker Fliesenfachbetrieb – Rohbau-Beton & Signalorange */
:root {
  --primary: #23262B;               /* oklch(0.27 0.01 260) Beton-Anthrazit */
  --primary-oklch: oklch(0.27 0.01 260);
  --primary-2: #2E3238;
  --accent: #E8590C;                /* oklch(0.66 0.19 45) Signalorange */
  --accent-oklch: oklch(0.66 0.19 45);
  --accent-ink: #A83F00;            /* Orange als Text auf Hell: 6.2:1 */
  --accent-soft: #F59B62;           /* Orange als Text auf Dunkel: 7.7:1 */
  --bg: #F4F2EE;                    /* Kalkweiß */
  --bg-2: #E9E6E0;
  --text: #1A1C20;
  --muted: #565B63;                 /* 6.4:1 auf --bg */
  --line: rgba(26, 28, 32, .16);
  --radius: 2px;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-ui: 220ms;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 84px;
  --cut: clamp(1rem, 2.6vw, 2.25rem);
  --shadow-1: 0 1px 2px rgba(26,28,32,.06), 0 6px 20px -8px rgba(26,28,32,.18);
  --shadow-2: 0 2px 4px rgba(26,28,32,.06), 0 18px 40px -14px rgba(26,28,32,.28);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: clamp(1rem, .96rem + .2vw, 1.125rem); line-height: 1.65;
  text-wrap: pretty; -webkit-font-smoothing: antialiased; overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img, video, iframe { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; height: auto; }
.icon { width: 1.4em; height: 1.4em; flex: 0 0 auto; vertical-align: middle; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: .005em; text-transform: uppercase; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 1.4rem + 5.6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); line-height: 1.1; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--accent); color: var(--text); padding: .75rem 1rem; }
.skip-link:focus { left: 0; }

/* Layout */
.wrap { width: min(100% - 2 * var(--gutter), 1280px); margin-inline: auto; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; }
.kicker { font: 600 .95rem/1 var(--font-display); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); margin: 0 0 1rem; display: flex; align-items: center; gap: .75rem; }
.kicker::before { content: ""; width: 2.25rem; height: 3px; background: var(--accent); flex: 0 0 auto; }
.kicker--light { color: var(--accent-soft); }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--flush { padding-top: 0; }
.section__head { margin-bottom: clamp(2rem, 5vw, 4rem); align-items: end; }
.section__title { grid-column: 1 / span 7; }
.section__title h2 { margin: 0; }
.section__intro { grid-column: 8 / -1; margin: 0; color: var(--muted); font-size: 1.125rem; max-width: 46ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .7rem 1.5rem;
  font: 600 1.1rem/1 var(--font-display); letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--radius); cursor: pointer;
  transition: background-color var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out), border-color var(--dur-ui) var(--ease-out), transform 120ms var(--ease-out), box-shadow var(--dur-ui) var(--ease-out);
}
.btn .icon { width: 20px; height: 20px; transition: transform var(--dur-ui) var(--ease-out); }
.btn:hover .icon--arrow-right { transform: translateX(4px); }
.btn:active { transform: scale(.98); }
.btn--accent { background: var(--accent); color: var(--text); }
.btn--accent:hover { background: #F26A1F; box-shadow: 0 8px 22px -8px rgba(232,89,12,.7); }
.btn--dark { background: var(--primary); color: var(--bg); }
.btn--dark:hover { background: #000; }
.btn--ghost { border-color: rgba(244,242,238,.55); color: #fff; }
.btn--ghost:hover { background: #F4F2EE; color: var(--text); border-color: #F4F2EE; }
.btn--outline { border-color: var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--bg); }
.btn--block { display: flex; width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--primary) var(--grain); color: #F4F2EE; transition: box-shadow var(--dur-ui) var(--ease-out); border-bottom: 3px solid var(--accent); }
.header__bar { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); transition: min-height var(--dur-ui) var(--ease-out); }
.site-header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(0,0,0,.5); }
.site-header.is-scrolled .header__bar { min-height: 60px; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: #fff; position: relative; z-index: 3; margin-right: auto; }
.brand__mark { width: 14px; height: 38px; background: var(--accent); transition: height var(--dur-ui) var(--ease-out); }
.is-scrolled .brand__mark { height: 28px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font: 700 1.9rem/1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; transition: font-size var(--dur-ui) var(--ease-out); }
.is-scrolled .brand__text strong { font-size: 1.55rem; }
.brand__text small { font: 500 .85rem/1.2 var(--font-display); letter-spacing: .28em; text-transform: uppercase; color: #C9CCD1; margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.75rem); }
.site-nav .menu { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.5rem); list-style: none; margin: 0; padding: 0; }
.site-nav .menu > li { position: relative; }
.site-nav .menu a { display: inline-flex; align-items: center; min-height: 44px; font: 600 1.15rem/1 var(--font-display); letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: #F4F2EE; position: relative; }
.site-nav .menu > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-ui) var(--ease-out); }
.site-nav .menu > li > a:hover::after, .site-nav .menu > .current-menu-item > a::after, .site-nav .menu > .current-menu-ancestor > a::after, .site-nav .menu > .current-page-ancestor > a::after { transform: scaleX(1); }
.site-nav .menu-item-has-children > a::before { content: ""; order: 2; margin-left: .5rem; width: 7px; height: 7px; border: solid currentColor; border-width: 0 2px 2px 0; transform: rotate(45deg) translateY(-2px); }
.site-nav .sub-menu { position: absolute; left: -1rem; top: 100%; min-width: 290px; list-style: none; margin: 0; padding: .5rem 0; background: var(--primary-2); border-top: 3px solid var(--accent); box-shadow: var(--shadow-2); transform: translateY(8px); opacity: 0; visibility: hidden; transition: transform var(--dur-ui) var(--ease-out), opacity var(--dur-ui) var(--ease-out), visibility 0s linear var(--dur-ui); }
.site-nav .menu-item-has-children:hover > .sub-menu, .site-nav .menu-item-has-children:focus-within > .sub-menu { transform: none; opacity: 1; visibility: visible; transition-delay: 0s; }
.site-nav .sub-menu a { display: flex; padding: .55rem 1.25rem; font-size: 1.05rem; letter-spacing: .06em; transition: background-color var(--dur-ui) var(--ease-out), padding var(--dur-ui) var(--ease-out); }
.site-nav .sub-menu a:hover { background: rgba(255,255,255,.07); padding-left: 1.6rem; }
.nav__cta { display: none; }
.header__phone { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .5rem 1.25rem; background: var(--accent); color: var(--text); border-radius: var(--radius); text-decoration: none; font: 700 1.2rem/1 var(--font-display); letter-spacing: .06em; position: relative; z-index: 3; transition: background-color var(--dur-ui) var(--ease-out), transform 120ms var(--ease-out); }
.header__phone:hover { background: #F26A1F; }
.header__phone:active { transform: scale(.98); }
.header__phone .icon { width: 22px; height: 22px; }
.burger { display: none; }

/* Hero */
.hero { position: relative; isolation: isolate; color: #fff; min-height: min(86svh, 820px); display: flex; overflow: hidden; background: var(--primary); }
.hero__slides, .hero__slide, .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img { object-fit: cover; }
.hero__slide { margin: 0; opacity: 0; transition: opacity 700ms ease-out; }
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide.is-active .hero__img { animation: hero-drift 9s ease-out both; }
.hero__slide:first-child:not(.is-active) { opacity: 0; }
@keyframes hero-drift { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(20,22,26,.9) 0%, rgba(20,22,26,.72) 42%, rgba(20,22,26,.2) 100%), linear-gradient(0deg, rgba(20,22,26,.7), transparent 40%); }
.hero__inner { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: space-between; gap: 3rem; padding-block: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 3vw, 2.5rem); }
.hero__content { max-width: 52rem; }
.hero__title { color: #fff; margin-bottom: .35em; }
.hero__sub { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); max-width: 42rem; color: #E6E4E0; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__content > * { animation: rise 280ms var(--ease-out) both; }
.hero__content > :nth-child(2) { animation-delay: 60ms; } .hero__content > :nth-child(3) { animation-delay: 120ms; } .hero__content > :nth-child(4) { animation-delay: 180ms; }
@keyframes rise { from { transform: translateY(18px); } to { transform: none; } }
.hero__controls { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.25); padding-top: 1.25rem; }
.hero__caps { position: relative; min-height: 4.4rem; flex: 1; max-width: 34rem; }
.hero__cap { position: absolute; inset: 0 auto auto 0; margin: 0; display: none; flex-direction: column; gap: .15rem; font-size: .98rem; line-height: 1.4; color: #E6E4E0; }
.hero__cap.is-active { display: flex; animation: rise 280ms var(--ease-out) both; }
.hero__cap-no { font: 600 .9rem/1 var(--font-display); letter-spacing: .18em; color: var(--accent-soft); }
.hero__cap strong { font: 700 1.5rem/1.1 var(--font-display); letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.hero__nav { display: flex; align-items: center; gap: .5rem; }
.hero__arrow { width: 48px; height: 48px; display: grid; place-items: center; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius); cursor: pointer; transition: background-color var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out), transform 120ms var(--ease-out); }
.hero__arrow:hover { background: var(--accent); color: var(--text); border-color: var(--accent); }
.hero__arrow:active { transform: scale(.96); }
.hero__dots { display: flex; }
.hero__dot { width: 44px; height: 44px; background: none; border: 0; cursor: pointer; position: relative; }
.hero__dot::after { content: ""; position: absolute; left: 8px; right: 8px; top: 50%; height: 3px; background: rgba(255,255,255,.4); transition: background-color var(--dur-ui) var(--ease-out); }
.hero__dot.is-active::after { background: var(--accent); }

/* Kennzahlen */
.stats { background: var(--bg); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 2.5vw, 2rem); border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { font: 700 clamp(3rem, 2rem + 4vw, 5.5rem)/.95 var(--font-display); letter-spacing: -.005em; margin: 0 0 .5rem; color: var(--primary); font-variant-numeric: tabular-nums; }
.stat__suffix { color: var(--accent-ink); }
.stat__label { margin: 0; color: var(--muted); font-size: 1rem; max-width: 22ch; line-height: 1.4; }

/* Leistungen – asymmetrisches Raster */
.services { row-gap: clamp(2.5rem, 5vw, 4rem); }
.service { grid-column: span 4; }
.service:nth-child(6n+1) { grid-column: 1 / span 7; }
.service:nth-child(6n+2) { grid-column: 8 / span 5; }
.service:nth-child(6n+3), .service:nth-child(6n+4) { grid-column: span 4; }
.service:nth-child(6n+4) { grid-column: 5 / span 4; }
.service:nth-child(6n+5) { grid-column: 9 / span 4; }
.service:nth-child(6n) { grid-column: 1 / -1; }
.service__link { display: block; text-decoration: none; color: inherit; }
.service__media { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--bg-2); box-shadow: var(--shadow-1); }
.service:nth-child(6n+1) .service__media { aspect-ratio: 16 / 10; }
.service:nth-child(6n) .service__media { aspect-ratio: 21 / 8; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out); }
.service__link:hover .service__media img { transform: scale(1.04); }
.service__body { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; padding-top: 1.1rem; border-top: 0; }
.service__no { font: 700 1.1rem/1.6 var(--font-display); color: var(--accent-ink); letter-spacing: .1em; }
.service__title { margin: 0 0 .4rem; transition: color var(--dur-ui) var(--ease-out); }
.service__link:hover .service__title { color: var(--accent-ink); }
.service__text { grid-column: 2; color: var(--muted); margin-bottom: .75rem; max-width: 52ch; }
.service__more { grid-column: 2; display: inline-flex; align-items: center; gap: .4rem; font: 600 1.05rem/1 var(--font-display); letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.service__more .icon { width: 20px; height: 20px; transition: transform var(--dur-ui) var(--ease-out); }
.service__link:hover .service__more .icon { transform: translateX(5px); }

/* Phasen – Zeitleiste im 12er-Raster */
.section--dark { background: var(--primary) var(--grain); color: #E6E4E0; clip-path: polygon(0 var(--cut), 100% 0, 100% calc(100% - var(--cut)), 0 100%); margin-block: calc(var(--cut) * -1); padding-block: calc(clamp(4rem, 9vw, 8rem) + var(--cut)); z-index: 1; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section__intro { color: #C9CCD1; }
.section--services:not(.section--flush) { padding-block: calc(clamp(4rem, 9vw, 8rem) + var(--cut)); }
.section--about { padding-top: calc(clamp(4rem, 9vw, 8rem) + var(--cut)); }
.phases { list-style: none; margin: 0; padding: 0; position: relative; row-gap: 2.5rem; }
.phases::before { content: ""; position: absolute; left: 0; right: 0; top: 2.35rem; height: 2px; background: rgba(255,255,255,.22); }
.phase { grid-column: span 3; position: relative; padding-top: 4.5rem; }
.phase::before { content: ""; position: absolute; left: 0; top: 1.95rem; width: 14px; height: 14px; background: var(--accent); }
.phase__no { position: absolute; left: 0; top: -.35rem; font: 700 2.6rem/1 var(--font-display); color: transparent; -webkit-text-stroke: 1.5px var(--accent-soft); letter-spacing: .02em; }
.phase h3 { margin-bottom: .6rem; }
.phase p { color: #C9CCD1; margin: 0; max-width: 32ch; }
.phase:nth-child(n+2)::after { content: ""; }

/* Über uns */
.about { align-items: center; }
.about__photos { grid-column: 1 / span 6; display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; aspect-ratio: 1 / 1.02; }
.about__photo { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-1); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--1 { grid-row: 1 / span 2; }
.about__photo--2 { margin-top: 3rem; }
.about__photo--3 { margin-bottom: 3rem; }
.about__copy { grid-column: 8 / -1; }
.about__copy h2 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.2rem); }
.about__copy .btn { margin-top: 1.25rem; }

/* CTA-Band */
.cta-band { background: var(--accent); color: var(--text); padding-block: clamp(3rem, 6vw, 5rem); position: relative; z-index: 2; }
.cta-band__grid { align-items: center; }
.cta-band__copy { grid-column: 1 / span 7; }
.cta-band__copy h2 { margin-bottom: .3em; font-size: clamp(2.4rem, 1.4rem + 4vw, 4.5rem); }
.cta-band__copy p { margin: 0; font-size: 1.2rem; max-width: 46ch; }
.cta-band__actions { grid-column: 9 / -1; display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.cta-band__tel { display: inline-flex; align-items: center; gap: .6rem; font: 700 2rem/1 var(--font-display); letter-spacing: .05em; text-decoration: none; min-height: 44px; }
.cta-band__tel .icon { width: 26px; height: 26px; }
.cta-band__tel:hover span { text-decoration: underline; text-underline-offset: 5px; }

/* Kontakt */
.contact { align-items: center; }
.contact__copy { grid-column: 1 / span 7; }
.contact__actions { grid-column: 9 / -1; display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }
.contact-list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .75rem; line-height: 1.45; }
.contact-list .icon { width: 22px; height: 22px; margin-top: .1em; color: var(--accent-ink); }
.contact-list--lg { font-size: 1.25rem; }
.contact-list--lg .icon { width: 24px; height: 24px; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Unterseiten */
.page-hero { background: var(--primary) var(--grain); color: #fff; padding-block: clamp(3rem, 7vw, 6rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: min(38%, 420px); height: 6px; background: var(--accent); }
.page-hero__grid { align-items: center; }
.page-hero__copy { grid-column: 1 / -1; }
.page-hero--media .page-hero__copy { grid-column: 1 / span 7; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 1.4rem + 4.6vw, 5rem); margin: 0; }
.page-hero__lead { font-size: 1.25rem; color: #D6D8DC; max-width: 46ch; margin: 1.25rem 0 0; }
.page-hero__media { grid-column: 9 / -1; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-2); aspect-ratio: 4 / 3; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; animation: hero-drift 6s ease-out both; }
.crumbs { display: flex; gap: .6rem; font: 500 1rem/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 1.5rem; flex-wrap: wrap; }
.crumbs a { text-decoration: none; color: inherit; } .crumbs a:hover { text-decoration: underline; }
.crumbs span { color: #8D9299; }
.entry-wrap { padding-block: clamp(3rem, 7vw, 6rem); }
.entry-wrap--detail .entry { grid-column: 1 / span 8; }
.side { grid-column: 10 / -1; align-self: start; position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 2rem; }
.side__box { background: var(--primary) var(--grain); color: #E6E4E0; padding: 1.75rem; border-radius: var(--radius); border-top: 4px solid var(--accent); box-shadow: var(--shadow-2); }
.side__box h2 { font-size: 2rem; color: #fff; margin-bottom: .5rem; }
.side__box p { font-size: .98rem; }
.side__tel { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; min-height: 44px; font: 700 1.6rem/1 var(--font-display); letter-spacing: .05em; color: #fff; text-decoration: none; }
.side__tel .icon { width: 22px; height: 22px; color: var(--accent-soft); }
.side__list h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.side__list ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.side__list a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 600; min-height: 48px; transition: padding var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out); }
.side__list a:hover { padding-left: .5rem; color: var(--accent-ink); }
.side__list .icon { width: 20px; height: 20px; }
.entry--flush { margin-bottom: 1rem; }

/* Footer */
.site-footer { background: var(--primary) var(--grain); color: #C9CCD1; padding-block: clamp(3rem, 6vw, 5rem) 1.5rem; border-top: 6px solid var(--accent); }
.footer__grid { row-gap: 2.5rem; }
.footer__brand { grid-column: 1 / span 5; }
.footer__col { grid-column: span 3; }
.footer__col:nth-of-type(1) { grid-column: 7 / span 3; }
.footer__col:nth-of-type(2) { grid-column: 10 / span 3; }
.footer__logo { font: 700 2rem/1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: .75rem; }
.footer__h { font: 600 1.1rem/1 var(--font-display); letter-spacing: .18em; color: var(--accent-soft); margin-bottom: 1rem; }
.site-footer .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.site-footer .menu a { display: inline-flex; align-items: center; min-height: 40px; text-decoration: none; transition: color var(--dur-ui) var(--ease-out); }
.site-footer .menu a:hover { color: #fff; text-decoration: underline; }
.site-footer .contact-list .icon { color: var(--accent-soft); }
.site-footer .contact-list a:hover { color: #fff; }
.footer__copy { margin: 3rem 0 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .92rem; color: #9CA1A8; }

/* Scroll-Reveals: nur Transform (nie opacity:0-Start) */
.js [data-reveal] { transform: translateY(22px); transition: transform 280ms var(--ease-out); transition-delay: calc(var(--i, 0) * 60ms); }
.js [data-reveal].is-in { transform: none; }

/* Mobil: Tablet */
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .section__title, .section__intro { grid-column: 1 / -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .service, .service:nth-child(n) { grid-column: 1 / -1; }
  .service:nth-child(n) .service__media { aspect-ratio: 16 / 10; }
  .phases::before { left: 6px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .phase, .phase:nth-child(n) { grid-column: 1 / -1; padding: 0 0 0 3.25rem; }
  .phase::before { left: 0; top: .55rem; }
  .phase__no { position: static; display: block; font-size: 2rem; margin-bottom: .25rem; }
  .about__photos, .about__copy { grid-column: 1 / -1; }
  .cta-band__copy, .cta-band__actions { grid-column: 1 / -1; }
  .contact__copy, .contact__actions { grid-column: 1 / -1; }
  .contact__actions { flex-direction: row; flex-wrap: wrap; }
  .page-hero--media .page-hero__copy, .page-hero__media { grid-column: 1 / -1; }
  .entry-wrap--detail .entry, .side { grid-column: 1 / -1; }
  .side { position: static; }
  .footer__brand, .footer__col, .footer__col:nth-of-type(n) { grid-column: 1 / -1; }
  .header__phone-num { display: none; }
  .header__phone { width: 48px; padding: 0; }

  .burger { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; width: 48px; height: 48px; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: var(--radius); cursor: pointer; position: relative; z-index: 3; }
  .burger span { width: 22px; height: 2px; background: #fff; transition: transform var(--dur-ui) var(--ease-out), opacity var(--dur-ui) var(--ease-out); }
  .nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .burger span:nth-child(2) { opacity: 0; }
  .nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 1.5rem; padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem; background: var(--primary) var(--grain); overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform 260ms var(--ease-out), visibility 0s linear 260ms; }
  .nav-open .site-nav { transform: none; visibility: visible; transition-delay: 0s; }
  .site-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav .menu > li { border-bottom: 1px solid rgba(255,255,255,.14); }
  .site-nav .menu a { font-size: 1.6rem; min-height: 56px; width: 100%; }
  .site-nav .menu > li > a::after, .site-nav .menu-item-has-children > a::before { display: none; }
  .site-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: 0; padding: 0 0 .75rem 1rem; min-width: 0; }
  .site-nav .sub-menu a { font-size: 1.2rem; min-height: 48px; padding: .25rem 0; color: #C9CCD1; }
  .site-nav .sub-menu a:hover { padding-left: 0; background: none; color: #fff; }
  .nav__cta { display: inline-flex; margin-top: auto; }
}

/* Mobil: Handy */
@media (max-width: 600px) {
  body { font-size: 1.0625rem; }
  .grid { gap: 1.25rem; }
  .brand__text strong { font-size: 1.5rem; }
  .brand__text small { font-size: .7rem; letter-spacing: .2em; }
  .brand__mark { height: 32px; }
  .header__bar { gap: .75rem; }
  .hero { min-height: 0; }
  .hero__shade { background: linear-gradient(0deg, rgba(20,22,26,.92) 0%, rgba(20,22,26,.78) 60%, rgba(20,22,26,.55) 100%); }
  .hero__actions .btn { width: 100%; }
  .hero__controls { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero__caps { min-height: 5.6rem; }
  .hero__nav { justify-content: space-between; }
  .stat { padding-inline: .85rem; }
  .stat:nth-child(odd) { padding-left: 0; }
  .about__photos { grid-template-columns: 1fr 1fr; aspect-ratio: auto; }
  .about__photo--1 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
  .about__photo--2, .about__photo--3 { margin: 0; aspect-ratio: 1; }
  .contact__actions .btn { width: 100%; }
  .cta-band__actions .btn { width: 100%; }
}

/* Reduzierte Bewegung: nur Opacity/sofort, keine Transform-Bewegung */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js [data-reveal], .js [data-reveal].is-in { transform: none; }
  .hero__slide.is-active .hero__img, .page-hero__media img { animation: none; }
  .service__link:hover .service__media img, .btn:active, .header__phone:active { transform: none; }
}
