:root {
  --ink: #171512;
  --muted: #69635b;
  --paper: #f7f4ed;
  --stone: #ded8cc;
  --charcoal: #2b2d2c;
  --copper: #b97942;
  --olive: #6f765f;
  --steel: #67717a;
  --white: #ffffff;
  --line: rgba(23, 21, 18, 0.12);
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 121, 66, 0.45);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  animation: headerEnter 0.7s ease both;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.92);
  box-shadow: 0 10px 30px rgba(23, 21, 18, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.nav {
  gap: 24px;
  font-size: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav a,
.header-phone {
  opacity: 0.9;
}

.nav a.is-active {
  color: var(--copper);
  opacity: 1;
}

.header-actions {
  justify-self: end;
  gap: 14px;
}

.header-phone {
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 42px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 48% 42%;
  animation: heroImageEnter 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.82) 0%, rgba(10, 10, 9, 0.52) 44%, rgba(10, 10, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.2) 0%, rgba(10, 10, 9, 0.72) 100%);
  animation: shadeEnter 1s ease both;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-bottom: 52px;
}

.hero .eyebrow,
.hero h1,
.hero-text,
.hero-actions,
.hero-location {
  opacity: 0;
  animation: heroTextEnter 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero .eyebrow {
  animation-delay: 0.16s;
}

.hero h1 {
  animation-delay: 0.28s;
}

.hero-text {
  animation-delay: 0.43s;
}

.hero-actions {
  animation-delay: 0.58s;
}

.hero-location {
  animation-delay: 0.72s;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-location {
  max-width: 560px;
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 58px;
  color: var(--white);
  background: var(--charcoal);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.86), rgba(10, 10, 9, 0.48)),
    var(--page-image, url("assets/ma-stone-hero.jpeg")) center / cover;
  content: "";
}

.page-hero > * {
  position: relative;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageEnter {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shadeEnter {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroTextEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.small {
  padding: 12px 16px;
  font-size: 13px;
}

.section,
.materials-band,
.projects,
.request-section,
.footer {
  padding: 86px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  background: var(--white);
}

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

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.compact-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.stats-grid,
.audience-grid,
.feature-grid,
.detail-grid,
.faq-list,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.audience-card,
.detail-card,
.faq-item,
.contact-card,
.cta-band,
.text-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
}

.audience-card {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 121, 66, 0.34);
  background: #fbf8f1;
  box-shadow: 0 18px 42px rgba(23, 21, 18, 0.1);
}

.stat-card strong {
  display: block;
  color: var(--copper);
  font-size: 28px;
  line-height: 1;
}

.stat-card span,
.audience-card p,
.detail-card p,
.contact-card p,
.text-panel p,
.service-meta {
  color: var(--muted);
}

.feature-grid,
.detail-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--copper);
  content: "";
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--charcoal);
  color: var(--white);
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-detail h3,
.detail-card h3,
.audience-card h3,
.faq-item h3,
.contact-card h3 {
  margin-top: 0;
}

.service-meta {
  display: grid;
  gap: 12px;
}

.faq-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-toggle::after {
  content: "+";
  color: var(--copper);
}

.faq-toggle[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  margin-top: 14px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.file-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
}

.file-status.error {
  color: #9b3b30;
  font-weight: 800;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: var(--copper);
}

.reveal-services .services-heading-reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal-services .service-card {
  opacity: 0;
  transform: translateY(34px) scale(0.96) rotate(-1.2deg);
  clip-path: inset(12% 0 12% 0 round 8px);
  transition:
    opacity 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    clip-path 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.24s ease;
}

.reveal-services.is-visible .services-heading-reveal,
.reveal-services.is-visible .service-card {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
  clip-path: inset(0 0 0 0 round 8px);
}

.reveal-services.is-visible .service-card:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal-services.is-visible .service-card:nth-child(2) {
  transition-delay: 0.18s;
}

.reveal-services.is-visible .service-card:nth-child(3) {
  transition-delay: 0.28s;
}

.reveal-services.is-visible .service-card:nth-child(4) {
  transition-delay: 0.38s;
}

.js .reveal-audience .audience-card {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.62s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.js .reveal-audience.is-visible .audience-card {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-audience.is-visible .audience-card:hover {
  transform: translateY(-4px);
}

.js .reveal-audience.is-visible .audience-card:nth-child(1) {
  transition-delay: 0.08s;
}

.js .reveal-audience.is-visible .audience-card:nth-child(2) {
  transition-delay: 0.18s;
}

.js .reveal-audience.is-visible .audience-card:nth-child(3) {
  transition-delay: 0.28s;
}

.js .reveal-audience.is-visible .audience-card:nth-child(4) {
  transition-delay: 0.38s;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 21, 18, 0.04);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-card .icon {
  color: var(--copper);
  font-weight: 900;
}

.service-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 6px;
  color: var(--copper);
  opacity: 0.86;
}

.service-icon path,
.service-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}

.reveal-services.is-visible .service-icon path,
.reveal-services.is-visible .service-icon circle {
  animation: drawServiceIcon 1s ease forwards;
}

.reveal-services.is-visible .service-card:nth-child(1) .service-icon path,
.reveal-services.is-visible .service-card:nth-child(1) .service-icon circle {
  animation-delay: 0.22s;
}

.reveal-services.is-visible .service-card:nth-child(2) .service-icon path,
.reveal-services.is-visible .service-card:nth-child(2) .service-icon circle {
  animation-delay: 0.32s;
}

.reveal-services.is-visible .service-card:nth-child(3) .service-icon path,
.reveal-services.is-visible .service-card:nth-child(3) .service-icon circle {
  animation-delay: 0.42s;
}

.reveal-services.is-visible .service-card:nth-child(4) .service-icon path,
.reveal-services.is-visible .service-card:nth-child(4) .service-icon circle {
  animation-delay: 0.52s;
}

@keyframes drawServiceIcon {
  to {
    stroke-dashoffset: 0;
  }
}

.service-card h3,
.materials h3,
.project-grid h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.16;
}

.service-card p,
.materials p,
.project-grid p,
.request-copy p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.materials-band {
  background: var(--charcoal);
  color: var(--white);
}

.materials-band .section-kicker {
  color: #dfad77;
}

.materials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.materials article {
  min-height: 350px;
  padding: 28px;
  background: var(--charcoal);
}

.materials p {
  color: rgba(255, 255, 255, 0.72);
}

.swatch {
  display: block;
  width: 100%;
  height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.marble {
  background-image: url("assets/marble-02044.webp");
  background-position: center;
  background-size: cover;
}

.granite {
  background-image: url("assets/granite-01513.webp");
  background-position: center;
  background-size: cover;
}

.quartzite {
  background-image: url("assets/quartz-agglomerate-taj-mahal.jpg");
  background-position: center;
  background-size: cover;
}

.travertine {
  background-image: url("assets/travertine-i.jpeg");
  background-position: center;
  background-size: cover;
}

.materials-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.materials-intro-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
  font-size: clamp(17px, 1.6vw, 20px);
}

.materials-intro-copy p {
  margin: 0;
  color: var(--charcoal);
}

.materials-technical {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(222, 216, 204, 0.68)),
    repeating-linear-gradient(0deg, rgba(23, 21, 18, 0.05) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(23, 21, 18, 0.04) 0 1px, transparent 1px 36px);
}

.materials-technical::before,
.materials-technical::after {
  position: absolute;
  content: "";
}

.materials-technical::before {
  inset: 48px 34px;
  border: 1px solid rgba(23, 21, 18, 0.18);
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(185, 121, 66, 0.34) 42% 43%, transparent 43%),
    linear-gradient(0deg, transparent 0 54%, rgba(23, 21, 18, 0.12) 54% 55%, transparent 55%);
  transform: rotate(-2.5deg);
}

.materials-technical::after {
  left: 18%;
  right: 14%;
  top: 50%;
  height: 88px;
  border: 1px solid rgba(23, 21, 18, 0.18);
  background:
    radial-gradient(circle at 22% 50%, transparent 0 18px, rgba(23, 21, 18, 0.24) 19px 20px, transparent 21px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.7), rgba(255, 255, 255, 0.72));
  transform: translateY(-50%) rotate(4deg);
}

.materials-technical span {
  position: absolute;
  z-index: 1;
  display: block;
  background: var(--copper);
}

.materials-technical span:nth-child(1) {
  left: 16%;
  top: 18%;
  width: 44%;
  height: 2px;
}

.materials-technical span:nth-child(2) {
  right: 16%;
  bottom: 22%;
  width: 34%;
  height: 2px;
}

.materials-technical span:nth-child(3) {
  right: 24%;
  top: 28%;
  width: 2px;
  height: 32%;
}

.material-process-section,
.material-approval {
  background: var(--paper);
}

.material-process-section .section-heading,
.material-approval-heading {
  display: grid;
  justify-content: start;
  max-width: 900px;
}

.material-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 34px 0 0;
  list-style: none;
}

.material-process::before {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  content: "";
}

.material-process li {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 0 12px;
  text-align: center;
}

.material-process li::before {
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  background: var(--copper);
  box-shadow: 0 0 0 1px rgba(185, 121, 66, 0.28);
  content: "";
}

.material-process span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.material-process strong {
  max-width: 150px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.2;
}

.material-process-note {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.customer-material {
  background: var(--white);
}

.material-note-panel {
  position: relative;
  max-width: 980px;
  padding: clamp(26px, 5vw, 48px);
  overflow: hidden;
}

.material-note-panel::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(185, 121, 66, 0.32);
  transform: rotate(24deg);
  content: "";
}

.material-note-panel h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.material-note-panel p:not(.section-kicker) {
  max-width: 850px;
  margin: 0;
}

.material-note-panel p:not(.section-kicker) + p {
  margin-top: 16px;
}

.approval-list {
  max-width: 980px;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(23, 21, 18, 0.16);
  list-style: none;
}

.approval-list li {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0 20px 24px;
  border-bottom: 1px solid var(--line);
}

.approval-list li::before {
  position: absolute;
  top: 27px;
  left: -5px;
  width: 9px;
  height: 9px;
  background: var(--copper);
  content: "";
}

.approval-list span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.approval-list strong {
  text-decoration: underline;
  text-decoration-color: rgba(185, 121, 66, 0.46);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.approval-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.material-cta {
  align-items: flex-start;
}

.material-cta .section-kicker {
  color: #dfad77;
}

.material-cta h2 {
  margin-bottom: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  min-width: min(420px, 100%);
}

.js .materials-intro.reveal-on-scroll .materials-intro-copy,
.js .materials-intro.reveal-on-scroll .materials-technical,
.js .material-process-section.reveal-on-scroll .section-heading,
.js .material-process-section.reveal-on-scroll .material-process li,
.js .material-process-section.reveal-on-scroll .material-process-note,
.js .customer-material.reveal-on-scroll .material-note-panel,
.js .material-approval.reveal-on-scroll .section-heading,
.js .material-approval.reveal-on-scroll .approval-list li {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .materials-intro.reveal-on-scroll .materials-technical {
  transform: translateY(26px) rotate(1.4deg);
}

.js .materials-intro.reveal-on-scroll.is-visible .materials-intro-copy,
.js .materials-intro.reveal-on-scroll.is-visible .materials-technical,
.js .material-process-section.reveal-on-scroll.is-visible .section-heading,
.js .material-process-section.reveal-on-scroll.is-visible .material-process li,
.js .material-process-section.reveal-on-scroll.is-visible .material-process-note,
.js .customer-material.reveal-on-scroll.is-visible .material-note-panel,
.js .material-approval.reveal-on-scroll.is-visible .section-heading,
.js .material-approval.reveal-on-scroll.is-visible .approval-list li {
  opacity: 1;
  transform: translateY(0);
}

.js .material-process-section.reveal-on-scroll.is-visible .material-process li:nth-child(2),
.js .material-approval.reveal-on-scroll.is-visible .approval-list li:nth-child(2) {
  transition-delay: 0.08s;
}

.js .material-process-section.reveal-on-scroll.is-visible .material-process li:nth-child(3),
.js .material-approval.reveal-on-scroll.is-visible .approval-list li:nth-child(3) {
  transition-delay: 0.16s;
}

.js .material-process-section.reveal-on-scroll.is-visible .material-process li:nth-child(4),
.js .material-approval.reveal-on-scroll.is-visible .approval-list li:nth-child(4) {
  transition-delay: 0.24s;
}

.js .material-process-section.reveal-on-scroll.is-visible .material-process li:nth-child(5),
.js .material-approval.reveal-on-scroll.is-visible .approval-list li:nth-child(5) {
  transition-delay: 0.32s;
}

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

.reveal-process .process-heading-reveal,
.reveal-process .timeline li {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-process.is-visible .process-heading-reveal,
.reveal-process.is-visible .timeline li {
  opacity: 1;
  transform: translateY(0);
}

.reveal-process.is-visible .timeline li:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal-process.is-visible .timeline li:nth-child(2) {
  transition-delay: 0.18s;
}

.reveal-process.is-visible .timeline li:nth-child(3) {
  transition-delay: 0.28s;
}

.reveal-process.is-visible .timeline li:nth-child(4) {
  transition-delay: 0.38s;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  position: relative;
  padding-top: 58px;
  border-top: 2px solid var(--copper);
}

.timeline li::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--copper);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 8px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-image,
  .hero-shade,
  .hero .eyebrow,
  .hero h1,
  .hero-text,
  .hero-actions,
  .hero-location {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .reveal-services .services-heading-reveal,
  .reveal-services .service-card,
  .reveal-process .process-heading-reveal,
  .reveal-process .timeline li,
  .js .reveal-audience .audience-card,
  .js .materials-intro.reveal-on-scroll .materials-intro-copy,
  .js .materials-intro.reveal-on-scroll .materials-technical,
  .js .material-process-section.reveal-on-scroll .section-heading,
  .js .material-process-section.reveal-on-scroll .material-process li,
  .js .material-process-section.reveal-on-scroll .material-process-note,
  .js .customer-material.reveal-on-scroll .material-note-panel,
  .js .material-approval.reveal-on-scroll .section-heading,
  .js .material-approval.reveal-on-scroll .approval-list li,
  .js .project-journal.reveal-on-scroll .case-header,
  .js .project-journal.reveal-on-scroll .case-main-figure,
  .js .project-journal.reveal-on-scroll .case-copy,
  .js .project-journal.reveal-on-scroll .case-facts,
  .js .project-journal.reveal-on-scroll .case-gallery figure,
  .js .project-journal.reveal-on-scroll .case-work,
  .js .project-journal.reveal-on-scroll .case-result,
  .js .project-journal.reveal-on-scroll .project-case-cta {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .audience-card:hover,
  .js .reveal-audience.is-visible .audience-card:hover {
    transform: none;
  }

  .service-icon path,
  .service-icon circle {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.projects {
  background: #e9e4d9;
}

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

.project-grid article {
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.project-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 82px rgba(23, 21, 18, 0.22);
}

.project-grid h3,
.project-grid p {
  padding-inline: 24px;
}

.project-grid p {
  padding-bottom: 26px;
}

.project-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transition:
    transform 0.42s ease,
    filter 0.42s ease;
}

.project-grid article:hover .project-visual::after {
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.04);
}

.visual-1 {
  background-image: url("assets/kitchen-countertops.png");
}

.visual-2 {
  background-image: url("assets/milled-panels.jpeg");
}

.visual-3 {
  background-image: url("assets/stairs-facades.jpeg");
}

.portfolio-hero {
  min-height: 44vh;
}

.portfolio-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.88), rgba(10, 10, 9, 0.52)),
    var(--page-image, url("assets/ma-stone-hero.jpeg")) center / cover;
}

.hero-note {
  max-width: 780px;
  margin-top: 14px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px !important;
}

.project-journal {
  background: #e9e4d9;
}

.case-study {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
}

.case-header {
  display: grid;
  grid-template-columns: minmax(88px, 0.16fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: end;
  max-width: 1180px;
}

.case-number {
  margin: 0;
  color: rgba(23, 21, 18, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.78;
}

.case-header h2 {
  max-width: 980px;
}

.case-subtitle {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
}

.case-main-figure,
.case-gallery figure {
  margin: 0;
  border: 1px solid rgba(23, 21, 18, 0.14);
  background: var(--paper);
}

.case-main-figure {
  width: min(100%, 1640px);
}

.case-main-figure picture,
.case-gallery picture {
  display: block;
  background: var(--charcoal);
}

.case-main-figure img,
.case-gallery img {
  width: 100%;
  height: auto;
}

.case-main-figure figcaption,
.case-gallery figcaption {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.case-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

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

.case-copy h3,
.case-facts h3,
.case-work h3,
.case-result h3,
.project-case-cta h3 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.case-copy p {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
}

.case-copy p + p {
  margin-top: 18px;
}

.case-facts {
  border-top: 1px solid rgba(23, 21, 18, 0.18);
}

.case-facts dl {
  margin: 0;
}

.case-facts div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.14);
}

.case-facts dt {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  color: var(--charcoal);
}

.case-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.case-work {
  border-top: 1px solid rgba(23, 21, 18, 0.16);
  padding-top: 32px;
}

.case-work ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 70px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: work;
}

.case-work li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.12);
  color: var(--charcoal);
}

.case-work li::before {
  counter-increment: work;
  content: counter(work, decimal-leading-zero);
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.case-result {
  max-width: 980px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 3px solid var(--copper);
  background: rgba(255, 255, 255, 0.54);
}

.case-result p {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
}

.project-case-cta {
  align-items: center;
}

.project-case-cta .section-kicker {
  color: #dfad77;
}

.project-case-cta h3 {
  color: var(--white);
}

.project-case-cta .button {
  white-space: nowrap;
}

.js .project-journal.reveal-on-scroll .case-header,
.js .project-journal.reveal-on-scroll .case-main-figure,
.js .project-journal.reveal-on-scroll .case-copy,
.js .project-journal.reveal-on-scroll .case-facts,
.js .project-journal.reveal-on-scroll .case-gallery figure,
.js .project-journal.reveal-on-scroll .case-work,
.js .project-journal.reveal-on-scroll .case-result,
.js .project-journal.reveal-on-scroll .project-case-cta {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .project-journal.reveal-on-scroll.is-visible .case-header,
.js .project-journal.reveal-on-scroll.is-visible .case-main-figure,
.js .project-journal.reveal-on-scroll.is-visible .case-copy,
.js .project-journal.reveal-on-scroll.is-visible .case-facts,
.js .project-journal.reveal-on-scroll.is-visible .case-gallery figure,
.js .project-journal.reveal-on-scroll.is-visible .case-work,
.js .project-journal.reveal-on-scroll.is-visible .case-result,
.js .project-journal.reveal-on-scroll.is-visible .project-case-cta {
  opacity: 1;
  transform: translateY(0);
}

.js .project-journal.reveal-on-scroll.is-visible .case-main-figure {
  transition-delay: 0.08s;
}

.js .project-journal.reveal-on-scroll.is-visible .case-copy,
.js .project-journal.reveal-on-scroll.is-visible .case-facts {
  transition-delay: 0.16s;
}

.js .project-journal.reveal-on-scroll.is-visible .case-gallery figure:nth-child(1) {
  transition-delay: 0.24s;
}

.js .project-journal.reveal-on-scroll.is-visible .case-gallery figure:nth-child(2) {
  transition-delay: 0.32s;
}

.js .project-journal.reveal-on-scroll.is-visible .case-work,
.js .project-journal.reveal-on-scroll.is-visible .case-result,
.js .project-journal.reveal-on-scroll.is-visible .project-case-cta {
  transition-delay: 0.18s;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 92px);
  background: var(--white);
}

.request-copy p {
  margin-top: 22px;
  font-size: 18px;
}

.calculation-form-media {
  width: 100%;
  margin: 26px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
}

.calculation-form-media picture,
.calculation-form-media img {
  display: block;
  width: 100%;
}

.calculation-form-media img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 18, 0.18);
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(185, 121, 66, 0.18);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-note.success {
  color: #3f6f3c;
  font-weight: 800;
}

.form-note.error {
  color: #9b3b30;
  font-weight: 800;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: #171512;
}

.footer strong {
  font-size: 22px;
}

.footer p {
  max-width: 460px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-copy {
  font-size: 14px;
  font-weight: 300;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

@media (max-width: 1440px) {
  .site-header {
    gap: 16px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(247, 244, 237, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 13px 10px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .service-grid,
  .materials,
  .timeline,
  .stats-grid,
  .audience-grid,
  .feature-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid,
  .intro,
  .request-section,
  .service-detail,
  .materials-intro,
  .case-header,
  .case-content,
  .case-gallery {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
  }

  .portfolio-hero {
    min-height: 40vh;
  }

  .case-number {
    font-size: 72px;
  }

  .case-facts div {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .case-work ol {
    grid-template-columns: 1fr;
  }

  .project-case-cta .button {
    justify-self: start;
  }

  .materials-technical {
    min-height: 280px;
  }

  .material-process {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .material-process::before {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .material-process li {
    grid-template-columns: 28px minmax(0, 1fr);
    justify-items: start;
    gap: 14px;
    padding: 14px 0;
    text-align: left;
  }

  .material-process li::before {
    grid-row: 1 / span 2;
    margin-top: 3px;
  }

  .material-process span {
    grid-column: 2;
    align-self: end;
  }

  .material-process strong {
    grid-column: 2;
    max-width: none;
  }

  .cta-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero {
    min-height: 94vh;
    padding: 96px 18px 30px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .service-grid,
  .materials,
  .timeline,
  .project-grid,
  .stats-grid,
  .audience-grid,
  .feature-grid,
  .detail-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .materials-band,
  .projects,
  .request-section,
  .footer,
  .page-hero {
    padding: 58px 18px;
  }

  .page-hero {
    min-height: 52vh;
    padding-top: 112px;
  }

  .portfolio-hero {
    min-height: 46vh;
  }

  .section-heading,
  .footer {
    display: block;
  }

  .case-header {
    gap: 12px;
  }

  .case-number {
    font-size: 58px;
  }

  .case-subtitle,
  .case-copy p,
  .case-result p {
    font-size: 16px;
  }

  .case-main-figure figcaption,
  .case-gallery figcaption {
    padding: 12px 14px;
  }

  .case-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 0;
  }

  .case-work li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .case-result {
    padding: 22px;
  }

  .project-case-cta .button {
    width: 100%;
  }

  .materials-technical {
    min-height: 230px;
  }

  .materials-technical::before {
    inset: 34px 22px;
  }

  .materials-technical::after {
    left: 12%;
    right: 10%;
    height: 70px;
  }

  .approval-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding-left: 18px;
  }

  .material-note-panel {
    padding: 24px;
  }

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

  address {
    margin-top: 24px;
    text-align: left;
  }
}
