:root {
  --ink: #171819;
  --muted: #5c6269;
  --paper: #ffffff;
  --concrete: #eff1f0;
  --line: #d8ddd9;
  --dark: #24211e;
  --orange: #d86422;
  --orange-dark: #b94f14;
  --green: #27725a;
  --blue: #234f83;
  --shadow: 0 18px 48px rgba(23, 24, 25, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 82px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0.65rem 0.85rem;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.nav,
.hero,
.trust-strip,
.section,
.final-cta,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.nav-links,
.hero-actions,
.trust-strip ul,
.final-actions,
.mobile-bar {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  flex: 0 0 auto;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 68px);
  padding: 3rem 0 2.25rem;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero-content,
.hero-panel,
.section-heading,
.service-card,
.gallery-card,
.why-list > *,
.quote-layout > *,
.final-cta > *,
.footer > * {
  min-width: 0;
}

.eyebrow {
  max-width: 34ch;
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 11vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 8vw, 3.2rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-copy,
.section-heading p,
.service-card p,
.why-list p,
.quote-section p,
.footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 46rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.82rem 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-secondary {
  background: var(--dark);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #111111;
}

.button-outline {
  border-color: var(--dark);
  background: #ffffff;
  color: var(--dark);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--concrete);
}

.hero-panel {
  display: grid;
  place-items: center;
}

.concrete-card {
  width: min(100%, 420px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.concrete-scene {
  min-height: 290px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 42px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #b7b9b6, #e7e2d6 48%, #8d9291);
}

.concrete-scene::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
}

.slab {
  position: absolute;
  border-radius: var(--radius);
  background: rgba(36, 33, 30, 0.72);
}

.slab-large {
  right: 24px;
  bottom: 38px;
  width: 56%;
  height: 86px;
}

.slab-small {
  left: 30px;
  top: 44px;
  width: 36%;
  height: 64px;
}

.tool-line {
  position: absolute;
  right: 34px;
  top: 42px;
  width: 96px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
  transform: rotate(-23deg);
}

.project-note {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
}

.project-note strong {
  font-size: 1.05rem;
}

.project-note span {
  color: var(--muted);
}

.trust-strip {
  padding: 0 0 2.5rem;
}

.trust-strip ul {
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--concrete);
  font-weight: 800;
  font-size: 0.94rem;
}

.section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading p:last-child {
  margin: 0.75rem 0 0;
}

.service-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.testimonial-grid blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1.1rem;
}

.service-card p {
  margin: 0.65rem 0 0;
}

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

.gallery-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 40px);
}

.gallery-card span,
.gallery-card h3 {
  position: relative;
}

.gallery-card span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-card h3 {
  max-width: 13rem;
  font-size: 1.35rem;
}

.gallery-card.before {
  background:
    linear-gradient(180deg, rgba(23, 24, 25, 0.18), rgba(23, 24, 25, 0.82)),
    linear-gradient(135deg, #9c8e7d, #494743);
}

.gallery-card.after {
  background:
    linear-gradient(180deg, rgba(23, 24, 25, 0.08), rgba(23, 24, 25, 0.72)),
    linear-gradient(135deg, #b7bbb8, #e5e1d3 55%, #6e8480);
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-list article {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.why-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.number {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--orange);
  font-weight: 900;
}

.why-list p {
  margin: 0.6rem 0 0;
}

.testimonials-section {
  background: #ffffff;
}

.sample-note,
.form-note {
  font-weight: 800;
}

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.quote-layout {
  display: grid;
  gap: 1.5rem;
}

.quote-form {
  display: grid;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--concrete);
  padding: 1.15rem;
}

.quote-form label {
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #aeb6b2;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(216, 100, 34, 0.24);
  border-color: var(--orange);
}

.final-cta {
  display: grid;
  gap: 1.3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.final-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0 6rem;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -10px 28px rgba(23, 24, 25, 0.14);
}

.mobile-bar a {
  flex: 1;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--orange);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.mobile-bar a:nth-child(2) {
  background: var(--dark);
}

.mobile-bar a:nth-child(3) {
  background: var(--green);
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    padding: 4.5rem 0 3rem;
  }

  .service-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(330px, 1fr);
    align-items: start;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer {
    padding-bottom: 1.5rem;
  }

  .mobile-bar {
    display: none;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 5rem 0;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-list article,
  .why-list article:last-child {
    border-bottom: 0;
  }
}
