@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #0f1b2a;
  --navy-soft: #17283a;
  --copper: #a3683a;
  --copper-dark: #83502c;
  --warm: #f7f3ed;
  --stone: #d9d5cc;
  --gray: #6b7077;
  --white: #fffdf9;
  --line: rgba(15, 27, 42, .16);
  --shadow: 0 24px 70px rgba(15, 27, 42, .14);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--warm);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.eyebrow {
  color: var(--copper);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, .display {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .94;
  text-transform: uppercase;
}
h1 { font-size: clamp(4.6rem, 10vw, 9.2rem); }
h2 { font-size: clamp(3.1rem, 6.2vw, 6rem); }
h3 { font-size: clamp(1.75rem, 2.7vw, 2.5rem); }
p { margin: 0; }
.lede { font-size: clamp(1.03rem, 1.6vw, 1.25rem); line-height: 1.65; }
.accent-script { color: var(--copper); font-style: italic; font-weight: 500; }

.announcement {
  background: var(--copper);
  color: var(--white);
  padding: 9px 20px;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 39px;
  right: 0;
  left: 0;
  color: var(--white);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 0; }
.brandmark { width: 236px; height: auto; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:not(.button)::after { display: block; width: 0; height: 2px; margin-top: 4px; background: var(--copper); content: ""; transition: width .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); background: transparent; color: white; font-size: 1.25rem; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 23px;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s, background .2s, border-color .2s;
}
.button::after { content: "↗"; font-size: 1rem; }
.button:hover, .button:focus-visible { background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); }
.button-outline { border-color: rgba(255,255,255,.55); background: transparent; }
.button-outline:hover { border-color: var(--white); background: var(--white); color: var(--navy); }

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-media, .hero-media::before { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-media::before { z-index: 1; background: linear-gradient(90deg, rgba(15,27,42,.95) 0%, rgba(15,27,42,.76) 44%, rgba(15,27,42,.24) 78%), linear-gradient(0deg, rgba(15,27,42,.82), transparent 55%); content: ""; }
.hero-inner { position: relative; z-index: 2; width: min(1100px, 100%); margin-inline: auto; padding: 200px 0 92px; text-align: center; }
.hero-kicker { margin-bottom: 20px; color: var(--stone); font-weight: 600; letter-spacing: .06em; }
.hero h1 span { color: var(--copper); }
.hero h1 .hero-title-line { display: block; color: inherit; }
.hero-copy { display: grid; max-width: 1000px; gap: 6px; margin: 26px auto 32px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.service-note { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-trust {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-trust span { padding: 18px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.services { display: grid; grid-template-columns: 1fr 1fr; background: var(--warm); }
.service-panel { position: relative; min-height: 650px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(48px, 7vw, 96px); overflow: hidden; }
.service-panel:first-child { background: var(--navy); color: var(--white); }
.service-panel:last-child { background: var(--stone); }
.service-panel .index { color: var(--copper); font-family: "Bebas Neue"; font-size: 4.6rem; line-height: 1; }
.service-panel h2 { max-width: 520px; }
.service-panel p { max-width: 490px; margin-top: 24px; }
.service-list { display: grid; gap: 0; margin-top: 44px; }
.service-list span { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px solid currentColor; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-list span::after { color: var(--copper); content: "+"; font-size: 1.25rem; }

.intro { padding: clamp(80px, 11vw, 150px) 0; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.intro-visual { position: relative; min-height: 620px; }
.intro-visual img { width: 90%; height: 560px; object-fit: cover; box-shadow: var(--shadow); }
.intro-visual img:last-child { position: absolute; right: 0; bottom: 0; width: 48%; height: 270px; border: 10px solid var(--warm); }
.intro-copy { display: grid; gap: 28px; }
.quote-card { padding: 26px; border-left: 4px solid var(--copper); background: var(--white); box-shadow: 0 12px 42px rgba(15,27,42,.08); font-size: 1.05rem; font-weight: 600; }

.benefits { padding: clamp(80px, 10vw, 140px) 0; background: var(--navy); color: var(--white); }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 62px; }
.section-head p { max-width: 500px; color: rgba(255,255,255,.72); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.18); }
.stat { min-height: 250px; padding: 32px; border-right: 1px solid rgba(255,255,255,.18); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--copper); font-family: "Bebas Neue"; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 400; line-height: 1; }
.stat span { display: block; max-width: 180px; margin-top: 24px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.project { padding: clamp(80px, 10vw, 140px) 0; }
.project-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(50px, 8vw, 110px); }
.sticky-copy { position: sticky; top: 32px; display: grid; gap: 24px; }
.project-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.project-card { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); background: var(--white); transition: transform .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-card .num { color: var(--copper); font-family: "Bebas Neue"; font-size: 2.2rem; }
.project-card p { color: var(--gray); }

.process { padding: clamp(80px, 10vw, 140px) 0; background: var(--stone); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); }
.process-image { min-height: 680px; background: var(--navy); }
.process-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .82; }
.process-copy { display: grid; align-content: center; gap: 26px; }
.accordion { display: grid; margin-top: 20px; border-top: 1px solid var(--navy); }
.accordion-item { border-bottom: 1px solid var(--navy); }
.accordion-button { width: 100%; display: flex; justify-content: space-between; gap: 18px; padding: 22px 0; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 700; }
.accordion-button::after { color: var(--copper); content: "+"; font-size: 1.4rem; transition: transform .2s; }
.accordion-button[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-panel { display: none; padding: 0 35px 22px 0; color: var(--gray); }
.accordion-panel.open { display: block; }

.cta {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.cta::after { position: absolute; inset: 0; background: linear-gradient(rgba(15,27,42,.35), rgba(15,27,42,.86)); content: ""; }
.cta-inner { position: relative; z-index: 2; max-width: 920px; padding: 90px 20px; }
.cta p { max-width: 650px; margin: 26px auto 32px; color: rgba(255,255,255,.8); }

.testimonials { padding: clamp(80px, 10vw, 140px) 0; overflow: hidden; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.testimonial { min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.stars { color: var(--copper); letter-spacing: .16em; }
.testimonial footer { margin-top: 26px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rating-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px 60px; margin-top: 56px; padding: 27px; background: var(--navy); color: var(--white); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.estimate { padding: clamp(80px, 10vw, 140px) 0; background: var(--navy); color: var(--white); }
.estimate-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.estimate-copy { display: grid; align-content: start; gap: 24px; }
.estimate-copy p { color: rgba(255,255,255,.72); }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: clamp(28px, 5vw, 54px); background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid rgba(15,27,42,.25); border-radius: 0; background: #fff; color: var(--navy); }
.field textarea { min-height: 120px; resize: vertical; }
.checkbox { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: .75rem; color: var(--gray); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--copper); }
.honeypot { position: absolute; left: -9999px; }

.locations { padding: clamp(80px, 10vw, 140px) 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 50px 0 90px; }
.area-card { padding: 38px; background: var(--stone); }
.area-card h3 { margin-bottom: 18px; }
.articles-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.articles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.article { min-height: 315px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border-top: 4px solid var(--copper); background: var(--white); box-shadow: 0 12px 34px rgba(15,27,42,.07); }
.article time { color: var(--gray); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.article p { margin-top: 18px; color: var(--gray); font-size: .9rem; }
.article a { margin-top: 24px; color: var(--copper); font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.footer { padding: 76px 0 24px; background: #09131f; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { width: 260px; filter: brightness(0) invert(1); }
.footer p { margin-top: 22px; color: rgba(255,255,255,.64); }
.footer h3 { margin-bottom: 22px; color: var(--copper); font-size: 1.6rem; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.75); font-size: .88rem; }
.newsletter { display: flex; margin-top: 22px; }
.newsletter input { min-width: 0; flex: 1; padding: 12px; border: 1px solid rgba(255,255,255,.26); background: transparent; color: white; }
.newsletter button { width: 50px; border: 0; background: var(--copper); color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: .76rem; }

.inner-hero { min-height: 520px; display: grid; align-items: end; padding: 200px 0 90px; background: linear-gradient(110deg, rgba(15,27,42,.97), rgba(15,27,42,.76)), url('assets/representative-1.webp') center/cover; color: white; }
.inner-hero h1 { font-size: clamp(4rem, 8vw, 7.5rem); }
.inner-hero p { max-width: 700px; margin-top: 22px; color: rgba(255,255,255,.78); }
.inner-content { padding: clamp(80px, 10vw, 140px) 0; }
.inner-content .project-cards { margin-top: 50px; }
.back-link { display: inline-flex; margin-top: 28px; color: var(--copper); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 980px) {
  :root { --container: min(100% - 34px, 760px); }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: none; flex-direction: column; justify-content: center; background: var(--navy); font-size: 1.2rem; }
  .site-nav.open { z-index: 10; display: flex; }
  .menu-toggle { position: relative; z-index: 12; }
  .services, .intro-grid, .project-grid, .process-grid, .estimate-grid { grid-template-columns: 1fr; }
  .service-panel { min-height: 570px; }
  .intro-visual { min-height: 540px; }
  .intro-visual img { height: 490px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .sticky-copy { position: static; }
  .process-image { min-height: 500px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .articles { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 981px) {
  .hero-copy p { white-space: nowrap; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); }
  body { font-size: 15px; }
  .announcement { font-size: .64rem; }
  .site-header { top: 36px; }
  .brandmark { width: 190px; }
  .hero { min-height: 780px; }
  .hero-inner { padding-top: 170px; padding-bottom: 135px; }
  h1 { font-size: clamp(3.5rem, 15vw, 5.3rem); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust span { padding: 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .62rem; }
  .service-panel { min-height: auto; padding: 65px 24px; }
  .intro-visual { min-height: 430px; }
  .intro-visual img { height: 390px; }
  .intro-visual img:last-child { height: 190px; border-width: 7px; }
  .stat-grid, .project-cards, .testimonial-grid, .request-form, .area-grid, .articles, .footer-grid { grid-template-columns: 1fr; }
  .stat { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .stat:last-child { border-bottom: 0; }
  .field.full, .checkbox { grid-column: auto; }
  .process-image { min-height: 390px; }
  .cta { min-height: 520px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
