/* ============================================
   Veezarch | Industrial Precision
   Static stylesheet for veezarch.com
   ============================================ */

:root {
  --bg-dark: #000000;
  --bg-darker: #000000;
  --bg-light: #F5F5F2;
  --bg-card: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #141414;
  --muted-on-light: #5C5C5C;
  --muted-on-dark: #A8A8A8;
  --accent: #4DA77E;
  --accent-hover: #3F8E68;
  --accent-mint: #A6E4C6;
  --border-light: #E4E4E0;
  --border-dark: #1A1A1A;
  --max-width: 1280px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ============ WORDMARK / LOGO ============ */
.wordmark {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 44px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--border-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--space-3);
}

.primary-nav {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.primary-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}

.primary-nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  color: var(--text-on-dark) !important;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-on-dark);
  margin: 6px 0;
  transition: transform 0.3s var(--ease);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  background-color: #0A0A0A;
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.35) 55%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: var(--space-7) var(--space-3);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-mint);
  margin-bottom: var(--space-3);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 660px;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.btn-text {
  padding: 0;
  background: none;
  color: var(--accent);
  font-weight: 600;
  border: none;
  position: relative;
}

.btn-text::after {
  content: '\2192';
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.2s var(--ease);
}

.btn-text:hover {
  color: var(--accent-hover);
}

.btn-text:hover::after {
  transform: translateX(4px);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

/* ============ EYEBROW & HEADINGS ============ */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.eyebrow-light {
  color: var(--accent-mint);
}

.section-head {
  margin-bottom: var(--space-6);
  max-width: 700px;
}

.section-head h2,
section h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

/* ============ SERVICES STRIP ============ */
.services-strip {
  padding: var(--space-7) 0;
  background: var(--bg-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  padding: var(--space-4);
  border: 1px solid var(--border-light);
  transition: all 0.25s var(--ease);
  position: relative;
}

.service-card:hover {
  border-color: var(--text-on-light);
  transform: translateY(-4px);
}

.card-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--muted-on-light);
  margin-bottom: var(--space-3);
  font-size: 0.97rem;
  flex-grow: 1;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-on-light);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.card-link::after {
  content: '\2192';
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.2s var(--ease);
}

.service-card:hover .card-link {
  color: var(--accent);
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ============ PORTFOLIO STRIP ============ */
.portfolio-strip {
  padding: var(--space-7) 0 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.portfolio-strip .eyebrow,
.cta-band .eyebrow {
  color: var(--accent-mint);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--space-5);
}

.portfolio-grid figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-grid figure:hover img {
  transform: scale(1.06);
}

/* ============ ABOUT TEASER ============ */
.about-teaser {
  padding: var(--space-7) 0;
  background: var(--bg-light);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.about-teaser h2 {
  margin-bottom: var(--space-3);
}

.about-teaser p {
  color: var(--muted-on-light);
  margin-bottom: var(--space-3);
  font-size: 1.02rem;
}

.about-teaser p + p {
  margin-bottom: var(--space-4);
}

.about-stats {
  display: grid;
  gap: var(--space-3);
}

.stat {
  padding: var(--space-3) var(--space-3);
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
}

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-1);
  letter-spacing: -0.025em;
  color: var(--text-on-light);
}

.stat-unit {
  font-size: 0.6em;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.92rem;
  color: var(--muted-on-light);
  font-weight: 500;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: var(--space-7) 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  text-align: center;
}

.cta-band-inner {
  max-width: 720px;
  padding-top: 0;
  padding-bottom: 0;
}

.cta-band h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.cta-band p {
  font-size: 1.15rem;
  color: var(--muted-on-dark);
  margin-bottom: var(--space-5);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-darker);
  color: var(--muted-on-dark);
  padding: var(--space-7) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}

.footer-brand .wordmark {
  color: var(--text-on-dark);
  display: inline-block;
  margin-bottom: var(--space-2);
}

.footer-brand .footer-logo {
  margin-bottom: var(--space-3);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col h4 {
  color: var(--text-on-dark);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.footer-col a {
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: var(--space-3) 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--border-dark);
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero .eyebrow {
  color: var(--accent-mint);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: var(--space-2) 0 var(--space-3);
}

.page-hero .lead {
  font-size: clamp(1.1rem, 1.4vw, 1.2rem);
  color: var(--muted-on-dark);
  max-width: 660px;
  line-height: 1.55;
}

/* ============ SERVICE SECTIONS (alternating) ============ */
.service-section {
  padding: var(--space-7) 0;
  background: var(--bg-light);
}

.service-section:nth-of-type(even) {
  background: var(--bg-card);
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.service-section-reverse .service-section-img-wrap {
  order: 2;
}

.service-section-img-wrap {
  position: relative;
}

.service-section-img-wra