:root {
  --paper: #f3eee3;
  --paper-2: #fffaf0;
  --ink: #17242b;
  --ink-soft: #314047;
  --steel: #45626b;
  --steel-light: #d8e1df;
  --oxide: #b23b22;
  --oxide-dark: #79291d;
  --brass: #bd8428;
  --ash: #d7cdbc;
  --line: rgba(23, 36, 43, 0.22);
  --line-strong: rgba(23, 36, 43, 0.62);
  --shadow-hard: 10px 10px 0 rgba(23, 36, 43, 0.12);
  --shadow-soft: 0 24px 70px rgba(23, 36, 43, 0.16);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1210px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(178, 59, 34, 0.16), transparent 22rem),
    radial-gradient(circle at 84% 4%, rgba(69, 98, 107, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(23, 36, 43, 0.05) 0 25%, transparent 25% 50%, rgba(23, 36, 43, 0.04) 50% 75%, transparent 75%),
    var(--paper);
  background-size: auto, auto, 28px 28px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 36, 43, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 43, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
}

body::after {
  position: fixed;
  inset: auto -8rem 3rem auto;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(178, 59, 34, 0.28);
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 12px,
      rgba(178, 59, 34, 0.14) 12px,
      rgba(178, 59, 34, 0.14) 20px
    );
  opacity: 0.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--paper-2);
  background: var(--oxide);
}

.site-shell {
  width: min(100%, calc(var(--max-width) + 3rem));
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, var(--paper-2), rgba(255, 250, 240, 0.9)),
    var(--paper-2);
  box-shadow: var(--shadow-hard);
}

.site-header::before {
  position: absolute;
  inset: -8px 22px auto auto;
  width: 8.5rem;
  height: 8px;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      var(--oxide) 0 12px,
      var(--ink) 12px 24px
    );
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border: 2px solid var(--ink);
  background: var(--oxide);
  transform: rotate(-2deg);
}

.brand-mark::before {
  content: "SCF";
  color: var(--paper-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark span {
  display: none;
}

.brand-copy {
  display: grid;
  line-height: 0.94;
}

.brand-copy strong,
.brand-copy small {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  letter-spacing: 0.12em;
}

.brand-copy small {
  max-width: 19ch;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 2vw, 1.25rem);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.75rem 0.2rem;
  color: var(--ink-soft);
}

.site-nav a::after {
  position: absolute;
  right: 0.2rem;
  bottom: 0.48rem;
  left: 0.2rem;
  height: 3px;
  content: "";
  background: var(--oxide);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 0.85rem 0.95rem;
  border: 2px solid var(--ink);
  background: var(--oxide);
  color: var(--paper-2);
  box-shadow: 4px 4px 0 var(--ink);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-phone {
  color: var(--oxide-dark);
}

.site-nav .nav-phone::after {
  background: var(--oxide-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  justify-self: end;
  padding: 0.85rem;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.menu-toggle span {
  width: 1.4rem;
  height: 2px;
  background: var(--ink);
}

.section {
  padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: min(55rem, calc(100vh - 6rem));
}

.hero::before {
  position: absolute;
  top: 8%;
  right: 36%;
  width: 8rem;
  height: 8rem;
  content: "";
  border: 14px solid rgba(178, 59, 34, 0.13);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  content: "BUILT / ATLANTA TX";
  color: rgba(23, 36, 43, 0.16);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2rem, 8vw, 6.6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 0.9;
  pointer-events: none;
}

.eyebrow,
.tiny-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--oxide);
}

.eyebrow::before {
  width: 2.3rem;
  height: 2px;
  content: "";
  background: currentColor;
}

.tiny-label {
  color: var(--steel);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2,
.service-panel h2,
.gallery-card h2,
.naming-panel h2,
.quote-copy h2,
.reasons-copy h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  max-width: 8.9ch;
  margin-top: 0.85rem;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
}

.hero h1::after {
  display: block;
  width: min(18rem, 70%);
  height: 0.6rem;
  margin-top: 1.1rem;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      var(--oxide) 0 18px,
      var(--brass) 18px 36px
    );
}

.page-hero {
  position: relative;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: min(24rem, 42vw);
  height: 1.1rem;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      var(--ink) 0 16px,
      transparent 16px 26px
    );
  opacity: 0.3;
}

.page-hero h1 {
  max-width: 13ch;
  margin-top: 0.8rem;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
}

.lead,
.section-heading p,
.page-hero p,
.cta-panel p,
.quote-copy p,
.reasons-copy p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.lead {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button::after {
  content: ">";
  margin-left: 0.65rem;
  transition: transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px);
}

.button-primary {
  background: var(--oxide);
  color: var(--paper-2);
}

.button-secondary {
  background: var(--paper-2);
}

.hero-list,
.board-list,
.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list {
  display: grid;
  max-width: 46rem;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  border-left: 5px solid var(--oxide);
  background: rgba(255, 250, 240, 0.66);
}

.hero-list li,
.board-list li,
.card-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-list li::before,
.board-list li::before,
.card-list li::before {
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  border: 2px solid var(--oxide);
  transform: rotate(45deg);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-board,
.capability-card,
.process-card,
.build-card,
.reason-card,
.service-panel,
.gallery-card,
.testimonial-card,
.naming-panel,
.cta-panel,
.quote-form,
.contact-panel {
  position: relative;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 44%),
    var(--paper-2);
  box-shadow: var(--shadow-hard);
}

.hero-board {
  width: min(100%, 31rem);
  padding: 1rem;
  transform: rotate(1deg);
}

.hero-board::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(69, 98, 107, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 98, 107, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-board::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  content: "WORK ORDER";
  color: rgba(178, 59, 34, 0.22);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(-10deg);
}

.hero-image-frame,
.proof-photo,
.project-photo,
.service-photo,
.contact-logo-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 6px 6px 0 rgba(23, 36, 43, 0.14);
  overflow: hidden;
}

.hero-image-frame {
  margin-bottom: 1rem;
}

.hero-image-frame img,
.proof-photo img,
.project-photo img,
.service-photo img,
.about-photo-grid img,
.contact-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.94);
}

.hero-image-frame img {
  aspect-ratio: 16 / 10;
  min-height: 13.5rem;
}

.hero-image-frame figcaption,
.proof-photo figcaption,
.project-photo figcaption,
.service-photo figcaption,
.contact-logo-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 2.7rem;
  padding: 0.75rem 0.85rem;
  color: var(--paper-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-image-frame figcaption::after,
.proof-photo figcaption::after,
.project-photo figcaption::after,
.service-photo figcaption::after {
  content: "SCF";
  color: var(--brass);
}

.board-topline,
.board-grid,
.board-footer,
.contact-panel,
.process-grid,
.capability-grid,
.build-grid,
.reasons-grid,
.service-list,
.gallery-plan,
.project-gallery,
.proof-gallery,
.service-media-grid,
.about-visual-section,
.about-photo-grid,
.testimonial-grid,
.code-list,
.form-grid,
.form-actions {
  display: grid;
  gap: 1rem;
}

.board-topline {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px dashed var(--line-strong);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border: 2px solid var(--steel);
  background: var(--steel-light);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.board-card {
  position: relative;
  z-index: 1;
  padding: 1.1rem;
  border: 2px solid var(--line-strong);
  background: rgba(255, 250, 240, 0.86);
}

.board-card-primary {
  margin-bottom: 1rem;
  padding: 1.35rem;
  background: rgba(215, 225, 223, 0.88);
}

.board-card-secondary h3,
.board-card-accent h3 {
  margin: 0.2rem 0 0.4rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.board-card-primary h2 {
  margin: 0.45rem 0 1rem;
  max-width: 10ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.board-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.board-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-card-accent {
  background: rgba(255, 240, 210, 0.86);
}

.board-footer {
  grid-auto-flow: column;
  gap: 0.7rem;
  margin-top: 1rem;
  overflow: auto;
}

.board-footer span {
  padding: 0.8rem 0.95rem;
  border: 2px solid var(--line-strong);
  background: var(--paper-2);
  color: var(--ink-soft);
  white-space: nowrap;
}

.band {
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  padding: 0.95rem 0;
  border-block: 2px solid var(--ink);
  background: var(--ink);
}

.band-track {
  display: inline-flex;
  gap: 2.3rem;
  min-width: 100%;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
}

.band-track span {
  color: var(--paper-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 50rem;
}

.section-heading h2,
.cta-panel h2,
.naming-panel h2,
.quote-copy h2,
.reasons-copy h2 {
  margin-top: 0.75rem;
  font-size: clamp(2.4rem, 5.8vw, 5.1rem);
}

.service-panel h2,
.gallery-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-heading p,
.cta-panel p,
.naming-panel p,
.quote-copy p,
.reasons-copy p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.proof-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 2rem;
}

.proof-photo {
  grid-column: span 3;
  min-height: 18rem;
}

.proof-photo-wide {
  grid-column: span 6;
}

.proof-photo img {
  aspect-ratio: 1 / 1;
}

.proof-photo-wide img {
  aspect-ratio: 16 / 10;
}

.capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.capability-card,
.process-card,
.reason-card {
  min-height: 100%;
  padding: 1.55rem;
}

.capability-card:nth-child(2),
.capability-card:nth-child(3),
.gallery-card:nth-child(2),
.gallery-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 44%),
    var(--steel-light);
}

.card-count,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  height: 2.25rem;
  margin: 0 0 1rem;
  padding-inline: 0.65rem;
  border: 2px solid var(--ink);
  background: var(--brass);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.capability-card h3,
.process-card h3,
.build-card h3,
.reason-card h3 {
  margin: 0 0 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.04rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-card p,
.process-card p,
.build-card p,
.reason-card p,
.contact-note,
.form-note,
.form-status {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.card-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.section-process {
  position: relative;
}

.section-process::before {
  position: absolute;
  top: 3rem;
  right: 0;
  width: min(18rem, 35vw);
  height: 2px;
  content: "";
  background: var(--oxide);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.process-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(243, 238, 227, 0.92)),
    var(--paper-2);
}

.service-list {
  gap: 1.2rem;
}

.service-media-grid {
  grid-template-columns: 1.35fr 0.65fr;
  align-items: stretch;
  padding-top: 0;
}

.service-photo {
  min-height: 18rem;
}

.service-photo img {
  aspect-ratio: 4 / 3;
}

.service-photo-large img {
  aspect-ratio: 16 / 9;
}

.service-panel {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.service-panel:nth-child(even) {
  margin-left: min(4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 44%),
    var(--steel-light);
}

.service-panel p,
.gallery-card p,
.testimonial-card p,
.naming-panel p,
.cta-panel p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.build-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 2rem;
}

.build-card {
  min-height: 14rem;
  padding: 1.55rem;
}

.build-card-wide {
  grid-column: span 7;
}

.build-card:not(.build-card-wide):not(.build-card-highlight) {
  grid-column: span 5;
}

.build-card-highlight {
  grid-column: span 12;
}

.section-reasons {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

.project-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  padding-top: 1rem;
}

.project-photo {
  grid-column: span 3;
  min-height: 18rem;
}

.project-photo-large {
  grid-column: span 6;
}

.project-photo img {
  aspect-ratio: 1 / 1;
}

.project-photo-large img {
  aspect-ratio: 16 / 10;
}

.project-photo.logo-photo img,
.contact-logo-card img {
  padding: 1rem;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 50%, rgba(178, 59, 34, 0.2), transparent 42%),
    var(--ink);
}

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

.testimonial-card {
  padding: 1.4rem;
  background: var(--ink);
}

.testimonial-card p {
  margin: 0;
  color: var(--paper-2);
  font-size: 1.22rem;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--steel-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-plan {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-card {
  grid-column: span 3;
  min-height: 17rem;
  padding: 1.5rem;
}

.gallery-card:nth-child(5) {
  grid-column: span 6;
  min-height: 12rem;
  background: var(--ink);
}

.gallery-card:nth-child(5) h2,
.gallery-card:nth-child(5) p,
.gallery-card:nth-child(5) span {
  color: var(--paper-2);
}

.gallery-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--oxide);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.naming-panel,
.cta-panel {
  padding: clamp(1.4rem, 4vw, 2.25rem);
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.75), rgba(215, 225, 223, 0.9)),
    var(--steel-light);
}

.cta-panel::after {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  content: "QUOTE";
  color: rgba(178, 59, 34, 0.16);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.code-list {
  margin-top: 1.3rem;
}

.code-list code {
  display: block;
  padding: 1rem;
  border: 2px dashed var(--line-strong);
  background: var(--paper);
  color: var(--oxide-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.info-strip {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  box-shadow: var(--shadow-hard);
}

.info-strip,
.info-strip div {
  display: grid;
}

.info-strip div {
  gap: 0.45rem;
  padding: 1rem;
  border-left: 4px solid var(--oxide);
  background: var(--paper);
}

.info-strip strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.section-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.about-visual-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  padding-top: 0;
}

.about-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.about-photo-grid img {
  min-height: 22rem;
  border: 2px solid var(--ink);
  background: var(--steel-light);
  box-shadow: var(--shadow-hard);
}

.about-proof-card {
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 44%),
    var(--steel-light);
  box-shadow: var(--shadow-hard);
}

.about-proof-card h2 {
  margin: 0.8rem 0 1rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.about-proof-card p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.contact-panel {
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  background: var(--steel-light);
}

.contact-phone {
  display: inline-block;
  margin: 0.4rem 0 0.55rem;
  color: var(--oxide-dark);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
}

.contact-email {
  display: inline-block;
  margin: 0.4rem 0 0.55rem;
  color: var(--oxide-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-logo-card {
  margin-top: 1.5rem;
}

.contact-logo-card img {
  aspect-ratio: 4 / 3;
  min-height: 15rem;
}

.quote-form {
  padding: clamp(1.15rem, 3vw, 1.6rem);
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.field span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 2px solid var(--line-strong);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.field input[type="file"] {
  padding: 1.05rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(49, 64, 71, 0.7);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--oxide);
  background: var(--paper-2);
  box-shadow: 4px 4px 0 rgba(178, 59, 34, 0.18);
}

.field select {
  appearance: none;
}

.field textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.form-note,
.form-status {
  margin-top: 0.95rem;
}

.form-status {
  min-height: 1.5rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: rise-in 620ms ease both;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero,
  .section-reasons,
  .split-section,
  .section-quote {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .capability-grid,
  .process-grid,
  .reasons-grid,
  .gallery-plan,
  .proof-gallery,
  .project-gallery,
  .service-media-grid,
  .about-visual-section,
  .testimonial-grid,
  .info-strip,
  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(5) {
    grid-column: auto;
  }

  .proof-photo,
  .proof-photo-wide,
  .project-photo,
  .project-photo-large {
    grid-column: auto;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .service-panel:nth-child(even) {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .build-grid {
    grid-template-columns: 1fr;
  }

  .build-card,
  .build-card-wide,
  .build-card-highlight {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding-inline: 1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    border: 2px solid var(--ink);
    background: var(--paper-2);
    box-shadow: var(--shadow-hard);
  }

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

  .site-nav a {
    padding: 0.85rem;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .section-heading h2,
  .cta-panel h2,
  .naming-panel h2,
  .quote-copy h2,
  .reasons-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3.55rem);
  }

  .cta-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
    letter-spacing: -0.05em;
    overflow-wrap: normal;
  }

  .hero-copy::before {
    top: -1.5rem;
    font-size: clamp(1.8rem, 13vw, 3.6rem);
  }

  .board-grid,
  .board-topline {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
