:root {
  --green: #84c341;
  --green-dark: #5f9228;
  --green-ink: #3d5c16;
  --ink: #161512;
  --muted: #5a564c;
  --line: #d8d3c8;
  --paper: #f4f1ea;
  --wash: #ece7dc;
  --charcoal: #1c1b18;
  --charcoal-2: #26251f;
  --header: 72px;
  --max: 1120px;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 72px,
    rgba(80, 62, 28, 0.035) 73px
  );
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

address {
  font-style: normal;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.8rem;
}

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

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

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 4.75rem 0;
}

.section h2,
.section-intro h2,
.work-intro h2,
.gallery-head h2,
.process-head h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.btn-primary {
  background: var(--green);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-primary:disabled {
  opacity: 0.7;
}

.text-link {
  color: inherit;
  font-weight: 600;
  text-underline-offset: 0.22em;
}

.text-link:hover {
  color: var(--green-ink);
}

.hero .text-link,
.contact .text-link {
  color: #fff;
}

.hero .text-link:hover,
.contact .text-link:hover {
  color: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 54px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--green-ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.hero {
  position: relative;
  min-height: calc(88vh - var(--header));
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
  filter: saturate(0.88) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 21, 18, 0.82) 0%, rgba(22, 21, 18, 0.38) 52%, rgba(22, 21, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(22, 21, 18, 0.08), rgba(22, 21, 18, 0.55));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(38rem, calc(100% - 2.25rem));
  margin: 0 0 4.25rem;
  margin-left: max(1.125rem, calc((100% - var(--max)) / 2));
}

.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 3.85rem);
  max-width: 16ch;
  font-weight: 600;
}

.hero .lead {
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin: 1.5rem 0 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-meta li {
  padding-right: 1.1rem;
  margin-right: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-meta li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.trust {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 0.95rem 0;
  border-top: 1px solid #2a2924;
}

.trust-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 1rem 1.75rem;
  font-size: 0.9rem;
}

.trust-row p {
  margin: 0;
}

.trust-row p + p {
  border-left: 1px solid #3a3830;
  padding-left: 1.75rem;
}

.trust strong {
  color: var(--green);
  font-weight: 600;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) 1.15fr;
  gap: 3.5rem 4rem;
  align-items: start;
}

.section-intro > p:not(.eyebrow),
.work-intro > p:not(.eyebrow),
.gallery-lede,
.about-copy > p:not(.eyebrow),
.step p {
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.service h3 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

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

.service.is-featured {
  padding-top: 1.4rem;
  padding-bottom: 1.55rem;
}

.service.is-featured h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
}

.service.is-featured p {
  max-width: 38rem;
  font-size: 1.02rem;
}

.work {
  padding-top: 0;
}

.work-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-bottom: 1.75rem;
  align-items: end;
}

.work-intro h2,
.work-intro .eyebrow {
  grid-column: 1;
}

.work-intro > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-bottom: 0.2rem;
}

.work-photo {
  margin: 0 0 2rem;
  overflow: hidden;
}

.work-photo img {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  object-position: 50% 60%;
  filter: saturate(0.85) contrast(1.04);
}

.work-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}

.work-cols h3 {
  font-size: 1.7rem;
  max-width: 14ch;
}

.work-cols ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.work-cols li + li {
  margin-top: 0.35rem;
}

.clients {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem 3rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.gallery-lede {
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 10.75rem;
  gap: 0.65rem;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.gallery-lead {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(6),
.gallery-grid figure:nth-child(9) {
  grid-column: span 2;
}

.gallery-lead img {
  object-position: 50% 60%;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.75rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(22, 21, 18, 0.78));
  font-size: 0.86rem;
  font-weight: 500;
}

.gallery-note {
  margin: 1.1rem 0 0;
}

.about {
  background: var(--charcoal);
  color: #eceae3;
}

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

.about-copy > p:not(.eyebrow) {
  color: rgba(236, 234, 227, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem 3.5rem;
  align-items: start;
}

.about-portraits {
  display: grid;
  gap: 0.65rem;
}

.about-photo {
  margin: 0;
}

.about-photo--family img {
  width: 100%;
  height: min(42vh, 340px);
  object-fit: cover;
  object-position: 50% 28%;
}

.about-thumbs {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.65rem;
}

.about-thumbs figure {
  margin: 0;
}

.about-thumbs img {
  width: 100%;
  height: 11.25rem;
  object-fit: cover;
}

.about-thumbs figure:last-child img {
  object-position: 50% 70%;
}

.about-thumbs figcaption {
  margin-top: 0.4rem;
  color: rgba(236, 234, 227, 0.62);
  font-size: 0.78rem;
}

.about-awards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.75rem;
}

.award-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.9rem;
  align-items: center;
}

.award-badges img {
  width: 118px;
  height: auto;
  background: #fff;
  padding: 4px;
}

.about-badge {
  display: block;
  width: 118px;
  padding: 8px;
  background: #0e0d0b;
  border: 1px solid rgba(132, 195, 65, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-badge img {
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
}

.facts {
  margin: 0;
  padding: 0;
  border-top: 1px solid #3a3830;
}

.facts > div {
  display: grid;
  grid-template-columns: 6.75rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #3a3830;
}

.facts dt {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.02em;
}

.facts dd {
  margin: 0;
  color: rgba(236, 234, 227, 0.78);
  align-self: center;
}

.process-head {
  max-width: 28rem;
  margin-bottom: 2rem;
}

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

.step {
  padding: 1.5rem 1.75rem 0 0;
}

.step + .step {
  padding-left: 1.75rem;
  border-left: 1px solid var(--line);
}

.step span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--green-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step h3 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.contact {
  background: var(--charcoal);
  color: #eceae3;
}

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

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow),
.hours-note {
  color: rgba(236, 234, 227, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem 4rem;
  align-items: start;
}

.contact-copy address {
  margin: 1.4rem 0 1rem;
}

.contact-copy a {
  color: var(--green);
  text-decoration: none;
}

.contact-copy a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 1.4rem;
}

.contact-copy .socials a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

form {
  padding-top: 0.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(236, 234, 227, 0.62);
  line-height: 1.4;
}

label[hidden] {
  display: none;
}

label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 0;
  border-bottom: 1px solid #4a473c;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0.7rem 0;
  font: inherit;
  transition: border-color var(--ease);
}

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

input[type="date"] {
  color-scheme: dark;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #eceae3 50%),
    linear-gradient(135deg, #eceae3 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% + 3px), calc(100% - 7px) calc(50% + 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #4a473c;
}

.form-status.is-success {
  color: #d7f0b3;
  border-bottom-color: var(--green);
}

.form-status.is-error {
  color: #f0c4c4;
  border-bottom-color: #c45c5c;
}

.form-status a {
  color: var(--green);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-bottom-color: #c45c5c;
}

.site-footer {
  background: #12110e;
  color: #9a968c;
  padding: 1.5rem 0 calc(1.5rem + 64px);
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem 2rem;
  align-items: end;
}

.footer-nap {
  margin: 0;
  line-height: 1.55;
}

.footer-nap a,
.footer-meta a {
  color: inherit;
}

.footer-meta p {
  margin: 0 0 0.35rem;
}

.footer-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-bottom: 0.75rem;
}

.footer-profiles a {
  color: #eceae3;
  text-decoration: none;
  font-weight: 500;
}

.footer-profiles a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.call-bar {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.125rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

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

  .services-layout,
  .work-intro,
  .work-cols,
  .gallery-head,
  .about-grid,
  .about-awards,
  .steps,
  .contact-grid,
  .form-row,
  .trust-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 46px;
  }

  .trust-row p + p {
    border-left: 0;
    padding-left: 0;
    padding-top: 0.7rem;
    border-top: 1px solid #3a3830;
  }

  .work-intro .eyebrow,
  .work-intro h2,
  .work-intro p {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 14rem;
  }

  .gallery-lead {
    grid-column: span 2;
    grid-row: span 2;
  }

  .step + .step {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.4rem;
  }

  .hero {
    min-height: 82vh;
  }

  .call-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    min-height: 52px;
    background: var(--green);
    color: var(--ink);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    padding: 0.9rem;
  }
}

@media (max-width: 560px) {
  .gallery-grid,
  .gallery-lead {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 16rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta li {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
