:root {
  --ink: #17201b;
  --muted: #68736b;
  --paper: #f4f2ec;
  --paper-2: #ebe8de;
  --surface: #ffffff;
  --line: rgba(23, 32, 27, 0.12);
  --forest: #06351f;
  --forest-2: #0f5a34;
  --moss: #dce9ce;
  --clay: #a8623b;
  --amber: #efbd49;
  --steel: #d8e2df;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(23, 32, 27, 0.18);
  --shadow-small: 0 12px 30px rgba(23, 32, 27, 0.1);
  --radius: 8px;
  --max: 1320px;
  --header: 106px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  background: #eef0ec;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 53, 31, 0.1);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(23, 32, 27, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header);
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: clamp(72px, 6vw, 86px);
  object-fit: contain;
  object-position: left center;
}

.nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 11px;
  border-radius: var(--radius);
  color: #1d2b23;
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  background: rgba(6, 53, 31, 0.08);
  color: var(--forest);
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 820;
  text-decoration: none;
  text-transform: uppercase;
}

.header-service {
  display: grid;
  gap: 2px;
  justify-items: start;
  line-height: 1.1;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  text-decoration: none;
}

.header-phone span,
.header-hours span {
  color: var(--forest-2);
}

.header-phone strong {
  font-size: 1.2rem;
  font-weight: 920;
  letter-spacing: 0;
}

.header-hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  max-width: var(--max);
  min-height: 540px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 0;
  background: #101a14;
  color: var(--white);
  box-shadow: 0 22px 60px rgba(23, 32, 27, 0.18);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 13, 0.9) 0%, rgba(6, 21, 13, 0.7) 38%, rgba(6, 21, 13, 0.18) 76%, rgba(6, 21, 13, 0.03) 100%),
    linear-gradient(0deg, rgba(6, 21, 13, 0.6), rgba(6, 21, 13, 0.04) 54%);
  content: "";
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 540px;
  margin: 0 auto;
  padding: 58px 62px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: center;
}

.hero-content {
  max-width: 590px;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 590px;
  font-size: clamp(2.75rem, 4.2vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #9bdd49;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lead {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.05;
}

.hero-copy {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  background: var(--amber);
  color: #241a09;
}

.button.secondary {
  background: var(--forest);
  color: var(--white);
}

.button.outline,
.button.ghost {
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.contact-card .button.ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--forest);
}

.button:hover,
.button:focus-visible,
.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-small);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 0 0 0 28px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
}

.trust-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #83bf27;
  border-radius: 50%;
  color: #83bf27;
  content: "✓";
  font-size: 0.72rem;
}

.hero-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  align-self: end;
  transform: translateY(10px);
}

.image-tile {
  min-height: 180px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.image-tile.large {
  grid-row: span 2;
  min-height: 206px;
  align-self: start;
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.image-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 22, 18, 0.86), transparent 58%);
  content: "";
}

.image-tile div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.image-tile strong,
.image-tile span {
  display: block;
}

.image-tile strong {
  font-size: 0.9rem;
  font-weight: 850;
}

.image-tile span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.contact-strip {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(23, 32, 27, 0.08);
}

.contact-strip a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
  min-width: 0;
  min-height: 76px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.contact-strip span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-strip .strip-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  align-self: center;
  width: 30px;
  height: 30px;
  color: var(--forest);
  font-size: 1.34rem;
  text-transform: none;
}

.contact-strip strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.mobile-contact-value {
  display: none;
}

.teaser-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(23, 32, 27, 0.08);
}

.teaser-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border-left: 6px solid var(--forest-2);
  background: var(--surface);
  box-shadow: none;
}

.teaser-card.accent {
  border-left-color: var(--clay);
}

.teaser-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.36) 100%);
  content: "";
}

.teaser-card > div {
  position: relative;
  z-index: 1;
  max-width: 75%;
  padding: 32px 26px;
}

.teaser-card h2 {
  max-width: 100%;
  font-size: clamp(1.3rem, 2vw, 1.58rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.teaser-card p:not(.section-kicker) {
  color: #39443d;
  font-size: 0.94rem;
}

.teaser-card ul {
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
  color: #29342e;
  font-size: 0.9rem;
}

.teaser-card li {
  position: relative;
  padding-left: 20px;
}

.teaser-card li + li {
  margin-top: 6px;
}

.teaser-card li::before {
  position: absolute;
  left: 0;
  color: var(--forest-2);
  content: "✓";
  font-weight: 900;
}

.teaser-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 3px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.proof-row {
  max-width: none;
  margin: 54px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.acceptance-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 22px 68px;
  background: var(--surface);
  text-align: center;
}

.acceptance-section h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

.acceptance-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.acceptance-grid div {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--forest);
}

.acceptance-grid span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eef5eb;
  color: var(--forest-2);
  font-size: 1.65rem;
}

.acceptance-grid strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.acceptance-note {
  margin: 24px 0 0;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
}

.proof-row div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.proof-row span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest-2);
  font-size: 1.75rem;
}

.proof-row strong {
  color: var(--forest);
  font-size: 1rem;
}

.proof-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 22px;
  background: var(--surface);
}

.home-services {
  text-align: center;
}

.service-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-overview article {
  min-height: 236px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(23, 32, 27, 0.06);
}

.service-overview span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef5eb;
  color: var(--forest);
  font-size: 1.8rem;
}

.service-overview h2 {
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-overview p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-overview a {
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.page-hero {
  max-width: var(--max);
  margin: 22px auto 0;
  padding: 54px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.62fr);
  gap: 42px;
  align-items: center;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(23, 32, 27, 0.08);
}

.page-hero h1 {
  max-width: 760px;
  color: var(--forest);
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
}

.page-hero p:not(.section-kicker) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.legal-hero {
  grid-template-columns: 1fr;
}

.legal-hero h1 {
  color: var(--forest);
}

.legal-section {
  max-width: var(--max);
}

.legal-section > * {
  max-width: 880px;
}

.legal-section address {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f9f6;
}

.legal-section h2 {
  margin: 34px 0 12px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
}

.legal-section p {
  color: var(--ink);
}

.legal-meta {
  color: var(--muted);
  font-weight: 800;
}

.legal-list {
  margin: 0 0 22px;
  padding-left: 1.2rem;
  color: var(--ink);
}

.legal-list li + li {
  margin-top: 8px;
}

.content-section {
  padding-top: 34px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 850;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.feature-row > div > p,
.section-heading p,
.work-section > .section-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.service-grid.compact {
  grid-template-columns: 1fr;
}

.service-card {
  min-height: 154px;
  padding: 22px;
  background: var(--surface);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.materials-section,
.gallery-section {
  max-width: none;
  background: var(--surface);
  color: var(--white);
}

.materials-section {
  color: var(--ink);
}

.gallery-section {
  background: #f5f6f3;
  color: var(--ink);
}

.materials-section > *,
.gallery-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.materials-section .section-kicker {
  color: var(--clay);
}

.materials-section .section-heading p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.44fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
}

.product-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.gallery-grid {
  border-color: var(--line);
  background: var(--line);
}

.product-grid article,
.gallery-grid button {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  color: inherit;
}

.gallery-grid button {
  display: grid;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.product-grid img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.035);
}

.product-grid h3,
.product-grid h2,
.gallery-grid span {
  display: block;
  margin: 0;
  padding: 15px 16px;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.availability-section {
  padding-top: 56px;
}

.material-overview-section {
  padding-top: 18px;
}

.material-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.material-list-grid article {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 128px;
  background: var(--surface);
}

.material-list-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.material-list-grid h3 {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 18px 20px;
  color: var(--forest);
  font-size: 1rem;
}

.work-list h2,
.hours-card h2 {
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.2;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.work-list > div {
  padding: 26px;
  background: var(--surface);
}

.work-list ul {
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.work-list li {
  position: relative;
  padding-left: 20px;
}

.work-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.work-list li + li {
  margin-top: 9px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 50px rgba(23, 32, 27, 0.08);
}

.contact-card,
.hours-card {
  padding: 34px;
  background: var(--surface);
}

.contact-card .button.primary {
  background: var(--forest);
  color: var(--white);
}

.contact-card .button.secondary {
  background: var(--amber);
  color: #241a09;
}

address {
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
}

.hours-card dl {
  margin: 18px 0 24px;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card dt {
  font-weight: 850;
}

.hours-card dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.map-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  color: var(--forest);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px 44px;
  background: linear-gradient(135deg, #06351f 0%, #042416 100%);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
  color: var(--white);
}

.lightbox {
  width: min(920px, calc(100vw - 32px));
  padding: 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(13, 21, 16, 0.74);
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--paper);
}

.lightbox p {
  margin: 12px 0 0;
  font-weight: 850;
}

.lightbox-close {
  display: block;
  min-height: 42px;
  margin: 0 0 12px auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  font-weight: 850;
}

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

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: auto;
  }

  .header-service {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-list {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(var(--header) - 2px);
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
  }

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

  .nav-list a {
    justify-content: center;
  }

  .hero-inner,
  .feature-row,
  .section-heading,
  .contact-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 54px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none;
  }

  .image-tile,
  .image-tile.large {
    grid-row: auto;
    min-height: 230px;
  }

  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    border-radius: 0;
  }

  .service-grid,
  .work-list,
  .teaser-section,
  .proof-row,
  .acceptance-grid,
  .service-overview {
    grid-template-columns: 1fr;
  }

  .acceptance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid,
  .gallery-grid,
  .material-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header: 76px;
  }

  body {
    background-size: 56px 56px;
  }

  .header-inner {
    padding: 8px 14px;
    gap: 8px;
  }

  .brand-logo {
    height: 54px;
  }

  .header-call {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .hero-inner {
    padding: 34px 16px 32px;
    gap: 0;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.72rem);
  }

  h1 span {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 10px;
    font-size: clamp(1.15rem, 5.5vw, 1.42rem);
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .contact-strip,
  .teaser-section,
  .proof-row,
  .acceptance-grid,
  .service-overview,
  .product-grid,
  .gallery-grid,
  .material-list-grid {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    display: none;
  }

  .image-tile,
  .image-tile.large {
    min-height: 190px;
  }

  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .teaser-card > div {
    max-width: 86%;
    padding: 26px 22px;
  }

  .proof-row {
    margin-top: 0;
    padding: 4px 16px 48px;
    gap: 18px;
  }

  .contact-strip a {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 10px;
    min-height: 62px;
    padding: 12px;
  }

  .contact-strip a:nth-child(2) {
    display: none;
  }

  .contact-strip span {
    font-size: 0.66rem;
  }

  .contact-strip .strip-icon {
    width: 26px;
    height: 26px;
    font-size: 1.12rem;
  }

  .contact-strip strong {
    font-size: 0.84rem;
  }

  .contact-strip .desktop-contact-value {
    display: none;
  }

  .contact-strip .mobile-contact-value {
    display: block;
  }

  .section {
    padding: 52px 16px;
  }

  .home-services {
    padding-top: 46px;
  }

  .service-overview {
    gap: 10px;
    margin-top: 22px;
  }

  .service-overview article {
    min-height: 0;
    padding: 18px 18px 18px 16px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    text-align: left;
    box-shadow: 0 8px 18px rgba(23, 32, 27, 0.045);
  }

  .service-overview span {
    grid-row: span 3;
    width: 42px;
    height: 42px;
    margin: 2px 0 0;
    font-size: 1.32rem;
  }

  .service-overview h2 {
    font-size: 0.94rem;
  }

  .service-overview p {
    margin: 7px 0 0;
    font-size: 0.88rem;
  }

  .service-overview a {
    margin-top: 8px;
    font-size: 0.88rem;
  }

  .availability-section {
    padding-top: 42px;
  }

  .material-overview-section {
    padding-top: 14px;
  }

  .material-list-grid article {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 96px;
  }

  .material-list-grid h3 {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .page-hero {
    margin-top: 12px;
    padding: 34px 16px;
  }

  .acceptance-section {
    padding: 48px 16px 56px;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 2.85rem);
  }

  .contact-card,
  .hours-card,
  .work-list > div,
  .service-card {
    padding: 22px;
  }

  .hours-card div,
  .site-footer {
    display: block;
  }

  .hours-card dd {
    margin-top: 3px;
    text-align: left;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer nav {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
