:root {
  --ink: #1b1e21;
  --charcoal: #24282c;
  --deep: #16191c;
  --green: #2b3036;
  --teal: #4b5a66;
  --copper: #4b5a66;
  --brass: #aeb8c0;
  --paper: #f4f5f6;
  --stone: #e2e5e8;
  --mist: #eceef0;
  --muted: #5f6a72;
  --line: rgba(20, 24, 28, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p, a, strong, span, summary { overflow-wrap: anywhere; }
h1, h2, h3 { letter-spacing: 0; }

.skip, .screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--ink);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(30, 34, 38, 0.94);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}
.brand-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-mark {
  display: inline-flex;
  flex: 0 0 auto;
}
.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.brand-name {
  font-weight: 950;
  color: #fff;
}
.logo-mark img {
  width: 64px;
  height: 58px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.language-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.language-links a[aria-current="true"],
.language-links a:hover {
  color: var(--brass);
}
.site-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}
.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--brass);
}
.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: #fff;
  content: "";
}
.menu-lines::before { transform: translateY(-7px); }
.menu-lines::after { transform: translateY(5px); }

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.9) 0%, rgba(12, 14, 16, 0.6) 46%, rgba(12, 14, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 14, 16, 0.9), rgba(12, 14, 16, 0) 48%);
}
.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 8vw, 112px) clamp(18px, 6vw, 72px);
}
.hero-tags {
  position: absolute;
  left: clamp(18px, 6vw, 72px);
  right: clamp(18px, 6vw, 72px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(10, 16, 15, 0.42);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
  font-weight: 850;
}
.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero .kicker,
.materials-band .kicker,
.split-callout .kicker {
  color: var(--brass);
}
h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3rem, 7.4vw, 7.25rem);
  line-height: 0.88;
}
.hero h1 {
  font-size: clamp(3rem, 6.2vw, 6.5rem);
}
h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.9vw, 4.9rem);
  line-height: 0.98;
}
h3 {
  margin: 0;
}
.summary,
.page-header p,
.workbench p,
.faq p,
.service-list p,
.area-grid span,
.contact-stack p,
.visual-grid p,
.materials-band p,
.service-photo-band p:not(.kicker) {
  color: var(--muted);
  line-height: 1.72;
}
.hero .summary {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}
.brand-card {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.brand-card img {
  width: clamp(112px, 12vw, 150px);
  height: auto;
  border-radius: 8px;
  background: #fff;
}
.brand-card-copy {
  display: grid;
  gap: 5px;
}
.brand-card-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.05;
  font-weight: 950;
}
.brand-card-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.solid-button,
.outline-button,
.estimate-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 950;
}
.solid-button,
.estimate-form button {
  color: #fff;
  background: var(--ink);
  border: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}
.hero .solid-button,
.materials-band .solid-button {
  color: var(--ink);
  background: #fff;
}
.outline-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.outline-button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #fff;
  background: var(--charcoal);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}
.proof-strip div {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid var(--white-line);
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong,
.proof-strip span {
  display: block;
}
.proof-strip strong { font-size: 1.2rem; }
.proof-strip span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  padding: clamp(58px, 8vw, 104px) clamp(16px, 4vw, 28px);
  margin: 0 auto;
}
.section-title {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.section-title.compact {
  display: block;
  max-width: 820px;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.feature-copy {
  min-height: 460px;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(43, 48, 54, 0.94), rgba(30, 34, 38, 0.97)),
    var(--green);
}
.feature-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
}
.feature-copy .outline-button {
  margin-top: 24px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}
.visual-grid figure {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}
.visual-grid figure:first-of-type {
  grid-row: span 2;
}
.visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.visual-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  font-weight: 950;
}

.workbench-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.workbench-grid article {
  min-height: 292px;
  padding: 28px;
  background: #ffffff;
}
.workbench-grid span,
.service-list span {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.workbench-grid h3 {
  margin: 34px 0 0;
  font-size: 1.4rem;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.matrix a,
.area-grid article,
.contact-stack article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}
.matrix a {
  display: grid;
  grid-template-columns: minmax(130px, 0.5fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
}
.matrix strong {
  font-size: 1.2rem;
}
.matrix span {
  color: var(--muted);
  line-height: 1.5;
}

.materials-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding: clamp(42px, 8vw, 96px) clamp(16px, 5vw, 68px);
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
}
.materials-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.materials-band p:not(.kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}
.materials-band .solid-button {
  margin-top: 18px;
}

.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  padding: 20px 22px;
}
.faq summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
}

.page-header {
  max-width: var(--max);
  padding: clamp(62px, 9vw, 118px) clamp(16px, 4vw, 28px) clamp(34px, 6vw, 72px);
  margin: 0 auto;
}
.page-header h1 {
  max-width: 1100px;
}
.page-header p:not(.kicker) {
  max-width: 780px;
  font-size: 1.12rem;
}
.service-header,
.contact-header {
  border-bottom: 1px solid var(--line);
}
.contact-header {
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(36px, 5vw, 58px);
}
.contact-header h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  overflow-wrap: normal;
}
.contact-header p:not(.kicker) {
  margin: 0;
}

.service-photo-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(42px, 6vw, 72px);
}
.service-photo-band.alternate {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  border-top: 1px solid var(--line);
}
.service-photo-band.alternate img {
  order: 2;
}
.service-photo-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(17, 20, 18, 0.16);
}
.service-photo-band p:not(.kicker) {
  font-size: 1.06rem;
}
.service-list {
  display: grid;
  gap: 12px;
  padding-top: 0;
}
.service-list article {
  display: grid;
  grid-template-columns: 88px minmax(220px, 0.52fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: #ffffff;
}
.service-list h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}
.area-grid article {
  min-height: 190px;
  padding: 22px;
}
.area-grid strong,
.area-grid span {
  display: block;
}
.area-grid strong {
  font-size: 1.22rem;
}
.area-grid span {
  margin-top: 14px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: 0;
}
.estimate-section {
  scroll-margin-top: 110px;
  border-top: 1px solid var(--line);
}
.estimate-section .section-title {
  margin-bottom: 28px;
}
.estimate-section .section-title p:not(.kicker) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.65;
}
.estimate-notes {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
}
.estimate-notes span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.estimate-notes p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}
.estimate-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}
.estimate-form label {
  display: grid;
  gap: 8px;
  color: #3a4249;
  font-weight: 900;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef1f3;
}
.estimate-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-stack article {
  min-height: 160px;
  padding: 22px;
}
.contact-stack article:last-child {
  grid-column: 1 / -1;
}
.estimate-photo-card,
.contact-card-preview {
  grid-column: 1 / -1;
  padding: 0 !important;
  overflow: hidden;
}
.estimate-photo-card img,
.contact-card-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}
.contact-card-preview img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.contact-card-preview {
  background: #fff;
  border: 1px solid rgba(16, 19, 18, 0.18);
  box-shadow: 0 18px 44px rgba(16, 19, 18, 0.12);
}
.contact-card-preview p {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}
.contact-stack span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-stack a {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 1.12rem;
  font-weight: 950;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  padding-top: 0;
}
.business-card-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 19, 18, 0.13);
}
.business-card-panel img {
  display: block;
  width: 100%;
  height: auto;
}
.business-card-panel p {
  margin: 0;
  padding: 16px 20px 18px;
  color: var(--muted);
}
.contact-actions {
  display: grid;
  gap: 12px;
}
.contact-actions a {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.contact-actions a:hover,
.contact-actions a:focus-visible {
  border-color: var(--brass);
  box-shadow: 0 12px 32px rgba(16, 19, 18, 0.1);
  transform: translateY(-2px);
}
.contact-actions span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.92rem, 1vw, 1rem);
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}
.contact-details article {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}
.contact-details article:last-child {
  background: var(--green);
}
.contact-details p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.footer {
  color: var(--ink);
  background: var(--mist);
  border-top: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px) clamp(16px, 4vw, 48px);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.footer-id {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  width: 48px;
  height: auto;
  border-radius: 7px;
  background: #fff;
}
.footer-id strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 950;
}
.footer-id span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}
.footer-reach {
  text-align: right;
}
.footer-reach a {
  display: block;
  font-weight: 900;
}
.footer-phone {
  font-size: 1.05rem;
  color: var(--ink);
}
.footer-email {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--teal);
  overflow-wrap: anywhere;
}
.footer-rule {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 800;
  color: #3a4249;
}
.footer-nav a:hover {
  color: var(--ink);
}
.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}
@media (max-width: 640px) {
  .footer-reach {
    text-align: left;
  }
}

@media (max-width: 1040px) {
  .menu-button { display: block; }
  .topbar { grid-template-columns: auto auto; }
  .site-menu {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    align-items: stretch;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--white-line);
    border-radius: var(--radius);
    background: rgba(30, 34, 38, 0.97);
  }
  .site-menu.is-open { display: flex; }
  .site-menu a { border-radius: var(--radius); }
  .proof-strip,
  .workbench-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .visual-grid,
  .section-title,
  .materials-band,
  .service-photo-band,
  .service-photo-band.alternate,
  .estimate-layout,
  .contact-page,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .service-photo-band.alternate img {
    order: 0;
  }
}

@media (max-width: 720px) {
  body {
    width: 100%;
    max-width: 100%;
  }
  .brand-name { font-size: 0.98rem; }
  .logo-mark img {
    width: 58px;
    height: 53px;
  }
  .brand-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  .brand-card img {
    width: 126px;
  }
  h1,
  .hero h1 {
    max-width: 330px;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }
  .page-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
  }
  .page-header h1 {
    max-width: 330px;
    font-size: clamp(2.65rem, 11vw, 3.25rem);
    line-height: 0.95;
  }
  .contact-header h1 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 10.5vw, 3.15rem);
    line-height: 1;
  }
  .page-header p:not(.kicker) {
    max-width: 330px;
    font-size: 1rem;
    line-height: 1.6;
  }
  h2 {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }
  .hero,
  .hero-overlay {
    min-height: 760px;
  }
  .hero-overlay {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 146px;
  }
  .hero-overlay > * {
    max-width: 100%;
  }
  .hero .summary {
    width: min(330px, 100%);
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-actions {
    width: min(330px, 100%);
    max-width: 330px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions a {
    width: 100%;
    flex: none;
    padding-inline: 12px;
    text-align: center;
  }
  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(12, 14, 16, 0.92), rgba(12, 14, 16, 0.22) 60%),
      linear-gradient(90deg, rgba(12, 14, 16, 0.86), rgba(12, 14, 16, 0.34));
  }
  .proof-strip,
  .workbench-grid,
  .matrix,
    .area-grid,
    .contact-stack,
    .contact-details {
    grid-template-columns: 1fr;
  }
  .section,
  .estimate-layout,
  .contact-stack,
  .contact-stack article,
  .contact-card-preview,
  .contact-page,
  .business-card-panel,
  .contact-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .estimate-layout {
    justify-items: center;
  }
  .estimate-form,
  .contact-stack {
    width: min(100%, 350px);
    max-width: 350px;
  }
  .estimate-form {
    padding: 18px;
  }
  .estimate-form label,
  .estimate-form input,
  .estimate-form select,
  .estimate-form textarea {
    min-width: 0;
  }
  .contact-card-preview p {
    padding: 14px 16px 16px;
  }
  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }
  .proof-strip div:last-child { border-bottom: 0; }
  .matrix a,
  .service-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .visual-grid figure,
  .visual-grid img,
  .feature-copy {
    min-height: 360px;
  }
}

/* Honeypot: hidden from humans, visible to bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Form status messages */
.form-status { margin-top: 1rem; padding: .75rem 1rem; border-radius: 8px; font-size: .95rem; }
.form-status.is-success { background: #e8f5ec; color: #12301c; border: 1px solid #b7dcc4; }
.form-status.is-error   { background: #fdecec; color: #3b1414; border: 1px solid #f0b7b7; }

/* ---- Legal / privacy pages ---- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px) clamp(56px, 8vw, 104px);
}
.legal .legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}
.legal .legal-intro {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.legal h2 {
  margin: 30px 0 10px;
  font-size: 1.35rem;
  line-height: 1.3;
}
.legal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.legal a {
  color: var(--teal);
  font-weight: 800;
}
