﻿:root {
  --bg: #1f232d;
  --bg-soft: #2a2f3a;
  --text: #f5f5f5;
  --muted: #c9ced8;
  --dark: #111317;
  --gold: #f0c24d;
  --gold-deep: #d8a62d;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: #f4f1eb;
  line-height: 1.5;
}

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

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

.page-shell {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 24, 31, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap,
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 162px;
  height: auto;
}

.brand-copy {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 13px;
}

.nav-menu a {
  opacity: 0.86;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.hero {
  position: relative;
  color: var(--white);
  background-position: center;
  background-size: cover;
  min-height: 690px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.72) 0%, rgba(18, 20, 24, 0.18) 58%, rgba(18, 20, 24, 0.48) 100%),
    linear-gradient(180deg, rgba(18, 20, 24, 0.18) 0%, rgba(18, 20, 24, 0.5) 100%);
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 72px;
}

.hero-content {
  max-width: 520px;
}

@media (min-width: 1081px) {
  .hero-content {
    margin-bottom: 58px;
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-detail-cta {
  justify-content: center;
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: var(--dark);
  background: linear-gradient(180deg, #ffd86d 0%, #efbf43 100%);
  box-shadow: 0 16px 30px rgba(240, 194, 77, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-tab {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 12px;
}

.band {
  padding: 26px 0;
}

.band-dark {
  background: var(--bg);
  color: var(--white);
}

.band-dark .quote-stars {
  color: var(--gold);
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 8px;
}

.band-dark blockquote {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  color: var(--gold);
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.2;
  font-weight: 700;
}

.band-dark .byline {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

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

.section-stone {
  background: #f0ebe4;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #8d96a6;
}

.section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #7b818d;
  text-align: center;
}

.center {
  text-align: center;
}

.stats-panel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 340px;
  padding: 36px 34px;
  background: linear-gradient(135deg, #15181f 0%, #20242d 100%);
  background-position: center;
  background-size: cover;

  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.stats-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.72) 0%, rgba(8, 10, 14, 0.54) 48%, rgba(8, 10, 14, 0.42) 100%),
    radial-gradient(circle at 18% 20%, rgba(245, 193, 70, 0.16), transparent 32%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.45fr repeat(2, minmax(180px, 0.65fr));
  gap: 0;
  align-items: center;
  color: var(--white);
}

.stats-lead {
  align-self: center;
  padding-right: 34px;
}

.stats-lead h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 142px;
  padding: 18px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 0.95;
}

.stat-card span {
  max-width: 220px;
}

.copy-block {
  margin-top: 28px;
  max-width: 940px;
}

.copy-block p,
.body-copy {
  color: #6b717d;
  font-size: 16px;
}

.compare {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 38px;
  align-items: start;
}

.concrete-superior .compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.concrete-superior .compare-image,
.concrete-superior .feature-image {
  aspect-ratio: 4 / 3;
}

.compare-image,
.feature-image,
.founder-photo,
.service-card,
.portfolio-card,
.testimonial-visual {
  border-radius: 18px;
  overflow: hidden;
}

.compare-image img,
.feature-image img,
.founder-photo img,
.portfolio-card img,
.service-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.bullet {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.bullet-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(240, 194, 77, 0.18);
  color: var(--gold-deep);
  font-weight: 800;
}

.bullet h3 {
  margin: 0 0 4px;
  font-size: 19px;
}

.bullet p {
  margin: 0;
  color: #6b717d;
}

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

.concrete-gallery-slider {
  position: relative;
}

.concrete-gallery-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.concrete-gallery-track {
  display: flex;
  gap: 22px;
  transition: transform 0.28s ease;
}

.concrete-gallery-slide {
  flex: 0 0 calc((100% - 22px) / 2);
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(17, 19, 23, 0.76);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transform: translateY(calc(-50% - 10px));
}

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

.slider-button::before {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.slider-button-prev {
  left: 14px;
}

.slider-button-prev::before {
  content: "\2039";
}

.slider-button-next {
  right: 14px;
}

.slider-button-next::before {
  content: "\203A";
}

.slider-button[disabled] {
  opacity: 0.38;
  cursor: default;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.24);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.slider-dot.active {
  width: 24px;
  background: #2f80ed;
}

.slider-dot:focus-visible {
  outline: 2px solid #2f80ed;
  outline-offset: 3px;
}

.concrete-gallery-slide img {
  cursor: zoom-in;
}

.showcase-grid .gallery-card {
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 86px;
  align-items: center;
  gap: 16px;
  padding: 58px 28px 48px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-content {
  margin: 0;
  min-width: 0;
  text-align: center;
}

.gallery-lightbox-content img {
  display: block;
  margin: 0 auto;
  max-width: min(100%, 1068px);
  max-height: calc(100vh - 116px);
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.gallery-lightbox.zoomed .gallery-lightbox-content img {
  cursor: zoom-out;
  transform: scale(1.35);
}

.gallery-lightbox-content figcaption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
}

.gallery-lightbox-count {
  position: absolute;
  top: 12px;
  left: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 700;
}

.gallery-lightbox-toolbar {
  position: absolute;
  top: 8px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery-lightbox-tool,
.gallery-lightbox-arrow {
  border: 0;
  outline: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.gallery-lightbox-tool:hover,
.gallery-lightbox-tool:focus-visible,
.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-lightbox-tool {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

.gallery-lightbox-arrow {
  width: 60px;
  height: 80px;
  border-radius: 0;
  justify-self: center;
}

.gallery-lightbox-arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.gallery-lightbox-prev::before {
  transform: rotate(-135deg);
}

.gallery-lightbox-next::before {
  transform: rotate(45deg);
}

.gallery-lightbox-fullscreen::before,
.gallery-lightbox-zoom::before,
.gallery-lightbox-share::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 22px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 22px 22px;
}

.gallery-lightbox-fullscreen::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 9V4h5v2H6v3H4Zm14 0V6h-3V4h5v5h-2ZM4 15h2v3h3v2H4v-5Zm14 3v-3h2v5h-5v-2h3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 9V4h5v2H6v3H4Zm14 0V6h-3V4h5v5h-2ZM4 15h2v3h3v2H4v-5Zm14 3v-3h2v5h-5v-2h3Z'/%3E%3C/svg%3E");
}

.gallery-lightbox-zoom::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 4a6 6 0 1 1 0 12 6 6 0 0 1 0-12Zm0 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm1 3h2v2h-2v2H9v-2H7V9h2V7h2v2Zm4.7 5.3 4 4-1.4 1.4-4-4 1.4-1.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 4a6 6 0 1 1 0 12 6 6 0 0 1 0-12Zm0 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm1 3h2v2h-2v2H9v-2H7V9h2V7h2v2Zm4.7 5.3 4 4-1.4 1.4-4-4 1.4-1.4Z'/%3E%3C/svg%3E");
}

.gallery-lightbox-share::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 16.1c-.8 0-1.5.3-2 .9L8.9 13c.1-.3.1-.6.1-1s0-.7-.1-1L16 7c.5.6 1.2.9 2 .9a3 3 0 1 0-3-3c0 .3 0 .6.1.9L8 9.9A3 3 0 1 0 8 14l7.1 4.2c-.1.3-.1.5-.1.8a3 3 0 1 0 3-2.9Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 16.1c-.8 0-1.5.3-2 .9L8.9 13c.1-.3.1-.6.1-1s0-.7-.1-1L16 7c.5.6 1.2.9 2 .9a3 3 0 1 0-3-3c0 .3 0 .6.1.9L8 9.9A3 3 0 1 0 8 14l7.1 4.2c-.1.3-.1.5-.1.8a3 3 0 1 0 3-2.9Z'/%3E%3C/svg%3E");
}

.founder {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.founder-copy {
  color: rgba(255, 255, 255, 0.92);
}

.founder-copy .section-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.values {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  padding-left: 18px;
  border-left: 3px solid rgba(77, 113, 255, 0.72);
}

.value-item strong {
  display: block;
  margin-bottom: 6px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  position: relative;
  min-height: 255px;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 16, 20, 0.12) 0%, rgba(14, 16, 20, 0.82) 100%);
}

.service-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  color: var(--white);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.service-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.portfolio-header {
  max-width: 520px;
  margin-bottom: 28px;
}

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

.before-after-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  display: block;
  aspect-ratio: 1 / 1;
  background: #ddd;
}

.before-after-card {
  --position: 50%;
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
}

.before-after-image {
  position: absolute;
  inset: 0;
}

.before-image {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  z-index: 2;
}

.after-image {
  z-index: 1;
}

.before-after-label {
  position: absolute;
  top: 50%;
  z-index: 4;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 19, 23, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .before-after-card:hover .before-after-label {
    opacity: 1;
  }
}

.before-label {
  left: 14px;
}

.after-label {
  right: 14px;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.94);
  transform: translateX(-50%);
}

.before-after-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.68) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3 3 8l5 5'/%3E%3Cpath d='M14 3l5 5-5 5'/%3E%3C/svg%3E") center / 22px 16px no-repeat;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.gallery-card {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
}

.banner-quote {
  position: relative;
  min-height: 270px;
  border-radius: 22px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.banner-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.56);
}

.banner-quote .inner {
  position: relative;
  max-width: 760px;
  padding: 22px;
}

.process {
  position: relative;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 26, 18, 0.28) 0%, rgba(46, 26, 18, 0.6) 100%);
}

.process .container {
  position: relative;
}

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

.process-card {
  padding: 24px 20px;
  background: rgba(21, 25, 34, 0.72);

  min-height: 232px;
}

.process-card .step {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 8px 0 12px;
  font-size: 28px;
  line-height: 1;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-center {
  margin-top: 34px;
  text-align: center;
}

.cta-center .btn + .btn {
  margin-left: 12px;
}

.section-white .cta-center .btn-secondary {
  color: var(--dark);
  border-color: rgba(17, 19, 23, 0.18);
  background: rgba(17, 19, 23, 0.04);
}

.site-footer {
  background: #14171d;
  color: rgba(255, 255, 255, 0.82);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.footer-bottom {
  padding: 18px 0 28px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #5dc44e;
}

.page-hero {
  position: relative;
  color: var(--white);
  background-position: center;
  background-size: cover;
  min-height: 520px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 18, 24, 0.78) 0%, rgba(15, 18, 24, 0.35) 100%);
}

.page-hero-inner {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 62px;
}

.crumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: start;
}

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

.detail-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(16, 18, 23, 0.08);
}


.outdoor-structure-cards .detail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.retaining-hardscape-cards .detail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.water-diversion-cards .detail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.detail-card-body {
  padding: 18px;
}

.detail-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: #6b717d;
}

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

.reason-card,
.faq-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 18, 23, 0.08);
}

.reason-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 21px;
}

.reason-card p,
.faq-card p {
  margin: 0;
  color: #6b717d;
}

.faq-accordion {
  max-width: 960px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
  text-align: left;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 18, 23, 0.08);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 20px 58px 20px 22px;
  border: 0;
  position: relative;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 19px;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--gold-deep);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-question:focus-visible {
  outline: 3px solid rgba(240, 194, 77, 0.55);
  outline-offset: -3px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #6b717d;
}

.faq-question[aria-expanded="true"] + .faq-answer p {
  padding-bottom: 22px;
}

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

.gallery-grid .gallery-card {
  aspect-ratio: 4 / 3;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

 .floating-cta .btn {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .services-grid,
  .process-grid,
  .reason-grid,
  .faq-grid,
  .showcase-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare,
  .founder,
  .page-content-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .concrete-superior .compare {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 14px;
  }

  .hero-tabs {
    position: static;
    margin-top: 34px;
  }

  .hero-inner {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: #1a1f28;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }
  .page-hero,
  .page-hero-inner {
    min-height: auto;
  }

  .hero,
  .hero-inner {
    min-height: 100svh;
  }

  .hero-inner {
    padding-top: 140px;
  }

  .page-hero-inner {
    padding-top: 96px;
  }

  .services-grid,
  .portfolio-grid,
  .duo-grid,
  .detail-grid,
  .process-grid,
  .reason-grid,
  .faq-grid,
  .showcase-grid,
  .gallery-grid,
  .footer-top,
  .hero-tabs {
    grid-template-columns: 1fr;
  }

  .band-dark blockquote {
    font-size: 23px;
  }

  .service-card {
    min-height: 210px;
  }

  .concrete-gallery-slide {
    flex-basis: 100%;
  }

  .gallery-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 22px 12px;
  }

  .gallery-lightbox-content img {
    max-height: calc(100vh - 110px);
  }

  .gallery-lightbox-arrow {
    width: 42px;
    height: 42px;
  }

}


















.footer-top a {
  color: inherit;
  text-decoration: none;
}

.footer-top a:hover {
  color: var(--gold);
}

.footer-top .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease;
}

.footer-top .social-link:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
  transform: translateY(-1px);
}

.footer-top .social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}




