@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  --paper: #f4f1e8;
  --surface: #fffaf0;
  --ink: #121212;
  --charcoal: #2b2924;
  --muted: #686258;
  --hairline: #dfd8c8;
  --signal: #f2c230;
  --signal-soft: #fff1a8;
  --field: #e9e0cc;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 28px 70px -50px rgba(18, 18, 18, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

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

.concept-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px clamp(18px, 4vw, 42px);
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
}

.concept-bar a {
  color: var(--signal);
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 42px);
  background: rgba(244, 241, 232, 0.92);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: min(280px, 58vw);
}

.brand img,
.site-footer img {
  width: 100%;
  border: 1px solid var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: var(--radius);
}

.site-nav a:hover {
  background: var(--field);
}

.nav-quote {
  background: var(--signal);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: calc(100vh - 130px);
  padding: clamp(48px, 7vw, 92px) 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.eyebrow,
.panel-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 9vw, 112px);
}

h2 {
  font-size: clamp(38px, 5.8vw, 72px);
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--surface);
  border: 1px solid var(--ink);
}

.button-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.hero-media {
  position: relative;
  padding: 14px;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.work-order {
  position: absolute;
  left: -22px;
  bottom: 28px;
  width: min(360px, 86%);
  padding: 22px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--signal);
}

.work-order strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.work-order dl,
.area-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.work-order dt,
.area-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-order dd,
.area-card dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.trust-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--surface);
}

.trust-strip div {
  padding: 22px;
  border-right: 1px solid var(--ink);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.narrow {
  display: block;
  max-width: 820px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 320px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 3;
}

.service-card:nth-child(n + 3) {
  grid-column: span 2;
}

.service-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: var(--signal);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.service-card a,
.review-panel a,
.area-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.process-grid div {
  padding: 24px;
  border: 1px solid var(--hairline);
  background: rgba(255, 250, 240, 0.72);
  border-radius: var(--radius);
}

.process-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 800;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.quote-panel,
.owner-cta,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--signal);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.quote-panel h3,
.owner-cta h2 {
  margin: 0;
}

.quote-panel p,
.owner-cta p {
  max-width: 680px;
  margin: 8px 0 0;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 112px;
}

.proof-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.review-panel {
  margin-top: 26px;
  padding: 22px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius);
}

.review-panel p {
  margin: 0 0 16px;
}

.review-panel a {
  color: var(--signal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
}

.service-area {
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.72fr);
  margin-top: clamp(64px, 9vw, 118px);
  padding: clamp(28px, 5vw, 48px);
  background: var(--ink);
  color: var(--surface);
}

.service-area .eyebrow,
.service-area dt {
  color: var(--signal);
}

.area-card {
  padding: 24px;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.owner-cta {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(72px, 10vw, 128px) auto 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.owner-cta h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 28px auto 0;
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
}

.site-footer div {
  max-width: 520px;
}

.site-footer img {
  width: 260px;
  margin-bottom: 18px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 14px 20px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 116px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 8px 8px 0 var(--signal);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .proof,
  .service-area,
  .section-heading,
  .quote-panel,
  .owner-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .service-card:nth-child(n) {
    grid-column: span 3;
  }

  .proof-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .concept-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    top: 0;
  }

  .hero,
  .section,
  .trust-strip,
  .owner-cta,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero-media {
    padding: 8px;
  }

  .hero-media > img {
    aspect-ratio: 1;
  }

  .work-order {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 10px;
    box-shadow: 6px 6px 0 var(--signal);
  }

  .hero-actions,
  .panel-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .process-grid,
  .gallery-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .service-grid {
    display: block;
  }

  .service-card + .service-card {
    margin-top: 14px;
  }

  .service-card {
    min-height: 0;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
