:root {
  --black: #020402;
  --panel: #080a08;
  --green: #6bd23d;
  --green-dark: #3f941f;
  --white: #f5f5f2;
  --muted: #b8beb2;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a { color: var(--white); opacity: 0.9; }
.desktop-nav a:hover { color: var(--green); }

.nav-cta {
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 14px 22px;
  color: var(--green) !important;
}

.hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 54px 0 120px;
}

.hero-copy { max-width: 620px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(64px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 850;
}

h1 span, .quote-intro h2 span { color: var(--green); }
.hero-text {
  max-width: 430px;
  margin-bottom: 38px;
  color: #d8ddd2;
  font-size: clamp(18px, 2vw, 23px);
}

.primary-btn, .quote-form button, .mobile-sticky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  padding: 0 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #061006;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.work {
  padding: 60px 0 130px;
}

.section-heading {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.photo-frame {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.simple-services {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-services div {
  text-align: center;
  padding: 0 38px;
}
.simple-services div + div { border-left: 1px solid var(--line); }
.simple-services h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
}
.simple-services h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--green);
}
.simple-services p {
  color: var(--muted);
  font-size: 17px;
}

.quote {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 125px 0 110px;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 90px;
  align-items: start;
}

.quote-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.quote-intro p {
  max-width: 380px;
  color: var(--muted);
  font-size: 19px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote-form label { display: block; }
.quote-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quote-form .full { grid-column: 1 / -1; }

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  color: var(--white);
  padding: 17px 18px;
  font: inherit;
  outline: none;
}
textarea { resize: vertical; min-height: 150px; }
input:focus, textarea:focus { border-color: rgba(107,210,61,0.8); }

.upload {
  border: 1px dashed rgba(255,255,255,0.24);
  border-radius: 6px;
  padding: 18px;
}
.upload input { padding: 0; border: 0; background: transparent; }

.quote-form button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 6px;
  font-size: 15px;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.site-footer img { width: 150px; }
.site-footer p { margin: 0; }

.mobile-sticky { display: none; }

@media (max-width: 850px) {
  .site-header { width: min(100% - 32px, var(--max)); padding: 22px 0; }
  .brand img { width: 145px; }
  .desktop-nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 11px 14px; font-size: 11px; }

  .hero {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    padding: 82px 0 100px;
  }
  h1 { font-size: clamp(58px, 16vw, 92px); }
  .hero-text { font-size: 18px; }

  .work { padding: 30px 0 90px; }
  .section-heading, .photo-frame, .simple-services, .quote, .site-footer { width: min(100% - 32px, var(--max)); }
  .photo-frame { border-radius: 16px; }
  .photo-frame img { aspect-ratio: 1 / 1; }

  .simple-services {
    grid-template-columns: 1fr;
    padding: 56px 0 86px;
    gap: 42px;
  }
  .simple-services div { padding: 0; }
  .simple-services div + div { border-left: 0; }
  .simple-services p { margin-bottom: 0; }

  .quote {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 86px 0 96px;
  }
  .quote-form { grid-template-columns: 1fr; }

  .site-footer {
    display: grid;
    gap: 18px;
    padding-bottom: 92px;
  }

  .mobile-sticky {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 20;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  }
}
