/* ============================================================
   STARAPPLE — BRUTALIST HOMEPAGE
   ============================================================ */

:root {
  --teal:     #214a5f;
  --teal-lt:  #2d6680;
  --purple:   #5b449b;
  --purple-lt:#7b62c4;
  --cream:    #efd7b1;
  --cream-dk: #d4b87a;
  --black:    #0a0a0a;
  --off-black:#111111;
  --white:    #f5f5f0;
  --grey:     #1c1c1c;
  --mid-grey: #333333;
  --border:   #2a2a2a;

  --font-head: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  overflow-x: hidden;
  position: relative;
}

/* ---- IMAGE UTILITY ---- */
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---- NOISE OVERLAY ---- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ---- TYPOGRAPHY UTILITIES ---- */
.mono { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; }
.accent-teal   { color: var(--teal-lt); }
.accent-purple { color: var(--purple-lt); }
.accent-cream  { color: var(--cream); }
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cream-dk);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: var(--black);
  border-bottom: 2px solid var(--border);
  border-right: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-mark {
  font-size: 1.4rem;
  color: var(--purple);
  line-height: 1;
}

.nav-brand {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.nav-brand-star {
  font-weight: 700;
  color: var(--white);
}

.nav-brand-apple {
  font-weight: 300;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 0 1.4rem;
  height: 64px;
  line-height: 64px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--white);
  text-decoration: none;
  border-left: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.nav-links li a:hover { background: var(--grey); color: var(--cream); }

.nav-cta {
  background: var(--cream) !important;
  color: var(--black) !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--cream-dk) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  border-bottom: 3px solid var(--border);
  overflow: hidden;
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
}

/* Ticker */
.hero-ticker {
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  background: var(--off-black);
  padding: 0.65rem 0;
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker-scroll 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--cream-dk);
}

.ticker-track .sep { color: var(--purple-lt); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Body */
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--border);
}

.hero-col-left {
  padding: 5rem 4rem 5rem 4rem;
  border-right: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

/* Diagonal accent line */
.hero-col-left::before {
  content: '';
  position: absolute;
  top: 0; right: -2px;
  width: 4px; height: 40%;
  background: var(--cream);
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--mid-grey);
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-headline .line {
  display: block;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #aaaaaa;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero Right */
.hero-col-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.015) 18px,
    rgba(255,255,255,0.015) 19px
  );
}

.hero-logo-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Corner brackets */
.logo-bracket {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--cream-dk);
  border-style: solid;
  border-width: 0;
}
.logo-bracket.top-left    { top: -16px; left: -16px; border-top-width: 2px; border-left-width: 2px; }
.logo-bracket.top-right   { top: -16px; right: -16px; border-top-width: 2px; border-right-width: 2px; }
.logo-bracket.bottom-left { bottom: -16px; left: -16px; border-bottom-width: 2px; border-left-width: 2px; }
.logo-bracket.bottom-right{ bottom: -16px; right: -16px; border-bottom-width: 2px; border-right-width: 2px; }

.hero-logo-img {
  width: min(340px, 90%);
  filter: drop-shadow(0 0 40px rgba(91, 68, 155, 0.35));
  transition: filter 0.3s;
}
.hero-logo-img:hover {
  filter: drop-shadow(0 0 60px rgba(91, 68, 155, 0.6));
}

.logo-stat-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--border);
  padding: 1rem 1.8rem;
  background: rgba(10, 10, 10, 0.8);
  width: 100%;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.stat-num sup {
  font-size: 0.9rem;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #666;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Bottom */
.hero-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--off-black);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: #444;
}

.scroll-hint {
  color: var(--cream-dk);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--cream);
  transition: background 0.15s, color 0.15s, transform 0.1s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: transparent;
  color: var(--cream);
  transform: translate(-2px, -2px);
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-massive {
  display: inline-block;
  padding: 1.4rem 3.5rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--purple-lt);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.btn-massive:hover {
  background: var(--purple-lt);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--cream-dk);
}

/* ============================================================
   STRIP BLOCK
   ============================================================ */
.strip-block {
  background: var(--teal);
  border-top: 3px solid var(--teal-lt);
  border-bottom: 3px solid var(--teal-lt);
  overflow: hidden;
  padding: 1rem 0;
  transform: skewY(-1.5deg);
  margin: -2px 0;
}
.strip-inner {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  transform: skewY(1.5deg);
  animation: strip-scroll 22s linear infinite;
  padding-left: 3rem;
}
.strip-inner .diamond { color: var(--cream-dk); }

@keyframes strip-scroll {
  0%   { transform: skewY(1.5deg) translateX(0); }
  100% { transform: skewY(1.5deg) translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  position: relative;
  padding: 8rem 4rem;
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  background: var(--off-black);
}

.manifesto-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cream-dk);
  margin-bottom: 1.5rem;
}

.manifesto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.manifesto-head {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.manifesto-head em {
  font-style: normal;
  color: var(--purple-lt);
}

.manifesto-right p {
  color: #999;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.manifesto-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-dk);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.manifesto-link:hover { color: var(--cream-dk); }

.manifesto-slash {
  position: absolute;
  bottom: -2rem;
  right: 3rem;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  font-family: var(--font-mono);
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 4rem;
  border-bottom: 2px solid var(--border);
}

.services-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.services-title {
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--border);
}

.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { z-index: 2; }

.span-2 {
  grid-column: span 2;
  border-top: 1px solid var(--border);
  border-right: none;
}

.card-teal   { background: var(--teal); }
.card-dark   { background: var(--off-black); }
.card-purple { background: var(--purple); }
.card-cream  { background: var(--cream); color: var(--black); }
.card-outline{ background: var(--black); }

.card-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.card-cream .card-num { color: rgba(0,0,0,0.4); }

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,245,240,0.7);
  margin-bottom: 1.5rem;
}
.card-cream p { color: rgba(10,10,10,0.7); }

.card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.card-tags li {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}
.card-cream .card-tags li {
  border-color: rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.6);
}

.card-bg-text {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid var(--border);
  background: var(--off-black);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 4rem 2rem;
  text-align: center;
}

.stat-divider-v {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.big-num {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}

.big-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #555;
  text-transform: uppercase;
}

/* ============================================================
   WORK
   ============================================================ */
.work {
  padding: 7rem 4rem;
  border-bottom: 2px solid var(--border);
}

.work-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.work-header h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 0;
  border: 2px solid var(--border);
}

.work-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.work-card:last-child { border-right: none; }
.work-card:hover { background: var(--grey); }

.wc-tall { grid-row: span 1; background: var(--teal); }
.wc-wide { background: var(--off-black); }
.wc-accent { background: rgba(91, 68, 155, 0.3); }

.wc-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.work-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.work-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,245,240,0.65);
  flex: 1;
}

.wc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.wc-tags span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
}

.wc-result {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.8rem;
  margin-top: 0.5rem;
}

.work-cta {
  margin-top: 3rem;
  display: flex;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 7rem 4rem;
  border-bottom: 2px solid var(--border);
  background: var(--off-black);
  position: relative;
  overflow: hidden;
}

/* Aggressive diagonal line */
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 50%, var(--cream) 100%);
}

.process-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cream-dk);
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: 1px solid var(--border);
}

.process-step {
  flex: 1;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  font-size: 1.5rem;
  color: var(--cream-dk);
  border-right: 1px solid var(--border);
  padding: 3rem 1rem;
  align-self: stretch;
  align-items: center;
}

.ps-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--purple-lt);
  margin-bottom: 1rem;
}

.ps-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ps-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  position: relative;
  padding: 10rem 4rem;
  background: var(--black);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 70vh;
}

.cta-slash-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40vw;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  line-height: 1;
  font-family: var(--font-mono);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 2rem;
  max-width: 800px;
  width: 100%;
}

.cta-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cream-dk);
  text-transform: uppercase;
}

.cta-head {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.cta-head em {
  font-style: normal;
  color: var(--cream);
  -webkit-text-stroke: 1px var(--cream-dk);
}

.cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #777;
  max-width: 500px;
  text-align: left;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #555;
  border: 1px solid var(--border);
  padding: 0.75rem 2rem;
}

.cta-contact-row .separator { color: var(--border); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--off-black);
  border-top: 2px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  padding: 4rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  width: 140px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #444;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer-links-col {
  padding: 4rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links-col:last-child { border-right: none; }

.footer-col-head {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--cream-dk);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
}

.footer-copy { color: #333; }
.footer-build { color: #2a2a2a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .span-2 { grid-column: span 2; }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wc-accent { grid-column: span 2; border-top: 1px solid var(--border); border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; border-right: none; border-bottom: 1px solid var(--border); }
  .manifesto-content { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-body { grid-template-columns: 1fr; }
  .hero-col-left {
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 2px solid var(--border);
  }
  .hero-col-right { padding: 3rem 2rem; }
  .hero-bottom-bar { padding: 0.8rem 2rem; }

  .manifesto { padding: 5rem 2rem; }
  .manifesto-content { grid-template-columns: 1fr; gap: 2.5rem; }

  .services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; border-right: 1px solid var(--border); }
  .service-card { border-bottom: 1px solid var(--border); }

  .stats-band { flex-direction: column; }
  .stat-divider-v { width: 100%; height: 1px; }

  .work { padding: 5rem 2rem; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { border-right: none; border-bottom: 1px solid var(--border); }

  .process { padding: 5rem 2rem; }
  .process-steps { flex-direction: column; }
  .process-arrow { display: none; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }

  .cta-block { padding: 6rem 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-links-col { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1.2rem 2rem; text-align: center; }
  .manifesto-img-panel { min-height: 280px; }
  .wc-photo { height: 180px; }
  .ps-img { height: 120px; }
}

/* ============================================================
   HERO BACKGROUND PHOTO
   ============================================================ */
.hero {
  /* ensure stacking context */
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.08;
  filter: grayscale(100%);
}
/* Ensure hero children sit above bg photo */
.hero-ticker,
.hero-body,
.hero-bottom-bar,
.hero-grid-bg {
  position: relative;
  z-index: 1;
}

/* ============================================================
   MANIFESTO IMAGE PANEL
   ============================================================ */
.manifesto-content {
  /* override to 3 columns on large screens */
  grid-template-columns: 1fr 1fr 1fr;
}

.manifesto-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--border);
}
.manifesto-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) contrast(1.1);
  transition: filter 0.4s, transform 0.4s;
}
.manifesto-img-panel:hover img {
  filter: grayscale(20%) contrast(1.1);
  transform: scale(1.03);
}
.mip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.55) 0%,
    rgba(33,74,95,0.45) 60%,
    rgba(10,10,10,0.8) 100%
  );
  z-index: 1;
}
.mip-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(239,215,177,0.7);
  line-height: 1.8;
}

/* ============================================================
   SERVICE CARD IMAGES
   ============================================================ */
.service-card {
  padding: 0; /* reset — let inner elements control spacing */
}
.card-img {
  position: relative;
  height: 140px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.15) brightness(0.7);
  transition: filter 0.35s, transform 0.35s;
}
.service-card:hover .card-img img {
  filter: grayscale(30%) contrast(1.1) brightness(0.85);
  transform: scale(1.05);
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}
.card-img-overlay--cream {
  background: linear-gradient(180deg, transparent 30%, rgba(239,215,177,0.5) 100%);
}
.card-img--wide { height: 160px; }

/* Re-add inner padding via a wrapper */
.card-num,
.service-card h3,
.service-card p,
.card-tags,
.card-bg-text {
  padding-left: 2rem;
  padding-right: 2rem;
}
.card-num      { padding-top: 1.8rem; }
.card-tags     { padding-bottom: 2rem; }

/* ============================================================
   STATS BAND — BACKGROUND PHOTO
   ============================================================ */
.stats-band {
  position: relative;
}
.stats-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.stats-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.35);
}
.stats-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 10, 0.6);
}
.stats-band .stat-item,
.stats-band .stat-divider-v {
  position: relative;
  z-index: 2;
}

/* ============================================================
   WORK CARDS — PHOTO LAYOUT
   ============================================================ */
.work-card {
  padding: 0;
  flex-direction: column;
  gap: 0;
}
.wc-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.wc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.1) brightness(0.75);
  transition: filter 0.35s, transform 0.35s;
}
.work-card:hover .wc-photo img {
  filter: grayscale(10%) contrast(1.05) brightness(0.85);
  transform: scale(1.04);
}
.wc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33,74,95,0.3) 0%,
    rgba(10,10,10,0.65) 100%
  );
  z-index: 1;
}
.wc-photo-overlay--purple {
  background: linear-gradient(
    180deg,
    rgba(91,68,155,0.4) 0%,
    rgba(10,10,10,0.65) 100%
  );
}
.wc-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

/* ============================================================
   PROCESS STEP IMAGES
   ============================================================ */
.process-step {
  padding: 0;
}
.ps-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.ps-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(75%) contrast(1.1) brightness(0.65);
  transition: filter 0.35s, transform 0.35s;
}
.process-step:hover .ps-img img {
  filter: grayscale(20%) brightness(0.8);
  transform: scale(1.05);
}
.ps-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(17,17,17,0.8) 100%
  );
  z-index: 1;
}
.ps-num,
.ps-title,
.ps-desc {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.ps-num   { padding-top: 1.8rem; }
.ps-desc  { padding-bottom: 2.5rem; }

/* ============================================================
   CTA BACKGROUND PHOTO
   ============================================================ */
.cta-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cta-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.35) saturate(0.8);
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.88) 70%
  );
}
.cta-slash-bg {
  position: absolute;
  z-index: 2;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

/* Responsive image adjustments */
@media (max-width: 1100px) {
  .manifesto-content {
    grid-template-columns: 1fr 1fr;
  }
  .manifesto-img-panel {
    grid-column: span 2;
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .manifesto-content { grid-template-columns: 1fr; }
  .manifesto-img-panel { grid-column: span 1; min-height: 240px; }
  .wc-photo { height: 180px; }
  .ps-img { height: 120px; }
  .card-img { height: 110px; }
}
