/* =========================================
   ASHERNASIR.COM — v2 EXTREME EDITION
   Bodoni display + brutalist editorial
   ========================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

:root {
  --ink:        #0a0a09;
  --ink-soft:   #18181a;
  --paper:      #f1ebdd;
  --paper-warm: #e9e1cd;
  --bone:       #d8cdb5;
  --rust:       #c44a2a;
  --rust-deep:  #8a2f17;
  --rust-bright:#e0573a;
  --moss:       #2d4a2a;
  --gold:       #c89a3c;
  --slate:      #6b6660;
  --slate-soft: #8a857d;
  --line:       rgba(10, 10, 9, 0.14);
  --line-mid:   rgba(10, 10, 9, 0.3);
  --line-strong:rgba(10, 10, 9, 0.55);

  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-serif:   'Fraunces', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02", "cv11";
  overflow-x: hidden;
}

::selection { background: var(--rust); color: var(--paper); }

/* ---------- GRAIN + VIGNETTE ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

.vignette {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(10,10,9,0.18) 100%);
}

/* ---------- TOP TICKER ---------- */
.topticker {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--rust);
}

.topticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topticker-track span { display: inline-block; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 28px; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(241, 235, 221, 0.88) 70%, rgba(241, 235, 221, 0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 14px var(--gutter);
  background: rgba(241, 235, 221, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-mark:hover { color: var(--rust); }

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 44px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--rust); }
.nav-links a:hover::after { width: 100%; }

.nav-meta {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(45, 74, 42, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45, 74, 42, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(45, 74, 42, 0.06); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px var(--gutter) 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  color: var(--ink);
  z-index: 0;
}

.hero-svg { width: 100%; height: 100%; }

.hero-sun {
  transform-origin: 1100px 220px;
  animation: sunPulse 6s ease-in-out infinite;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.85; }
}

.contours path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 3s ease-out forwards;
}
.contours path:nth-child(1) { animation-delay: 0.1s; }
.contours path:nth-child(2) { animation-delay: 0.2s; }
.contours path:nth-child(3) { animation-delay: 0.3s; }
.contours path:nth-child(4) { animation-delay: 0.4s; }
.contours path:nth-child(5) { animation-delay: 0.5s; }
.contours path:nth-child(6) { animation-delay: 0.6s; }
.contours path:nth-child(7) { animation-delay: 0.7s; }
.contours path:nth-child(8) { animation-delay: 0.8s; }

@keyframes drawLine { to { stroke-dashoffset: 0; } }

.constellation circle {
  opacity: 0;
  animation: twinkle 0.6s ease forwards;
}
.constellation circle:nth-child(1) { animation-delay: 1.0s; }
.constellation circle:nth-child(2) { animation-delay: 1.1s; }
.constellation circle:nth-child(3) { animation-delay: 1.2s; }
.constellation circle:nth-child(4) { animation-delay: 1.3s; }
.constellation circle:nth-child(5) { animation-delay: 1.4s; }
.constellation circle:nth-child(6) { animation-delay: 1.5s; }
.constellation circle:nth-child(7) { animation-delay: 1.6s; }
.constellation circle:nth-child(8) { animation-delay: 1.7s; }
.constellation line {
  opacity: 0;
  animation: twinkle 0.6s ease forwards;
  animation-delay: 1.8s;
}

@keyframes twinkle { to { opacity: 0.7; } }

/* Massive background word */
.hero-typewash {
  position: absolute;
  left: -2vw;
  bottom: 18vh;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(280px, 32vw, 540px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--rust);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 60px 1fr 260px;
  gap: 40px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
}

.hero-meta-left {
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}

.vert-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--slate);
  text-transform: uppercase;
}

.hero-main { max-width: 760px; }

.hero-eyebrow {
  display: flex; align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.line-tick {
  width: 28px; height: 1px;
  background: var(--rust);
}

/* THE NAME — bodoni moda display, italic accent */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1.1s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.hero-title .word[data-word="1"] {
  animation-delay: 0.4s;
  font-weight: 600;
}

.hero-title .word[data-word="2"] {
  animation-delay: 0.7s;
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  margin-left: 0.08em;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-roles {
  display: flex; align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.85s;
}

.hero-roles .sep { color: var(--rust); font-weight: 700; }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.0s;
}

.hero-sub em {
  font-style: italic;
  color: var(--rust-deep);
  font-weight: 500;
}

.hero-ctas {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.2s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.25s ease;
  position: relative;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-2px);
}

.btn-primary svg { transition: transform 0.25s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid var(--line-mid);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.hero-meta-right {
  display: flex; flex-direction: column;
  gap: 22px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.35s;
}

.meta-block { display: flex; flex-direction: column; gap: 4px; }

.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* Hero marquee */
.hero-marquee {
  position: relative; z-index: 1;
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}

.marquee-track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  align-items: center;
}

.marquee-track .dot {
  color: var(--rust);
  font-size: 14px;
  font-style: normal;
}

/* ---------- SECTION SHELL ---------- */
.section-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.section-label {
  display: flex; align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 28px;
}

.section-label.light { color: rgba(241, 235, 221, 0.62); }

.section-label .dash {
  width: 44px; height: 1px;
  background: var(--line-strong);
}

.section-label.light .dash { background: rgba(241, 235, 221, 0.32); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 80px;
  max-width: 1000px;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}

.section-title.light { color: var(--paper); }

/* ---------- MANIFESTO ---------- */
.manifesto {
  padding: 160px var(--gutter);
  position: relative;
  overflow: hidden;
}

.manifesto::before, .manifesto::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}

.manifesto::before { top: 0; }
.manifesto::after { bottom: 0; }

.manifesto-bigchar {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(400px, 50vw, 800px);
  line-height: 1;
  color: var(--rust);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 40px;
}

.manifesto-text em {
  font-style: italic;
  color: var(--rust);
  font-weight: 500;
}

.manifesto-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--rust-deep);
  font-weight: 500;
  margin-bottom: 56px;
  padding-left: 24px;
  border-left: 2px solid var(--rust);
}

.manifesto-tagline em {
  font-weight: 700;
  color: var(--rust);
}

.manifesto-sig {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--slate);
  text-transform: uppercase;
}

.sig-dot { color: var(--rust); font-size: 7px; }

/* ---------- WORK ---------- */
.work {
  padding: 130px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.work-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.work-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 40px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.24, 1), border-color 0.3s ease;
  display: flex; flex-direction: column;
}

.work-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

/* Corner accents */
.work-card-corner-tl, .work-card-corner-tr, .work-card-corner-bl, .work-card-corner-br {
  position: absolute;
  width: 18px; height: 18px;
  border: 1.5px solid var(--rust);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-card-feature .work-card-corner-tl,
.work-card-feature .work-card-corner-tr,
.work-card-feature .work-card-corner-bl,
.work-card-feature .work-card-corner-br { opacity: 0.6; }

.work-card-corner-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.work-card-corner-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.work-card-corner-bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.work-card-corner-br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.work-card-feature {
  grid-row: span 2;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  min-height: 580px;
  justify-content: flex-end;
}

.work-card-feature:hover {
  background: var(--ink-soft);
  border-color: var(--rust);
}

.work-card-darker {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.work-card-darker:hover {
  border-color: var(--rust);
}

.work-card-bg {
  position: absolute; inset: 0;
  color: var(--rust);
  opacity: 0.55;
  pointer-events: none;
}

.work-card-bg svg { width: 100%; height: 100%; }

.pulse {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: pulseStroke 4s ease-in-out infinite;
}

@keyframes pulseStroke {
  0%   { stroke-dashoffset: 1400; opacity: 0.2; }
  50%  { stroke-dashoffset: 0;    opacity: 0.7; }
  100% { stroke-dashoffset: -1400; opacity: 0.2; }
}

.work-card-content { position: relative; z-index: 1; }

.work-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--bone);
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 500;
}

.work-card-feature .work-tag,
.work-card-darker .work-tag {
  background: var(--rust);
  color: var(--paper);
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.work-desc {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: inherit;
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 540px;
}

.work-card-feature .work-desc {
  font-size: 19px;
  line-height: 1.5;
}

.work-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 235, 221, 0.18);
}

.work-stats li {
  display: flex; flex-direction: column; gap: 4px;
}

.work-stats strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.02em;
}

.work-stats span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 235, 221, 0.55);
}

.work-link {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust-bright);
  padding-top: 18px;
  border-top: 1px solid rgba(241, 235, 221, 0.18);
  transition: color 0.2s, transform 0.2s;
}

.work-link:hover {
  color: var(--paper);
  transform: translateX(4px);
}

.work-meta {
  display: flex; align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.work-card-darker .work-meta {
  border-top-color: rgba(241, 235, 221, 0.18);
}

/* ---------- THINKING ---------- */
.thinking {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.thinking-bg-char {
  position: absolute;
  left: -8vw; bottom: -10vh;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(400px, 55vw, 900px);
  line-height: 0.85;
  color: var(--rust);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.thinking-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
  position: relative;
  z-index: 1;
}

.thought {
  position: relative;
  padding-left: 64px;
}

.thought-num {
  position: absolute;
  left: 0; top: 2px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--rust);
  font-weight: 500;
}

.thought h4 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.thought p {
  font-family: var(--font-serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- PULL QUOTE ---------- */
.pullquote {
  padding: 120px var(--gutter);
  background: var(--rust);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.pullquote-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 320px);
  line-height: 0.7;
  color: rgba(241, 235, 221, 0.18);
  position: absolute;
  top: -40px;
  left: -20px;
  pointer-events: none;
  font-weight: 700;
}

.pullquote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.pullquote-text em {
  font-style: normal;
  font-weight: 700;
  color: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.pullquote-attr {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- NOW (DARK) ---------- */
.now {
  padding: 150px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.now-bg-char {
  position: absolute;
  right: -2vw; top: -4vh;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(300px, 40vw, 600px);
  line-height: 0.85;
  color: var(--rust);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.now .section-title { color: var(--paper); }

.now-timeline {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.now-timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--gutter) + 8px);
  top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--rust), rgba(196, 74, 42, 0.1));
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 52px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: 0; top: 6px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--rust);
}

.timeline-marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rust);
  opacity: 0.55;
}

.timeline-date {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid rgba(196, 74, 42, 0.45);
  font-weight: 500;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.timeline-content p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(241, 235, 221, 0.68);
  max-width: 620px;
}

/* ---------- CREDIBILITY ---------- */
.credibility {
  background: var(--rust);
  color: var(--paper);
  padding: 90px var(--gutter);
  position: relative;
  overflow: hidden;
}

.credibility::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(241, 235, 221, 0.04) 40px, rgba(241, 235, 221, 0.04) 41px);
  pointer-events: none;
}

.cred-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.cred-stat { text-align: center; }

.cred-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.cred-number sup {
  font-size: 0.5em;
  font-weight: 500;
  vertical-align: super;
  margin-left: 4px;
}

.cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.55;
  opacity: 0.85;
}

.cred-divider {
  width: 1px; height: 100px;
  background: rgba(241, 235, 221, 0.32);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg-char {
  position: absolute;
  right: -4vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(400px, 55vw, 900px);
  line-height: 1;
  color: var(--rust);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  font-weight: 400;
}

.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  max-width: 1100px;
  margin: 28px 0 72px;
}

.contact-headline em {
  font-style: italic;
  color: var(--rust);
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  padding: 36px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 160px;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.16, 0.84, 0.24, 1);
  z-index: 0;
}

.contact-card:hover::before { transform: translateY(0); }

.contact-card:hover {
  border-color: var(--ink);
  color: var(--paper);
}

.contact-card > * { position: relative; z-index: 1; }

.contact-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.3s;
}

.contact-card:hover .contact-card-label {
  color: rgba(241, 235, 221, 0.55);
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  word-break: break-word;
}

.arrow-icon {
  position: absolute;
  top: 28px; right: 28px;
  transition: transform 0.3s ease;
}

.contact-card:hover .arrow-icon {
  transform: translate(4px, -4px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 50px var(--gutter);
  position: relative;
  overflow: hidden;
}

.footer-bg-name {
  position: absolute;
  right: -2vw; top: -20%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(180px, 22vw, 320px);
  line-height: 0.8;
  color: var(--rust);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.footer-meta {
  display: flex; align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 235, 221, 0.62);
  flex-wrap: wrap;
}

.footer-meta a { transition: color 0.2s; }
.footer-meta a:hover { color: var(--rust-bright); }

.footer-dot { color: var(--rust); font-size: 7px; }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 0.84, 0.24, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-meta-left { display: none; }
  .hero-meta-right {
    flex-direction: row; flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0; padding-top: 32px;
    gap: 28px 48px;
  }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-feature { grid-row: auto; min-height: 480px; }
  .cred-inner { grid-template-columns: repeat(2, 1fr); gap: 56px 32px; }
  .cred-divider { display: none; }
}

@media (max-width: 720px) {
  .topticker { padding: 5px 0; }
  .topticker-track { font-size: 9px; gap: 36px; }

  .nav {
    top: 22px;
    grid-template-columns: auto 1fr;
    padding: 14px 20px;
    gap: 12px;
  }
  .nav-links { display: none; }
  .nav-meta { font-size: 9px; }

  .hero { padding-top: 130px; min-height: auto; }
  .hero-grid { padding: 24px 0; }
  .hero-typewash { font-size: 240px; left: -8vw; bottom: 30vh; }
  .hero-meta-right { gap: 22px 32px; }
  .meta-value { font-size: 16px; }

  .hero-roles { font-size: 11px; gap: 8px; flex-wrap: wrap; }

  .thinking-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .work-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .pullquote { padding: 80px var(--gutter); }
  .quote-mark { font-size: 140px; top: -20px; left: -10px; }

  .manifesto-bigchar { font-size: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
