:root {
  color-scheme: light;
  --ink: #20211d;
  --muted: #67645d;
  --paper: #f7f3ec;
  --plaster: #ebe5d9;
  --stone: #d8d0c0;
  --red: #c5161d;
  --red-dark: #8e0f14;
  --green: #3f7d31;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(32, 33, 29, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16px 16px, rgba(32, 33, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px;
  color: var(--ink);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}

.topbar a {
  font-weight: 700;
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 243, 236, 0.94);
  border-bottom: 1px solid rgba(32, 33, 29, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
}

.brand img {
  width: 90px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--red-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(32, 33, 29, 0.25);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 8px 12px;
  font-weight: 700;
}

.section,
.section-band {
  padding: 88px max(18px, calc((100vw - var(--max)) / 2));
}

.section-band {
  background: var(--plaster);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(235, 229, 217, 0.98), rgba(235, 229, 217, 0.82)),
    var(--plaster);
  border-bottom: 1px solid rgba(32, 33, 29, 0.12);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  color: #44413a;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(197, 22, 29, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 22, 29, 0.26);
}

.button-secondary {
  border-color: rgba(32, 33, 29, 0.25);
  background: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(32, 33, 29, 0.48);
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-2px);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  border: 1px solid rgba(32, 33, 29, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.36);
  color: #46433d;
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  position: relative;
  min-height: 610px;
}

.hero-proof::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  width: 66%;
  height: 12px;
  background: var(--red);
  transform: rotate(-3deg);
}

.hero-proof::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 96px;
  width: 48%;
  height: 8px;
  background: var(--green);
  transform: rotate(-3deg);
}

.hero-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--white);
}

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

.hero-image figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(32, 33, 29, 0.82);
  color: var(--white);
  font-size: 13px;
}

.hero-image-main {
  inset: 0 56px auto 0;
  height: 520px;
}

.hero-image-small {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 310px;
}

.intro {
  border-bottom: 1px solid rgba(32, 33, 29, 0.1);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-grid p,
.section-head p,
.references-head > p,
.material-copy p,
.area-panel p,
.contact-copy p {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head-single {
  display: block;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(32, 33, 29, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.56);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  filter: saturate(0.92) contrast(1.05);
}

.service-card:hover {
  border-color: rgba(197, 22, 29, 0.24);
  box-shadow: 0 14px 34px rgba(32, 33, 29, 0.1);
  transform: translateY(-3px);
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  font-weight: 800;
  color: var(--red-dark);
}

.material {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
  border-top: 1px solid rgba(32, 33, 29, 0.12);
  border-bottom: 1px solid rgba(32, 33, 29, 0.12);
}

.layer-stack {
  display: grid;
  gap: 10px;
}

.layer {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px 18px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border-radius: 6px;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(32, 33, 29, 0.12);
}

.layer span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.layer strong {
  font-size: 20px;
}

.layer small {
  color: #403d37;
}

.layer-substrate {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.24)),
    #d8d0c0;
}

.layer-plaster {
  margin-left: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2)),
    #c8c1b2;
}

.layer-finish {
  margin-left: 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.14)),
    #c5161d;
  color: var(--white);
}

.layer-finish small {
  color: rgba(255, 255, 255, 0.82);
}

.layer-handover {
  margin-left: 66px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.16)),
    #3f7d31;
  color: var(--white);
}

.layer-handover small {
  color: rgba(255, 255, 255, 0.82);
}

.references {
  background: var(--paper);
}

.references-head {
  align-items: start;
}

.reference-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.reference-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--stone);
}

.reference-card-large {
  grid-row: span 2;
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
  transition: filter 220ms ease, transform 260ms ease;
}

.reference-card:hover img {
  filter: saturate(1) contrast(1.1);
  transform: scale(1.025);
}

.reference-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px;
  border-radius: 4px;
  background: rgba(32, 33, 29, 0.84);
  color: var(--white);
}

.reference-meta span {
  display: inline-block;
  margin-bottom: 5px;
  color: #f4d7d8;
  font-size: 13px;
  font-weight: 800;
}

.reference-meta h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.reference-meta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(32, 33, 29, 0.16);
  border: 1px solid rgba(32, 33, 29, 0.16);
  border-radius: 6px;
  overflow: hidden;
}

.process-list li {
  padding: 22px;
  background: var(--white);
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 19px;
}

.process-list span {
  color: var(--muted);
}

.area {
  background: var(--paper);
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(32, 33, 29, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2)),
    var(--plaster);
}

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

.area-list li {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(32, 33, 29, 0.18);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(197, 22, 29, 0.5);
  color: var(--red-dark);
  transform: translateX(3px);
}

.contact-methods span {
  color: var(--muted);
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #34322d;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 33, 29, 0.22);
  border-radius: 4px;
  padding: 12px;
  background: #fbfaf7;
  color: var(--ink);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red-dark);
  outline: 3px solid rgba(197, 22, 29, 0.14);
}

.form-message,
.form-note,
.quote-form .button,
.form-feedback {
  grid-column: 1 / -1;
}

.form-note,
.form-feedback {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-feedback {
  padding: 10px 12px;
  border-radius: 4px;
  background: #f4eee3;
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 0.8fr) minmax(260px, 1fr);
  gap: 40px;
  padding: 48px max(18px, calc((100vw - var(--max)) / 2)) 84px;
  background: var(--ink);
  color: var(--paper);
}

.site-footer img {
  width: 118px;
  margin-bottom: 14px;
  background: var(--white);
}

.site-footer p,
.site-footer address,
.footer-links span {
  color: rgba(247, 243, 236, 0.78);
}

.site-footer address {
  font-style: normal;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.site-footer a {
  color: var(--paper);
}

.mobile-cta {
  display: none;
}

.motion-ready .hero-copy,
.motion-ready .hero-proof,
.motion-ready .intro-grid,
.motion-ready .section-head,
.motion-ready .service-card,
.motion-ready .material-copy,
.motion-ready .layer,
.motion-ready .reference-card,
.motion-ready .process-list li,
.motion-ready .area-panel,
.motion-ready .contact-copy,
.motion-ready .quote-form {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .hero-proof {
  transform: translateY(14px) scale(0.985);
}

.motion-ready .is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .hero-proof::before,
.motion-ready .hero-proof::after {
  transform: rotate(-3deg) scaleX(0);
  transform-origin: left center;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.motion-ready .hero-proof.is-visible::before,
.motion-ready .hero-proof.is-visible::after {
  transform: rotate(-3deg) scaleX(1);
}

.motion-ready .service-card:nth-child(2),
.motion-ready .layer:nth-child(2),
.motion-ready .reference-card:nth-child(2),
.motion-ready .process-list li:nth-child(2) {
  transition-delay: 80ms;
}

.motion-ready .service-card:nth-child(3),
.motion-ready .layer:nth-child(3),
.motion-ready .reference-card:nth-child(3),
.motion-ready .process-list li:nth-child(3) {
  transition-delay: 150ms;
}

.motion-ready .layer:nth-child(4),
.motion-ready .reference-card:nth-child(4),
.motion-ready .process-list li:nth-child(4) {
  transition-delay: 220ms;
}

.motion-ready .reference-card:nth-child(5),
.motion-ready .process-list li:nth-child(5) {
  transition-delay: 290ms;
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero,
  .intro-grid,
  .section-head,
  .material,
  .area-panel,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-proof {
    min-height: 500px;
  }

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

  .reference-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  body {
    padding-bottom: 74px;
  }

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

  .topbar {
    display: none;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(32, 33, 29, 0.14);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(32, 33, 29, 0.1);
  }

  .section,
  .section-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 19px;
  }

  .hero {
    gap: 34px;
  }

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

  .hero-proof {
    min-height: 420px;
  }

  .hero-image-main {
    inset: 0 0 auto 0;
    height: 360px;
  }

  .hero-image-small {
    width: 48%;
    height: 190px;
  }

  .service-card {
    grid-template-columns: 82px 1fr;
    padding: 18px;
  }

  .service-card img {
    width: 82px;
    height: 82px;
  }

  .layer-plaster,
  .layer-finish,
  .layer-handover {
    margin-left: 0;
  }

  .reference-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .reference-card-large {
    grid-row: span 1;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact {
    padding-bottom: 118px;
  }

  .site-footer {
    padding-bottom: 118px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a + a {
    background: var(--red);
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 32px;
  }

  .hero-proof {
    min-height: 380px;
  }

  .hero-image-main {
    height: 320px;
  }

  .hero-image-small {
    width: 58%;
    height: 170px;
  }

  .proof-strip span,
  .area-list li {
    width: 100%;
  }
}

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

  .motion-ready .hero-copy,
  .motion-ready .hero-proof,
  .motion-ready .intro-grid,
  .motion-ready .section-head,
  .motion-ready .service-card,
  .motion-ready .material-copy,
  .motion-ready .layer,
  .motion-ready .reference-card,
  .motion-ready .process-list li,
  .motion-ready .area-panel,
  .motion-ready .contact-copy,
  .motion-ready .quote-form {
    opacity: 1 !important;
    transform: none !important;
  }
}
