:root {
  --black: #090b0a;
  --charcoal: #111411;
  --panel: #171b17;
  --panel-light: #20251f;
  --line: #30362f;
  --white: #f7f8f4;
  --muted: #b8beb5;
  --green: #a5e84b;
  --green-dark: #86c632;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 30;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--green);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 4vw;
  background: linear-gradient(to bottom, rgba(9, 11, 10, 0.98), rgba(9, 11, 10, 0.76), transparent);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(9, 11, 10, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(165, 232, 75, 0.18);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--green);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.6rem;
  transform: skew(-7deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.site-nav > a:not(.button) {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:hover {
  color: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: 92vh;
  padding: 122px 4vw 64px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw 4vw 6vw max(0px, calc((100vw - var(--max)) / 2));
  container-type: inline-size;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 0.96;
}

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-size: clamp(4rem, 21cqw, 8.5rem);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 6vw, 6.25rem);
}

h1 span,
h2 span {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--green);
}

.hero h1 span {
  display: block;
  max-width: 100%;
  font-size: clamp(2.8rem, 14.2cqw, 6.25rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.hero-lede {
  max-width: 620px;
  margin: 0 0 2.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--green);
  color: var(--black);
  background: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.button-outline {
  color: var(--white);
  background: transparent;
}

.button-outline:hover {
  color: var(--black);
}

.text-link {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 0.35rem;
  color: var(--green);
}

.image-slot {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(165, 232, 75, 0.08), transparent 34%),
    repeating-linear-gradient(-45deg, transparent 0 28px, rgba(255, 255, 255, 0.025) 28px 29px),
    var(--panel);
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 4;
  border: 1px solid rgba(165, 232, 75, 0.17);
  pointer-events: none;
}

.hero-visual {
  min-height: 650px;
  border: 0;
  background: var(--black);
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(9, 11, 10, 0.04), rgba(9, 11, 10, 0.28));
  pointer-events: none;
}

.hero-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-counter {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 0.85rem;
  border: 1px solid rgba(165, 232, 75, 0.7);
  color: var(--white);
  background: rgba(9, 11, 10, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-slide-counter [data-slide-current] {
  color: var(--green);
}

.hero-slide-controls {
  position: absolute;
  left: 7rem;
  bottom: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.45rem;
}

.hero-slide-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(9, 11, 10, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.hero-slide-controls button:hover,
.hero-slide-controls button:focus-visible {
  border-color: var(--green);
  color: var(--black);
  background: var(--green);
  outline: none;
}

.slot-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 70%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.slot-copy .slot-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 800;
}

.slot-copy p {
  margin: 1rem 0 0;
  color: #dadeD8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 176px;
  padding: 1.4rem;
  color: var(--black);
  background: var(--green);
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.45rem;
}

.hero-badge span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 54px;
  padding: 0 1rem;
  text-align: center;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip span,
.trust-strip a {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  text-decoration: none;
}

.trust-strip a {
  transition: color 150ms ease;
}

.trust-strip a:hover,
.trust-strip a:focus-visible {
  color: var(--green);
  outline: none;
}

.trust-strip .trust-email a {
  font-size: clamp(0.62rem, 0.75vw, 0.76rem);
  overflow-wrap: anywhere;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--charcoal);
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-card.featured {
  background: var(--panel-light);
}

.service-number {
  position: absolute;
  right: 1.4rem;
  top: 1.1rem;
  color: #687066;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 2.4rem;
}

.service-icon {
  color: var(--green);
  font-size: 3rem;
  line-height: 1;
}

.service-card h3 {
  max-width: 250px;
  margin: 2.2rem 0 1.2rem;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  position: absolute;
  bottom: 2.4rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--green);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 2rem 0 2.4rem;
  list-style: none;
}

.check-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.check-list li span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 0.8rem;
  color: var(--black);
  background: var(--green);
}

.work {
  max-width: none;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 310px);
  gap: 1rem;
}

.project-card {
  min-height: 0;
}

.project-large {
  grid-row: 1 / span 2;
}

.project-label {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(9, 11, 10, 0.88);
}

.project-label strong {
  text-transform: uppercase;
}

.project-label span {
  color: var(--muted);
  font-size: 0.72rem;
}

.photo-note {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: #899087;
  font-size: 0.75rem;
}

.instagram-feed {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}

.instagram-feed behold-widget {
  display: block;
  width: 100%;
  min-height: 420px;
}

.instagram-feed noscript p {
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--black);
}

.instagram-feed noscript a {
  color: var(--green);
}

.estimate-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.form-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-note {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  padding: 1.35rem;
  border-left: 3px solid var(--green);
  background: var(--charcoal);
}

.contact-note span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-note strong {
  margin-top: 0.35rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 0.5rem;
}

.contact-form label > span:first-child {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #41483f;
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: #0d100d;
  caret-color: var(--green);
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 130px;
  padding: 0.9rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #858c82;
  opacity: 1;
}

.contact-form select,
.contact-form option {
  color: var(--white);
  background: #0d100d;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(165, 232, 75, 0.16);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px #0d100d inset;
  transition: background-color 9999s ease-out;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
  cursor: pointer;
}

.consent input {
  width: 19px;
  min-height: 19px;
  margin: 0.15rem 0 0;
  accent-color: var(--green);
}

.consent span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.submit-button {
  width: 100%;
  margin-top: 0.4rem;
}

.submit-button span {
  margin-left: 0.5rem;
  color: var(--black);
}

.form-footnote {
  margin: -0.5rem 0 0;
  color: #858c82;
  font-size: 0.7rem;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.careers {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 7rem);
  max-width: none;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2));
  background: var(--panel-light);
}

.careers-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.compact-form {
  background: var(--black);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 0;
}

.footer-brand .brand-logo {
  width: 104px;
  height: 104px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--green);
}

.site-footer > p {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  margin: 0;
  border-top: 1px solid var(--line);
  color: #858c82;
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .site-header .brand-logo {
    width: 52px;
    height: 52px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem 4vw 1.5rem;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 11, 10, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 4vw 0;
  }

  .hero-text {
    padding: 8vw 0 10vw;
  }

  .hero-visual {
    min-height: 520px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-strip div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section,
  .trust-strip,
  .site-footer {
    width: auto;
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .work,
  .careers {
    margin-left: 0;
    margin-right: 0;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .service-card {
    padding: 2rem;
  }

  .about,
  .estimate-section,
  .careers {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 500px;
  }

  .form-intro,
  .careers-copy {
    max-width: 650px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(3.1rem, 21cqw, 5.4rem);
  }

  .hero h1 span {
    font-size: clamp(2.7rem, 14.2cqw, 4rem);
  }

  h2 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-slide-counter {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .hero-slide-controls {
    left: 6.5rem;
    bottom: 1.5rem;
  }

  .hero-badge {
    right: 1rem;
    bottom: 5.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .trust-strip div {
    justify-content: center;
    min-height: 82px;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .service-grid,
  .project-grid,
  .field-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .service-card + .service-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-grid {
    grid-template-rows: repeat(3, 390px);
  }

  .project-large {
    grid-row: auto;
  }

  .project-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .about-visual {
    min-height: 410px;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

@media (max-width: 430px) {
  .site-header .brand-logo {
    width: 48px;
    height: 48px;
  }

  .footer-brand .brand-logo {
    width: 88px;
    height: 88px;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section,
  .trust-strip,
  .site-footer {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .work,
  .careers {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
