:root {
  --paper: #f3ead7;
  --paper-soft: #fff8ea;
  --ink: #17130f;
  --ink-soft: #3d352d;
  --muted: #766b5f;
  --line: rgba(23, 19, 15, .16);
  --line-strong: rgba(23, 19, 15, .32);
  --rust: #e8562d;
  --rust-dark: #b93619;
  --gold: #f4c465;
  --sage: #879b70;
  --night: #111318;
  --cream: #f8f1e1;
  --shadow: 0 30px 80px rgba(23, 19, 15, .18);
  --shadow-hard: 10px 10px 0 rgba(23, 19, 15, .95);
  --radius: 28px;
  --max: 1180px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Space Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(232, 86, 45, .17), transparent 26rem),
    radial-gradient(circle at 92% 7%, rgba(244, 196, 101, .28), transparent 28rem),
    linear-gradient(90deg, rgba(23,19,15,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23,19,15,.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: .12;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--rust-dark); }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-panel { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.2rem, 6vw, 6rem); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 9999;
  background: var(--night);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { left: 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 0 0 1rem;
  color: var(--ink);
}
h1 { font-size: clamp(3.3rem, 9vw, 8.5rem); }
h2 { font-size: clamp(2.3rem, 5.5vw, 5.75rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2.45rem); }
p { margin: 0 0 1rem; }
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--rust-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.kicker span, .eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.hero-lede {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.55;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .78rem 1.1rem;
  border: 2px solid var(--ink);
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(23,19,15,.92); color: inherit; }
.btn-primary { background: var(--rust); color: #fff; border-color: var(--ink); }
.btn-dark { background: var(--night); color: #fff; border-color: var(--night); }
.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.36); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-bottom: 2px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(243, 234, 215, .88);
  backdrop-filter: blur(18px);
  border-color: var(--ink);
  box-shadow: 0 14px 0 rgba(23,19,15,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; min-width: 0; }
.custom-logo { max-height: 58px; width: auto; }
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 950;
  letter-spacing: -.08em;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--rust);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1.02rem; letter-spacing: -.04em; }
.brand-text em { color: var(--muted); font-size: .78rem; font-style: normal; }
.primary-nav { display: flex; align-items: center; gap: .65rem; }
.nav-list { display: flex; align-items: center; gap: .1rem; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  display: inline-flex;
  padding: .62rem .72rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: .88rem;
}
.nav-list a:hover { background: rgba(23,19,15,.08); color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem .92rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
  border: 2px solid var(--ink);
}
.nav-cta:hover { color: #fff; background: var(--rust); }
.menu-toggle { display: none; }
.lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.lab-copy h1 { margin-top: .8rem; max-width: 1000px; }
.portrait-ledger {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}
.portrait-frame {
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: .75rem;
  border-radius: 40px;
  position: relative;
  overflow: visible;
}
.portrait-frame:after {
  content: "";
  position: absolute;
  inset: auto 12% -24px 12%;
  height: 30px;
  background: rgba(23,19,15,.16);
  filter: blur(18px);
  z-index: -1;
}
.portrait-frame img { border-radius: 30px; width: min(430px, 82vw); }
.tilt-a { transform: rotate(-3deg); }
.ledger-card {
  position: absolute;
  width: min(250px, 50vw);
  border: 2px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 1rem;
  border-radius: 24px;
}
.ledger-card strong { display: block; font-size: .75rem; letter-spacing: .12em; color: var(--rust-dark); margin-bottom: .35rem; }
.ledger-card span { display: block; line-height: 1.35; font-weight: 700; }
.ledger-one { top: 8%; left: 0; transform: rotate(5deg); }
.ledger-two { right: 0; bottom: 7%; transform: rotate(-4deg); }
.proof-marquee {
  overflow: hidden;
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-1deg) scale(1.03);
  margin-block: 2rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  min-width: max-content;
  animation: rrs-marquee 28s linear infinite;
  padding: .9rem 1rem;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.02em;
}
.marquee-track i { width: .55rem; height: .55rem; background: var(--rust); border-radius: 50%; display: inline-block; }
@keyframes rrs-marquee { to { transform: translateX(-50%); } }
.section-heading { max-width: 760px; }
.center-heading { text-align: center; margin-inline: auto; }
.center-heading .eyebrow { justify-content: center; }
.split-manifesto {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.manifesto-title { position: sticky; top: 120px; }
.manifesto-grid { display: grid; gap: 1rem; }
.manifesto-card,
.project-card,
.latest-card,
.shelf-intro-card,
.book-category {
  border: 3px solid var(--ink);
  background: var(--paper-soft);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(23,19,15,.92);
}
.manifesto-card { padding: clamp(1.25rem, 3vw, 2rem); }
.manifesto-card .card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 1rem;
}
.large-card { transform: rotate(.8deg); }
.ink-card { background: var(--ink); color: var(--cream); transform: rotate(-.7deg); }
.ink-card h3, .ink-card p { color: inherit; }
.manifesto-card a { color: var(--rust-dark); font-weight: 900; }
.projects-section { background: rgba(255,248,234,.46); border-block: 2px solid var(--line); }
.dossier-grid, .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.project-card { overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.project-card:hover { transform: translate(-3px, -3px) rotate(-.4deg); box-shadow: 13px 13px 0 rgba(23,19,15,.92); }
.project-media {
  min-height: 190px;
  background:
    radial-gradient(circle at 22% 28%, rgba(232,86,45,.75), transparent 34%),
    linear-gradient(135deg, #19140f, #6d3b22);
  border-bottom: 3px solid var(--ink);
  display: grid;
  place-items: center;
}
.project-media img { width: 100%; height: 240px; object-fit: cover; }
.project-media span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  border: 3px solid var(--cream);
  font-size: 2.1rem;
  font-family: var(--serif);
  font-weight: 800;
}
.project-body { padding: 1.2rem; }
.project-tag { color: var(--rust-dark); font-weight: 800; font-size: .83rem; text-transform: uppercase; letter-spacing: .08em; }
.project-body a { font-weight: 900; color: var(--rust-dark); }
.reading-preview-card {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  background: var(--gold);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  border-radius: 40px;
  padding: clamp(1.5rem, 5vw, 3rem);
  transform: rotate(.6deg);
}
.reading-preview-card h2 { max-width: 650px; }
.reading-preview-aside {
  background: var(--paper-soft);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 1.4rem;
}
.writing-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.writing-panel {
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--rust);
  border-radius: 40px;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: sticky;
  top: 120px;
}
.writing-panel h2, .writing-panel p { color: inherit; }
.latest-posts { display: grid; gap: 1rem; }
.latest-card { padding: 1.25rem; }
.latest-card time { display: inline-block; font-size: .78rem; font-weight: 900; color: var(--rust-dark); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; }
.latest-card h3 { font-size: clamp(1.35rem, 2.2vw, 2.1rem); }
.websites-section {
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
    var(--night);
  background-size: 34px 34px;
  color: var(--cream);
  border-top: 3px solid var(--ink);
}
.website-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.website-copy h2, .website-copy p { color: inherit; }
.website-copy .eyebrow { color: var(--gold); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(232,86,45,.18);
}
.build-card {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--cream);
  border-radius: 36px;
  padding: 1.5rem;
  box-shadow: 16px 16px 0 var(--rust);
  transform: rotate(3deg);
}
.browser-dots { display: flex; gap: .4rem; margin-bottom: 1rem; }
.browser-dots span { width: 14px; height: 14px; border-radius: 50%; background: var(--rust); border: 2px solid var(--ink); }
.mini-wireframe { display: grid; gap: .75rem; margin-top: 1.5rem; }
.mini-wireframe span { min-height: 42px; border: 2px solid var(--ink); border-radius: 16px; background: rgba(232,86,45,.12); }
.mini-wireframe span:first-child { min-height: 95px; background: var(--gold); }
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding-bottom: 2rem;
}
.site-footer h2 { color: var(--cream); max-width: 760px; }
.site-footer p { color: rgba(248,241,225,.72); }
.footer-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; font-size: .9rem; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; margin: 0; }
/* Book Club page */
.book-hero { position: relative; overflow: hidden; }
.book-hero:after {
  content: "READ / THINK / ARGUE / BUILD";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 8rem);
  color: rgba(23,19,15,.055);
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}
.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.book-hero h1 em { color: var(--rust-dark); font-style: normal; display: block; }
.book-portrait-panel { position: relative; display: grid; gap: 1.2rem; justify-items: center; }
.book-photo { transform: rotate(2deg); }
.currently-finished {
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--rust);
  border-radius: 28px;
  padding: 1.2rem;
  transform: rotate(-2deg);
}
.currently-finished strong { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.currently-finished p { color: inherit; margin: .5rem 0 0; }
.shelf-intro { padding-top: 2rem; padding-bottom: 0; }
.shelf-intro-card {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 1rem;
  align-items: end;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--rust);
  color: #fff;
}
.shelf-intro-card h2, .shelf-intro-card p { color: inherit; }
.shelf-intro-card .eyebrow { color: var(--cream); }
.reading-library { padding-top: 4rem; }
.book-category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.book-category {
  grid-column: span 6;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}
.book-category:nth-child(3n+1) { transform: rotate(.5deg); }
.book-category:nth-child(3n+2) { transform: rotate(-.45deg); }
.book-category:nth-child(3n+3) { transform: rotate(.25deg); }
.feature-category { grid-column: span 12; }
.small-category { grid-column: span 6; }
.fiction-category { background: var(--gold); }
.book-category-head {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  border-bottom: 2px solid var(--line-strong);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.book-category-head span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-weight: 900;
}
.book-category-head h3 { margin: 0; font-size: clamp(1.55rem, 3.2vw, 2.7rem); }
.book-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.book-category:not(.feature-category) .book-list { columns: 1; }
.book-list li {
  break-inside: avoid;
  padding: .58rem 0;
  border-bottom: 1px dashed rgba(23,19,15,.18);
  font-weight: 750;
  line-height: 1.3;
}
.book-list em {
  display: block;
  margin-top: .12rem;
  font-style: normal;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}
/* Standard content templates */
.site-main:not(.front-page):not(.book-club-page) {
  padding: clamp(2rem, 5vw, 5rem) 0;
}
.content-area,
.entry-content,
.entry-summary { max-width: 860px; margin-inline: auto; }
.entry-title { margin-top: 1rem; }
.entry-content a { color: var(--rust-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.entry-content img { border-radius: 24px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.wp-caption { max-width: 100%; }
.alignwide { max-width: min(calc(100vw - 2rem), 1180px); margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); max-width: none; }
.search-form { display: flex; gap: .5rem; max-width: 620px; }
.search-field {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .85rem 1rem;
  background: var(--paper-soft);
  color: var(--ink);
  font: inherit;
}
.search-submit,
button,
input[type="submit"] {
  border: 2px solid var(--ink);
  background: var(--rust);
  color: #fff;
  border-radius: 999px;
  padding: .85rem 1rem;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 1040px) {
  .nav-cta { display: none; }
  .lab-grid,
  .book-hero-grid,
  .website-grid,
  .writing-layout,
  .split-manifesto,
  .reading-preview-card,
  .footer-grid,
  .shelf-intro-card { grid-template-columns: 1fr; }
  .manifesto-title, .writing-panel { position: relative; top: auto; }
  .portrait-ledger { min-height: 580px; }
  .dossier-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 2px solid var(--ink);
    background: var(--paper-soft);
    color: var(--ink);
    border-radius: 999px;
    padding: .55rem .75rem;
    font-weight: 900;
  }
  .menu-toggle span { display: block; width: 16px; height: 2px; background: currentColor; }
  .menu-toggle b { font-size: .82rem; }
  .primary-nav {
    position: fixed;
    inset: 74px 1rem auto 1rem;
    background: var(--paper-soft);
    border: 3px solid var(--ink);
    box-shadow: 9px 9px 0 var(--ink);
    border-radius: 26px;
    padding: 1rem;
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .nav-list { display: grid; gap: .35rem; }
  .nav-list a { width: 100%; padding: .85rem; }
  .proof-marquee { transform: none; }
  .book-category, .feature-category, .small-category { grid-column: span 12; transform: none !important; }
  .book-list, .book-category:not(.feature-category) .book-list { columns: 1; }
  .dossier-grid, .project-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  .wrap { width: min(calc(100% - 1.1rem), var(--max)); }
  h1 { font-size: clamp(3rem, 17vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 12vw, 3.3rem); }
  .section { padding: 3.5rem 0; }
  .portrait-ledger { min-height: auto; padding: 2rem 0; }
  .ledger-card { position: relative; inset: auto; transform: none; width: 100%; margin-top: 1rem; }
  .portrait-frame { box-shadow: 6px 6px 0 var(--ink); border-radius: 28px; }
  .portrait-frame img { border-radius: 20px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .reading-preview-card, .build-card, .writing-panel, .currently-finished { transform: none; }
}

/* Venture showcase enhancements */
.venture-showcase { padding-top: 4rem; }
.venture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.venture-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,242,230,.98));
  border: 3px solid var(--ink);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
}
.venture-card:nth-child(1) { transform: rotate(-.6deg); }
.venture-card:nth-child(2) { transform: rotate(.55deg); }
.venture-image-link { display: block; }
.venture-image-link img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
}
.venture-content { padding: 1.25rem 1.25rem 1.45rem; }
.venture-tag {
  margin: 0 0 .5rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--rust-dark);
  font-size: .78rem;
}
.venture-content h3 { margin-bottom: .5rem; }
.venture-content p { max-width: 62ch; }
.venture-content a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  font-weight: 900;
}
.venture-content a span { transition: transform .2s ease; }
.venture-content a:hover span { transform: translateX(4px); }
.venture-fpum {
  background: linear-gradient(180deg, #17120f, #241b17 70%, #3b241a);
  color: var(--cream);
}
.venture-fpum h3, .venture-fpum p, .venture-fpum a { color: var(--cream); }
.venture-fpum .venture-tag { color: var(--gold); }
.venture-realty {
  background: linear-gradient(180deg, #fff, #f4f7fb 70%, #edf3fb);
}
.book-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 1040px) {
  .venture-grid { grid-template-columns: 1fr; }
  .venture-card:nth-child(1), .venture-card:nth-child(2) { transform: none; }
}


/* Requested hero type reduction */
.hero-lab .lab-copy h1 {
  font-size: clamp(2.45rem, 5.4vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.055em;
}

/* Build My Website page */
.build-page-hero {
  position: relative;
  overflow: hidden;
}
.build-page-hero:after {
  content: "DESIGN / SEO / STRATEGY / MOBILE";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 7.5rem);
  color: rgba(23,19,15,.055);
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}
.build-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.build-page-copy h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}
.build-page-card {
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 34px;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  box-shadow: 12px 12px 0 var(--rust);
  transform: rotate(1.5deg);
}
.build-page-card h2,
.build-page-card p {
  color: inherit;
}
.build-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}
.build-services-grid article {
  background: var(--paper-soft);
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: 1.2rem;
  box-shadow: 7px 7px 0 var(--ink);
}
.build-services-grid article span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-weight: 900;
  margin-bottom: .8rem;
}
.build-services-grid article h3 {
  margin: 0 0 .45rem;
}
.build-process-section {
  margin-top: 1rem;
}

@media (max-width: 1040px) {
  .build-page-grid,
  .build-services-grid {
    grid-template-columns: 1fr;
  }
  .build-page-card {
    transform: none;
  }
}
@media (max-width: 600px) {
  .hero-lab .lab-copy h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.8rem);
  }
}


/* Contact page and Blog listing */
.contact-hero,
.blog-hero {
  position: relative;
  overflow: hidden;
}
.contact-hero:after {
  content: "CONTACT / STRATEGY / WEBSITES / IDEAS";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 7.5rem);
  color: rgba(23,19,15,.055);
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}
.blog-hero:after {
  content: "ARTICLES / NOTES / STORIES / BUILDS";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 7.5rem);
  color: rgba(23,19,15,.055);
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.contact-card {
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 1.4rem;
  box-shadow: 10px 10px 0 var(--rust);
  transform: rotate(1.2deg);
}
.contact-card strong,
.contact-card p {
  color: inherit;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: .7fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.contact-intro {
  position: sticky;
  top: 110px;
}
.contact-form-card {
  background: var(--paper-soft);
  border: 3px solid var(--ink);
  border-radius: 34px;
  padding: clamp(1rem, 4vw, 2rem);
  box-shadow: 10px 10px 0 var(--ink);
}
.rrs-contact-form {
  display: grid;
  gap: .8rem;
}
.rrs-contact-form label {
  font-weight: 900;
}
.rrs-contact-form input,
.rrs-contact-form select,
.rrs-contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: .9rem 1rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.rrs-contact-form textarea {
  resize: vertical;
}
.form-notice {
  border-radius: 18px;
  padding: .85rem 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.form-notice.success {
  background: #eaf7e6;
  border: 2px solid #3f7a34;
}
.form-notice.error {
  background: #fff2ef;
  border: 2px solid var(--rust);
}
.blog-hero-inner {
  max-width: 980px;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.blog-list-card {
  background: var(--paper-soft);
  border: 3px solid var(--ink);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 7px 7px 0 var(--ink);
}
.blog-card-image {
  display: block;
  border-bottom: 3px solid var(--ink);
}
.blog-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.1rem;
}
.blog-card-body time {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .45rem;
}
.blog-card-body h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  margin-bottom: .5rem;
}
.blog-card-body h2 a,
.read-more-link {
  text-decoration: none;
}
.read-more-link {
  font-weight: 900;
}
.pagination-wrap {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.2rem;
}
.pagination-wrap .page-numbers {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .6rem .9rem;
  background: var(--paper-soft);
  text-decoration: none;
  font-weight: 900;
}
.pagination-wrap .current {
  background: var(--ink);
  color: var(--cream);
}
.no-posts-card {
  background: var(--paper-soft);
  border: 3px solid var(--ink);
  border-radius: 34px;
  padding: 2rem;
  box-shadow: 8px 8px 0 var(--ink);
}

@media (max-width: 1040px) {
  .contact-hero-grid,
  .contact-form-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
  .contact-intro {
    position: relative;
    top: auto;
  }
  .contact-card {
    transform: none;
  }
}


/* Mobile article spacing fix */
@media (max-width: 700px) {
  .blog-page .wrap,
  .single-main .wrap,
  .single-main .wrap-narrow,
  .archive .wrap,
  .search .wrap {
    width: min(calc(100% - 2rem), var(--max));
  }

  .blog-listing-section,
  .single-main .entry-content,
  .single-main .single-footer,
  .single-main .single-hero {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .blog-card-grid {
    gap: 1.25rem;
  }

  .blog-list-card {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .blog-card-body {
    padding: 1.2rem;
  }

  .blog-card-body h2 {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }
}

@media (max-width: 380px) {
  .blog-page .wrap,
  .single-main .wrap,
  .single-main .wrap-narrow,
  .archive .wrap,
  .search .wrap {
    width: min(calc(100% - 1.75rem), var(--max));
  }
}
