:root {
  --ink: #0b0b0c;
  --ink-2: #1c1d1e;
  --bone: #f5f6f7;
  --bone-2: #eceef0;
  --paper: #ffffff;
  --sky: #eef0f2;
  --water: #1c1d1e;
  --water-deep: #0b0b0c;
  --green: #1faa4e;
  --green-deep: #17923f;
  --rule: #e2e4e7;
  --muted: #5e6a73;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Archivo', system-ui, sans-serif;
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: .75rem 1rem; z-index: 999;
}
.skip:focus { left: 0; }

.img-ph {
  background: repeating-linear-gradient(45deg, #f5f5f4, #f5f5f4 12px, #e7e5e4 12px, #e7e5e4 24px);
  border: 2px dashed #a8a29e;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1.5rem; font-size: 0.85rem; color: #57534e;
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  border-radius: 8px; width: 100%;
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem; padding-bottom: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: var(--ink); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.1rem; letter-spacing: -.02em; font-weight: 800; }
.brand-text span { font-size: .72rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.site-header nav { display: flex; gap: 1.6rem; justify-content: center; }
.site-header nav a {
  text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink);
  padding: .4rem 0; border-bottom: 2px solid transparent;
}
.site-header nav a:hover { border-bottom-color: var(--water); }
.site-header nav a:focus-visible { outline: 2px solid var(--water); outline-offset: 4px; border-radius: 2px; }

.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; font-weight: 700; letter-spacing: -.01em;
  background: var(--green); color: #fff;
  padding: .6rem 1rem; border-radius: 999px; font-size: .95rem;
}
.header-phone svg { width: 16px; height: 16px; }
.header-phone:hover { background: var(--green-deep); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--rule); border-radius: 8px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--water); outline-offset: 2px; }

@media (max-width: 820px) {
  .header-inner { grid-template-columns: 1fr auto auto; gap: .75rem; }
  .nav-toggle { display: inline-flex; }
  .site-header nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bone);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: .25rem 0;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .site-header nav.open { display: flex; }
  .site-header nav a {
    padding: .95rem clamp(1.25rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--rule);
  }
  .site-header nav a:last-child { border-bottom: 0; }
  .site-header nav a:hover { border-bottom-color: var(--rule); }
}

@media (max-width: 420px) {
  .header-phone { display: none; }
}

/* HERO — mirrors the flyer header */
.hero {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(280px, 40%) 1fr;
  align-items: stretch;
  overflow: hidden;
}
.hero-figure { margin: 0; background: #000; display: flex; }
.hero-figure img {
  width: 100%; height: 100%;
  min-height: 480px; max-height: 660px;
  object-fit: contain; object-position: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: block;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 760px;
}
.hero-wordmark {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .85;
  letter-spacing: -.04em;
  margin: 0;
  color: #fff;
}
.hero-sub {
  display: flex; align-items: center; gap: 1rem;
  text-transform: uppercase; letter-spacing: .22em;
  font-weight: 600; font-size: clamp(.78rem, 1.5vw, 1rem);
  color: #e7e9ec; margin: .7rem 0 .35rem;
}
.hero-sub::after {
  content: ""; height: 1px; background: #4a4b4d; flex: 1;
}
.hero-sub2 {
  text-transform: uppercase; font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  letter-spacing: -.01em; line-height: 1;
  margin: 0 0 1.6rem; color: #fff;
}
.hero-phone {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--green); color: #fff; text-decoration: none;
  font-weight: 800; font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  letter-spacing: -.01em;
  padding: .65rem 1.4rem; border-radius: 999px;
  transition: background .2s ease, transform .15s ease;
}
.hero-phone:hover { background: var(--green-deep); transform: translateY(-1px); }
.hero-phone svg { width: 1.05em; height: 1.05em; }
.hero-email {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #c9ccd1; text-decoration: none;
  font-size: .95rem; margin: 1rem 0 1.9rem;
}
.hero-email svg { width: 18px; height: 18px; }
.hero-email:hover { color: #fff; }

.hero-feature-row {
  display: flex; align-items: stretch; gap: 1.4rem; flex-wrap: wrap;
}
.hero-quote-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem; text-align: center;
  border: 2px solid #fff; border-radius: 8px;
  padding: .9rem 1.2rem; min-width: 108px;
  color: #fff; text-decoration: none;
  text-transform: uppercase; font-weight: 800; letter-spacing: .04em; line-height: 1.05;
  transition: background .2s ease, color .2s ease;
}
.hero-quote-card svg { width: 30px; height: 30px; }
.hero-quote-card:hover { background: #fff; color: var(--ink); }
.hero-services {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; justify-content: center; gap: .5rem;
  flex: 1; min-width: 220px;
}
.hero-services li {
  display: flex; align-items: center; gap: .8rem;
  text-transform: uppercase; font-weight: 700; letter-spacing: .03em;
  font-size: clamp(.82rem, 1.5vw, .95rem);
  border-bottom: 1px solid #3a3b3d; padding-bottom: .5rem;
}
.hero-services li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-services .ico {
  flex: none; width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1.5px solid #fff; border-radius: 50%;
}
.hero-services .ico svg { width: 17px; height: 17px; }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero-figure { order: 1; }
  .hero-figure img {
    min-height: 0; height: clamp(220px, 60vw, 320px);
    object-fit: contain; object-position: center;
    padding: clamp(1rem, 5vw, 2rem) clamp(1rem, 5vw, 2rem) 0;
  }
  .hero-copy { order: 2; padding: clamp(1.5rem, 6vw, 2.5rem) clamp(1.25rem, 6vw, 2rem) clamp(2rem, 8vw, 3rem); }
}

.btn {
  display: inline-block; padding: 1rem 1.4rem;
  text-decoration: none; font-weight: 700; font-size: .98rem;
  border-radius: 4px; border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  letter-spacing: -.01em;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-call { background: var(--green); color: #fff; display: inline-flex; align-items: center; gap: .5rem; }
.btn-call svg { width: 18px; height: 18px; }
.btn-call:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--ink-2); }
.btn-full { width: 100%; text-align: center; padding: 1.1rem; }
.btn:focus-visible { outline: 3px solid var(--water); outline-offset: 3px; }

.marquee {
  position: relative; z-index: 1;
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.marquee-track {
  display: flex; gap: 2.4rem; white-space: nowrap;
  padding: 1rem 0;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
  animation: scroll 38s linear infinite;
}
.marquee-track span:nth-child(even) { color: var(--paper); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* SECTION HEADS */
.section-head { max-width: 800px; margin-bottom: 3.5rem; }
.section-num {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--water-deep); margin: 0 0 1rem; font-weight: 600;
}
.section-head h2, .contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 1.4rem;
}
.section-lede { font-size: 1.1rem; color: #36454f; max-width: 60ch; margin: 0; }
.section-head-dark .section-num { color: #b4b9bf; }
.section-head-dark h2 { color: var(--paper); }
.section-head-dark .section-lede { color: #b4b9bf; }
.section-head-dark a { color: var(--paper); }

/* TRUST STRIP */
.trust { background: var(--ink); color: var(--paper); border-top: 1px solid #2a2b2c; }
.trust-list {
  list-style: none; margin: 0; padding: 1.6rem 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem 1.5rem;
}
.trust-list li { display: flex; flex-direction: column; gap: .15rem; }
.trust-list strong { font-size: .98rem; font-weight: 700; letter-spacing: -.01em; }
.trust-list strong::before { content: "✓ "; color: var(--paper); font-weight: 800; }
.trust-list span { font-size: .78rem; color: #b4b9bf; }
@media (max-width: 820px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); }
}

/* SERVICES */
.services { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bone); border-top: 1px solid var(--rule); }
.service-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.service-list li {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  display: flex; flex-direction: column;
}
.service-list li:hover { background: var(--bone-2); }
.svc-img {
  width: calc(100% + 3.2rem);
  margin: -1.6rem -1.6rem 1.3rem;
  height: 190px;
  object-fit: cover;
  display: block;
  background: var(--bone-2);
}
.svc-num {
  position: absolute; top: .7rem; right: .7rem; margin: 0;
  background: var(--ink); color: var(--paper);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  padding: .3rem .55rem; border-radius: 999px;
}
.service-list h3 {
  font-size: 1.6rem; letter-spacing: -.02em; line-height: 1.05;
  margin: 0 0 .8rem; font-weight: 700;
}
.service-list p { margin: 0 0 1.4rem; color: #36454f; font-size: .98rem; flex: 1; }
.svc-tag {
  align-self: flex-start;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: .4rem .7rem; border-radius: 999px;
}
@media (max-width: 820px) {
  .service-list { grid-template-columns: 1fr; }
}

/* WORK */
.work {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery .g { position: relative; margin: 0; overflow: hidden; border-radius: 6px; background: var(--ink-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g-wide img { object-fit: contain; background: var(--ink-2); }
.gallery .g-1 { grid-column: span 2; grid-row: span 3; }
.gallery .g-2 { grid-column: span 2; grid-row: span 2; }
.gallery .g-3 { grid-column: span 2; grid-row: span 2; }
.gallery .g-4 { grid-column: span 2; grid-row: span 2; }
.gallery .g-5 { grid-column: span 2; grid-row: span 2; }
.gallery .g-6 { grid-column: span 2; grid-row: span 3; }
.gallery .g-7 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .g-1, .gallery .g-2, .gallery .g-3, .gallery .g-4, .gallery .g-5, .gallery .g-6, .gallery .g-7 {
    grid-column: span 1; grid-row: span 2;
  }
  .gallery .g-wide { grid-column: 1 / -1; grid-row: span 2; }
}

/* REVIEWS */
.reviews { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bone); border-top: 1px solid var(--rule); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.review-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--ink); font-size: .95rem; letter-spacing: .15em; margin-bottom: .7rem; }
.review-card blockquote {
  margin: 0 0 .9rem;
  font-size: .98rem;
  line-height: 1.55;
  letter-spacing: -.005em;
  color: #2a2b2c;
}
.review-card .review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.review-more {
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; padding: 0;
  margin: 0 0 1rem;
  font: inherit; font-size: .85rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--ink); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.review-more:hover { color: var(--green-deep); }
.review-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: .15rem; border-top: 1px solid var(--rule); padding-top: .9rem; }
.review-name { font-weight: 700; letter-spacing: -.01em; }
.review-src { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 820px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bone-2); border-top: 1px solid var(--rule); }
.faq-list { max-width: 860px; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: .4rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; letter-spacing: -.01em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  font-size: 1.6rem; font-weight: 400; line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 1.25rem; padding-right: 2.5rem;
  color: #36454f; font-size: 1.02rem; max-width: 70ch;
}
.faq-item summary:focus-visible { outline: 2px solid var(--water); outline-offset: 4px; border-radius: 2px; }

/* CONTACT */
.contact { padding: clamp(4rem, 8vw, 7rem) 0 8rem; background: var(--bone); border-top: 1px solid var(--rule); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-copy h2 { max-width: 14ch; }
.contact-copy p { color: #36454f; max-width: 50ch; }
.contact-list { margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--rule); }
.contact-list > div {
  display: grid; grid-template-columns: 120px 1fr;
  padding: 1rem 0; border-bottom: 1px solid var(--rule);
}
.contact-list dt { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-list dd { margin: 0; font-weight: 500; }
.contact-list a { color: var(--ink); }

.contact-form {
  background: var(--paper); padding: 2rem;
  border: 1px solid var(--rule); border-radius: 6px;
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .5rem;
}
.field input, .field textarea {
  width: 100%; padding: .9rem 1rem;
  border: 1.5px solid var(--rule); border-radius: 4px;
  background: var(--bone); font-family: inherit; font-size: 1rem;
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--water); background: var(--paper);
}
.form-note { font-size: .82rem; color: var(--muted); margin: .8rem 0 0; text-align: center; }
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 4rem 0 6rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid #2a2b2c;
}
.foot-logo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; margin-bottom: 1.2rem;
  border: 1px solid #2a2b2c;
}
.foot-brand { font-size: 1.4rem; font-weight: 800; margin: 0 0 .3rem; letter-spacing: -.02em; }
.foot-brand span { font-weight: 400; color: #b4b9bf; }
.foot-sub { color: #b4b9bf; margin: 0; max-width: 32ch; }
.foot-label {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: #b4b9bf; margin: 0 0 .8rem; font-weight: 600;
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer p { margin: 0 0 .4rem; }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem; font-size: .85rem; color: #9b968d;
}
.built-by { font-size: .78rem; }
.built-by a { color: #9b968d; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.built-by a:hover { color: #fff; }

@media (max-width: 820px) {
  .site-footer { padding-top: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* STICKY MOBILE CALL */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--green); color: #fff;
  text-decoration: none; padding: .9rem 1rem;
  text-align: center;
}
.sticky-call strong { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 700; }
.sticky-call span { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
@media (max-width: 820px) {
  .sticky-call { display: block; }
  .site-footer { padding-bottom: 7rem; }
}

/* REVEALS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
