/* =====================================================================
   312 MASTER CONSTRUCTION — main stylesheet
   Bold industrial · dark · amber accent · Chicago heritage typography
   ===================================================================== */

/* ---------- design tokens ---------- */
:root {
  --bg:           #0E0E0E;
  --bg-2:         #131313;
  --surface:      #161616;
  --surface-2:    #1C1A18;
  --line:         #2A2622;
  --line-2:       #3A332A;
  --text:         #F5F1EA;
  --text-dim:     rgba(245, 241, 234, 0.62);
  --text-low:     rgba(245, 241, 234, 0.38);
  --accent:       #E0A95B;
  --accent-warm:  #D4923A;
  --accent-deep:  #8B6128;
  --brick:        #8B3A2A;

  --font-display: "Big Shoulders Display", "Archivo Black", system-ui, sans-serif;
  --font-body:    "Archivo", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container:    1440px;
  --gutter:       clamp(20px, 4vw, 56px);

  --radius:       2px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 800; }
::selection { background: var(--accent); color: var(--bg); }

/* film-grain overlay across the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  padding: 12px 16px; background: var(--accent); color: var(--bg); z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; }


/* ---------- shared utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow__bracket { color: var(--accent); font-weight: 500; }

.section-head {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(48px, 6vw, 96px);
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  justify-self: end;
  text-align: right;
  text-wrap: balance;
}
.section-head__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head__title { justify-self: start; text-align: left; font-size: clamp(38px, 11vw, 64px); }
}

/* link with arrow */
.link-arrow {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 6px;
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.link-arrow span { color: var(--accent); transition: transform .35s var(--ease-out); }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow:hover span { transform: translateX(6px); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: var(--radius);
  transition: transform .35s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--lg { padding: 22px 30px; font-size: 13px; }

.btn--primary {
  background: var(--accent);
  color: #1A1408;
  border: 1px solid var(--accent);
}
.btn--primary:hover { background: var(--text); border-color: var(--text); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }


/* =====================================================================
   TOPBAR
   ===================================================================== */
.topbar {
  position: relative; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.topbar__item--center { justify-self: center; color: var(--accent); }
.topbar__item--right  { justify-self: end; }
.topbar .dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.7); }
}
@media (max-width: 880px) {
  .topbar__inner { grid-template-columns: 1fr; gap: 6px; text-align: center; }
  .topbar__item--center, .topbar__item--right { justify-self: center; }
  .topbar__item--right { display: none; }
}


/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: padding .25s var(--ease-out), background .25s var(--ease-out);
}
.nav.is-scrolled { padding: 12px var(--gutter); background: rgba(14, 14, 14, 0.94); }

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: inline-flex; align-items: baseline;
  line-height: 1;
}
.logo__num   { color: var(--accent); }
.logo__slash { color: var(--text-low); margin: 0 2px; font-weight: 500; }
.logo__word  { color: var(--text); }
.logo--lg    { font-size: 36px; }

.nav__menu {
  justify-self: center;
  display: flex;
  gap: 36px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__menu a { position: relative; padding: 6px 0; color: var(--text-dim); transition: color .25s var(--ease-out); }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .35s var(--ease-out);
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a:hover::after { width: 100%; }

.nav__phone {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  gap: 2px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.nav__phone:hover { border-color: var(--accent); background: rgba(224, 169, 91, 0.06); }
.nav__phone-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-low);
  text-transform: uppercase;
}
.nav__phone-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.nav__toggle { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 5px; }
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__menu { display: none; }
  .nav__phone { padding: 8px 12px; }
  .nav__phone-num { font-size: 15px; }
}
@media (max-width: 640px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__phone { display: none; }
  .nav__toggle { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 55;
  padding: 100px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease-in-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.mobile-menu__phone { color: var(--accent) !important; }


/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(20px, 4vw, 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(108%) brightness(0.55);
  opacity: 0.45;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-out) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__bg-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.05) 30%, rgba(14,14,14,0.85) 100%),
    radial-gradient(circle at 25% 30%, rgba(224,169,91,0.12) 0%, transparent 50%);
}

.hero__watermark {
  position: absolute;
  bottom: -6vw;
  right: -2vw;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(280px, 46vw, 720px);
  line-height: 0.78;
  color: rgba(245, 241, 234, 0.04);
  letter-spacing: -0.04em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 90px) var(--gutter) clamp(80px, 8vw, 120px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}

.hero__top {
  display: flex; justify-content: space-between; align-items: center;
}
.hero__top-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--text-low);
  text-transform: uppercase;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text);
  text-wrap: balance;
}
.hero__line { display: block; overflow: hidden; }
.hero__word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 0.95s var(--ease-out) forwards;
}
.hero__line:nth-child(1) .hero__word { animation-delay: .15s; }
.hero__line:nth-child(2) .hero__word { animation-delay: .30s; }
.hero__line:nth-child(3) .hero__word { animation-delay: .45s; }
.hero__line:nth-child(3) .hero__word--accent { animation-delay: .60s; }
@keyframes wordRise {
  to { transform: translateY(0); }
}
.hero__word--accent { color: var(--accent); }
.hero__word--small {
  font-size: 0.42em;
  font-weight: 500;
  vertical-align: 0.42em;
  letter-spacing: -0.005em;
  color: var(--text-dim);
  margin-right: 0.18em;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__lede {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--text-dim);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

/* marquee at bottom of hero */
.marquee {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  animation: marquee 28s linear infinite;
  padding-left: 28px;
}
.marquee__track i {
  font-style: normal;
  color: var(--accent);
  font-size: 0.6em;
  transform: translateY(-0.1em);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =====================================================================
   SECTION CONTAINER (about, services, etc.)
   ===================================================================== */
.about, .services, .process, .areas, .projects, .why, .quotes, .cta {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 160px) var(--gutter);
}
.about    { border-top: 1px solid var(--line); }
.services { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); }
.process  { border-top: 1px solid var(--line); }
.areas    { border-top: 1px solid var(--line); }
.projects { border-top: 1px solid var(--line); }
.why      { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); }
.quotes   { border-top: 1px solid var(--line); }
.cta      { border-top: 1px solid var(--line); background: var(--bg-2); max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); }


/* =====================================================================
   ABOUT
   ===================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy   media"
    "stats  stats";
  gap: clamp(32px, 4vw, 64px);
}
.about__copy  { grid-area: copy; max-width: 56ch; }
.about__media { grid-area: media; margin: 0; position: relative; }
.about__stats { grid-area: stats; margin-top: clamp(32px, 4vw, 60px); }

.about__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 24px;
}
.about__copy p {
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: 16.5px;
}
.about__copy .link-arrow { margin-top: 16px; }

.about__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(20%) contrast(105%);
  border-radius: var(--radius);
}
.about__media figcaption {
  position: absolute; left: 0; bottom: 0;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.about__stats li {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat__plus { font-family: var(--font-display); font-size: 0.5em; vertical-align: top; color: var(--accent); }
.about__stats li:has(.stat__num:not([data-count])) .stat__num { color: var(--text); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

@media (max-width: 920px) {
  .about__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "stats";
  }
  .about__media img { height: 380px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about__stats { grid-template-columns: 1fr; }
}


/* =====================================================================
   SERVICES
   ===================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  position: relative;
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: background .4s var(--ease-out), color .4s var(--ease-out);
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity .55s var(--ease-out), transform 4s var(--ease-out);
  z-index: -2;
  filter: grayscale(40%);
}
.service::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.25) 0%, rgba(14,14,14,0.85) 80%);
  opacity: 0;
  transition: opacity .55s var(--ease-out);
  z-index: -1;
}
.service:hover::before { opacity: 0.7; transform: scale(1); }
.service:hover::after  { opacity: 1; }
.service:hover .service__num { color: var(--accent); }

.service__head { display: flex; align-items: baseline; gap: 14px; }
.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-low);
  letter-spacing: 0.16em;
  transition: color .35s var(--ease-out);
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.service p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
}
.service:hover p { color: var(--text); }

.service__tags {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service__tags li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  color: var(--text-dim);
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
}
.service:hover .service__tags li {
  border-color: rgba(224, 169, 91, 0.5);
  color: var(--text);
}

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { min-height: 320px; }
}


/* =====================================================================
   PROCESS
   ===================================================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  min-height: 280px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 6vw, 96px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.step p { color: var(--text-dim); font-size: 14.5px; margin: 0; }
.step:not(:last-child)::after {
  content: "→";
  position: absolute; right: -10px; top: 56px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  background: var(--bg);
  padding: 0 6px;
  z-index: 2;
}

@media (max-width: 1100px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 600px) {
  .process__steps { grid-template-columns: 1fr; }
}


/* =====================================================================
   AREAS
   ===================================================================== */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.area {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px;
  justify-content: space-between;
  transition: background .3s var(--ease-out);
}
.area:hover { background: var(--surface-2); }
.area__zip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.area__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.area--ask { background: var(--surface-2); }
.area--ask .area__name { color: var(--text-dim); font-size: 18px; line-height: 1.3; }

@media (max-width: 980px) { .areas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .areas__grid { grid-template-columns: 1fr; } }


/* =====================================================================
   PROJECTS
   ===================================================================== */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.project {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  grid-column: span 2;
  grid-row: span 1;
}
.project--lg   { grid-column: span 4; grid-row: span 2; }
.project--tall { grid-column: span 2; grid-row: span 2; }

.project img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(105%);
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease-out);
}
.project:hover img { transform: scale(1.05); filter: grayscale(0%); }

.project figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: baseline;
  background: linear-gradient(0deg, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0) 100%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.project figcaption span:last-child { color: var(--accent); }

@media (max-width: 1100px) {
  .projects__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .project--lg, .project--tall { grid-column: span 2; grid-row: span 2; }
  .project { grid-column: span 2; }
}
@media (max-width: 640px) {
  .projects__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .project, .project--lg, .project--tall { grid-column: span 2; grid-row: span 1; }
  .project--lg { grid-row: span 2; }
}


/* =====================================================================
   WHY US
   ===================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why__card {
  background: var(--bg-2);
  padding: clamp(32px, 4vw, 56px);
  min-height: 240px;
  position: relative;
}
.why__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}
.why__card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 12px;
  max-width: 18ch;
}
.why__card p { color: var(--text-dim); margin: 0; font-size: 15.5px; }

@media (max-width: 720px) { .why__grid { grid-template-columns: 1fr; } }


/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  margin: 0;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 320px;
}
.quote::before {
  content: "“";
  position: absolute; top: 8px; left: 18px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
}
.quote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.32;
  color: var(--text);
  letter-spacing: -0.005em;
  max-width: 32ch;
}
.quote footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.quote strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.quote span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 980px) { .quotes__grid { grid-template-columns: 1fr; } }


/* =====================================================================
   CTA
   ===================================================================== */
.cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 12px 0 8px;
  text-wrap: balance;
}
.cta__headline em { font-style: normal; color: var(--accent); }
.cta__lede {
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-dim);
  margin: 0 0 28px;
}

.cta__form {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); background: var(--surface); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 22px) center, calc(100% - 16px) center; background-size: 6px 6px; background-repeat: no-repeat; }

.cta__form-actions {
  grid-column: span 2;
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  margin-top: 8px;
}
.cta__phone {
  display: inline-flex; flex-direction: column; gap: 2px;
}
.cta__phone-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cta__phone-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.cta__phone:hover .cta__phone-num { text-decoration: underline; text-underline-offset: 4px; }
.cta__form-note {
  grid-column: span 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-low);
  margin: 4px 0 0;
}

@media (max-width: 640px) {
  .cta__form { grid-template-columns: 1fr; }
  .field--full, .cta__form-actions, .cta__form-note { grid-column: 1; }
}


/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 120px) var(--gutter) 0;
  overflow: hidden;
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  margin: 24px 0 0;
  max-width: 36ch;
  color: var(--text-dim);
  font-size: 15px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.footer__cols h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 8px; }
.footer__cols li, .footer__cols a {
  font-size: 14.5px;
  color: var(--text-dim);
}
.footer__cols a:hover { color: var(--accent); }

.footer__bottom {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-low);
}
.footer__pin { color: var(--accent); }
.footer__top-link {
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.footer__top-link:hover { border-color: var(--accent); color: var(--accent); }

.footer__big {
  position: absolute;
  left: -1.5vw;
  bottom: -3vw;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.78;
  color: rgba(245, 241, 234, 0.03);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
}


/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__word { transform: none; }
  .hero__bottom, .reveal { opacity: 1; transform: none; }
}
