
:root {
  --black: #11120f;
  --charcoal: #1c1f1a;
  --earth: #9a6b37;
  --earth-dark: #6f4926;
  --sand: #efe9df;
  --cream: #f8f5ef;
  --white: #ffffff;
  --muted: #666a63;
  --border: #ddd7cd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(17,18,15,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; gap: 12px; align-items: center; color: var(--white); }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--earth); color: var(--white); font-family: "Oswald";
  font-weight: 700; font-size: 22px; transform: skew(-6deg);
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Oswald"; font-size: 21px; letter-spacing: .4px; line-height: 1; }
.brand small { font-size: 11px; color: #c7c9c2; margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #f2f2ef; font-weight: 700; font-size: 14px; }
.nav-links a:hover { color: #d4a76e; }
.nav-cta { border: 1px solid #b8844c; padding: 10px 16px; }
.menu-toggle { display:none; background:none; color:white; border:0; font-size:28px; }

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(15,15,12,.94) 0%, rgba(15,15,12,.82) 42%, rgba(15,15,12,.38) 75%, rgba(15,15,12,.68) 100%),
    radial-gradient(circle at 75% 45%, #7e654b 0%, #4a493c 28%, #21251f 55%, #11120f 100%);
  overflow: hidden;
}
.hero::after {
  content:"";
  position:absolute;
  right:-80px; bottom:-120px;
  width:520px; height:360px;
  background: repeating-linear-gradient(12deg, rgba(255,255,255,.04) 0 8px, transparent 8px 26px);
  transform: rotate(-7deg);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; padding: 70px 0 80px; }
.eyebrow {
  color: #d4a76e; text-transform: uppercase; font-weight: 800;
  letter-spacing: 2px; font-size: 12px; margin: 0 0 15px;
}
.eyebrow.dark { color: var(--earth-dark); }
h1, h2, h3 { font-family: "Oswald", Arial, sans-serif; text-transform: uppercase; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(52px, 8vw, 92px); max-width: 820px; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: clamp(36px, 5vw, 54px); margin-bottom: 18px; }
h3 { font-size: 23px; margin-bottom: 9px; }
.hero-copy { max-width: 670px; font-size: 19px; color: #e0e1dc; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top: 30px; }
.button {
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 22px; min-height:50px; font-weight:800; text-transform:uppercase;
  letter-spacing:.6px; border:1px solid transparent; cursor:pointer; font-size:13px;
}
.button.primary { background:var(--earth); color:white; }
.button.primary:hover { background:var(--earth-dark); }
.button.secondary { border-color:rgba(255,255,255,.45); color:white; background:rgba(255,255,255,.04); }
.button.light { background:white; color:var(--black); }
.button.full { width:100%; }
.hero-points { display:flex; gap:24px; flex-wrap:wrap; margin-top:36px; color:#c9cbc5; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; }
.hero-points span::before { content:"✓"; color:#d4a76e; margin-right:7px; }

.trust-strip { background:var(--earth); color:white; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-grid div { padding:22px 18px; border-right:1px solid rgba(255,255,255,.18); }
.trust-grid div:last-child { border-right:0; }
.trust-grid strong, .trust-grid span { display:block; }
.trust-grid strong { font-family:"Oswald"; font-size:18px; text-transform:uppercase; }
.trust-grid span { color:#f0e3d4; font-size:12px; }

.section { padding: 88px 0; }
.section-heading { max-width:750px; margin-bottom:42px; }
.section-heading p { color:var(--muted); }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.service-card {
  background:white; border:1px solid var(--border); padding:28px 24px; min-height:245px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform:translateY(-5px); box-shadow:0 18px 40px rgba(0,0,0,.08); border-color:#c8aa86; }
.service-card .icon { font-size:30px; color:var(--earth); margin-bottom:18px; }
.service-card p { color:var(--muted); font-size:14px; margin-bottom:0; }

.dark-section { background:var(--charcoal); color:white; }
.dark-section p { color:#c7c9c2; }
.split { display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:center; }
.stats-card { border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.03); }
.stats-card div { padding:28px; border-bottom:1px solid rgba(255,255,255,.1); }
.stats-card div:last-child { border-bottom:0; }
.stats-card strong, .stats-card span { display:block; }
.stats-card strong { font-family:"Oswald"; font-size:26px; text-transform:uppercase; color:#d4a76e; }
.stats-card span { font-size:13px; margin-top:4px; }

.project-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.project-card {
  min-height:260px; position:relative; overflow:hidden;
  background:
    linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.08)),
    repeating-linear-gradient(25deg, #776d5e 0 14px, #6d6659 14px 28px);
}
.project-card:nth-child(2) { background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.12)), linear-gradient(145deg,#66715c,#9d8b68); }
.project-card:nth-child(3) { background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.12)), linear-gradient(145deg,#565550,#a99a7f); }
.project-card:nth-child(4) { background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.12)), linear-gradient(145deg,#4a5543,#87725c); }
.project-card:nth-child(5) { background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.12)), linear-gradient(145deg,#525a50,#7a6a50); }
.project-card:nth-child(6) { background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.12)), linear-gradient(145deg,#665847,#8c7557); }
.project-card span {
  position:absolute; left:20px; bottom:18px; color:white; font-family:"Oswald";
  text-transform:uppercase; font-size:24px;
}

.cta-section { background:var(--earth); color:white; padding:58px 0; }
.cta-wrap { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.cta-wrap h2 { margin-bottom:8px; }
.cta-wrap p { margin:0; color:#f0e3d4; }

.contact-section { background:#eee8df; }
.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; }
.contact-note { margin-top:28px; display:grid; gap:7px; color:var(--muted); }
.contact-note strong { color:var(--black); }
.estimate-form { background:white; border:1px solid var(--border); padding:30px; }
.estimate-form label { display:block; font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.5px; margin-bottom:16px; }
input, select, textarea {
  width:100%; margin-top:7px; border:1px solid #cfc9bf; background:#fbfaf8;
  padding:13px 12px; font:inherit; color:var(--black); border-radius:0;
}
textarea { resize:vertical; }
.form-message { margin:12px 0 0; font-size:13px; color:var(--earth-dark); }

footer { background:var(--black); color:#bfc1bb; padding:28px 0; }
.footer-wrap { display:flex; justify-content:space-between; gap:30px; font-size:12px; }
.footer-wrap strong { display:block; color:white; margin-bottom:3px; }

@media (max-width: 960px) {
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid div:nth-child(2) { border-right:0; }
  .split, .contact-grid { grid-template-columns:1fr; gap:38px; }
  .project-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 720px) {
  .menu-toggle { display:block; }
  .nav-links {
    display:none; position:absolute; top:76px; left:0; right:0; background:#11120f;
    padding:22px 4%; flex-direction:column; align-items:flex-start; gap:18px;
  }
  .nav-links.open { display:flex; }
  .hero { min-height:600px; }
  h1 { font-size:54px; }
  .hero-points { gap:12px 20px; }
  .service-grid, .project-grid, .trust-grid { grid-template-columns:1fr; }
  .trust-grid div { border-right:0; border-bottom:1px solid rgba(255,255,255,.18); }
  .cta-wrap, .footer-wrap { flex-direction:column; align-items:flex-start; }
  .section { padding:68px 0; }
}

.service-area-section { background: #f8f5ef; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-grid span {
  background: white;
  border: 1px solid var(--border);
  padding: 18px 16px;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 800px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr; }
}

.company-banner-section {
  background: #11120f;
  padding: 28px 0;
}
.company-banner {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
}
.photo-grid {
  grid-template-columns: repeat(3, 1fr);
}
.project-photo {
  margin: 0;
  background: #11120f;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}
.project-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .25s ease;
}
.project-photo:hover img { transform: scale(1.025); }
.project-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 18px 16px;
  color: white;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
}
@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .photo-grid { grid-template-columns: 1fr; }
  .project-photo img { height: 270px; }
}
