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

/* ── TOKENS ── */
:root {
  --ink:    #1A1A1A;
  --bone:   #FAF9F5;
  --slate:  #666666;
  --slate-lt: #999999;
  --red:    #C0392B;
  --red-lt: #e8534220;
  --border: #E2E0D8;
  --card:   #F4F2EC;
  --white:  #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max: 1160px;
  --pad: clamp(24px, 5vw, 64px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.section-label-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--ink);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #333; transform: translateY(-1px); }

.btn-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.active { font-weight: 500; }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--ink); color: var(--bone); }

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  background: var(--ink);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--bone);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,249,245,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bone); }
.footer-copy { font-size: 11px; color: rgba(250,249,245,0.25); letter-spacing: 0.04em; }

/* ── FADE ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HOMEPAGE: HERO ── */
.hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--red); }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 28px; }

/* Reel */
.hero-reel {
  position: relative;
  background: var(--ink);
  border-radius: 4px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.hero-reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1810 0%, #1a0a05 40%, #0d1520 100%);
  opacity: 0.9;
}
.hero-reel-grain {
  position: absolute;
  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='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)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.reel-play {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.reel-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.hero-reel:hover .reel-play-btn {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.reel-play-btn svg { margin-left: 4px; }
.reel-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.reel-annotation {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── HOMEPAGE: SERVICES ── */
.services {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--bone);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--white); }
.service-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.service-card:hover .service-num { color: #D0CEC4; }
.service-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── HOMEPAGE: WORK ── */
.work {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.work-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}
.work-card:hover { border-color: #C0BDB4; transform: translateY(-2px); }
.work-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.work-thumb-film { background: linear-gradient(135deg, #1a0a05 0%, #3d1507 50%, #1a0a05 100%); }
.work-thumb-brand { background: linear-gradient(135deg, #0e1a0a 0%, #1a3d10 50%, #0a1a0e 100%); }
.work-thumb-dark { background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3d 50%, #0d0d1a 100%); }
.work-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.work-card:hover .work-play {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
}
.work-meta { padding: 20px 24px; }
.work-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.work-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.work-intent { font-size: 13px; color: var(--slate); line-height: 1.55; }
.work-footer { margin-top: 36px; text-align: center; }

/* ── HOMEPAGE: POV STRIP ── */
.pov {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
}
.pov-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.pov-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 32px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bone);
  max-width: 680px;
}
.pov-quote span { color: var(--red); font-style: normal; }
.pov-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,249,245,0.4);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(250,249,245,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pov-link:hover { color: var(--bone); border-color: rgba(250,249,245,0.4); }

/* ── HOMEPAGE: ABOUT STRIP ── */
.about-strip {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.about-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--slate);
  overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-text { flex: 1; }
.about-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-title-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.about-bio { font-size: 15px; line-height: 1.7; color: var(--slate); max-width: 560px; margin-bottom: 20px; }
.about-bio strong { color: var(--ink); font-weight: 500; }
.about-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.about-cta:hover { border-color: var(--ink); }

/* ── CONTACT SECTION ── */
.contact {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.contact-sub { font-size: 16px; line-height: 1.7; color: var(--slate); margin-bottom: 28px; }
.contact-direct { font-size: 13px; color: var(--slate); }
.contact-direct a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-direct a:hover { border-color: var(--ink); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-field input,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--ink); }
.form-field textarea { min-height: 100px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--ink);
  border: none;
  border-radius: 2px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  font-family: var(--font-body);
}
.form-submit:hover { background: #333; transform: translateY(-1px); }

/* ── ABOUT PAGE ── */
.page-hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-hero-visual {
  background: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px var(--pad) 64px 64px;
  min-height: calc(100vh - 64px);
  overflow: hidden;
}
.page-hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0a05 0%, #0d0d0d 40%, #0a1020 100%);
}
.page-hero-visual-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}
.page-hero-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 280px);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.page-hero-identity { position: relative; z-index: 2; }
.page-hero-photo {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
  overflow: hidden;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.page-hero-meta { display: flex; flex-direction: column; gap: 10px; }
.meta-row { display: flex; align-items: center; gap: 12px; }
.meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,249,245,0.3);
  min-width: 72px;
}
.meta-value { font-size: 13px; color: rgba(250,249,245,0.65); }
.meta-value strong { color: rgba(250,249,245,0.9); font-weight: 500; }
.page-hero-text {
  padding: 120px 64px 80px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.page-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 480px;
}
.page-hero-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 40px;
}
.page-hero-intro strong { color: var(--ink); font-weight: 500; }
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Numbered sections (About page) */
.page-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.page-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.section-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.section-label-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.section-h {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.prose p { font-size: 16px; line-height: 1.8; color: var(--slate); margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose em { font-style: italic; }
.client-names {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  margin: 36px 0;
  padding-left: 24px;
  border-left: 2px solid var(--red);
}

/* ── TOOL STACK (About page) ── */
.tool-stack-section {
  background: var(--ink);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tool-stack-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.tool-stack-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tool-stack-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,249,245,0.35);
}
.tool-stack-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bone);
  margin-top: 8px;
}
.tool-stack-note { font-size: 13px; color: rgba(250,249,245,0.35); font-style: italic; align-self: flex-end; }
.tool-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.tool-category { padding: 28px; background: rgba(250,249,245,0.02); transition: background 0.2s; }
.tool-category:hover { background: rgba(250,249,245,0.05); }
.tool-cat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.tool-list { display: flex; flex-direction: column; gap: 8px; }
.tool-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(250,249,245,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.18s;
}
.tool-category:hover .tool-item { color: rgba(250,249,245,0.75); }
.tool-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(192,57,43,0.6); flex-shrink: 0; }

/* ── CTA CARD (About / Services) ── */
.cta-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.cta-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-sub { font-size: 16px; line-height: 1.75; color: var(--slate); margin-bottom: 32px; }
.cta-direct { font-size: 13px; color: var(--slate-lt); }
.cta-direct a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.cta-direct a:hover { border-color: var(--ink); }
.cta-right {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.cta-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 20px;
  display: block;
}
.engagement-list { display: flex; flex-direction: column; }
.engagement-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.engagement-item:last-child { border-bottom: none; padding-bottom: 0; }
.engagement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  flex-shrink: 0;
}
.engagement-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.engagement-desc { font-size: 13px; color: var(--slate); line-height: 1.5; }

/* ── WORK PAGE ── */
.page-header {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.page-header-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-header-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 560px;
}
.work-list { padding: 80px 0; }
.work-list-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.work-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.work-list-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.work-list-card:hover { border-color: #C0BDB4; transform: translateY(-2px); }
.work-list-thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-list-body { padding: 28px 28px 32px; }
.work-list-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.work-list-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.work-list-desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── SERVICES PAGE ── */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}
.service-page-card {
  background: var(--bone);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  transition: background 0.2s;
}
.service-page-card:hover { background: var(--white); }
.service-page-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  transition: color 0.2s;
}
.service-page-card:hover .service-page-num { color: #D0CEC4; }
.service-page-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-page-desc { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 20px; }
.service-page-details { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.service-page-detail {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-page-detail::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── WRITING PAGE ── */
.writing-list { padding: 80px 0; }
.writing-list-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.writing-post {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  text-decoration: none;
}
.writing-post:first-child { padding-top: 0; }
.writing-post-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-lt);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.writing-post-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
  transition: color 0.2s;
}
.writing-post:hover .writing-post-title { color: var(--red); }
.writing-post-excerpt { font-size: 14px; color: var(--slate); line-height: 1.6; }
.writing-post-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-top: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-visual { min-height: 420px; padding: 80px var(--pad) 48px; }
  .page-hero-monogram { font-size: 160px; }
  .page-hero-text { padding: 60px var(--pad); border-left: none; border-top: 1px solid var(--border); }
  .page-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-num { font-size: 40px; }
  .tool-categories { grid-template-columns: 1fr; }
  .cta-section-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-list-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .pov-inner { flex-direction: column; gap: 32px; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .service-page-card { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
  .writing-post { grid-template-columns: 1fr; gap: 8px; }
}
