:root {
  --ink: #121515;
  --ink-soft: #1b1f1f;
  --graphite: #202525;
  --paper: #f4f1ea;
  --paper-deep: #e8e4dc;
  --white: #fffefa;
  --muted: #676b67;
  --muted-light: #aeb4b0;
  --line: rgba(18, 21, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.15);
  --brand: #aa1f2d;
  --brand-dark: #74131d;
  --accent: #e0aa18;
  --accent-deep: #b47f00;
  --shadow: 0 24px 70px rgba(18, 21, 21, 0.11);
  --shadow-soft: 0 12px 34px rgba(18, 21, 21, 0.07);
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1240px;
  --hero-image: image-set(
    url("hero-concrete-finishing.webp") type("image/webp"),
    url("hero-concrete-finishing.png") type("image/png")
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable Text", "Segoe UI", Aptos, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--brand);
}

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

.grid {
  display: grid;
  gap: 18px;
}

.section {
  position: relative;
  padding: clamp(84px, 9vw, 132px) 0;
  background: var(--paper);
  border: 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.kicker,
.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker::before,
.card-topline::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-copy {
  max-width: 66ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 17, 17, 0.95);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.topbar.is-scrolled {
  background: rgba(14, 17, 17, 0.985);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand img {
  width: 130px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: 50% 55%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  background: var(--brand);
  box-shadow: none;
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted-light);
  font-size: 0.8rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.nav-links a {
  position: relative;
  padding: 30px 0 27px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 32px rgba(170, 31, 45, 0.25);
}

.btn-primary:hover {
  background: #bd2635;
  box-shadow: 0 18px 38px rgba(170, 31, 45, 0.32);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  color: var(--brand);
  border-color: rgba(170, 31, 45, 0.28);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(170, 31, 45, 0.07);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.22s ease;
}

.menu-toggle::before { transform: translateY(-4px); }
.menu-toggle::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
.menu-toggle { position: relative; place-items: center; }

.mobile-menu {
  display: none;
}

/* Homepage hero */
.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  padding: 0 0 40px;
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(11, 14, 14, 0.97) 0%, rgba(11, 14, 14, 0.87) 36%, rgba(11, 14, 14, 0.24) 70%, rgba(11, 14, 14, 0.14) 100%),
    linear-gradient(180deg, rgba(11, 14, 14, 0.05) 50%, rgba(11, 14, 14, 0.78) 100%),
    var(--hero-image, url("hero-concrete-finishing.png"));
  background-repeat: no-repeat;
  background-position: center, center, 62% center;
  background-size: cover;
  border: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(28px, calc((100vw - var(--container)) / 2));
  width: 1px;
  background: linear-gradient(transparent, rgba(224, 170, 24, 0.72) 22%, rgba(224, 170, 24, 0.14) 82%, transparent);
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.48fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: end;
  min-height: calc(100svh - 238px);
  padding: clamp(76px, 10vh, 126px) 0 64px;
}

.hero-copy {
  max-width: 860px;
  min-height: 0;
  padding: 0 0 4px clamp(24px, 3vw, 48px);
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-copy::before {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #f5d470;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
}

h1 {
  max-width: 880px;
  margin: 25px 0 26px;
  color: inherit;
  font-family: "Segoe UI Variable Display", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.45rem, 6.4vw, 6.7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: none;
}

.hero-copy > p {
  max-width: 61ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions,
.button-row,
.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-actions .btn-secondary {
  color: #fff;
  background: rgba(15, 18, 18, 0.35);
}

.hero-panel {
  position: relative;
  max-width: 390px;
  justify-self: end;
  padding: 28px 0 2px 26px;
  color: #fff;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-panel::before {
  content: "Expertise";
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line-light);
}

.hero-logo img {
  display: none;
}

.hero-logo h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.hero-logo p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 20px 0;
}

.badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge::before {
  content: "+";
  margin-right: 5px;
  color: var(--accent);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line-light);
  font-size: 0.82rem;
  line-height: 1.45;
}

.info-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-row span {
  color: rgba(255, 255, 255, 0.46);
}

.info-row strong {
  color: #fff;
  font-weight: 650;
  text-align: left;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.96);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.stat {
  min-height: 126px;
  padding: 27px 26px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.4;
}

/* Homepage sections */
.about-grid,
.process-grid,
.contact-grid,
.footer-card {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  margin-top: 48px;
}

.about-card,
.value-card,
.service-card,
.project-card,
.process-card,
.contact-card,
.panel,
.card,
.contact-panel,
.hero-side,
.detail-label {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-card {
  padding: clamp(30px, 4vw, 52px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: none;
}

.about-card h3 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-card p,
.about-card .feature p {
  color: var(--muted) !important;
}

.about-card-dark {
  color: #fff;
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.about-card-dark h3,
.about-card-dark strong {
  color: #fff;
}

.about-card-dark p,
.about-card-dark .feature p {
  color: rgba(255, 255, 255, 0.64) !important;
}

.about-card-dark .card-topline {
  color: #f1cf68;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-card-dark .feature,
.panel-dark .feature {
  border-color: var(--line-light);
}

.feature-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 2px;
  font-size: 0.73rem;
  font-weight: 850;
}

.about-card-dark .feature-mark,
.panel-dark .feature-mark {
  color: var(--ink);
  background: var(--accent);
}

.feature strong {
  font-size: 1rem;
  font-weight: 760;
}

.feature p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-grid,
.values-grid,
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.service-card,
.value-card,
.project-card,
.process-card,
.contact-card {
  position: relative;
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.project-card:hover,
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(170, 31, 45, 0.32);
  box-shadow: var(--shadow);
}

.service-card::after {
  display: block;
  right: 0;
  bottom: auto;
  left: 0;
  width: auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0 30%, var(--accent) 30% 38%, transparent 38%);
  opacity: 1;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 52px;
  color: var(--brand);
  background: transparent;
  border: 1px solid rgba(170, 31, 45, 0.28);
  border-radius: 50%;
}

.service-card h3,
.value-card h3,
.project-card h3,
.process-card h3,
.contact-card h3,
.card h3,
.contact-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-card p,
.value-card p,
.project-card p,
.process-card p,
.contact-card p {
  color: var(--muted);
}

.service-card a,
.project-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card a::after,
.project-card a::after {
  content: "→";
  transition: transform 0.2s ease;
}

.service-card a:hover::after,
.project-card a:hover::after {
  transform: translateX(4px);
}

main > .section:nth-of-type(4) {
  color: #fff;
  background: var(--ink-soft);
}

main > .section:nth-of-type(4) .kicker,
main > .section:nth-of-type(4) .card-topline {
  color: #f0cf6e;
}

main > .section:nth-of-type(4) .section-title {
  color: #fff;
}

main > .section:nth-of-type(4) .section-copy {
  color: rgba(255, 255, 255, 0.62);
}

.value-card {
  min-height: 245px;
  padding-top: 88px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  width: 28px;
  height: 4px;
  background: var(--brand);
}

.value-card h3 { color: #fff; }
.value-card p { color: rgba(255, 255, 255, 0.62); }

.project-grid {
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
}

.project-card {
  min-height: 330px;
  padding: 36px;
  color: #fff;
  background: var(--graphite);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.project-card:nth-child(2) { background: #292e2e; }
.project-card:nth-child(3) { background: #343838; }
.project-card h3 { color: #fff; }
.project-card p { color: rgba(255, 255, 255, 0.62); }
.project-card .card-topline { color: #efcc64; }

.project-card strong {
  display: block;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-card a { color: #f0cf6e; }

.process-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  margin-top: 48px;
  align-items: stretch;
}

.process-grid > .about-card {
  color: #fff;
  background: var(--brand-dark);
  border: 0;
}

.process-grid > .about-card h3 { color: #fff; }
.process-grid > .about-card p { color: rgba(255, 255, 255, 0.7) !important; }
.process-grid > .about-card .card-topline { color: #f2d372; }
.process-grid > .about-card .btn-primary { color: var(--ink); background: var(--accent); box-shadow: none; }
.process-grid > .about-card .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.38); }

.process-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.process-card {
  min-height: 210px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.process-card > strong {
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 32px;
  color: var(--brand);
  background: transparent;
  border-radius: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

#kontakt {
  color: #fff;
  background: var(--ink);
}

#kontakt .section-title { color: #fff; }
#kontakt .section-copy { color: rgba(255, 255, 255, 0.6); }
#kontakt .kicker { color: #f0cf6e; }

.contact-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-top: 48px;
  align-items: stretch;
}

.contact-card,
.contact-panel {
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin-top: 26px;
}

.contact-point {
  min-width: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-point:first-child {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-point span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-point strong,
.contact-point a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  word-break: break-word;
}

.contact-card .btn-secondary,
.contact-panel .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.contact-card .btn-secondary:hover,
.contact-panel .btn-secondary:hover {
  background: var(--paper-deep);
}

.contact-form,
.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #f7f5f0;
  border: 1px solid rgba(18, 21, 21, 0.19);
  border-radius: 4px;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8c908c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(170, 31, 45, 0.12);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Subpage hero */
.page-hero {
  position: relative;
  padding: clamp(76px, 10vw, 130px) 0 clamp(72px, 9vw, 116px);
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(11, 14, 14, 0.97) 0%, rgba(11, 14, 14, 0.87) 48%, rgba(11, 14, 14, 0.38) 78%, rgba(11, 14, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(11, 14, 14, 0.12), rgba(11, 14, 14, 0.74)),
    var(--hero-image, url("hero-concrete-finishing.png"));
  background-repeat: no-repeat;
  background-position: center, center, 68% center;
  background-size: cover;
  border-bottom: 4px solid var(--brand);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 520px);
  height: 4px;
  background: var(--accent);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.52fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: end;
}

.hero-shell-wide {
  grid-template-columns: minmax(0, 900px);
}

.hero-shell-compact-side {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.42fr);
}

.hero-text {
  min-height: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-text::after {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.82); }
.breadcrumb span { color: var(--accent); }

.page-hero .kicker {
  color: #f1d16d;
}

.page-hero h1 {
  max-width: 920px;
  margin: 8px 0 24px;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
}

.page-hero p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.page-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(13, 16, 16, 0.28);
}

.page-hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.hero-side {
  max-width: 410px;
  justify-self: end;
  padding: 28px;
  color: #fff;
  background: rgba(13, 16, 16, 0.73);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero-side img {
  display: none;
}

.hero-side h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero-side p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

.hero-shell-compact-side .hero-side {
  max-width: 360px;
  padding: 26px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  gap: 18px;
  align-items: start;
}

.panel,
.card {
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: none;
}

.panel-dark {
  color: #fff;
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.panel h2,
.panel h3,
.card h3,
.contact-panel h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.panel h2 { font-size: clamp(1.65rem, 2.7vw, 2.5rem); }
.panel p,
.card p,
.contact-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.panel-dark h2,
.panel-dark h3,
.panel-dark strong { color: #fff; }
.panel-dark p,
.panel-dark li,
.panel-dark .muted { color: rgba(255, 255, 255, 0.64); }

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

.check-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 21px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.panel-dark .check-list li { border-color: var(--line-light); }

.service-list {
  display: grid;
}

.service-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--line-light);
  font-size: 0.91rem;
  font-weight: 750;
}

.service-list a::after {
  content: "→";
  color: var(--accent);
}

.detail-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
  align-items: stretch;
}

.detail-block + .detail-block {
  margin-top: 18px;
}

.detail-label {
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background: var(--ink-soft);
  border: 0;
  box-shadow: none;
}

.detail-label span {
  color: #efcc66;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-label h2 {
  margin: 70px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  color: #fff;
  background: var(--brand-dark);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 { color: #fff; }
.cta-band p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.68); }
.cta-band .btn-primary { color: var(--ink); background: var(--accent); box-shadow: none; }

/* Honest editorial reference placeholders */
.reference-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.reference-card {
  padding: 0;
  overflow: hidden;
}

.reference-photo {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 26px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    repeating-linear-gradient(118deg, transparent 0 34px, rgba(255, 255, 255, 0.025) 34px 35px),
    linear-gradient(135deg, #343939, #171a1a);
}

.reference-card:nth-child(2) .reference-photo { background: linear-gradient(135deg, #262b2b, #454a49); }
.reference-card:nth-child(3) .reference-photo { background: linear-gradient(135deg, #151818, #303535); }
.reference-card:nth-child(4) .reference-photo { background: linear-gradient(135deg, #3a3f3e, #202424); }

.reference-photo::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.12);
  border: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: 6rem;
  font-weight: 750;
  line-height: 1;
}

.reference-photo::after {
  content: "";
  position: absolute;
  inset: auto 26px 72px 26px;
  width: auto;
  height: 1px;
  transform: none;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--brand) 0 34%, var(--accent) 34% 43%, rgba(255, 255, 255, 0.16) 43%);
}

.reference-photo span {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-caption {
  padding: 28px 30px 32px;
}

/* Footer */
.footer {
  padding: 0;
  color: #fff;
  background: #0d1010;
}

.footer-card {
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  padding: 44px 0 46px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-card .brand {
  align-items: flex-start;
}

.footer-card .brand img {
  width: 112px;
  height: 48px;
}

.footer-card .brand span,
.footer-card .brand p {
  max-width: 500px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.53);
  line-height: 1.55;
  white-space: normal;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: flex-end;
  gap: 8px 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover { color: #fff; }

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-cta a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-cta a:last-child { background: var(--brand); }
.floating-cta a:hover { transform: translateY(-3px); }

/* Legal pages */
.wrap {
  width: min(calc(100% - 56px), 980px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
}

.wrap .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.wrap .top > div > div {
  color: var(--brand) !important;
}

.wrap h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.wrap .back {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
}

.wrap > .card {
  margin-top: 34px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wrap > .card:hover { transform: none; }

.wrap > .card h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.wrap > .card h2:first-child { margin-top: 0; }
.wrap > .card p,
.wrap > .card li { color: var(--muted); }
.wrap > .card strong { color: var(--ink); }
.wrap > .card a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* Cohesive concrete backdrop and dark material surfaces */
body {
  position: relative;
  min-height: 100vh;
  color: #f4f3ef;
  background: #0b0f10;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(8, 11, 12, 0.58) 0%, rgba(8, 11, 12, 0.74) 58%, rgba(8, 11, 12, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 11, 12, 0.38), rgba(8, 11, 12, 0.08)),
    var(--hero-image);
  background-repeat: no-repeat;
  background-position: center, center, 62% center;
  background-size: cover;
}

.hero {
  background-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(8, 11, 12, 0.96) 0%, rgba(8, 11, 12, 0.79) 38%, rgba(8, 11, 12, 0.2) 74%, rgba(8, 11, 12, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.08) 48%, rgba(8, 11, 12, 0.82) 100%);
}

.page-hero {
  background-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(8, 11, 12, 0.96) 0%, rgba(8, 11, 12, 0.82) 48%, rgba(8, 11, 12, 0.32) 80%, rgba(8, 11, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.12), rgba(8, 11, 12, 0.84));
}

.section,
main > .section:nth-of-type(4) {
  color: #f4f3ef;
  background:
    radial-gradient(circle at 10% 0%, rgba(170, 31, 45, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(13, 17, 18, 0.84), rgba(13, 17, 18, 0.9));
  border-color: rgba(255, 255, 255, 0.08);
}

.section:nth-of-type(even),
main > .section:nth-of-type(4) {
  background:
    radial-gradient(circle at 92% 100%, rgba(224, 170, 24, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(25, 30, 30, 0.84), rgba(20, 24, 24, 0.9));
}

.section-title,
main > .section:nth-of-type(4) .section-title,
#kontakt .section-title {
  color: #f8f6f0;
}

.section-copy,
main > .section:nth-of-type(4) .section-copy,
#kontakt .section-copy {
  color: rgba(239, 241, 237, 0.66);
}

.section .kicker,
.section .card-topline,
main > .section:nth-of-type(4) .kicker,
main > .section:nth-of-type(4) .card-topline,
#kontakt .kicker {
  color: #edcc68;
}

#kontakt {
  background:
    radial-gradient(circle at 14% 8%, rgba(170, 31, 45, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.94), rgba(8, 11, 12, 0.985));
}

.stats-band {
  color: #fff;
  background: linear-gradient(135deg, rgba(30, 35, 35, 0.96), rgba(16, 20, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.stat {
  border-color: rgba(255, 255, 255, 0.11);
}

.stat strong {
  color: #efca5d;
}

.stat span {
  color: rgba(255, 255, 255, 0.6);
}

.about-card,
.service-card,
.value-card,
.project-card,
.process-card,
.panel,
.card,
.contact-card,
.contact-panel,
.reference-card {
  color: #f6f5f0;
  background: linear-gradient(145deg, rgba(33, 39, 39, 0.97), rgba(18, 22, 22, 0.98));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.about-card h3,
.service-card h3,
.value-card h3,
.project-card h3,
.process-card h3,
.panel h2,
.panel h3,
.card h3,
.contact-card h3,
.contact-panel h3 {
  color: #fffefa;
}

.about-card p,
.about-card .feature p,
.service-card p,
.value-card p,
.project-card p,
.process-card p,
.panel p,
.card p,
.contact-card p,
.contact-panel p,
.feature p {
  color: rgba(239, 241, 237, 0.64) !important;
}

.about-card-dark,
.panel-dark {
  color: #fff;
  background: linear-gradient(145deg, rgba(116, 19, 29, 0.97), rgba(50, 13, 17, 0.98));
  border-color: rgba(255, 255, 255, 0.12);
}

.feature,
.check-list li,
.contact-point {
  border-color: rgba(255, 255, 255, 0.11);
}

.feature strong {
  color: #fffefa;
}

.service-card {
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -92px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.service-icon {
  color: #edca63;
  border-color: rgba(224, 170, 24, 0.34);
  background: rgba(224, 170, 24, 0.055);
}

.service-card a,
.project-card a {
  color: #efce69;
}

.value-card {
  background: linear-gradient(145deg, rgba(36, 42, 42, 0.97), rgba(21, 25, 25, 0.98));
  border-color: rgba(255, 255, 255, 0.11);
}

.project-card,
.project-card:nth-child(2),
.project-card:nth-child(3) {
  background: linear-gradient(145deg, #272d2d, #151919);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.project-card:nth-child(2) {
  background: linear-gradient(145deg, #303535, #1d2222);
}

.project-card:nth-child(3) {
  background: linear-gradient(145deg, #383d3c, #232828);
  border-right: 0;
}

.process-stack {
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-card {
  background: linear-gradient(145deg, rgba(36, 42, 42, 0.985), rgba(20, 24, 24, 0.99));
}

.process-card > strong {
  color: #efca5d;
}

.contact-card,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-point span {
  color: rgba(255, 255, 255, 0.5);
}

.contact-point strong,
.contact-point a {
  color: #fffefa;
}

.contact-card .btn-secondary,
.contact-panel .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-card .btn-secondary:hover,
.contact-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid > .contact-card:last-child,
.contact-grid > .contact-panel:last-child {
  color: var(--ink);
  background: linear-gradient(145deg, #f0ede5, #ddd8cd);
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-grid > .contact-card:last-child h3,
.contact-grid > .contact-panel:last-child h3,
.contact-grid > .contact-card:last-child p,
.contact-grid > .contact-panel:last-child p,
.contact-grid > .contact-card:last-child .field label,
.contact-grid > .contact-panel:last-child .field label {
  color: var(--ink) !important;
}

.field label {
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(18, 21, 21, 0.2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
}

.form-note {
  color: rgba(18, 21, 21, 0.62);
}

.detail-label {
  background: linear-gradient(145deg, rgba(116, 19, 29, 0.98), rgba(48, 12, 16, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band {
  background: linear-gradient(135deg, #74131d, #9d1b29);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.reference-caption {
  background: linear-gradient(145deg, rgba(31, 36, 36, 0.98), rgba(18, 22, 22, 0.99));
}

.check-list li {
  color: rgba(239, 241, 237, 0.65);
}

.wrap {
  color: #f4f3ef;
}

.wrap .top {
  border-color: rgba(255, 255, 255, 0.13);
}

.wrap h1 {
  color: #fffefa;
}

.wrap > .card {
  color: #f4f3ef;
  background: linear-gradient(145deg, rgba(31, 36, 36, 0.97), rgba(17, 21, 21, 0.985));
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.32);
}

.wrap > .card h2,
.wrap > .card strong {
  color: #fffefa;
}

.wrap > .card p,
.wrap > .card li {
  color: rgba(239, 241, 237, 0.66);
}

.wrap > .card a {
  color: #efce69;
}

.footer {
  background: rgba(7, 10, 10, 0.985);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-cta a,
.floating-cta button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(24, 29, 29, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.floating-cta a[href*="wa.me"] {
  background: var(--brand);
}

.floating-cta button:hover,
.floating-cta a:hover {
  transform: translateY(-3px);
}

.back-to-top {
  color: #151818 !important;
  background: var(--accent) !important;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1;
}

.back-to-top[hidden] {
  display: none;
}

.floating-cta--solo {
  left: auto;
}

/* Motion progressive enhancement */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu.open {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px 0 20px;
  }

  .mobile-inner .btn { width: 100%; }

  .hero-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  }

  .stats-band,
  .service-grid,
  .values-grid,
  .project-grid,
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card:last-child,
  .service-grid .service-card:last-child,
  .values-grid .value-card:last-child,
  .cards-3 > :last-child {
    grid-column: 1 / -1;
  }

  .contact-grid,
  .detail-block,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .footer-links { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .hero-wrap,
  .hero-shell,
  .hero-shell-compact-side,
  .about-grid,
  .process-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-position: center, center, 66% center;
  }

  .hero-wrap {
    min-height: 0;
    padding: 90px 0 52px;
  }

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

  .hero-panel,
  .hero-side {
    max-width: none;
    justify-self: stretch;
  }

  .hero-panel {
    display: none;
  }

  .stats-band { margin-top: 0; }

  .page-hero {
    background-position: center, center, 62% center;
  }

  .hero-side { max-width: 520px; }

  .process-stack { grid-template-columns: 1fr; }

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

  .detail-label h2 { margin-top: 38px; }
}

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

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

  .nav { min-height: 72px; }

  .brand img {
    width: 104px;
    height: 44px;
  }

  .brand > div { display: none; }

  .nav-actions .btn-primary { display: none; }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-inner {
    grid-template-columns: 1fr;
  }

  .mobile-inner .btn {
    min-height: 46px;
  }

  .hero {
    padding-bottom: 0;
    background-image:
      linear-gradient(90deg, rgba(11, 14, 14, 0.92), rgba(11, 14, 14, 0.64)),
      linear-gradient(180deg, rgba(11, 14, 14, 0.1), rgba(11, 14, 14, 0.84)),
      var(--hero-image, url("hero-concrete-finishing.png"));
    background-position: center, center, 68% center;
  }

  .hero::before { left: 16px; }

  .hero-wrap {
    padding: 70px 0 56px;
  }

  .hero-copy {
    padding-left: 20px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 13.8vw, 4.25rem);
    line-height: 0.96;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn { width: 100%; }

  .stats-band,
  .service-grid,
  .values-grid,
  .project-grid,
  .cards-3,
  .cards-2,
  .reference-gallery {
    grid-template-columns: 1fr;
  }

  .service-grid .service-card:last-child,
  .values-grid .value-card:last-child,
  .project-card:last-child,
  .cards-3 > :last-child {
    grid-column: auto;
  }

  .stat {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat:first-child { border-top: 0; }

  .section { padding: 78px 0; }

  .section-title {
    font-size: clamp(2.5rem, 11vw, 3.45rem);
  }

  .about-grid,
  .service-grid,
  .values-grid,
  .project-grid,
  .process-grid,
  .contact-grid,
  .reference-gallery {
    margin-top: 34px;
  }

  .about-card,
  .service-card,
  .value-card,
  .project-card,
  .process-card,
  .contact-card,
  .panel,
  .card,
  .contact-panel,
  .detail-label,
  .cta-band {
    padding: 25px;
  }

  .service-icon { margin-bottom: 34px; }

  .project-card { min-height: 280px; }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band .btn { width: 100%; }

  .page-hero {
    padding: 56px 0 64px;
  }

  .breadcrumb { margin-bottom: 22px; }

  .reference-photo { min-height: 230px; }

  .footer-card { padding: 36px 0 92px; }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .floating-cta a {
    width: 100%;
    height: 48px;
  }

  .wrap {
    padding: 54px 0 80px;
  }

  .wrap .top {
    display: grid;
    align-items: start;
  }

  .wrap .back { width: 100%; }
}

@media (max-width: 430px) {
  .container,
  .wrap {
    width: min(calc(100% - 24px), var(--container));
  }

  .section { padding: 66px 0; }

  .hero-wrap { padding-top: 58px; }

  h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .btn {
    min-height: 47px;
    padding: 0 16px;
    white-space: normal;
  }

  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body::before {
    position: absolute;
    height: 820px;
    background-position: center, center, 78% top;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(8, 11, 12, 0.94), rgba(8, 11, 12, 0.62)),
      linear-gradient(180deg, rgba(8, 11, 12, 0.08), rgba(8, 11, 12, 0.86));
  }

  .page-hero {
    background-image:
      linear-gradient(90deg, rgba(8, 11, 12, 0.94), rgba(8, 11, 12, 0.62)),
      linear-gradient(180deg, rgba(8, 11, 12, 0.1), rgba(8, 11, 12, 0.88));
  }

  .section,
  .section:nth-of-type(even),
  main > .section:nth-of-type(4) {
    background: linear-gradient(180deg, rgba(14, 18, 18, 0.985), rgba(18, 22, 22, 0.995));
  }

  .floating-cta.has-back-to-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-cta a,
  .floating-cta button {
    width: 100%;
    height: 48px;
  }

  .floating-cta--solo,
  .floating-cta--solo.has-back-to-top {
    right: 10px;
    left: auto;
    width: 50px;
    grid-template-columns: 1fr;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
