﻿:root {
  --ink: #171612;
  --muted: #68645c;
  --paper: #f7f3eb;
  --panel: #ebe2d5;
  --line: rgba(23, 22, 18, .14);
  --accent: #a76546;
  --forest: #3c4a38;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 5vw, 56px);
  color: white;
  background: linear-gradient(to bottom, rgba(14,15,13,.72), rgba(14,15,13,.1));
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; font-weight: 800; }
.brand span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; font-size: 12px; }
nav { display: flex; gap: 26px; font-weight: 700; font-size: 14px; }
.header-cta { border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: 14px 22px; font-weight: 800; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #20231f;
}

.hero > img { position: absolute; inset: 0; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,24,21,.88), rgba(21,24,21,.44) 42%, rgba(21,24,21,.1)); }
.hero-content { position: relative; width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 140px 0 56px; color: white; }
.eyebrow { margin: 0 0 16px; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; font-weight: 800; color: var(--accent); }
.hero .eyebrow { color: rgba(255,255,255,.86); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; max-width: 560px; font-size: clamp(70px, 11vw, 148px); line-height: .9; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(30px, 5vw, 64px); line-height: 1; letter-spacing: 0; }
h3 { margin: 0; font-size: 22px; }
.hero-copy { max-width: 620px; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.45; }

.actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; }
.primary { background: var(--accent); color: white; }
.ghost { border: 1px solid rgba(255,255,255,.55); color: white; }
.ghost.dark { border-color: var(--line); color: var(--ink); }

.service-strip { display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid rgba(255,255,255,.4); margin-top: 86px; padding-top: 18px; font-weight: 700; }
.service-strip span { margin-right: 28px; }

.intro, .section, .process, .gallery, .faq, .contact {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; }
.intro p:last-child, .gallery p, .application p, .steps p, .faq p { color: var(--muted); line-height: 1.7; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.text-link { color: var(--accent); font-weight: 800; }

.application-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.application { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.28); }
.application span { display: inline-block; margin-bottom: 60px; color: var(--accent); font-weight: 800; }

.process { background: var(--forest); color: white; width: 100%; padding-inline: max(20px, calc((100vw - 1120px) / 2)); }
.process .eyebrow { color: #d8a17d; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.steps article { border-top: 1px solid rgba(255,255,255,.24); padding-top: 18px; }
.steps p { color: rgba(255,255,255,.75); }

.project-grid, .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card, .gallery-grid a { position: relative; min-height: 430px; overflow: hidden; background: var(--panel); }
.project-card span, .gallery-grid span { position: absolute; left: 18px; bottom: 18px; padding: 10px 14px; background: rgba(255,255,255,.86); font-weight: 800; }

.gallery { display: grid; grid-template-columns: .7fr 1.3fr; gap: 34px; align-items: start; }
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.gallery-grid a { min-height: 300px; }

.faq article { border-top: 1px solid var(--line); padding: 24px 0; }

.contact { display: flex; justify-content: space-between; gap: 30px; align-items: center; border-top: 1px solid var(--line); }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(20px, 5vw, 56px); background: var(--ink); color: white; }

.page-hero {
  padding: 140px 20px 70px;
  background: var(--forest);
  color: white;
}
.page-hero > div, .page-content { width: min(960px, 100%); margin: 0 auto; }
.page-hero h1 { font-size: clamp(54px, 8vw, 110px); }
.page-content { padding: 60px 20px 90px; }
.page-content p { color: var(--muted); line-height: 1.75; font-size: 18px; }
.page-image { aspect-ratio: 16 / 9; margin: 34px 0; overflow: hidden; }

@media (max-width: 860px) {
  .site-header { height: auto; min-height: 68px; flex-wrap: wrap; gap: 12px; padding-block: 14px; }
  nav { order: 3; width: 100%; overflow-x: auto; gap: 18px; padding-bottom: 4px; }
  .header-cta { padding: 10px 14px; }
  .hero { min-height: 820px; }
  .hero-shade { background: linear-gradient(180deg, rgba(21,24,21,.7), rgba(21,24,21,.58)); }
  .intro, .gallery, .contact { grid-template-columns: 1fr; display: grid; }
  .section-head, .contact { align-items: start; }
  .application-grid, .steps, .project-grid, .gallery-grid { grid-template-columns: 1fr; }
  .application { min-height: 220px; }
  .project-card, .gallery-grid a { min-height: 330px; }
  footer { flex-direction: column; }
}

.all-gallery-section{width:min(1180px,calc(100% - 40px));margin:0 auto;padding:90px 0}.all-gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.gallery-item{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--panel,#eee)}.gallery-item img{display:block;width:100%;height:100%;object-fit:cover}.gallery-item span{position:absolute;left:10px;bottom:10px;padding:7px 9px;background:rgba(255,255,255,.86);font-size:11px;font-weight:800}@media(max-width:980px){.all-gallery-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.all-gallery-grid{grid-template-columns:1fr}}
