@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #181b19;
  --ink-soft: #292d2a;
  --paper: #f4f1e9;
  --white: #fffefa;
  --orange: #f47a22;
  --orange-dark: #d85e09;
  --green: #426546;
  --line: rgba(24, 27, 25, .18);
  --shadow: 0 24px 60px rgba(15, 18, 16, .18);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  background: var(--orange);
  color: var(--ink);
  padding: .7rem 1rem;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 27, 25, .96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1440px, calc(100% - 48px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { width: 190px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 2.25rem; }
.site-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--orange); }
.site-nav .nav-cta {
  padding: .75rem 1.15rem;
  border: 1px solid var(--orange);
  color: var(--orange);
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { background: var(--orange); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero-copy {
  align-self: center;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 7vw, 8rem);
  padding-right: clamp(2rem, 5vw, 5rem);
}
.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--orange);
  font-size: .78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--orange-dark); }
.hero h1, .section h2, .quote-section h2, .reviews h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(5rem, 10vw, 10.5rem); }
.hero h1 em { color: var(--orange); font-style: italic; }
.hero-intro { max-width: 660px; margin: 2rem 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.35vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.25rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid transparent;
  padding: .9rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: #ff9247; }
.button-secondary { border-color: rgba(255,255,255,.28); color: var(--white); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--white); }
.trust-list {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.75rem);
  margin: clamp(3rem, 7vh, 5rem) 0 0;
  padding: 0;
  list-style: none;
}
.trust-list li { display: grid; gap: .1rem; }
.trust-list strong { font-family: var(--display); font-size: 1.85rem; line-height: 1; text-transform: uppercase; }
.trust-list span { color: rgba(255,255,255,.55); font-size: .76rem; }

.hero-visual { position: relative; min-height: 680px; background: var(--orange); }
.hero-photo-wrap { position: absolute; inset: 0 0 72px 0; overflow: hidden; }
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.03);
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24,27,25,.68) 100%);
  pointer-events: none;
}
.photo-badge {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  min-width: 185px;
  padding: 1.05rem 1.35rem;
  background: var(--white);
  color: var(--ink);
}
.photo-badge span, .photo-badge strong { display: block; }
.photo-badge span { font-size: .68rem; color: #666; text-transform: uppercase; letter-spacing: .14em; }
.photo-badge strong { font-family: var(--display); font-size: 1.45rem; text-transform: uppercase; }
.hero-stamp {
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0 1rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-stamp b { font-size: .75rem; }

.service-strip { overflow: hidden; background: var(--green); color: var(--white); }
.service-strip-track {
  min-width: max-content;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-strip-track i { color: var(--orange); font-style: normal; font-size: .7rem; }

.section { padding: clamp(5rem, 9vw, 9rem) max(24px, calc((100vw - 1320px) / 2)); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.section-heading h2, .reviews h2, .quote-section h2 { font-size: clamp(3.5rem, 7vw, 7.2rem); }
.section-heading > p { margin: 0 0 .7rem; max-width: 480px; color: #5c625e; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, color .25s ease;
}
.service-card:hover { background: var(--white); }
.service-card-featured { background: var(--orange); }
.service-card-featured:hover { background: #ff8e3c; }
.service-number { font-family: var(--display); font-weight: 700; color: var(--orange-dark); }
.service-card-featured .service-number { color: var(--ink); }
.service-card h3 { margin: 0 0 .7rem; font-family: var(--display); font-size: 2rem; line-height: 1; text-transform: uppercase; }
.service-card p { margin: 0; color: #626762; font-size: .95rem; }
.service-card-featured p { color: rgba(24,27,25,.72); }
.service-card > a { width: fit-content; display: flex; gap: 1rem; font-size: .82rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.work-section { background: var(--ink); color: var(--white); }
.section-heading-light { border-color: rgba(255,255,255,.15); }
.section-heading-light > p { color: rgba(255,255,255,.6); }
.work-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr .92fr;
  grid-template-rows: minmax(330px, 40vw) minmax(330px, 36vw);
  gap: 1rem;
  padding-top: 1rem;
}
.work-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #303531;
  color: var(--white);
  cursor: zoom-in;
}
.work-item-tall { grid-row: span 2; }
.work-item-wide { grid-column: span 2; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.work-item:hover img, .work-item:focus-visible img { transform: scale(1.025); filter: brightness(.82); }
.work-item > span {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.35rem;
  background: rgba(24,27,25,.84);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
}
.work-item > span b { color: var(--orange); }

.about { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 760px; padding-top: 0; padding-bottom: 0; }
.about-mark {
  position: relative;
  min-height: 720px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--orange);
  overflow: hidden;
}
.about-mark::before {
  content: "MZ";
  position: absolute;
  right: -2rem;
  bottom: -4.5rem;
  font-family: var(--display);
  font-size: 23rem;
  line-height: .75;
  color: rgba(24,27,25,.08);
  font-weight: 800;
}
.about-mark > span { position: relative; font-family: var(--display); font-size: clamp(11rem, 23vw, 23rem); font-weight: 800; line-height: .72; letter-spacing: -.06em; }
.about-mark p { position: relative; margin: 2rem 0 0; font-family: var(--display); font-size: 1.25rem; line-height: 1.15; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-copy { align-self: center; padding: clamp(4rem, 8vw, 8rem); padding-right: 0; }
.about-copy h2 { font-size: clamp(3.5rem, 6.5vw, 6.9rem); }
.about-copy > p { max-width: 720px; color: #5d625e; }
.about-copy .about-lead { margin-top: 2rem; color: var(--ink); font-size: clamp(1.1rem, 1.7vw, 1.35rem); font-weight: 500; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin-top: 3rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values div { display: grid; gap: 1rem; padding: 1.25rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values strong { color: var(--orange-dark); font-family: var(--display); }
.values span { font-weight: 700; }

.reviews { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); background: var(--white); }
.reviews-heading { align-self: start; position: sticky; top: 130px; }
.reviews-heading .rating { margin-top: 2rem; font-size: .9rem; font-weight: 700; }
.rating span { color: var(--orange); letter-spacing: .1em; margin-right: .6rem; }
.review-list { border-top: 1px solid var(--line); }
.review { margin: 0; padding: 2.25rem 0; border-bottom: 1px solid var(--line); }
.review blockquote { margin: 0 0 2rem; font-family: var(--display); font-size: clamp(1.65rem, 2.7vw, 2.75rem); line-height: 1.08; font-weight: 600; text-transform: uppercase; }
.review-featured blockquote { font-size: clamp(2rem, 3.3vw, 3.4rem); }
.review figcaption { display: flex; flex-direction: column; }
.review figcaption span { color: #777; font-size: .8rem; }

.quote-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) max(24px, calc((100vw - 1320px) / 2));
  background: var(--green);
  color: var(--white);
}
.quote-intro > p { max-width: 500px; color: rgba(255,255,255,.72); }
.direct-contact { display: grid; gap: .8rem; margin-top: 3rem; }
.direct-contact a { width: fit-content; display: grid; text-decoration: none; }
.direct-contact small { color: var(--orange); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.direct-contact strong { font-size: 1.1rem; }
.quote-form { padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); color: var(--ink); }
.quote-form fieldset { margin: 0 0 2rem; padding: 0; border: 0; }
.quote-form legend, .quote-form label > span { display: block; margin-bottom: .65rem; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.service-options label { cursor: pointer; }
.service-options input { position: absolute; opacity: 0; pointer-events: none; }
.service-options span { min-height: 46px; display: flex; align-items: center; justify-content: center; margin: 0 !important; padding: .65rem; border: 1px solid var(--line); color: #565c57; font-size: .72rem !important; text-align: center; transition: .2s ease; }
.service-options input:checked + span { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.service-options input:focus-visible + span { outline: 3px solid rgba(244,122,34,.3); outline-offset: 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.quote-form > label { display: block; margin-top: 1.25rem; }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: .75rem 0;
  outline: none;
}
.quote-form textarea { border: 1px solid #aaa; padding: .9rem; resize: vertical; }
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--orange-dark); box-shadow: 0 2px 0 var(--orange-dark); }
.quote-form [aria-invalid="true"] { border-color: #b42318; }
.quote-form small { font-weight: 400; color: #777; text-transform: none; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2rem; }
.form-footer p { max-width: 250px; margin: 0; color: #777; font-size: .75rem; }
.form-footer .button { border: 0; }
.form-footer .button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; color: #9b2c22; font-size: .85rem; font-weight: 600; }
.form-status.is-success { color: #17633a; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 4rem max(24px, calc((100vw - 1320px) / 2)) 1.5rem; background: var(--ink); color: var(--white); }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; padding-bottom: 3rem; }
.footer-top img {
  width: min(310px, 50vw);
  height: auto;
  aspect-ratio: 1000 / 281;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-top p { max-width: 390px; margin: 0; color: rgba(255,255,255,.55); text-align: right; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.footer-grid > div { display: grid; gap: .25rem; padding: 1.35rem; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-grid span { color: var(--orange); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid strong, .footer-grid a { font-size: .9rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; color: rgba(255,255,255,.42); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-underline-offset: 3px; }

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 4rem 1rem 1rem;
  background: rgba(11,13,12,.94);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: calc(100svh - 6rem); width: auto; box-shadow: var(--shadow); }
.lightbox button { position: absolute; top: 1rem; right: 1rem; border: 1px solid rgba(255,255,255,.3); background: transparent; color: white; padding: .65rem 1rem; cursor: pointer; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .82fr; }
  .hero-copy { padding-left: 3rem; }
  .hero h1 { font-size: clamp(5.2rem, 11vw, 8rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: .7fr 1.3fr; }
  .about-mark { padding: 2.5rem; }
  .about-copy { padding-left: 4rem; }
  .reviews, .quote-section { grid-template-columns: 1fr; }
  .reviews-heading { position: static; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .header-inner { min-height: 72px; width: calc(100% - 32px); }
  .brand { width: 150px; }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 0;
    background: transparent;
    color: white;
    padding: .5rem 0;
    cursor: pointer;
  }
  .menu-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
  .menu-lines { width: 24px; display: grid; gap: 6px; }
  .menu-lines i { height: 2px; background: var(--orange); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav .nav-cta { margin-top: 1rem; padding: .9rem; text-align: center; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 5.5rem 1.5rem 4rem; }
  .hero h1 { font-size: clamp(4.7rem, 25vw, 7rem); }
  .trust-list { justify-content: space-between; gap: .7rem; }
  .trust-list strong { font-size: 1.45rem; }
  .trust-list span { font-size: .67rem; }
  .hero-visual { min-height: 600px; }
  .service-strip-track { justify-content: flex-start; font-size: 1rem; }
  .section { padding: 5rem 1.5rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading h2, .reviews h2, .quote-section h2 { font-size: clamp(3.6rem, 18vw, 5.4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; padding: 1.5rem; }
  .work-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 340px); }
  .work-item-tall { grid-row: span 2; }
  .work-item-wide { grid-column: 1 / -1; }

  .about { display: block; min-height: 0; padding: 0; }
  .about-mark { min-height: 520px; padding: 2rem; }
  .about-mark > span { font-size: 15rem; }
  .about-copy { padding: 5rem 1.5rem; }
  .values { grid-template-columns: 1fr; }
  .reviews { display: block; }
  .review-list { margin-top: 3rem; }
  .review blockquote, .review-featured blockquote { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .quote-section { padding: 5rem 1.5rem; }
  .service-options { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: .75rem; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-top p { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 530px; }
  .hero-stamp { gap: .65rem; font-size: .78rem; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .work-item, .work-item-tall, .work-item-wide { grid-column: auto; grid-row: auto; min-height: 440px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { gap: 1rem; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
