/* ============================================
   WEEKONE — Shared Styles
   Brutalist editorial · athletic
   ============================================ */

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

:root {
  --paper: #e9e5d8;
  --paper-2: #dfdac9;
  --ink: #131210;
  --ink-2: #2b2a25;
  --volt: #ccf500;
  --volt-2: #b4d800;
  --red: #ff3b22;
  --blue: #4a9eff;
  --border: 2.5px solid var(--ink);
  --border-thin: 2px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --display: 'Bricolage Grotesque', sans-serif;
  --mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--display);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

::selection { background: var(--volt); color: var(--ink); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper); border-left: var(--border); }
::-webkit-scrollbar-thumb { background: var(--ink); }

a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: var(--paper);
  border-bottom: var(--border);
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -1px;
  text-decoration: none;
  color: var(--ink);
  border-right: var(--border);
}
.logo-mark { width: 14px; height: 14px; background: var(--volt); border: 2px solid var(--ink); transform: rotate(45deg); }
.nav-links { display: flex; align-items: stretch; list-style: none; }
.nav-links li { display: flex; }
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: var(--border);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { background: var(--ink); color: var(--paper); }
.nav-cta { background: var(--volt) !important; color: var(--ink) !important; }
.nav-cta:hover { background: var(--ink) !important; color: var(--volt) !important; }
.nav-cta.active { background: var(--ink) !important; color: var(--volt) !important; }
.mobile-menu-btn { display: none; background: var(--volt); border: none; border-left: var(--border); padding: 0 20px; cursor: pointer; align-items: center; }
.mobile-menu-btn svg { width: 24px; height: 24px; stroke: var(--ink); }

/* mobile dropdown */
.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 998;
  background: var(--paper);
  border-bottom: var(--border);
  display: none;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 28px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: var(--border-thin);
  color: var(--ink);
}
.mobile-nav a:last-child { border-bottom: none; background: var(--volt); }

/* ── MARQUEE ── */
.marquee {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 997;
  background: var(--ink);
  color: var(--volt);
  border-bottom: var(--border);
  overflow: hidden;
  white-space: nowrap;
  height: 40px;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: inline-flex;
  animation: scroll-marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marquee-track span { padding: 0 24px; display: inline-flex; align-items: center; gap: 24px; }
.marquee-track span::after { content: '✦'; color: var(--red); }
@keyframes scroll-marquee { to { transform: translateX(-50%); } }

/* ── SHELL / LAYOUT ── */
.shell { padding-top: 104px; }
.lead { padding: 90px 28px; max-width: 1280px; margin: 0 auto; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.section-tag::before { content: ''; width: 8px; height: 8px; background: var(--volt); }
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: -2px;
  text-transform: uppercase;
}

/* ── PAGE HEADER (interior pages) ── */
.page-head { border-bottom: var(--border); }
.page-head .wrap { padding-top: 70px; padding-bottom: 56px; }
.page-head .crumb {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
}
.page-head .crumb b { color: var(--ink); }
.page-head .crumb span { color: var(--ink-2); }
.page-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 132px);
  line-height: 0.85;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.page-head h1 .mark { background: var(--volt); padding: 0 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.page-head h1 .stroke { -webkit-text-stroke: 2.5px var(--ink); color: transparent; }
.page-head .sub { font-size: 20px; line-height: 1.45; max-width: 560px; margin-top: 30px; font-weight: 500; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 18px 30px;
  border: var(--border);
  background: var(--volt);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  cursor: pointer;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
.btn.ghost { background: var(--paper); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.dark { background: var(--ink); color: var(--volt); }
.btn.dark:hover { background: var(--volt); color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

/* ── HERO (home) ── */
.hero { border-bottom: var(--border); position: relative; overflow: hidden; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 70px 28px 0; position: relative; }
.hero-eyebrow {
  font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow .live {
  width: 9px; height: 9px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,59,34,0.6); animation: ping 1.6s ease-out infinite;
}
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255,59,34,0.5); } 100% { box-shadow: 0 0 0 12px rgba(255,59,34,0); } }
.hero h1 {
  font-family: var(--display); font-weight: 800; font-size: clamp(58px, 13vw, 184px);
  line-height: 0.84; letter-spacing: -4px; text-transform: uppercase; margin-bottom: 36px;
}
.hero h1 .stroke { -webkit-text-stroke: 2.5px var(--ink); color: transparent; display: inline-block; }
.hero h1 .mark { background: var(--volt); padding: 0 12px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-bottom { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; border-top: var(--border); padding: 36px 0; }
.hero-sub { font-size: 20px; line-height: 1.45; max-width: 460px; font-weight: 500; }
.hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hero-note { font-family: var(--mono); font-size: 12px; color: var(--ink-2); font-weight: 700; }

.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--border); }
.stat-cell { padding: 30px 28px; text-align: left; }
.stat-cell:not(:last-child) { border-right: var(--border); }
.stat-cell h3 { font-family: var(--display); font-weight: 800; font-size: clamp(42px, 6vw, 76px); line-height: 1; letter-spacing: -2px; }
.stat-cell p { font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
.stat-cell:nth-child(2) h3 { color: var(--red); }

/* ── SERVICES GRID ── */
.services { border-bottom: var(--border); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; padding: 70px 28px 40px; max-width: 1280px; margin: 0 auto; }
.services-head p { font-family: var(--mono); font-size: 13px; max-width: 280px; font-weight: 700; text-transform: uppercase; line-height: 1.5; text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: var(--border); }
.svc { padding: 40px 28px 48px; position: relative; min-height: 320px; display: flex; flex-direction: column; transition: background 0.15s ease; }
.svc:not(:last-child) { border-right: var(--border); }
.svc:hover { background: var(--volt); }
.svc-num { font-family: var(--mono); font-size: 13px; font-weight: 700; margin-bottom: 30px; }
.svc-icon { margin-bottom: auto; }
.svc-icon svg { width: 40px; height: 40px; stroke: var(--ink); stroke-width: 1.5; fill: none; }
.svc h3 { font-family: var(--display); font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: -0.5px; margin: 24px 0 10px; line-height: 0.95; }
.svc p { font-size: 15px; line-height: 1.45; font-weight: 500; }

/* ── WORK / PORTFOLIO ── */
.portfolio { border-bottom: var(--border); background: var(--paper-2); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: 1280px; margin: 0 auto; padding: 50px 28px; }
.pf { background: var(--paper); border: var(--border); box-shadow: var(--shadow); transition: transform 0.15s ease, box-shadow 0.15s ease; text-decoration: none; color: var(--ink); display: block; }
.pf:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.pf-window { border-bottom: var(--border); }
.pf-bar { background: var(--ink); padding: 9px 12px; display: flex; align-items: center; gap: 6px; }
.pf-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.pf-bar i:nth-child(1) { background: var(--red); }
.pf-bar i:nth-child(2) { background: var(--volt); }
.pf-bar i:nth-child(3) { background: var(--blue); }
.pf-url { margin-left: 10px; font-family: var(--mono); font-size: 10px; color: #999; background: #000; padding: 3px 10px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.demo { aspect-ratio: 4/3.1; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.demo-top { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 22px; position: relative; }
.demo-logo { position: absolute; top: 14px; left: 18px; font-family: var(--display); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.demo-nav { position: absolute; top: 15px; right: 18px; display: flex; gap: 11px; }
.demo-nav span { font-family: var(--mono); font-size: 7px; text-transform: uppercase; opacity: 0.7; letter-spacing: 0.5px; }
.demo-kicker { font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; margin-bottom: 8px; }
.demo-h { font-family: var(--display); font-weight: 800; font-size: 21px; line-height: 0.95; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 14px; }
.demo-btn { font-family: var(--mono); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 14px; border: 1.5px solid currentColor; }
.demo-stats { display: flex; border-top: 1.5px solid rgba(255,255,255,0.12); }
.demo-stats div { flex: 1; padding: 9px 6px; text-align: center; }
.demo-stats div:not(:last-child) { border-right: 1.5px solid rgba(255,255,255,0.12); }
.demo-stats strong { font-family: var(--display); font-weight: 800; font-size: 15px; display: block; }
.demo-stats span { font-family: var(--mono); font-size: 6px; text-transform: uppercase; opacity: 0.6; letter-spacing: 0.5px; }

/* demo themes */
.demo-coach { background: #ece6d8; color: #2a2620; }
.demo-coach .demo-logo, .demo-coach .demo-btn { color: #2a2620; }
.demo-coach .demo-btn { background: #2a2620; color: #ece6d8; border-color: #2a2620; }
.demo-coach .demo-stats { border-top-color: rgba(0,0,0,0.12); }
.demo-coach .demo-stats div:not(:last-child) { border-right-color: rgba(0,0,0,0.12); }

.demo-night { background: #15110c; color: #f0e3cf; }
.demo-night .demo-logo, .demo-night .demo-h .em { color: #e0a33c; }
.demo-night .demo-btn { background: #e0a33c; color: #15110c; border-color: #e0a33c; }

.demo-ugc { background: #efe7e1; color: #3a2e2a; }
.demo-ugc .demo-logo { color: #c4756a; }
.demo-ugc .demo-btn { background: #c4756a; color: #fff; border-color: #c4756a; }
.demo-ugc .demo-stats { border-top-color: rgba(0,0,0,0.1); }
.demo-ugc .demo-stats div:not(:last-child) { border-right-color: rgba(0,0,0,0.1); }

.demo-coffee { background: #2a1d12; color: #f2e4d0; }
.demo-coffee .demo-logo, .demo-coffee .demo-h .em { color: #d99a52; }
.demo-coffee .demo-btn { background: #d99a52; color: #2a1d12; border-color: #d99a52; }

.pf-foot { padding: 22px; display: flex; justify-content: space-between; align-items: center; }
.pf-foot h3 { font-family: var(--display); font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: -0.5px; }
.pf-foot p { font-family: var(--mono); font-size: 10px; text-transform: uppercase; color: var(--ink-2); margin-top: 3px; letter-spacing: 0.5px; }
.pf-tag { font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; background: var(--volt); border: 2px solid var(--ink); padding: 5px 9px; white-space: nowrap; }

/* ── WORK DETAIL ROWS (work page) ── */
.work-row { border-bottom: var(--border); }
.work-row .inner { max-width: 1280px; margin: 0 auto; padding: 60px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.work-row:nth-child(even) .inner .work-visual { order: 2; }
.work-meta .idx { font-family: var(--mono); font-size: 13px; font-weight: 700; margin-bottom: 18px; display: flex; gap: 14px; align-items: center; }
.work-meta .idx .pf-tag { margin: 0; }
.work-meta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(36px, 5vw, 60px); line-height: 0.92; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 18px; }
.work-meta .desc { font-size: 17px; line-height: 1.55; font-weight: 500; margin-bottom: 24px; max-width: 520px; }
.work-meta .built { list-style: none; margin-bottom: 30px; }
.work-meta .built li { font-family: var(--mono); font-size: 13px; padding: 7px 0; border-bottom: var(--border-thin); display: flex; gap: 12px; }
.work-meta .built li::before { content: '→'; font-weight: 700; }
.work-visual .pf { box-shadow: var(--shadow-lg); }

/* ── PROCESS ── */
.process { border-bottom: var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--border); }
.step { padding: 50px 32px 60px; position: relative; }
.step:not(:last-child) { border-right: var(--border); }
.step-num { font-family: var(--display); font-weight: 800; font-size: clamp(80px, 9vw, 130px); line-height: 1; letter-spacing: -4px; -webkit-text-stroke: 2.5px var(--ink); color: transparent; margin-bottom: 24px; transition: color 0.15s; }
.step:hover .step-num { color: var(--volt); }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 12px; }
.step p { font-size: 16px; line-height: 1.5; font-weight: 500; max-width: 300px; }

/* ── PRICING ── */
.pricing { border-bottom: var(--border); background: var(--ink); color: var(--paper); }
.pricing .lead { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pricing .section-tag { background: var(--volt); color: var(--ink); }
.pricing .section-title { color: var(--paper); }
.pricing-left p { font-family: var(--mono); font-size: 14px; line-height: 1.6; margin-top: 24px; color: #c9c4b4; font-weight: 700; text-transform: uppercase; }
.ticket { background: var(--paper); color: var(--ink); border: var(--border); box-shadow: 10px 10px 0 var(--volt); }
.ticket-head { background: var(--volt); border-bottom: var(--border); padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.ticket-price { padding: 30px 28px 24px; border-bottom: 2.5px dashed var(--ink); }
.ticket-price .save { display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: var(--volt); border: 2px solid var(--ink); padding: 4px 10px; margin-bottom: 14px; }
.ticket-price .was { font-family: var(--mono); font-size: 18px; font-weight: 700; color: var(--ink-2); margin-bottom: 2px; }
.ticket-price .was s { text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; }
.ticket-price .amt-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.ticket-price .amt { font-family: var(--display); font-weight: 800; font-size: 78px; line-height: 0.9; letter-spacing: -3px; }
.ticket-price .amt sup { font-size: 32px; vertical-align: top; }
.ticket-price .inr { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -1px; color: var(--ink); }
.ticket-price .sub { font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; margin-top: 10px; }
.stat-cell .stat-inr { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ink-2); margin-top: 2px; }
.ticket ul { list-style: none; padding: 24px 28px; }
.ticket li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 15px; font-weight: 500; }
.ticket li::before { content: '✓'; font-family: var(--mono); font-weight: 700; width: 22px; height: 22px; background: var(--volt); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.ticket .btn { margin: 0 28px 28px; width: calc(100% - 56px); justify-content: center; }

/* ── TESTIMONIALS ── */
.testi { border-bottom: var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--border); }
.quote { padding: 44px 32px 36px; }
.quote:not(:last-child) { border-right: var(--border); }
.quote .mark { font-family: var(--display); font-weight: 800; font-size: 80px; line-height: 0.6; color: var(--volt); -webkit-text-stroke: 2px var(--ink); height: 40px; }
.quote blockquote { font-family: var(--display); font-weight: 500; font-size: 19px; line-height: 1.4; margin: 20px 0 28px; }
.quote-by { display: flex; align-items: center; gap: 14px; border-top: var(--border); padding-top: 18px; }
.quote-av { width: 44px; height: 44px; border: var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 20px; }
.quote:nth-child(1) .quote-av { background: var(--volt); }
.quote:nth-child(2) .quote-av { background: var(--red); color: var(--paper); }
.quote:nth-child(3) .quote-av { background: var(--ink); color: var(--volt); }
.quote-by b { font-family: var(--display); font-weight: 800; font-size: 16px; display: block; text-transform: uppercase; }
.quote-by span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--ink-2); }

/* ── CTA BAND ── */
.cta-band { border-bottom: var(--border); background: var(--volt); }
.cta-band .wrap { padding: 70px 28px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 6vw, 78px); line-height: 0.86; letter-spacing: -3px; text-transform: uppercase; }
.cta-band .btn { background: var(--ink); color: var(--volt); box-shadow: 6px 6px 0 rgba(0,0,0,0.25); }
.cta-band .btn:hover { background: var(--paper); color: var(--ink); }

/* ── CONTACT ── */
.contact { border-bottom: var(--border); }
.contact .lead { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact h2 { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 7vw, 96px); line-height: 0.86; letter-spacing: -3px; text-transform: uppercase; }
.contact h2 .mark { background: var(--volt); padding: 0 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.contact-left p { font-size: 18px; line-height: 1.5; margin-top: 24px; max-width: 380px; font-weight: 500; }
.contact-social { display: flex; gap: 14px; margin-top: 32px; }
.soc { width: 54px; height: 54px; border: var(--border); display: flex; align-items: center; justify-content: center; box-shadow: 4px 4px 0 var(--ink); transition: transform 0.12s, box-shadow 0.12s, background 0.12s; }
.soc:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); background: var(--volt); }
.soc svg { width: 24px; height: 24px; }
.contact-handles { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.contact-handles a { font-family: var(--mono); font-size: 14px; font-weight: 700; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; width: fit-content; border-bottom: 2px solid transparent; transition: border-color 0.15s; }
.contact-handles a:hover { border-bottom-color: var(--ink); }
.contact-handles a::before { content: '→'; }

form { display: flex; flex-direction: column; gap: 16px; }
.field label { font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.field input, .field textarea { width: 100%; background: var(--paper); border: var(--border); padding: 14px 16px; font-family: var(--display); font-size: 16px; font-weight: 500; color: var(--ink); outline: none; transition: box-shadow 0.12s, transform 0.12s; }
.field input::placeholder, .field textarea::placeholder { color: #908b7a; }
.field input:focus, .field textarea:focus { box-shadow: var(--shadow); transform: translate(-2px,-2px); }
.field textarea { resize: vertical; min-height: 110px; }
form .btn { justify-content: center; margin-top: 6px; }

/* ── ABOUT ── */
.about-intro { border-bottom: var(--border); }
.about-intro .lead { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.about-intro .big { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.15; letter-spacing: -1px; }
.about-intro .big .mark { background: var(--volt); padding: 0 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.about-side { border: var(--border); box-shadow: var(--shadow); }
.about-side .card-head { background: var(--ink); color: var(--paper); padding: 18px 24px; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; display: flex; justify-content: space-between; }
.about-side .card-head span:last-child { color: var(--volt); }
.about-side .row { padding: 16px 24px; border-bottom: var(--border-thin); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.about-side .row:last-child { border-bottom: none; }
.about-side .row .k { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--ink-2); }
.about-side .row .v { font-family: var(--display); font-weight: 800; font-size: 17px; text-transform: uppercase; text-align: right; }
.founder { border-bottom: var(--border); background: var(--paper-2); }
.founder .lead { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.founder-photo { border: var(--border); box-shadow: var(--shadow-lg); background: var(--ink); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.founder-photo .initials { font-family: var(--display); font-weight: 800; font-size: 120px; color: var(--volt); -webkit-text-stroke: 2px var(--paper); letter-spacing: -4px; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-photo .badge { position: absolute; bottom: 18px; left: 18px; right: 18px; background: var(--volt); border: var(--border); padding: 10px 14px; font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; display: flex; justify-content: space-between; }
.founder-text .role { font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.founder-text h2 { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 5vw, 68px); line-height: 0.9; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 22px; }
.founder-text p { font-size: 17px; line-height: 1.6; font-weight: 500; margin-bottom: 16px; max-width: 560px; }
.founder-sign { font-family: var(--display); font-weight: 800; font-size: 24px; margin-top: 8px; }

/* values grid */
.values { border-bottom: var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--border); }
.value { padding: 44px 32px; }
.value:not(:last-child) { border-right: var(--border); }
.value .vnum { font-family: var(--mono); font-size: 12px; font-weight: 700; margin-bottom: 24px; }
.value h3 { font-family: var(--display); font-weight: 800; font-size: 24px; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 12px; }
.value p { font-size: 15px; line-height: 1.5; font-weight: 500; }

/* ── SERVICES PAGE DETAIL ── */
.svc-detail { border-bottom: var(--border); }
.svc-detail .inner { max-width: 1280px; margin: 0 auto; padding: 56px 28px; display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px; align-items: start; }
.svc-detail .num { font-family: var(--display); font-weight: 800; font-size: 56px; -webkit-text-stroke: 2px var(--ink); color: transparent; line-height: 0.8; }
.svc-detail h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 48px); line-height: 0.95; letter-spacing: -1px; text-transform: uppercase; }
.svc-detail .body p { font-size: 17px; line-height: 1.6; font-weight: 500; margin-bottom: 18px; }
.svc-detail .body ul { list-style: none; }
.svc-detail .body li { font-family: var(--mono); font-size: 13px; padding: 8px 0; border-bottom: var(--border-thin); display: flex; gap: 12px; }
.svc-detail .body li::before { content: '✓'; font-weight: 700; color: var(--ink); }

/* faq */
.faq { border-bottom: var(--border); }
.faq-item { border-top: var(--border); max-width: 1280px; margin: 0 auto; }
.faq-item:first-of-type { border-top: none; }
.faq-q { padding: 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 20px; }
.faq-q h3 { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); text-transform: uppercase; letter-spacing: -0.5px; }
.faq-q .pm { font-family: var(--display); font-weight: 800; font-size: 36px; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 28px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 30px; }
.faq-a p { font-size: 16px; line-height: 1.6; font-weight: 500; max-width: 720px; }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--paper); overflow: hidden; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; max-width: 1280px; margin: 0 auto; padding: 40px 28px; border-bottom: 2.5px solid #333; }
.footer-top .links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-top .links a { color: var(--paper); text-decoration: none; font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-top .links a:hover { color: var(--volt); }
.footer-credit { font-family: var(--mono); font-size: 12px; color: #8a857a; }
.footer-credit b { color: var(--paper); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 2px solid #3a3a34; display: flex; align-items: center; justify-content: center; color: var(--paper); transition: background 0.15s, color 0.15s, border-color 0.15s; }
.footer-social a:hover { background: var(--volt); color: var(--ink); border-color: var(--volt); }
.footer-social svg { width: 18px; height: 18px; }
.footer-word { font-family: var(--display); font-weight: 800; font-size: clamp(70px, 22vw, 320px); line-height: 0.8; letter-spacing: -5px; color: var(--ink); -webkit-text-stroke: 2px #3a3a34; text-align: center; padding: 30px 0 10px; user-select: none; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; } .rd2 { transition-delay: 0.16s; } .rd3 { transition-delay: 0.24s; } .rd4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc:nth-child(1), .svc:nth-child(2) { border-bottom: var(--border); }
  .svc:nth-child(2) { border-right: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid, .testi-grid, .values-grid { grid-template-columns: 1fr; }
  .step:not(:last-child), .quote:not(:last-child), .value:not(:last-child) { border-right: none; border-bottom: var(--border); }
  .pricing .lead, .contact .lead, .about-intro .lead, .founder .lead { grid-template-columns: 1fr; gap: 40px; }
  .services-head p { text-align: left; }
  .work-row .inner { grid-template-columns: 1fr; gap: 36px; }
  .work-row:nth-child(even) .inner .work-visual { order: 0; }
  .svc-detail .inner { grid-template-columns: 1fr; gap: 24px; }
  .svc-detail .num { font-size: 44px; }
  .founder-photo { max-width: 380px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .logo { border-right: none; }
  .hero-bottom { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-cell:not(:last-child) { border-right: none; border-bottom: var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .svc:not(:last-child) { border-right: none; border-bottom: var(--border); }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }

  /* ── Mobile heading fixes: looser leading + softer tracking so tight
        brutalist headings never collide when they wrap on phones ── */
  .hero h1 { font-size: clamp(42px, 12.5vw, 60px); line-height: 0.96; letter-spacing: -1.5px; margin-bottom: 30px; }
  .hero h1 .stroke { -webkit-text-stroke: 2px var(--ink); }
  .hero h1 .mark { padding: 0 8px; }
  .page-head h1 { font-size: clamp(40px, 11vw, 62px); line-height: 0.96; letter-spacing: -1px; }
  .page-head .sub { font-size: 17px; }
  .section-title { line-height: 0.98; letter-spacing: -1px; }
  .contact h2 { line-height: 0.96; letter-spacing: -1.5px; }
  .contact h2 .mark { padding: 0 8px; }
  .cta-band h2 { line-height: 0.97; letter-spacing: -1px; }
  .work-meta h2 { line-height: 0.98; letter-spacing: -1px; }
  .founder-text h2 { line-height: 0.98; letter-spacing: -1px; }
  .about-intro .big { line-height: 1.2; }
  .step-num { font-size: clamp(72px, 20vw, 110px); letter-spacing: -2px; }
  .footer-word { letter-spacing: -3px; }
  .ticket-price .amt { font-size: 66px; letter-spacing: -2px; }
  .ticket-price .amt sup { font-size: 28px; }
  .lead { padding: 64px 24px; }
  .page-head .wrap { padding-top: 56px; padding-bottom: 44px; }
}
