/* =========================================================
   V0 — editorial-industrial direction (kept for comparison)
   Scoped to body.v0 to avoid colliding with main site CSS.
   ========================================================= */

body.v0 {
  --bg:        #f1ede5;
  --bg-2:      #e7e1d4;
  --ink:       #0e0f10;
  --ink-2:     #2a2c2e;
  --mute:      #6b675f;
  --rule:      #1a1b1c;
  --orange:    #ff5a1f;
  --orange-2:  #e34c14;
  --paper:     #faf7f1;
  --dark:      #0e0f10;
  --light:     #f1ede5;

  --maxw:      1280px;
  --gut:       clamp(20px, 4vw, 56px);

  --f-display: "Anton", "Impact", "Helvetica Neue Condensed Bold", sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.v0 * { box-sizing: border-box; }
body.v0 img { max-width: 100%; display: block; }
body.v0 a { color: inherit; text-decoration: none; }
body.v0 a:hover { color: var(--orange); }
body.v0 ul, body.v0 ol { padding: 0; margin: 0; list-style: none; }

/* Banner */
.v0-banner {
  background: var(--orange);
  color: var(--ink);
  padding: 8px 16px;
  display: flex; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.v0-banner .v0-mute { color: rgba(14,15,16,0.7); margin-left: auto; }
.v0-banner a { border-bottom: 1px solid currentColor; }
.v0-mono { font-family: var(--f-mono); }

/* Topbar */
body.v0 .topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--gut);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(6px);
}
body.v0 .brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.v0 .brand-mark { color: var(--orange); letter-spacing: -2px; }
body.v0 .brand-name { color: var(--ink); }
body.v0 .topnav { margin-left: auto; display: flex; gap: 28px; }
body.v0 .topnav a {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 500; color: var(--ink-2);
}
body.v0 .cta {
  font-family: var(--f-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 10px 16px; border: 1px solid var(--rule);
  background: var(--ink); color: var(--bg);
  transition: background 120ms ease, color 120ms ease;
}
body.v0 .cta:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }

@media (max-width: 700px) {
  body.v0 .topnav { display: none; }
  body.v0 .cta { margin-left: auto; }
}

/* Section heads */
body.v0 .section-head {
  display: flex; align-items: baseline; gap: 18px;
  padding: 60px var(--gut) 24px;
  border-bottom: 1px solid var(--rule);
}
body.v0 .section-head-light { border-color: rgba(255,255,255,0.18); }
body.v0 .section-num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--mute);
}
body.v0 .section-head h2 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Hero */
body.v0 .hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-bottom: 1px solid var(--rule);
}
body.v0 .hero-media {
  border-right: 1px solid var(--rule);
  background: #1a1a1a;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
body.v0 .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
body.v0 .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: contrast(1.05) saturate(0.92);
}

body.v0 .hero-copy {
  padding: 56px var(--gut) 40px;
  display: flex; flex-direction: column; gap: 22px;
  align-self: center;
}

body.v0 .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
body.v0 .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.18);
}

body.v0 .hero-copy h1 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

body.v0 .lede {
  max-width: 52ch;
  margin: 0;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.5;
}

body.v0 .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

body.v0 .btn {
  display: inline-block;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, transform 80ms ease;
}
body.v0 .btn:active { transform: translateY(1px); }
body.v0 .btn-primary { background: var(--ink); color: var(--bg); }
body.v0 .btn-primary:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }
body.v0 .btn-ghost { background: transparent; color: var(--ink); }
body.v0 .btn-ghost:hover { background: var(--ink); color: var(--bg); }
body.v0 .btn-orange { background: var(--orange); color: var(--ink); border-color: var(--orange); font-weight: 600; }
body.v0 .btn-orange:hover { background: var(--ink); color: var(--orange); border-color: var(--orange); }

body.v0 .hero-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
body.v0 .hero-meta > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px var(--gut);
  border-right: 1px solid var(--rule);
}
body.v0 .hero-meta > div:last-child { border-right: 0; }
body.v0 .hero-meta .label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
body.v0 .hero-meta .val {
  font-family: var(--f-display); font-size: 28px;
  letter-spacing: 0.02em; text-transform: uppercase;
}

@media (max-width: 900px) {
  body.v0 .hero { grid-template-columns: 1fr; }
  body.v0 .hero-media { border-right: 0; border-bottom: 1px solid var(--rule); min-height: 380px; }
  body.v0 .hero-meta { grid-template-columns: repeat(2, 1fr); }
  body.v0 .hero-meta > div:nth-child(2) { border-right: 0; }
  body.v0 .hero-meta > div:nth-child(1), body.v0 .hero-meta > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* WHY */
body.v0 .why { padding-bottom: 80px; }
body.v0 .why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 var(--gut);
}
body.v0 .why-list li {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
body.v0 .why-list li:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--rule); }
body.v0 .why-list li:nth-child(even) { padding-left: 32px; }
body.v0 .why-list li:last-child { border-bottom: 0; }
body.v0 .why-num {
  display: inline-block;
  font-family: var(--f-mono); font-size: 13px;
  color: var(--orange);
  margin-bottom: 10px;
}
body.v0 .why-list h3 {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
body.v0 .why-list p { margin: 0; color: var(--ink-2); }

@media (max-width: 720px) {
  body.v0 .why-list { grid-template-columns: 1fr; }
  body.v0 .why-list li:nth-child(odd) { border-right: 0; padding-right: 0; }
  body.v0 .why-list li:nth-child(even) { padding-left: 0; }
}

/* SERVICES */
body.v0 .services { padding-bottom: 80px; }
body.v0 .service {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-bottom: 1px solid var(--rule);
}
body.v0 .service:last-child { border-bottom: 0; }
body.v0 .service-text {
  padding: 56px var(--gut);
  border-right: 1px solid var(--rule);
}
body.v0 .service-reverse .service-text { border-right: 0; border-left: 1px solid var(--rule); order: 2; }
body.v0 .service-reverse .service-figure { order: 1; }

body.v0 .service-text h3 {
  margin: 0 0 14px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.005em;
}
body.v0 .service-lede { margin: 0 0 22px; max-width: 48ch; color: var(--ink-2); font-size: 17px; }

body.v0 .service-figure {
  position: relative;
  margin: 0;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink);
  overflow: hidden;
}
body.v0 .service-figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: contrast(1.04) saturate(0.95);
}
body.v0 .service-figure figcaption {
  position: relative; z-index: 1;
  padding: 12px var(--gut);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--ink);
  border-top: 1px solid #2a2c2e;
}

@media (max-width: 900px) {
  body.v0 .service { grid-template-columns: 1fr; }
  body.v0 .service-text, body.v0 .service-reverse .service-text { border: 0; order: 1; }
  body.v0 .service-reverse .service-figure { order: 2; }
  body.v0 .service-figure { min-height: 300px; }
}

/* checklists */
body.v0 .checklist {
  display: grid; gap: 8px;
  margin-top: 12px;
}
body.v0 .checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
}
body.v0 .checklist li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 12px; height: 1px; background: var(--orange);
}
body.v0 .checklist-light li { color: rgba(255,255,255,0.86); }
body.v0 .checklist-light li::before { background: var(--orange); }

/* GALLERY */
body.v0 .gallery { padding-bottom: 80px; }
body.v0 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--gut);
  margin-top: 24px;
}
body.v0 .gallery-grid figure {
  margin: 0;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  margin-right: -1px; margin-bottom: -1px;
}
body.v0 .gallery-grid img {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: center;
  filter: contrast(1.04) saturate(0.93);
}
body.v0 .gallery-grid figcaption {
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
}
@media (max-width: 800px) {
  body.v0 .gallery-grid { grid-template-columns: 1fr; }
}

/* ABOUT */
body.v0 .about { padding-bottom: 80px; }
body.v0 .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 0 var(--gut);
  margin-top: 24px;
}
body.v0 .about-lead {
  padding: 36px 36px 36px 0;
  border-right: 1px solid var(--rule);
}
body.v0 .big-stat { margin: 0; display: flex; flex-direction: column; gap: 10px; }
body.v0 .big-stat .num {
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
body.v0 .big-stat .num .plus { color: var(--orange); }
body.v0 .big-stat .num-label {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

body.v0 .about-body { padding: 36px 0 36px 36px; }
body.v0 .about-body p { margin: 0 0 14px; max-width: 60ch; color: var(--ink-2); }
body.v0 .about-body h3 {
  margin: 28px 0 10px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.v0 .about-grid { grid-template-columns: 1fr; }
  body.v0 .about-lead { border-right: 0; border-bottom: 1px solid var(--rule); padding: 24px 0; }
  body.v0 .about-body { padding: 24px 0; }
}

/* CONTACT */
body.v0 .contact {
  background: var(--dark);
  color: var(--bg);
}
body.v0 .contact .section-head h2 { color: var(--bg); }
body.v0 .contact .section-num { color: rgba(255,255,255,0.55); }
body.v0 .contact-grid {
  display: block;
}

body.v0 .contact-info {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
body.v0 .contact-info > div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 48px var(--gut);
  border-right: 1px solid rgba(255,255,255,0.12);
}
body.v0 .contact-info > div:last-child { border-right: 0; }
body.v0 .contact-info dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
body.v0 .contact-info dd {
  margin: 0;
  font-size: 18px;
  color: var(--bg);
}
body.v0 .contact-info a { color: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.25); }
body.v0 .contact-info a:hover { color: var(--orange); border-color: var(--orange); }

body.v0 .rfp { padding: 40px var(--gut) 56px; }
body.v0 .rfp .btn { margin-top: 0; }

@media (max-width: 700px) {
  body.v0 .contact-info { grid-template-columns: 1fr; }
  body.v0 .contact-info > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  body.v0 .contact-info > div:last-child { border-bottom: 0; }
}

/* Footer */
body.v0 .foot {
  background: var(--bg-2);
  padding: 22px var(--gut);
  border-top: 1px solid var(--rule);
}
body.v0 .foot-row {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.v0 .foot-row .mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--mute); }
body.v0 .foot-small {
  margin: 6px 0 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}

body.v0 .mono { font-family: var(--f-mono); }
body.v0 ::selection { background: var(--orange); color: var(--ink); }
