/* ============================================================
   RANDZIFY V2 — Editorial / Mercury vibe
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0C0D0E;
  --bg-elev: #16181B;
  --bg-elev-2: #1B1E22;
  --border: #22252A;
  --border-strong: #333740;
  --text: #E8E4DC;
  --text-dim: #B8B4AB;
  --text-muted: #8A8880;
  --text-faint: #55534E;
  --champagne: #89D1EA;
  --champagne-soft: #A8DEF0;
  --cyan: #89D1EA;
  --danger: #C97B6B;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

  --max-w: 1240px;
  --gutter: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   Layout primitives
   ============================================================ */

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.rule { border: 0; border-top: 1px solid var(--border); }

/* Mono eyebrow — the signature */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 1px;
  background: var(--champagne);
}
.eyebrow.no-mark::before { display: none; }
.eyebrow .seq {
  color: var(--champagne);
  font-weight: 500;
}

/* Serif display */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--champagne-soft);
}

/* ============================================================
   Top strip — mono ticker
   ============================================================ */

.top-strip {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  background: var(--bg);
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.top-strip .dot {
  color: var(--champagne);
  margin: 0 10px;
}
.top-strip .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-strip .status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BB37F;
  box-shadow: 0 0 8px rgba(107, 179, 127, 0.6);
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  padding: 22px 0;
  position: sticky;
  top: 0;
  background: rgba(12, 13, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--text);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 5px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-signin {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  transition: color 0.15s ease;
}
.nav-signin:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 100px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: var(--text-muted); }
.btn .arrow { font-size: 16px; margin-top: -1px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; display: block; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 36px; }
.hero h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  margin-bottom: 32px;
  color: var(--text);
}
.hero h1 em { color: var(--champagne-soft); }
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.85) brightness(0.92);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(12,13,14,0.6) 100%),
    linear-gradient(135deg, rgba(184,149,107,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(232, 228, 220, 0.7);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hero-visual-caption span:last-child { color: var(--champagne-soft); }

/* Fallback for when image isn't loaded — subtle texture */
.hero-visual.no-img {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,149,107,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(137,209,234,0.05) 0%, transparent 55%),
    var(--bg-elev);
}
.hero-visual.no-img::before {
  content: 'HERO IMAGE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}

/* ============================================================
   Metric band
   ============================================================ */

.metrics {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.metrics-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.metrics-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.metric-item .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.metric-item .num sup {
  font-size: 20px;
  color: var(--champagne);
  font-weight: 400;
  margin-left: 2px;
  vertical-align: super;
}
.metric-item .cap {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============================================================
   Product sections
   ============================================================ */

.product {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.product-copy .seq-num {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  opacity: 0.95;
}
.product-copy .eyebrow { margin-bottom: 20px; }
.product-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}
.product-copy h2 em {
  font-style: italic;
  color: var(--champagne-soft);
}
.product-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 480px;
}
.product-features {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.product-features li {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-dim);
  gap: 20px;
}
.product-features li .feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  min-width: 36px;
  padding-top: 3px;
}

/* Product visual */
.product-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.85) brightness(0.92);
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(12,13,14,0.5) 100%);
  pointer-events: none;
}
.product-visual .visual-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(232, 228, 220, 0.7);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.product-visual .visual-caption span:last-child { color: var(--champagne-soft); }

.product.reverse .product-grid > *:first-child { order: 2; }
.product.reverse .product-grid > *:last-child { order: 1; }

.product-visual.no-img {
  background:
    radial-gradient(ellipse at 40% 30%, rgba(184,149,107,0.08) 0%, transparent 55%),
    var(--bg-elev);
}
.product-visual.no-img::before {
  content: 'SECTION IMAGE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}

/* ============================================================
   Editorial break — pull quote / manifesto
   ============================================================ */

.manifesto {
  padding: 140px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: var(--bg);
  position: relative;
}
.manifesto .eyebrow { margin-bottom: 40px; }
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 960px;
  margin-bottom: 40px;
}
.manifesto blockquote em {
  font-style: italic;
  color: var(--champagne-soft);
}
.manifesto .attrib {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.manifesto .attrib .sep { color: var(--champagne); margin: 0 12px; }

/* ============================================================
   Principles grid
   ============================================================ */

.principles {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.principles-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 80px;
}
.principles-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.principles-head h2 em { font-style: italic; color: var(--champagne-soft); }
.principles-head p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.principle {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.principle:nth-child(3n) { border-right: none; padding-right: 0; }
.principle:nth-child(3n+1) { padding-left: 0; padding-right: 32px; }
.principle:nth-child(3n+2) { padding-left: 32px; padding-right: 32px; }
.principle:nth-child(3n) { padding-left: 32px; }
.principle .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--champagne);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.principle p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Closing CTA
   ============================================================ */

.close-cta {
  padding: 140px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.close-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.close-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
}
.close-cta h2 em { font-style: italic; color: var(--champagne-soft); }
.close-cta p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 440px;
}
.close-cta-visual {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  position: relative;
}
.close-cta-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.85) brightness(0.9);
}
.close-cta-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(12,13,14,0.5) 100%);
}
.close-cta-visual.no-img {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(184,149,107,0.08) 0%, transparent 55%),
    var(--bg-elev);
}
.close-cta-visual.no-img::before {
  content: 'CLOSING IMAGE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  padding: 80px 0 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.footer-bottom .sep { color: var(--champagne); margin: 0 10px; }

/* ============================================================
   Mobile
   ============================================================ */

@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .top-strip-inner .hide-mobile { display: none; }
  .nav-links, .nav-signin { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .product-grid, .close-cta-inner, .principles-head {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product.reverse .product-grid > *:first-child { order: 1; }
  .product.reverse .product-grid > *:last-child { order: 2; }
  .hero { padding: 60px 0 60px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .product { padding: 80px 0; }
  .product-copy .seq-num { font-size: 64px; }
  .metrics-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .metrics-label {
    grid-column: 1/-1;
    padding-right: 0;
    padding-bottom: 12px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .metric-item .num { font-size: 28px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle,
  .principle:nth-child(3n),
  .principle:nth-child(3n+1),
  .principle:nth-child(3n+2) {
    padding: 32px 0;
    border-right: none;
  }
  .manifesto { padding: 80px 0; }
  .manifesto blockquote { font-size: 32px; }
  .close-cta { padding: 80px 0; }
  .close-cta h2 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand { font-size: 18px; }
}

/* ============================================================
   Page hero (about, services, blog)
   ============================================================ */

.page-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 32px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 1000px;
}
.page-hero h1 em { font-style: italic; color: var(--champagne-soft); }
.page-hero .lede {
  font-size: 20px;
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 300;
  max-width: 640px;
}

/* Two-column editorial */
.two-col {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.two-col-grid .eyebrow { margin-bottom: 24px; }
.two-col h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  position: sticky;
  top: 100px;
}
.two-col h2 em { font-style: italic; color: var(--champagne-soft); }
.two-col-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-weight: 300;
}
.two-col-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--champagne);
}
.two-col-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Timeline */
.timeline {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-head { margin-bottom: 60px; max-width: 640px; }
.timeline-head .eyebrow { margin-bottom: 24px; }
.timeline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.timeline-head h2 em { font-style: italic; color: var(--champagne-soft); }
.timeline-list { list-style: none; border-top: 1px solid var(--border); }
.timeline-list li {
  display: grid;
  grid-template-columns: 160px 1fr 2fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--champagne);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 4px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.timeline-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Services page — detailed sections
   ============================================================ */

.service-detail {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.service-detail-copy .seq-num {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.service-detail-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 32px;
  color: var(--text);
}
.service-detail-copy h2 em { font-style: italic; color: var(--champagne-soft); }
.service-detail-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 500px;
}
.service-detail.reverse .service-detail-inner > *:first-child { order: 2; }
.service-detail.reverse .service-detail-inner > *:last-child { order: 1; }
.spec-list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.spec-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.spec-list li .spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 3px;
}
.spec-list li .spec-value {
  color: var(--text-dim);
  font-weight: 300;
}
.spec-list li .spec-value strong {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   Blog / Journal
   ============================================================ */

.journal {
  padding: 60px 0 120px;
  border-bottom: 1px solid var(--border);
}
.journal-filters {
  display: flex;
  gap: 8px;
  padding: 20px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.journal-filter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.journal-filter:hover { color: var(--text); border-color: var(--border-strong); }
.journal-filter.active {
  color: var(--bg);
  background: var(--text);
  border-color: var(--text);
}

.journal-list { list-style: none; border-top: 1px solid var(--border); }
.journal-list li {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.journal-list li:hover { background: rgba(255,255,255,0.015); }
.journal-list a {
  display: grid;
  grid-template-columns: 120px 1fr 200px 100px;
  gap: 40px;
  padding: 32px 0;
  align-items: center;
}
.journal-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--champagne);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.15s ease;
}
.journal-list li:hover .journal-title { color: var(--champagne-soft); }
.journal-category {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journal-read {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-align: right;
}

/* Article layout */
.article {
  padding: 80px 0 120px;
  border-bottom: 1px solid var(--border);
}
.article-header {
  max-width: 780px;
  margin: 0 auto 60px;
}
.article-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-meta .cat { color: var(--champagne); }
.article-meta .sep { color: var(--text-faint); }
.article h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.article h1 em { font-style: italic; color: var(--champagne-soft); }
.article-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 700px;
}
.article-hero {
  max-width: 1000px;
  margin: 0 auto 60px;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  position: relative;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.85) brightness(0.92);
}
.article-hero.no-img {
  background: radial-gradient(ellipse at 50% 30%, rgba(184,149,107,0.08) 0%, transparent 55%), var(--bg-elev);
}
.article-hero.no-img::before {
  content: 'ARTICLE IMAGE';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
}
.article-body p { margin-bottom: 28px; }
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  margin: 8px 14px 0 0;
  color: var(--champagne);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 48px 0 20px;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 28px;
}
.article-body li { margin-bottom: 12px; }
.article-body blockquote {
  border-left: 2px solid var(--champagne);
  padding-left: 32px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}
.article-body strong { color: var(--text); font-weight: 500; }
.article-body a { color: var(--champagne-soft); border-bottom: 1px solid var(--border-strong); }
.article-body a:hover { color: var(--champagne); }

.article-footer {
  max-width: 720px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.back-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.back-link:hover { color: var(--text); }

/* Mobile fixes for new pages */
@media (max-width: 900px) {
  .page-hero { padding: 60px 0 60px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero .lede { font-size: 17px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col h2 { position: static; }
  .two-col, .timeline, .service-detail, .journal, .article { padding: 60px 0; }
  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-detail-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse .service-detail-inner > *:first-child { order: 1; }
  .service-detail.reverse .service-detail-inner > *:last-child { order: 2; }
  .service-detail-copy .seq-num { font-size: 64px; }
  .spec-list li { grid-template-columns: 1fr; gap: 6px; }
  .journal-list a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .journal-title { font-size: 22px; }
  .journal-read { text-align: left; }
  .article h1 { font-size: 34px; }
  .article-lede { font-size: 17px; }
  .article-body { font-size: 17px; }
  .article-body p:first-of-type::first-letter { font-size: 56px; }
  .article-body blockquote { font-size: 22px; padding-left: 20px; }
}
