:root {
  --bg: #1f1916;
  --surface: rgba(42, 34, 30, 0.88);
  --surface-strong: #312723;
  --text: #f6efe7;
  --muted: #d3c0b3;
  --line: rgba(255, 245, 235, 0.12);
  --brand: #b53a2d;
  --brand-dark: #892719;
  --accent: #f3c969;
  --shadow: 0 18px 50px rgba(74, 41, 17, 0.12);
  --radius: 20px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 201, 105, 0.18), transparent 28%),
    linear-gradient(180deg, #16110f 0%, var(--bg) 100%);
  line-height: 1.5;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(24, 18, 15, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  max-width: 220px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-sm {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lede {
  font-size: 1.1rem;
  max-width: 60ch;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero {
  padding-top: 6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
  font-weight: 600;
}

.hero-card,
.card,
.quote-panel,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  min-height: 100%;
  display: grid;
  gap: 1.25rem;
}

.metric,
.map-panel {
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(181, 58, 45, 0.18), rgba(243, 201, 105, 0.14));
}

.metric-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.metric-label {
  color: var(--text);
  font-weight: 600;
}

.map-panel {
  display: grid;
  gap: 1.2rem;
}

.map-copy h2 {
  margin-bottom: 0.5rem;
}

.map-kicker {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.concrete-truck {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(137, 39, 25, 0.18));
}

.concrete-truck rect,
.concrete-truck path,
.concrete-truck circle {
  fill: #b53a2d;
  stroke: #892719;
  stroke-width: 8;
  stroke-linejoin: round;
}

.concrete-truck .wheel-inner {
  fill: #fffaf5;
  stroke: #892719;
}

.concrete-truck .accent-shape {
  fill: #f3c969;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
}

.mini-panel {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.08);
  border: 1px solid var(--line);
}

.mini-panel-highlight {
  background: rgba(255, 250, 245, 0.1);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.feature-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-grid,
.project-gallery,
.project-preview-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card,
.product-card,
.soft-card,
.form-card {
  padding: 1.6rem;
}

.service-card,
.project-card,
.project-tile,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.service-card,
.project-card,
.project-tile {
  padding: 1.6rem;
}

.stat-card {
  padding: 1.4rem;
}

.project-photo-card {
  overflow: hidden;
  padding: 0;
}

.project-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-body {
  padding: 1.4rem 1.4rem 1.5rem;
}

.carousel-shell {
  position: relative;
}

.carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.project-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.project-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

.section-accent {
  background: rgba(255, 250, 245, 0.03);
}

.product-stack {
  display: grid;
  gap: 1rem;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
}

.check-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--brand-dark);
}

.stat-value {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--brand-dark);
}

.section-actions {
  margin-top: 2rem;
}

.contact-details p strong {
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(181, 58, 45, 0.1);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.quote-panel {
  padding: 2rem;
  text-align: center;
}

blockquote {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
}

.quote-attribution {
  color: var(--brand-dark);
  font-weight: 700;
}

.cta-band {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.page-hero {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.product-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: rgba(255, 250, 245, 0.08);
  color: var(--text);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.brand-footer {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .feature-grid,
  .product-grid,
  .service-grid,
  .stats-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(31, 25, 22, 0.98);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav .button {
    width: 100%;
  }

  .brand {
    max-width: 170px;
  }

  .carousel-slide {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .hero {
    padding-top: 4.5rem;
  }

  .carousel-slide {
    flex-basis: 100%;
  }
}
