:root {
  --ink: #0c0e0c; /* near-black warm charcoal */
  --ink-2: #121512; /* raised surface */
  --ink-3: #171b16; /* cards */
  --line: #2a2f29; /* hairline */
  --green: #8cbe3d; /* brand olive-lime (from logo) */
  --green-hi: #abe053; /* hover */
  --green-deep: #5d7e29;
  --steel: #c4cac6; /* silver from logo */
  --txt: #eef1ea;
  --muted: #9aa298;
  --maxw: 1180px;
  --r: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--txt);
  font-family: Barlow, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--green);
  color: #0c0e0c;
}

/* ---- shared ---- */
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.9rem;
}

.eyebrow--light {
  color: var(--green-hi);
}

.rule {
  display: inline-block;
  width: 34px;
  height: 0;
  border-top: 2px solid var(--green);
  position: relative;
  margin-right: 0.7rem;
  vertical-align: middle;
}

.rule::before,
.rule::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 2px;
  height: 8px;
  background: var(--green);
}

.rule::before {
  left: 0;
}

.rule::after {
  right: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.btn:focus-visible {
  outline: 3px solid var(--green-hi);
  outline-offset: 3px;
}

.btn--green {
  background: var(--green);
  color: #0c0e0c;
}

.btn--green:hover {
  background: var(--green-hi);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: #fff5;
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  background: #ffffff12;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
}

.btn--phone {
  background: transparent;
  border-color: var(--line);
  color: var(--txt);
  font-size: 1rem;
}

.btn--phone:hover {
  border-color: var(--green);
  color: var(--green-hi);
}

.btn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #8cbe3d88;
  }

  70% {
    box-shadow: 0 0 0 7px #8cbe3d00;
  }

  100% {
    box-shadow: 0 0 0 0 #8cbe3d00;
  }
}

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem clamp(1rem, 4vw, 2.2rem);
  background: rgb(12 14 12 / 82%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__brand img {
  height: 42px;
  width: auto;
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 1.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__links a {
  color: var(--muted);
  padding: 0.3rem 0;
  position: relative;
}

.nav__links a:hover {
  color: var(--txt);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav__menu span {
  width: 24px;
  height: 2px;
  background: var(--txt);
  transition: 0.3s;
}

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowzoom 18s ease-out forwards;
}

@keyframes slowzoom {
  to {
    transform: scale(1);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgb(12 14 12 / 55%) 0%,
      rgb(12 14 12 / 25%) 38%,
      rgb(12 14 12 / 92%) 100%
    ),
    linear-gradient(90deg, rgb(12 14 12 / 80%), rgb(12 14 12 / 15%) 60%);
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.2rem) clamp(2.5rem, 6vw, 4.5rem);
}

.hero__title {
  font-size: clamp(3.4rem, 9vw, 7rem);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgb(0 0 0 / 50%);
}

.hero__sub {
  max-width: 46ch;
  font-size: 1.18rem;
  color: #e6ece2;
  margin: 1.2rem 0 1.8rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__stamp {
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: #cdd4c8;
  margin-top: 2rem;
  text-transform: uppercase;
}

/* ---- trust strip ---- */
.strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 1.5rem clamp(1rem, 4vw, 2.2rem);
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.strip__item {
  text-align: center;
  line-height: 1.2;
}

.strip__item b {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--txt);
}

.strip__item span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.measure {
  flex: 0 0 90px;
  height: 14px;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 12px);
  position: relative;
}

.measure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--green-deep);
}

/* ---- sections ---- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2.2rem);
}

.section--dark {
  max-width: none;
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}

.section--dark > * {
  max-width: var(--maxw);
  margin-inline: auto;
}

.section__head {
  max-width: 62ch;
  margin-bottom: 2.8rem;
}

.section__title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.section__lead {
  color: var(--muted);
  font-size: 1.12rem;
  margin-top: 1rem;
}

/* ---- services ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.svc {
  background: var(--ink-3);
  padding: 1.8rem 1.5rem 2rem;
  position: relative;
  transition: background 0.25s;
}

.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.3s;
}

.svc:hover {
  background: #1c211a;
}

.svc:hover::before {
  height: 100%;
}

.svc__ico {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--green);
  margin-bottom: 1.1rem;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: #ffffff08;
}

.svc__ico svg {
  width: 26px;
  height: 26px;
}

.svc__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.svc__desc {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- gallery ---- */
.gallery {
  columns: 3;
  column-gap: 14px;
}

.shot {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  break-inside: avoid;
  line-height: 0;
}

.shot img {
  width: 100%;
  height: auto;
  transition:
    transform 0.5s ease,
    filter 0.3s;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px #ffffff14;
  border-radius: 10px;
  pointer-events: none;
}

.shot__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.8rem;
  background: linear-gradient(transparent, rgb(8 10 8 / 90%));
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s;
  text-align: left;
  line-height: 1.3;
}

.shot__tag {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-hi);
  margin-bottom: 0.2rem;
}

.shot__cap {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: 1.05rem;
}

.shot:hover img {
  transform: scale(1.05);
}

.shot:hover .shot__meta {
  opacity: 1;
  transform: none;
}

.shot:focus-visible {
  outline: 3px solid var(--green-hi);
  outline-offset: 2px;
}

/* ---- before / after ---- */
.ba {
  display: grid;
  gap: 14px;
}

.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.ba__cell {
  position: relative;
}

.shot--ba {
  height: 100%;
  margin: 0;
}

.shot--ba img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.ba__label {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  color: #fff;
  pointer-events: none;
}

.ba__label--before {
  background: rgb(8 10 8 / 78%);
  border: 1px solid var(--line);
}

.ba__label--after {
  background: var(--green-deep);
}

@media (width <= 640px) {
  .ba__pair {
    grid-template-columns: 1fr;
  }
}

/* ---- about ---- */
.about {
  max-width: 760px;
}

.about__copy p {
  color: var(--muted);
  margin: 1rem 0;
}

.about__copy .section__title {
  margin-bottom: 0.4rem;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
}

.about__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--txt);
  font-size: 0.98rem;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* ---- process ---- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: s;
}

.steps li {
  position: relative;
  padding-top: 1.2rem;
  border-top: 2px solid var(--line);
}

.steps li:hover {
  border-color: var(--green);
}

.steps__n {
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.steps h3 {
  font-size: 1.45rem;
  margin: 0.5rem 0 0.4rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---- contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact__list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.contact__list span {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__list a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--txt);
}

.contact__list a:hover {
  color: var(--green-hi);
}

.form {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.8rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--txt);
  font-family: Barlow, sans-serif;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.field textarea {
  resize: vertical;
}

.form__note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 0.9rem 0 0;
}

/* ---- footer ---- */
.foot {
  border-top: 1px solid var(--line);
  padding: 3rem clamp(1rem, 4vw, 2.2rem);
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
  background: var(--ink-2);
}

.foot__brand img {
  height: 64px;
}

.foot__nav {
  display: flex;
  gap: 1.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.foot__nav a {
  color: var(--muted);
}

.foot__nav a:hover {
  color: var(--green-hi);
}

.foot__legal {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- lightbox ---- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(7 9 7 / 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw;
}

.lb[hidden] {
  display: none;
}

.lb__fig {
  margin: 0;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.lb__fig img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgb(0 0 0 / 60%);
}

.lb__fig figcaption {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #dfe5d8;
  font-size: 1.05rem;
}

.lb__x {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff14;
  border: 1px solid #ffffff2a;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lb__nav:hover {
  background: var(--green);
  color: #0c0e0c;
  border-color: var(--green);
}

.lb__prev {
  left: 3vw;
}

.lb__next {
  right: 3vw;
}

.lb__x:focus-visible,
.lb__nav:focus-visible {
  outline: 3px solid var(--green-hi);
  outline-offset: 3px;
}

/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* ---- responsive ---- */
@media (width <= 980px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    columns: 2;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 680px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem clamp(1rem, 4vw, 2.2rem) 1rem;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__menu {
    display: flex;
    margin-left: auto;
  }

  .btn--phone {
    display: none;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    columns: 1;
  }

  .field--split {
    grid-template-columns: 1fr;
  }

  .about__list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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