:root {
  --ink: #162026;
  --muted: #65717a;
  --paper: #f7f5ef;
  --white: #ffffff;
  --clay: #b2462c;
  --clay-dark: #87331f;
  --steel: #314652;
  --moss: #4f684f;
  --line: rgba(22, 32, 38, 0.14);
  --shadow: 0 20px 60px rgba(20, 28, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(22px, 5vw, 88px);
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid rgba(22, 32, 38, 0.1);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(20, 28, 34, 0.08);
}

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

.brand-logo {
  display: block;
  width: clamp(180px, 19vw, 260px);
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.brand-copy,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.76;
  font-size: 12px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.86;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-call {
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 800;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  top: 74px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--clay-dark);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--steel);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 17, 20, 0.9) 0%, rgba(12, 17, 20, 0.68) 38%, rgba(12, 17, 20, 0.28) 66%, rgba(12, 17, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 17, 20, 0.64) 0%, rgba(12, 17, 20, 0.16) 48%, rgba(12, 17, 20, 0.04) 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 44px));
  margin: 0 0 clamp(48px, 8vw, 104px) clamp(22px, 7vw, 128px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f3c3a9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(46px, 5.6vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
}

.button.primary:hover {
  background: var(--clay-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts span {
  display: inline-grid;
  gap: 2px;
  min-width: 150px;
  padding: 13px 15px;
  border-left: 3px solid #f3c3a9;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.hero-facts strong {
  font-size: 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  padding: 20px clamp(16px, 3vw, 38px);
  border-right: 1px solid var(--line);
  font-weight: 800;
  color: var(--steel);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 112px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: start;
}

.intro p:last-child,
.feature-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.master-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.9fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding-top: 0;
}

.master-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--steel);
  aspect-ratio: 4 / 3;
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

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

.master-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.master-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.master-badges span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--steel);
  font-weight: 800;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.service-card {
  min-height: 245px;
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: #e6efe6;
  color: var(--moss);
  font-weight: 900;
  font-size: 24px;
}

.service-card p,
.steps p {
  color: var(--muted);
  line-height: 1.62;
}

.flat-roof-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.flat-roof-copy {
  position: sticky;
  top: 110px;
}

.flat-roof-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.flat-roof-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.flat-roof-points li {
  padding: 13px 14px;
  border-left: 3px solid var(--clay);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--steel);
  font-weight: 800;
}

.flat-roof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.flat-roof-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.flat-roof-photo.large {
  grid-row: span 2;
  min-height: 536px;
}

.flat-roof-photo.wide {
  grid-column: 1 / -1;
  min-height: 330px;
}

.flat-roof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-roof-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.pitched-roof-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.pitched-roof-copy {
  position: sticky;
  top: 110px;
}

.pitched-roof-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.pitched-roof-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.pitched-roof-points li {
  padding: 13px 14px;
  border-left: 3px solid var(--clay);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--steel);
  font-weight: 800;
}

.pitched-roof-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.pitched-roof-photo {
  position: relative;
  grid-column: span 3;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.pitched-roof-photo.before,
.pitched-roof-photo.progress {
  grid-column: span 3;
  min-height: 430px;
}

.pitched-roof-photo.tall {
  min-height: 390px;
}

.pitched-roof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pitched-roof-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.timber-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.timber-copy {
  position: sticky;
  top: 110px;
}

.timber-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.timber-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.timber-stages span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--steel);
  font-weight: 800;
}

.timber-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.timber-photo {
  position: relative;
  grid-column: span 3;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.timber-photo.before {
  grid-column: span 3;
  min-height: 430px;
}

.timber-photo.result {
  grid-column: span 3;
  min-height: 430px;
}

.timber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timber-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.sheetmetal-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.sheetmetal-copy {
  position: sticky;
  top: 110px;
}

.sheetmetal-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.sheetmetal-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.sheetmetal-points li {
  padding: 13px 14px;
  border-left: 3px solid #bd6d2e;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--steel);
  font-weight: 800;
}

.sheetmetal-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.sheetmetal-photo {
  position: relative;
  grid-column: span 3;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.sheetmetal-photo.hero-detail {
  grid-column: 1 / -1;
  min-height: 430px;
}

.sheetmetal-photo.portrait {
  min-height: 380px;
}

.sheetmetal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sheetmetal-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.roof-window-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.roof-window-copy {
  position: sticky;
  top: 110px;
}

.roof-window-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.roof-window-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.roof-window-points li {
  padding: 13px 14px;
  border-left: 3px solid var(--steel);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--steel);
  font-weight: 800;
}

.roof-window-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.roof-window-photo {
  position: relative;
  grid-column: span 3;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.roof-window-photo.inside,
.roof-window-photo.lift {
  min-height: 380px;
}

.roof-window-photo.result,
.roof-window-photo.detail {
  min-height: 335px;
}

.roof-window-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roof-window-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.repair-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.repair-copy {
  position: sticky;
  top: 110px;
}

.repair-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.repair-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.repair-points li {
  padding: 13px 14px;
  border-left: 3px solid var(--clay);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--steel);
  font-weight: 800;
}

.repair-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.repair-photo {
  position: relative;
  grid-column: span 3;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.repair-photo.damage {
  min-height: 320px;
}

.repair-photo.before {
  grid-column: 1 / -1;
  min-height: 380px;
}

.repair-photo.result {
  min-height: 360px;
}

.repair-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.repair-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.facade-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 0;
}

.facade-copy {
  position: sticky;
  top: 110px;
}

.facade-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.facade-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.facade-points li {
  padding: 13px 14px;
  border-left: 3px solid var(--moss);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--steel);
  font-weight: 800;
}

.facade-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.facade-photo {
  position: relative;
  grid-column: span 3;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
  box-shadow: 0 14px 44px rgba(20, 28, 34, 0.13);
}

.facade-photo.before,
.facade-photo.result {
  grid-column: span 3;
  min-height: 430px;
}

.facade-photo.detail {
  grid-column: 1 / -1;
  min-height: 360px;
}

.facade-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facade-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 32, 38, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 7vw, 128px);
  background: #dde8df;
}

.feature-copy {
  max-width: 1050px;
}

.feature-copy .eyebrow {
  color: var(--moss);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps article {
  padding: 32px;
}

.steps span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--clay);
  font-weight: 900;
}

.career-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) clamp(28px, 7vw, 128px);
  background: var(--steel);
  color: var(--white);
}

.career-section::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.career-intro,
.career-content {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.career-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.62fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.career-copy {
  max-width: 880px;
}

.career-section .eyebrow {
  color: #f3c3a9;
}

.career-lead {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.career-copy blockquote {
  max-width: 760px;
  margin: 34px 0 0;
  padding: 5px 0 5px 22px;
  border-left: 3px solid var(--clay);
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.career-copy cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.career-photo {
  position: relative;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.career-photo img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: 58% center;
}

.career-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(16, 23, 27, 0.82);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.career-photo figcaption strong {
  color: var(--white);
  font-size: 16px;
}

.career-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(52px, 7vw, 88px);
}

.career-roles {
  display: grid;
  gap: 14px;
}

.career-roles article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.role-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--clay);
  color: var(--white);
  font-weight: 900;
}

.role-type {
  margin: 0 0 5px;
  color: #f3c3a9;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.career-roles h3 {
  font-size: 25px;
}

.career-roles article p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.career-benefits {
  padding: 30px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.career-benefits .eyebrow {
  color: var(--clay);
}

.career-benefits h3 {
  font-size: 30px;
}

.career-benefits ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.career-benefits li {
  position: relative;
  padding-left: 27px;
  color: var(--steel);
  font-weight: 700;
  line-height: 1.45;
}

.career-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 900;
}

.career-application-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.career-equal-opportunity {
  margin: 14px 0 0;
  padding: 14px;
  border-left: 3px solid var(--moss);
  border-radius: 8px;
  background: rgba(79, 104, 79, 0.08);
  color: var(--steel);
  font-size: 13px;
  line-height: 1.55;
}

.career-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.career-phone {
  justify-self: center;
  color: var(--clay-dark);
  font-weight: 900;
}

.career-privacy {
  justify-self: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: clamp(48px, 8vw, 128px);
  padding: clamp(68px, 9vw, 118px) clamp(28px, 7vw, 128px);
  background: var(--ink);
  color: var(--white);
}

.contact-copy {
  max-width: 820px;
}

.contact-copy .eyebrow {
  color: #f3c3a9;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--clay);
  border-color: var(--clay);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--steel);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf7;
}

.contact-form textarea {
  resize: vertical;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--clay-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Geführter Projekt-Assistent */
.project-assistant {
  position: fixed;
  right: clamp(16px, 2.5vw, 34px);
  bottom: clamp(16px, 2.5vw, 30px);
  z-index: 40;
  transition: bottom 180ms ease;
}

.project-assistant.is-near-footer {
  bottom: clamp(92px, 8vw, 118px);
}

.assistant-launcher {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  border: 0;
  border-radius: 14px;
  padding: 11px 16px 11px 11px;
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 14px 34px rgba(80, 29, 18, 0.3);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.assistant-launcher:hover {
  transform: translateY(-2px);
  background: var(--clay-dark);
}

.assistant-launcher-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
}

.assistant-launcher svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assistant-launcher strong,
.assistant-launcher small {
  display: block;
}

.assistant-launcher strong {
  font-size: 14px;
}

.assistant-launcher small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100vw - 32px));
  max-height: min(690px, calc(100vh - 32px));
  overflow: hidden;
  border: 1px solid rgba(22, 32, 38, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16, 23, 27, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.project-assistant.is-open .assistant-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.project-assistant.is-open .assistant-launcher {
  visibility: hidden;
}

.assistant-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 17px;
  color: var(--white);
  background: var(--steel);
}

.assistant-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8bc08e;
  box-shadow: 0 0 0 4px rgba(139, 192, 142, 0.13);
}

.assistant-header h2 {
  margin: 9px 0 0;
  max-width: 320px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.25;
}

.assistant-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  color: var(--white);
  background: transparent;
  font: 300 26px/1 Inter, sans-serif;
  cursor: pointer;
}

.assistant-progress {
  height: 4px;
  background: #e5e8e8;
}

.assistant-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--clay);
  transition: width 220ms ease;
}

.assistant-body {
  overflow-y: auto;
  padding: 20px 22px 22px;
}

.assistant-messages {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.assistant-bubble {
  width: fit-content;
  max-width: 94%;
  margin: 0;
  border-radius: 4px 13px 13px 13px;
  padding: 11px 13px;
  color: #34434b;
  background: #eef1f1;
  font-size: 13px;
  line-height: 1.5;
}

.assistant-bubble strong {
  color: var(--ink);
}

.assistant-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.assistant-option {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.assistant-option strong {
  font-size: 13px;
  line-height: 1.35;
}

.assistant-option span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.assistant-option.is-featured {
  grid-column: 1 / -1;
  min-height: 74px;
  border-color: rgba(178, 70, 44, 0.35);
  background: #fcf4f1;
}

.assistant-option.is-featured strong {
  color: var(--clay-dark);
}

.assistant-option:hover,
.assistant-option.is-selected {
  border-color: var(--clay);
  color: var(--clay-dark);
  background: #fcf4f1;
}

.assistant-option:hover span,
.assistant-option.is-selected span {
  color: #6e4b42;
}

.assistant-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.assistant-field {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.assistant-field.is-wide {
  grid-column: 1 / -1;
}

.assistant-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.assistant-field input,
.assistant-field select,
.assistant-field textarea {
  width: 100%;
  border: 1px solid rgba(22, 32, 38, 0.2);
  border-radius: 9px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: 500 14px Inter, sans-serif;
}

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

.assistant-field input:focus,
.assistant-field select:focus,
.assistant-field textarea:focus,
.assistant-option:focus-visible,
.assistant-launcher:focus-visible,
.assistant-close:focus-visible {
  outline: 3px solid rgba(178, 70, 44, 0.22);
  outline-offset: 2px;
  border-color: var(--clay);
}

.assistant-summary {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #faf9f6;
}

.assistant-summary div {
  display: grid;
  grid-template-columns: minmax(115px, 0.75fr) minmax(0, 1.25fr);
  gap: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.assistant-summary dt {
  color: var(--muted);
}

.assistant-summary dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: break-word;
}

.assistant-error {
  min-height: 18px;
  margin: 10px 0 0;
  color: #9b2d1c;
  font-size: 12px;
  font-weight: 700;
}

.assistant-error.is-success,
.form-status.is-success {
  color: #2f6d42;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #9b2d1c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.assistant-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
}

.assistant-back {
  border: 0;
  padding: 12px 4px;
  color: var(--muted);
  background: transparent;
  font: 700 13px Inter, sans-serif;
  cursor: pointer;
}

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

.assistant-next {
  min-width: 124px;
  margin-left: auto;
  border: 0;
  cursor: pointer;
}

.assistant-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #faf9f6;
  font-size: 10px;
  line-height: 1.4;
}

.assistant-privacy svg {
  flex: 0 0 auto;
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.assistant-privacy a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 5vw, 88px);
  background: #10171b;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-logo {
  display: block;
  width: min(190px, 42vw);
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--white);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon-dot,
.social-icon-facebook {
  fill: currentColor;
  stroke: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  min-height: 100vh;
  padding: 130px clamp(22px, 5vw, 88px) 72px;
}

.legal-content {
  width: min(920px, 100%);
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 76px);
  margin-bottom: 42px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-content a:not(.button) {
  color: var(--clay-dark);
  font-weight: 800;
}

.legal-content .button {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 980px) {

  .hero {
    min-height: 88vh;
  }

  .trust-strip,
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .master-profile,
  .pitched-roof-showcase,
  .timber-showcase,
  .sheetmetal-showcase,
  .roof-window-showcase,
  .repair-showcase,
  .facade-showcase,
  .flat-roof-showcase,
  .career-intro,
  .career-content,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .pitched-roof-copy,
  .timber-copy,
  .sheetmetal-copy,
  .roof-window-copy,
  .repair-copy,
  .facade-copy,
  .flat-roof-copy {
    position: static;
  }

  .button.dark {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: min(190px, 58vw);
  }

  .brand-copy {
    display: none;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 17, 20, 0.89), rgba(12, 17, 20, 0.54)),
      linear-gradient(0deg, rgba(12, 17, 20, 0.8), rgba(12, 17, 20, 0.12) 62%);
  }

  .hero-image {
    object-position: 43% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 34px;
  }

  .hero-actions,
  .hero-facts {
    display: grid;
  }

  .hero-facts span {
    min-width: 0;
  }

  .trust-strip,
  .service-grid,
  .pitched-roof-gallery,
  .timber-gallery,
  .sheetmetal-gallery,
  .roof-window-gallery,
  .repair-gallery,
  .facade-gallery,
  .flat-roof-gallery,
  .steps {
    grid-template-columns: 1fr;
  }

  .pitched-roof-photo,
  .pitched-roof-photo.before,
  .pitched-roof-photo.progress,
  .pitched-roof-photo.tall,
  .timber-photo,
  .timber-photo.before,
  .timber-photo.result,
  .sheetmetal-photo,
  .sheetmetal-photo.hero-detail,
  .sheetmetal-photo.portrait,
  .roof-window-photo,
  .roof-window-photo.inside,
  .roof-window-photo.lift,
  .roof-window-photo.result,
  .roof-window-photo.detail,
  .repair-photo,
  .repair-photo.damage,
  .repair-photo.before,
  .repair-photo.result,
  .facade-photo,
  .facade-photo.before,
  .facade-photo.result,
  .facade-photo.detail,
  .flat-roof-photo,
  .flat-roof-photo.large,
  .flat-roof-photo.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: 0;
  }

  .career-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .career-photo,
  .career-photo img {
    min-height: 400px;
  }

  .career-roles article {
    grid-template-columns: 1fr;
  }

  .career-benefits {
    padding: 24px 20px;
  }

  .site-footer {
    display: grid;
  }

  .project-assistant {
    right: 10px;
    bottom: 10px;
  }

  .project-assistant.is-near-footer {
    bottom: 82px;
  }

  .assistant-launcher {
    min-width: 0;
    padding-right: 11px;
  }

  .assistant-launcher > span:last-child {
    display: none;
  }

  .assistant-panel {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .assistant-options,
  .assistant-fields {
    grid-template-columns: 1fr;
  }

  .assistant-option.is-featured {
    grid-column: auto;
  }

  .assistant-field.is-wide {
    grid-column: auto;
  }

  .legal-main {
    padding-top: 110px;
  }
}
