:root {
  --lime: #68e800;
  --lime-deep: #4cb400;
  --navy: #000848;
  --navy-2: #06103a;
  --ink: #141814;
  --muted: #4a5348;
  --paper: #f3efe4;
  --paper-2: #e7e1d2;
  --stone: #c8b89a;
  --black: #070707;
  --white: #f7f7f4;
  --max: 1120px;
  --header: 72px;
  --radius: 4px;
  --shadow: 0 18px 40px rgba(0, 8, 72, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
a:hover { color: var(--lime-deep); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--navy);
  padding: .5rem 1rem;
  z-index: 1000;
}
.skip:focus { left: .5rem; top: .5rem; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid #1a1a1a;
}
.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand:hover { color: inherit; }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid #333;
  padding: .45rem .7rem;
  font: 600 0.85rem/1 "Source Sans 3", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--lime); color: var(--lime); }

#site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
#site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: .03em;
}
#site-nav a:hover,
#site-nav a[aria-current="page"] { color: var(--lime); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--lime);
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .03em;
  padding: .7rem 1.05rem;
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: #7af00a; color: var(--navy) !important; }
.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime) !important; background: transparent; }
.btn-navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
}
.btn-navy:hover { background: #0a1460; color: var(--white) !important; }

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  background: #0a1208 center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,8,72,.35) 40%, rgba(0,0,0,.82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 3.2rem;
}
.eyebrow {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 0.78rem;
  color: var(--lime);
  margin: 0 0 .6rem;
}
h1, h2, h3, .display {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.05;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  margin: 0 0 .8rem;
  text-transform: uppercase;
}
h1 span { color: var(--lime); }
h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  text-transform: uppercase;
  margin: 0 0 .6rem;
}
h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 0 .35rem;
}
.lede {
  font-size: 1.12rem;
  max-width: 40rem;
  color: #ddd;
  margin: 0 0 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-note {
  margin: 1rem 0 0;
  font-size: .95rem;
  color: #c8c8c4;
}
.hero-note a { color: var(--lime); text-decoration: none; }
.hero-note a:hover { text-decoration: underline; }

.band {
  background: var(--navy);
  color: var(--white);
  padding: .9rem 0;
  border-top: 3px solid var(--lime);
}
.band .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  justify-content: space-between;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.band span { color: #d7d7d2; }
.band strong { color: var(--lime); font-weight: 700; }

.section { padding: 4.2rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head .lede { color: var(--muted); }

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.service {
  background: #fff;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid var(--paper-2);
  border-top: 3px solid var(--lime);
  box-shadow: var(--shadow);
}
.service p { margin: 0; color: var(--muted); font-size: .98rem; }
.service h3 { color: var(--navy); }

.about {
  background: var(--black);
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.about p { color: #d6d6d0; }
.about .lede { color: #ecece6; }
.about img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  background: #111;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }
.gallery-grid .tall img { height: 100%; min-height: 240px; }
.gallery-grid .span2 { grid-column: span 2; }
.gallery-grid .span2 img { height: 320px; }

.more-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .88rem;
  border-bottom: 2px solid var(--lime);
}
.more-link:hover { color: var(--lime-deep); }

.quote-block {
  background: var(--navy);
  color: var(--white);
}
blockquote {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  max-width: 40rem;
}
blockquote footer {
  margin-top: 1rem;
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  font-size: .95rem;
  color: var(--lime);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.cities span {
  background: #fff;
  border: 1px solid var(--paper-2);
  padding: .35rem .7rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.5rem;
}
.contact-card {
  background: #fff;
  padding: 1.5rem 1.4rem;
  border-top: 3px solid var(--lime);
  box-shadow: var(--shadow);
}
.contact-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.contact-card a:hover { color: var(--lime-deep); }
.contact-card p { margin: .4rem 0 1rem; color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.contact-list li { margin: 0 0 .85rem; }
.contact-list span {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

form {
  display: grid;
  gap: .7rem;
}
label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
}
input, textarea {
  width: 100%;
  font: inherit;
  padding: .7rem .75rem;
  border: 1px solid #c9c3b4;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}
input:focus, textarea:focus {
  outline: 2px solid var(--lime);
  border-color: var(--lime);
}
textarea { min-height: 8rem; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; }

.site-footer {
  background: #000;
  color: #bdbdb8;
  padding: 2.2rem 0 2.6rem;
  font-size: .92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.site-footer strong { color: var(--white); }
.site-footer .tiny {
  margin-top: 1.6rem;
  font-size: .78rem;
  color: #7a7a76;
}

.work-hero {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
}
.work-masonry {
  columns: 3;
  column-gap: .7rem;
  padding-bottom: 4rem;
}
.work-masonry figure {
  break-inside: avoid;
  margin: 0 0 .7rem;
  background: #111;
}
.work-masonry img { width: 100%; }
.work-masonry figcaption {
  padding: .55rem .7rem .7rem;
  font-size: .82rem;
  color: var(--muted);
  background: #fff;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  #site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: var(--header);
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.3rem;
    gap: .85rem;
    border-bottom: 1px solid #222;
  }
  .site-header.is-open #site-nav { display: flex; }
  .about-grid,
  .contact-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .span2 { grid-column: span 2; }
  .gallery-grid img,
  .gallery-grid .span2 img { height: 190px; }
  .work-masonry { columns: 2; }
  .band .wrap { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .span2 { grid-column: span 1; }
  .hero { min-height: 78vh; }
  .work-masonry { columns: 1; }
  #site-nav .btn { width: 100%; }
}
