* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c8a462;
  --accent-dark: #b48c48;
  --white: #ffffff;
  --radius: 24px;
  --radius-lg: 30px;
  --shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  padding-top: 82px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.93);
  border-bottom-color: var(--line);
}

.site-header.hide-header {
  transform: translateY(-100%);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 155px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.nav-cta {
  text-decoration: none;
  background: var(--accent);
  color: #0b0b0b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  border: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #0b0b0b;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover {
  background: #fff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* hero */
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.74)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: end;
  padding: 100px 0 84px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1,
.section-title,
.page-hero h1,
.story-title,
.statement-title {
  color: #fff;
  line-height: 0.98;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  max-width: 900px;
}

.hero-text,
.page-hero p,
.story-intro {
  margin-top: 18px;
  max-width: 700px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* sections */
.section {
  padding: 96px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-head {
  margin-bottom: 34px;
  max-width: 860px;
}

.statement-section {
  background: #0c0c0c;
}

.statement-grid {
  display: grid;
  gap: 18px;
}

.statement-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 980px;
}

/* stats */
.stats-section {
  background: #0b0b0b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 98, 0.35);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--muted);
}

/* services */
.services-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 98, 0.45);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.22));
}

.service-tile:hover::before {
  transform: scale(1.05);
}

.service-residential::before {
  background-image: url("images/service-residential.jpg");
}

.service-commercial::before {
  background-image: url("images/service-commercial.jpg");
}

.service-civil::before {
  background-image: url("images/service-civil.jpg");
}

.service-site::before {
  background-image: url("images/service-site-prep.jpg");
}

.service-index,
.service-tile h3,
.service-tile p {
  position: relative;
  z-index: 2;
}

.service-index {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-tile h3 {
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.08;
  max-width: 260px;
}

.service-tile p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  max-width: 270px;
}

/* projects */
.projects-section {
  background: #060606;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.project-card {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 98, 0.4);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1));
  color: #fff;
}

.project-overlay h3 {
  font-size: 1.18rem;
  line-height: 1.14;
}

.project-card.mixed {
  grid-column: 2 / 3;
}

/* testimonials */
.testimonials-section {
  background: #0b0b0b;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 98, 0.35);
}

.testimonial-card p {
  color: #fff;
  margin-bottom: 16px;
}

.testimonial-card strong {
  color: var(--muted);
}

/* trust + cta */
.trust-box,
.cta-box,
.story-card,
.page-card,
.contact-info-card,
.quote-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.trust-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.trust-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-points span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* page hero */
.page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.74)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
  padding: 120px 0 90px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

/* content layouts */
.page-grid,
.story-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.story-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.story-image {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.fact-box {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.fact-box strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.fact-box span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* contact */
.contact-info-card h2 {
  margin-bottom: 18px;
}

.contact-info-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.form-section-title {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  color: #fff;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.full-width {
  margin-bottom: 18px;
}

.submit-btn {
  width: 100%;
}

.form-status {
  margin-top: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--accent);
}

/* footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 155px;
  margin-bottom: 14px;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.site-footer p,
.footer-copy {
  color: var(--muted);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* floating call */
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  background: var(--accent);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.floating-call:hover {
  background: var(--accent-dark);
}

/* responsive */
@media (max-width: 1100px) {
  .services-layout,
  .stats-grid,
  .testimonials-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.mixed {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .trust-box,
  .cta-box,
  .footer-grid,
  .page-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 76px;
  }

  .nav-wrap {
    min-height: 76px;
    grid-template-columns: auto auto;
  }

  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    justify-self: end;
  }

  .nav-toggle-label span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0 6px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 92px 0 74px;
  }

  .section {
    padding: 76px 0;
  }

  .services-layout,
  .stats-grid,
  .testimonials-grid,
  .project-grid,
  .footer-grid,
  .story-facts,
  .page-grid,
  .story-grid,
  .trust-box,
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .project-card.mixed {
    grid-column: auto;
    max-width: none;
  }

  .hero h1,
  .section-title,
  .page-hero h1,
  .story-title,
  .statement-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-actions,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}
/* team page */
.team-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.76)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
}

.team-dark-section {
  background: #080808;
}

.team-grid {
  display: grid;
  gap: 24px;
}

.team-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-member-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 98, 0.4);
}

.team-image-wrap {
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
}

.team-portrait-wrap {
  aspect-ratio: 4 / 4.8;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.team-member-card:hover .team-image {
  transform: scale(1.05);
}

.team-card-content {
  padding: 26px;
}

.team-role-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-card h3 {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.12;
  margin-bottom: 10px;
}

.team-position {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}

.team-bio {
  color: var(--muted);
  font-size: 0.98rem;
}

.team-values-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.team-values-grid {
  display: grid;
  gap: 16px;
}

.team-value-item {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.team-value-item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.team-value-item span {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .team-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-member-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .team-values-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .team-grid-three {
    grid-template-columns: 1fr;
  }

  .team-member-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .team-card-content {
    padding: 22px;
  }
}
/* cleaner footer layout */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid-compact p {
  margin-bottom: 10px;
}

.footer-logo {
  width: 155px;
  margin-bottom: 14px;
}

.footer-copy {
  color: var(--muted);
  max-width: 320px;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer p {
  color: var(--muted);
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}