:root {
  --bg: #f5f0e8;
  --surface: rgba(255, 250, 244, 0.78);
  --surface-strong: #fffdf9;
  --surface-soft: rgba(255, 253, 249, 0.54);
  --ink: #1b1714;
  --muted: #6e665c;
  --accent: #b36f49;
  --accent-soft: #e6d4c6;
  --line: rgba(27, 23, 20, 0.09);
  --line-strong: rgba(27, 23, 20, 0.16);
  --shadow: 0 24px 60px rgba(57, 40, 25, 0.08);
  --radius: 28px;
  --radius-large: 38px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(27, 23, 20, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 23, 20, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 4rem;
  position: relative;
}

.homepage .page-shell {
  width: 100%;
  margin: 0;
  overflow-x: clip;
}

.homepage .home-content {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0;
  padding: 1rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  left: 50%;
  width: min(calc(100% - 2rem), var(--max-width));
  transform: translateX(-50%);
}

.homepage .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  width: min(calc(100% - 2rem), var(--max-width));
  transform: translateX(-50%);
  padding: 1.4rem 2rem;
  z-index: 50;
  transition: opacity 180ms ease, transform 180ms ease;
}

.homepage .site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px);
}

body:not(.homepage) main {
  padding-top: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface-strong);
  font-size: 0.9rem;
}

.brand-text {
  letter-spacing: 0.02em;
}

.homepage .brand-mark {
  display: none;
}

.homepage .brand {
  gap: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.homepage .brand-text {
  display: none;
}

.homepage .site-nav a {
  color: rgba(27, 23, 20, 0.72);
}

.homepage .site-nav {
  gap: 2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav-meta {
  display: none;
}

.site-nav-kicker,
.site-nav-note {
  margin: 0;
}

.site-nav-kicker {
  color: rgba(27, 23, 20, 0.44);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav-note {
  max-width: 15rem;
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.site-nav-cta,
.site-nav-social {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.site-nav-cta {
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav-social {
  color: rgba(27, 23, 20, 0.62);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.3rem 0;
  background: var(--ink);
}

.hero,
.section,
.statement-band,
.page-hero,
.chapter-hero {
  margin-top: 2rem;
}

.hero {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-home {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.95fr);
  padding-top: 3.1rem;
}

.hero-home-editorial {
  display: block;
  padding-top: 0;
}

.hero-home-fullbleed {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}

.homepage .hero-home-fullbleed {
  margin-top: 0;
  margin-inline: 0;
  width: 100%;
}

.homepage .hero-stage {
  min-height: clamp(38rem, 56.25vw, 60rem);
  aspect-ratio: 16 / 9;
}

.hero-copy,
.statement-band,
.preview-copy,
.preview-image,
.chapter-card,
.journey-preview,
.closing-panel,
.page-hero,
.reading-column,
.pull-quote,
.chapter-feature,
.journey-content,
.info-card,
.note-slab,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy,
.preview-copy,
.page-hero,
.reading-column,
.info-card,
.contact-card {
  border-radius: var(--radius-large);
}

.statement-band,
.preview-image,
.journey-preview,
.pull-quote,
.note-slab {
  border-radius: var(--radius);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
}

.hero-copy-editorial {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(6rem, 10vw, 8rem) clamp(1.4rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(90deg, rgba(245, 240, 232, 0.96) 0%, rgba(245, 240, 232, 0.84) 26%, rgba(245, 240, 232, 0.42) 44%, rgba(245, 240, 232, 0.08) 62%, rgba(245, 240, 232, 0) 74%),
    linear-gradient(180deg, rgba(250, 246, 240, 0.28), rgba(250, 246, 240, 0.06) 28%, rgba(250, 246, 240, 0) 48%),
    linear-gradient(0deg, rgba(14, 12, 10, 0.42), rgba(14, 12, 10, 0) 28%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-copy-main {
  max-width: min(34rem, 78vw);
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 249, 0.18);
}

.hero-foot-note,
.hero-scroll-link {
  color: rgba(255, 253, 249, 0.9);
}

.hero-foot-note {
  margin: 0;
  max-width: 30rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-scroll-link::after {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(250, 246, 240, 0.4), transparent 18rem),
    #ece7de;
}

.hero-editorial-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-grain-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.17;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.22), rgba(250, 246, 240, 0) 24%),
    linear-gradient(90deg, rgba(250, 246, 240, 0.24), rgba(250, 246, 240, 0) 21%, rgba(250, 246, 240, 0) 72%, rgba(250, 246, 240, 0.16)),
    linear-gradient(0deg, rgba(17, 14, 11, 0.18), rgba(17, 14, 11, 0.04) 18%, rgba(17, 14, 11, 0) 34%);
  pointer-events: none;
}

.hero-editorial-image img,
.hero-editorial-image video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0) contrast(1.04) brightness(1.02);
  transform: scaleX(-1);
}

.homepage .hero-editorial-image img,
.homepage .hero-editorial-image video {
  object-position: 34% center;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  grid-template-rows: 1.2fr 0.8fr;
}

.hero-portrait-card,
.hero-work-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-portrait-card img,
.hero-work-card img,
.preview-image img,
.chapter-card img,
.chapter-feature img,
.page-hero-media img,
.feature-image img,
.inline-image,
.instagram-tile img,
.chapter-hero>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait-card {
  min-height: 29rem;
}

.hero-work-card {
  min-height: 15rem;
}

.eyebrow,
.work-label {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.homepage .hero-copy-editorial .eyebrow {
  margin-bottom: 0.45rem;
  font-size: clamp(0.72rem, 0.64rem + 0.18vw, 0.82rem);
  color: rgba(27, 23, 20, 0.54);
}


.handwritten,
.hero-aside {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-family: "Caveat", cursive;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.97;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

.homepage .hero-copy-editorial h1 {
  max-width: 7ch;
  font-size: clamp(3.9rem, 9vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(27, 23, 20, 0.22);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.28rem;
}

p,
li {
  line-height: 1.72;
}

.hero-role {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-text,
.contact-text,
.preview-copy p,
.reading-column p,
.chapter-card p:last-child,
.chapter-feature-copy p:last-child,
.feature-copy p,
.info-card p:last-child,
.note-slab p,
.statement-band p {
  color: var(--muted);
}

.hero-text {
  margin: 1.4rem 0 0;
  max-width: 40rem;
  font-size: 1.08rem;
}

.hero-text-wide {
  max-width: 42rem;
}

.hero-text-editorial {
  max-width: min(23rem, 32vw);
  margin-top: 0.75rem;
  font-size: clamp(0.92rem, 0.84rem + 0.2vw, 1rem);
  color: rgba(27, 23, 20, 0.68);
}

.hero-aside {
  max-width: 18ch;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  color: #b59a61;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.homepage .hero-aside {
  color: #1b1714; /* Switched to black as requested */
}

.homepage .hero-actions {
  margin-top: clamp(1rem, 1.8vw, 1.35rem);
}

.homepage .button {
  min-height: 3rem;
  padding-inline: clamp(1rem, 1.6vw, 1.15rem);
  font-size: clamp(0.88rem, 0.82rem + 0.16vw, 0.92rem);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #b59a61;
  color: var(--surface-strong);
}

.button-secondary {
  border: 1px solid rgba(27, 23, 20, 0.18);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.56);
}

.statement-band,
.note-slab {
  padding: 1.45rem 1.7rem;
}

.statement-band p,
.note-slab p {
  margin: 0;
  max-width: 60rem;
  font-size: 1.03rem;
}

.statement-band {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 2.75rem 0 0.85rem;
}

.section.note-slab {
  padding: 1.45rem 1.7rem;
}

.section {
  padding: 1.8rem 0 0.6rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.preview-grid,
.feature-split,
.reading-layout,
.contact-page-layout {
  display: grid;
  gap: 1.1rem;
}

.preview-grid-about,
.feature-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.preview-copy,
.preview-image {
  padding: 1.7rem;
}

.preview-image {
  overflow: hidden;
}

.preview-section .section-heading {
  margin-bottom: 1rem;
}

.work-overview-title {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.gallery-section .section-heading {
  margin-bottom: 1.9rem;
}

.journey-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 3.5vw, 2.8rem);
  align-items: start;
  margin-bottom: 1.25rem;
}

.journey-highlight-copy {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding-top: clamp(2rem, 6vw, 4.5rem);
  min-width: 0;
}

.journey-title {
  max-width: none;
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  white-space: normal;
}

.journey-highlight-copy p {
  max-width: min(34rem, 100%);
  margin: 0;
  color: var(--muted);
}

.journey-highlight-media {
  margin: 0;
  overflow: hidden;
  background: #000;
  align-self: start;
  max-width: 32rem;
  justify-self: end;
}

.journey-highlight-media img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1);
}

.home-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(27, 23, 20, 0.1);
  border-radius: 0;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: none;
  overflow: hidden;
}

.gallery-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #efe8de;
  grid-column: span 3;
  aspect-ratio: 4 / 5;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  transition: transform 320ms ease, filter 320ms ease;
  background: #efe8de;
}

.gallery-tile:hover img,
.gallery-tile:focus-within img {
  transform: scale(1.01);
  filter: grayscale(0);
}

.gallery-tile-portrait {
  aspect-ratio: 4 / 5;
}

.gallery-tile-landscape {
  grid-column: span 4;
  aspect-ratio: 16 / 10;
}

.gallery-tile-feature {
  grid-column: span 4;
  aspect-ratio: 4 / 6;
}

.gallery-text-tile {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1.2rem;
  background: #f6f1ea;
  color: var(--ink);
}

.gallery-text-tile p,
.gallery-text-tile span {
  margin: 0;
}

.gallery-text-tile p {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.gallery-text-tile span {
  max-width: 15ch;
  color: rgba(27, 23, 20, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.preview-copy,
.preview-image {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.preview-image img {
  min-height: 34rem;
}

.text-link,
.contact-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.journey-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.3rem;
  margin-top: 0.5rem;
}

.journey-preview article {
  padding: 0 1rem 0 0;
  border-radius: 0;
  background: transparent;
  border-right: 1px solid var(--line);
}

.journey-preview span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
}

.chapter-grid,
.instagram-grid,
.triad-grid {
  display: grid;
  gap: 1rem;
}

.chapter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chapter-card {
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.chapter-card img {
  min-height: 34rem;
}

.chapter-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem 1.3rem 1.3rem;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0), rgba(10, 9, 8, 0.78));
  color: var(--surface-strong);
}

.chapter-card-copy .work-label {
  color: rgba(255, 253, 249, 0.72);
}

.chapter-card-copy p:last-child {
  color: rgba(255, 253, 249, 0.82);
}

.closing-panel {
  display: block;
  padding: 2.5rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.closing-copy {
  max-width: 56rem;
  padding-top: 0;
  display: grid;
  gap: 1rem;
}

.contact-home-section .closing-copy h2 {
  max-width: none;
}

.contact-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  white-space: normal;
}

.contact-home-section .contact-text {
  max-width: min(38rem, 100%);
}

.contact-home-section .closing-actions {
  margin-top: 0.35rem;
}

.page-hero {
  padding: clamp(2rem, 4vw, 3.4rem);
}

.page-hero {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.page-hero p,
.chapter-hero-copy p {
  max-width: 44rem;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.8fr);
  gap: 1.1rem;
}

.page-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-hero {
  align-items: end;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.about-hero .page-hero-copy {
  display: grid;
  align-content: end;
  gap: 0.95rem;
  padding-bottom: clamp(0.75rem, 2vw, 1.75rem);
}

.about-hero .page-hero-copy h1 {
  max-width: 8ch;
}

.about-hero-intro {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-hero-media {
  position: relative;
  min-height: clamp(28rem, 62vw, 44rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-hero-media img {
  object-position: 54% center;
}

.about-hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 0 0 1.2rem;
  color: rgba(255, 253, 249, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, transparent, rgba(13, 11, 10, 0.46) 18%);
}

.reading-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-story {
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
}

.about-story-main {
  max-width: 40rem;
}

.about-story-main p+p {
  margin-top: 1.2rem;
}

.about-story-aside {
  max-width: 25rem;
  margin-left: auto;
  padding-top: clamp(3rem, 10vw, 8rem);
  display: grid;
  gap: 1rem;
}

.about-side-label,
.about-quote-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-story-aside p:not(.about-side-label) {
  margin: 0;
}

.reading-column {
  padding: 1.7rem;
}

.reading-column {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.lead-copy {
  font-size: 1.18rem;
  color: var(--ink);
}

.pull-quote {
  padding: clamp(1.8rem, 5vw, 3.2rem);
}

.pull-quote p {
  margin: 0;
  max-width: 18ch;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.about-page .pull-quote-section {
  margin-top: 0.5rem;
}

.about-page .pull-quote {
  padding: clamp(1.4rem, 4vw, 2.2rem) 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-page .pull-quote p+p {
  margin-top: 0.8rem;
}

.journey-tree {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1rem 0 0 0;
}

.journey-tree::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 2rem;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(27, 23, 20, 0.16), rgba(27, 23, 20, 0.04));
  transform: translateX(-50%);
}

.journey-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.journey-node::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 50%;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(179, 111, 73, 0.12);
  transform: translateX(-50%);
}

.journey-node .journey-year,
.journey-node .journey-content {
  grid-column: 1;
}

.journey-node-right .journey-year,
.journey-node-right .journey-content {
  grid-column: 2;
}

.journey-year {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--muted);
  font-size: 0.9rem;
}

.journey-content {
  padding: 1.1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.journey-node-fade .journey-content,
.journey-node-fade .journey-year {
  opacity: 0.78;
}

.journey-spine {
  position: relative;
  overflow-x: hidden;
  /* Fallback for older Safari */
  overflow-x: clip;
  /* Prevent horizontal scroll from the wide SVG tree */
  /* Remove hardcoded 274rem base height */
  --journey-scale: 1;
  --journey-art-width: clamp(2200px, 240vw, 220rem);
  --journey-art-height: calc((var(--journey-art-width) * 1.5) * var(--journey-scale));
  --journey-art-top: -8rem;
  --journey-art-top-scaled: calc(var(--journey-art-top) * var(--journey-scale));
  --journey-entry-offset: clamp(1.5rem, 5vw, 6.5rem);
  --journey-entry-offset-scaled: calc(var(--journey-entry-offset) * var(--journey-scale));

  /* Restoring original buffer */
  height: calc(var(--journey-art-top-scaled) + (1435 / 1536) * var(--journey-art-height) + 12rem);
  padding: 0;
}

.journey-spine::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(179, 111, 73, 0.08), transparent 15rem),
    radial-gradient(circle at 50% 50%, rgba(179, 111, 73, 0.05), transparent 24rem),
    radial-gradient(circle at 50% 84%, rgba(179, 111, 73, 0.06), transparent 16rem);
  pointer-events: none;
}

.journey-spine-art {
  position: absolute;
  top: var(--journey-art-top-scaled);
  left: 50%;
  z-index: 0;
  width: var(--journey-art-width);
  margin: 0;
  transform: translateX(-50%) scale(var(--journey-scale));
  transform-origin: center top;
  pointer-events: none;
  
  /* Growth Mask: controlled by JS scroll */
  --growth-reveal: 0%;
  
  /* Tightened gradient mask for better visibility and a cleaner reveal */
  mask-image: linear-gradient(to top, 
    black 0%, 
    black calc(var(--growth-reveal) - 8%), 
    transparent var(--growth-reveal)
  );
  -webkit-mask-image: linear-gradient(to top, 
    black 0%, 
    black calc(var(--growth-reveal) - 8%), 
    transparent var(--growth-reveal)
  );
}

.journey-spine-art img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.92;
}

.journey-spine-spots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.journey-spine-spot {
  position: absolute;
  left: 50%;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  border: 1px solid rgba(185, 170, 155, 0.5);
  background: rgba(255, 251, 245, 0.96);
  box-shadow:
    0 0 0 0.38rem rgba(255, 248, 240, 0.94),
    0 0 0 1px rgba(185, 170, 155, 0.18);
  transform: translate(-50%, -50%);
}

.journey-entry-future-1 {
  top: calc(var(--journey-art-top-scaled) + (180 / 1536) * var(--journey-art-height));
}

.journey-entry-future-2 {
  top: calc(var(--journey-art-top-scaled) + (440 / 1536) * var(--journey-art-height));
}

.journey-entry-growing {
  top: calc(var(--journey-art-top-scaled) + (516 / 1536) * var(--journey-art-height));
}

.journey-entry-cinelove {
  top: calc(var(--journey-art-top-scaled) + (677 / 1536) * var(--journey-art-height));
}

.journey-entry-seventyfive {
  top: calc(var(--journey-art-top-scaled) + (844 / 1536) * var(--journey-art-height));
}

.journey-entry-cup {
  top: calc(var(--journey-art-top-scaled) + (1021 / 1536) * var(--journey-art-height));
}

.journey-entry-first-wedding {
  top: calc(var(--journey-art-top-scaled) + (1190 / 1536) * var(--journey-art-height));
}

.journey-entry-film {
  top: calc(var(--journey-art-top-scaled) + (1357 / 1536) * var(--journey-art-height));
}

.journey-entry-camera {
  top: calc(var(--journey-art-top-scaled) + (1435 / 1536) * var(--journey-art-height));
}

.journey-spine-spot::after {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border-radius: 50%;
  background: rgba(159, 145, 132, 0.9);
}

.journey-spine-entry {
  position: absolute;
  z-index: 3;
  /* Use clamp for width to prevent shrinking below readability */
  width: clamp(9.5rem, 40vw, 20rem);
  transform: translateY(-50%);
  /* Removed the hard scale() to keep text crisp */
}

.journey-spine-entry-left {
  right: calc(50% + var(--journey-entry-offset-scaled));
  left: auto;
  transform-origin: right center;
}

.journey-spine-entry-right {
  left: calc(50% + var(--journey-entry-offset-scaled));
  right: auto;
  transform-origin: left center;
}

.journey-spine-entry .journey-year {
  background: rgba(255, 251, 245, 0.94);
}

.journey-spine-entry .journey-content {
  padding-top: 0.9rem;
  border-top-color: rgba(27, 23, 20, 0.08);
}

.journey-spine-entry .journey-content h2 {
  max-width: 10ch;
  font-size: clamp(1.25rem, 3.5vw, 2.2rem);
}

.journey-spine-entry .journey-content p {
  max-width: 18rem;
  font-size: clamp(0.8rem, 2.8vw, 0.95rem);
}

.future-stem {
  opacity: 0.45;
  border-top: 1px dashed var(--line) !important;
}

.future-stem p {
  font-family: "Caveat", cursive;
  font-size: 1.1rem !important;
  color: var(--muted);
}

.journey-spine-entry-fade .journey-year,
.journey-spine-entry-fade .journey-content {
  opacity: 0.78;
}

/* Roots Instruction */
.journey-roots-instruction {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem clamp(1.5rem, 5vw, 3rem) 2rem;
  text-align: center;
  background: transparent;
  border: 0;
}

.instruction-content {
  max-width: 36rem;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.instruction-kicker {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.journey-roots-instruction h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
}

.journey-roots-instruction p {
  max-width: 30rem;
  color: var(--muted);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.6;
}

.scroll-up-prompt {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  animation: bounceUp 2s infinite;
}

.scroll-up-prompt .arrow {
  font-size: 1.4rem;
}

@keyframes bounceUp {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.chapter-stack {
  display: grid;
  gap: 1rem;
}

.building-overview-page .page-shell {
  padding-bottom: 5.5rem;
}

.building-overview-page .page-hero {
  margin-top: 2.8rem;
}

.building-overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: end;
  padding-bottom: clamp(1rem, 2.4vw, 1.6rem);
}

.building-overview-hero-copy {
  display: grid;
  gap: 0.4rem;
}

.building-overview-hero h1 {
  max-width: none;
}

.building-overview-intro {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  justify-self: end;
}

.chapter-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.building-overview-page .chapter-stack {
  gap: 0;
}

.building-overview-page .chapter-feature {
  position: relative;
  grid-template-columns: minmax(20rem, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.4rem, 3.6vw, 3.6rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
  transition: transform 220ms ease;
}

.building-overview-page .chapter-feature:first-child {
  padding-top: clamp(1.1rem, 2.8vw, 1.9rem);
}

.building-overview-page .chapter-feature:last-child {
  border-bottom: 1px solid var(--line);
}

.chapter-feature img {
  min-height: 23rem;
}

.building-overview-page .chapter-feature img {
  min-height: clamp(21rem, 40vw, 28rem);
  border-radius: 24px;
  filter: grayscale(1) contrast(1.04);
  transition: transform 520ms ease, filter 280ms ease;
}

.chapter-feature-copy {
  padding: clamp(1.7rem, 4vw, 3rem) 0;
}

.building-overview-page .chapter-feature-copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  max-width: 33rem;
  padding: 0;
}

.building-overview-page .chapter-feature:nth-child(even) {
  grid-template-columns: minmax(0, 0.98fr) minmax(20rem, 1.02fr);
}

.building-overview-page .chapter-feature:nth-child(even) img {
  order: 2;
}

.building-overview-page .chapter-feature:nth-child(even) .chapter-feature-copy {
  order: 1;
}

.chapter-feature-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.chapter-feature-phase {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.building-overview-page .chapter-feature-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.93;
}

.building-overview-page .chapter-feature-copy p:last-of-type {
  max-width: 30rem;
  margin: 0;
  font-size: 1rem;
}

.chapter-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-feature-link::after {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
  transform-origin: left center;
}

.building-overview-page .chapter-feature:hover,
.building-overview-page .chapter-feature:focus-visible {
  transform: translateY(-3px);
}

.building-overview-page .chapter-feature:hover img,
.building-overview-page .chapter-feature:focus-visible img {
  transform: scale(1.02);
  filter: grayscale(1) contrast(1.06);
}

.building-overview-page .chapter-feature:hover .chapter-feature-link::after,
.building-overview-page .chapter-feature:focus-visible .chapter-feature-link::after {
  transform: scaleX(1.18);
}

.chapter-hero {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.chapter-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.18) 58%, rgba(15, 13, 11, 0.06));
}

.chapter-hero-copy {
  position: absolute;
  z-index: 1;
  inset: auto auto 0 0;
  max-width: 40rem;
  padding: clamp(1.7rem, 5vw, 3.2rem);
  color: var(--surface-strong);
}

.chapter-hero-copy .eyebrow,
.chapter-hero-copy p {
  color: rgba(255, 253, 249, 0.82);
}

.building-from-scratch-page .page-shell {
  width: 100%;
  margin: 0;
}

body.building-from-scratch-page main {
  padding-top: 0;
}

.building-from-scratch-page .site-header {
  left: 50%;
  width: min(calc(100% - 2rem), var(--max-width));
  transform: translateX(-50%);
  z-index: 50;
  transition: opacity 180ms ease, transform 180ms ease;
}

.building-from-scratch-page .site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px);
}

.building-from-scratch-page .brand-text,
.building-from-scratch-page .site-nav a {
  color: var(--ink);
}

.building-from-scratch-page .brand {
  gap: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.building-from-scratch-page .brand-mark {
  display: none;
}

.building-from-scratch-page .menu-toggle span {
  background: var(--ink);
}

.building-from-scratch-page .building-from-scratch-hero {
  margin-top: 0;
}

.building-from-scratch-page .building-from-scratch-hero .hero-stage {
  width: 100%;
  height: auto;
  min-height: clamp(24rem, 42vw, 36rem);
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 1rem);
  background: #111;
}

.building-from-scratch-page .building-from-scratch-hero .hero-editorial-image::after {
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.16), rgba(250, 246, 240, 0) 24%),
    linear-gradient(90deg, rgba(250, 246, 240, 0.08), rgba(250, 246, 240, 0) 22%, rgba(250, 246, 240, 0) 70%, rgba(250, 246, 240, 0.08)),
    linear-gradient(180deg, rgba(12, 11, 10, 0) 36%, rgba(12, 11, 10, 0.16) 62%, rgba(12, 11, 10, 0.78) 100%);
}

.building-from-scratch-page .building-from-scratch-hero .hero-editorial-image img,
.building-from-scratch-page .building-from-scratch-hero .hero-editorial-image video {
  object-position: center top;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(1.04);
  transform: none;
}

.building-from-scratch-page .building-from-scratch-hero .hero-copy-editorial {
  justify-content: flex-end;
  padding: clamp(6rem, 10vw, 8rem) clamp(2.5rem, 6vw, 5rem) clamp(1.6rem, 4vw, 2.8rem);
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.04), rgba(250, 246, 240, 0) 25%, rgba(18, 16, 14, 0.62) 100%);
}

.building-from-scratch-page .building-from-scratch-hero .hero-copy-main {
  max-width: min(38rem, 60vw);
}

.building-from-scratch-page .building-from-scratch-hero .eyebrow,
.building-from-scratch-page .building-from-scratch-hero .hero-text-editorial {
  color: rgba(255, 253, 249, 0.82);
}

.building-from-scratch-page .building-from-scratch-hero h1 {
  max-width: 8ch;
  color: var(--surface-strong);
  font-size: clamp(2.7rem, 4.8vw, 4.3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.building-from-scratch-page .building-from-scratch-hero .hero-aside {
  max-width: 22ch;
  color: #d0b57b;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.building-from-scratch-page .building-from-scratch-hero .hero-text-editorial {
  max-width: 26rem;
  font-size: 0.94rem;
  line-height: 1.6;
}

.cinelove-chapter-page .page-shell {
  width: 100%;
  margin: 0;
}

body.cinelove-chapter-page main {
  padding-top: 0;
}

.cinelove-chapter-page .site-header {
  left: 50%;
  width: min(calc(100% - 2rem), var(--max-width));
  transform: translateX(-50%);
  z-index: 50;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cinelove-chapter-page .brand-text,
.cinelove-chapter-page .site-nav a {
  color: var(--ink);
}

.cinelove-chapter-page .brand {
  color: var(--ink);
}

.cinelove-chapter-page .brand-mark {
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
}

.cinelove-chapter-page .menu-toggle span {
  background: var(--ink);
}

.cinelove-chapter-page .cinelove-chapter-hero {
  margin-top: 0;
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-stage {
  min-height: 100vh;
  background: #e8e3dc;
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-editorial-image {
  z-index: 0;
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-editorial-image::after {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.26), rgba(8, 7, 6, 0.06) 24%, rgba(8, 7, 6, 0) 40%),
    linear-gradient(90deg, rgba(10, 9, 8, 0.14), rgba(10, 9, 8, 0) 22%, rgba(10, 9, 8, 0.02) 70%, rgba(10, 9, 8, 0.16)),
    linear-gradient(180deg, rgba(12, 11, 10, 0.04) 18%, rgba(12, 11, 10, 0.28) 52%, rgba(12, 11, 10, 0.88) 100%);
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-editorial-image img {
  object-position: center center;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  transform: scaleX(-1);
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-copy-editorial {
  z-index: 3;
  justify-content: flex-start;
  padding: clamp(7rem, 10vw, 8.4rem) clamp(1.4rem, 4vw, 3rem) clamp(2rem, 4vw, 2.8rem);
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.04), rgba(250, 246, 240, 0) 28%, rgba(18, 16, 14, 0.7) 100%);
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-copy-main {
  max-width: min(36rem, 82vw);
}

.cinelove-chapter-page .cinelove-chapter-hero .eyebrow,
.cinelove-chapter-page .cinelove-chapter-hero .hero-text-editorial {
  color: rgba(255, 253, 249, 0.82);
}

.cinelove-chapter-page .cinelove-chapter-hero h1 {
  max-width: 11ch;
  color: var(--surface-strong);
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.cinelove-chapter-page .cinelove-chapter-hero .hero-text-editorial {
  max-width: 28rem;
  margin-top: 0.9rem;
  font-size: 0.96rem;
  line-height: 1.62;
}

.cinelove-chapter-page .section:not(.cinelove-chapter-hero) {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.building-from-scratch-page .section:not(.building-from-scratch-hero) {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.building-from-scratch-page .reading-layout,
.building-from-scratch-page .feature-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.ideas-beyond-page .feed-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.feed-placeholder {
  position: relative;
  background: var(--ink);
  transition: transform 400ms ease;
  overflow: hidden;
}

.feed-item:hover .feed-placeholder {
  transform: scale(0.98);
}

.play-icon-small {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 1px;
}

.play-icon-small::after {
  border-width: 6px 0 6px 10px;
}

.feed-info {
  display: grid;
  gap: 0.25rem;
}

.feed-info .work-label {
  font-size: 0.65rem;
}

.feed-info h3 {
  font-size: 1rem;
  font-weight: 500;
}

.building-from-scratch-page .feature-image {
  aspect-ratio: 4 / 3;
}

.building-from-scratch-page .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.building-social-section {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.building-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.building-social-tile {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #ebe5dc;
}

.building-social-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.building-social-tile {
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 340ms ease;
}

.building-social-tile:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(57, 40, 25, 0.12);
  z-index: 2;
}

.reading-column em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.05em;
}

.building-from-scratch-page .section-heading h2 {
  max-width: none;
}

.building-return {
  margin-top: 8rem;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.return-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.building-return .text-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--muted);
  transition: all 240ms ease;
  opacity: 0.72;
}

.building-return .text-link:hover {
  opacity: 1;
  color: var(--ink);
  transform: translateY(-2px);
}

.next-link {
  text-align: right;
  align-items: flex-end;
}

.next-link span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.next-link strong {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

@media (max-width: 1400px) {
  .building-from-scratch-page .building-from-scratch-hero .hero-stage {
    min-height: clamp(28rem, 48vw, 38rem);
    aspect-ratio: 16 / 10;
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-copy-editorial {
    padding: clamp(5.8rem, 7vw, 6.8rem) clamp(1.2rem, 3vw, 2.2rem) clamp(1.3rem, 2.4vw, 1.8rem);
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-copy-main {
    max-width: min(24rem, 40vw);
  }

  .building-from-scratch-page .building-from-scratch-hero h1 {
    max-width: 7ch;
    font-size: clamp(2.2rem, 4.1vw, 3.6rem);
  }
}

.feature-image {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.feature-copy {
  padding: 1.2rem 0.5rem;
}

.feature-split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.case-study-panel,
.lesson-grid {
  padding-top: 2.2rem;
}

.cinelove-chapter-page .cinelove-role-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.cinelove-chapter-page .cinelove-role-item {
  padding: 0 1rem 0 0;
  border-right: 1px solid var(--line);
}

.cinelove-chapter-page .cinelove-role-item:nth-child(3n) {
  border-right: 0;
}

.cinelove-chapter-page .cinelove-role-item h3 {
  margin-bottom: 0.5rem;
}

.cinelove-chapter-page .cinelove-role-item p:last-child {
  margin: 0;
  color: var(--muted);
}

.cinelove-chapter-page .section-heading h2 {
  max-width: none;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 0.92;
}

.cinelove-chapter-page .section-heading>p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.cinelove-chapter-page .cinelove-case-figure {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.cinelove-chapter-page .cinelove-case-figure-boards {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  align-content: start;
}

.cinelove-chapter-page .cinelove-case-figure figcaption {
  margin: 0;
  color: rgba(27, 23, 20, 0.56);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.cinelove-chapter-page .cinelove-case-figure-boards .inline-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.cinelove-chapter-page .cinelove-process-gallery {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.cinelove-chapter-page .cinelove-process-gallery-wedding {
  align-self: start;
  margin-top: clamp(1.2rem, 3vw, 2.4rem);
}

.cinelove-chapter-page .cinelove-process-gallery-viewport {
  grid-column: 2;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cinelove-chapter-page .cinelove-process-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.cinelove-chapter-page .cinelove-process-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
}

.cinelove-chapter-page .cinelove-process-slide {
  scroll-snap-align: start;
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.cinelove-chapter-page .cinelove-process-image-frame {
  display: grid;
  justify-items: center;
  align-items: start;
  height: clamp(26rem, 48vw, 38rem);
  overflow: hidden;
  border-radius: 18px;
}

.cinelove-chapter-page .cinelove-process-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
  transition: width 220ms ease, height 220ms ease;
}

.cinelove-chapter-page .cinelove-process-slide figcaption {
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(27, 23, 20, 0.6);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.cinelove-chapter-page .cinelove-process-image-frame.is-zoomed {
  display: block;
  overflow: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cinelove-chapter-page .cinelove-process-image-frame.is-zoomed::-webkit-scrollbar {
  display: none;
}

.cinelove-chapter-page .cinelove-process-slide img.is-zoomed {
  cursor: zoom-out;
  max-width: none;
  max-height: none;
}

.cinelove-chapter-page .cinelove-gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(27, 23, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(57, 40, 25, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.cinelove-chapter-page .cinelove-gallery-arrow:hover,
.cinelove-chapter-page .cinelove-gallery-arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 253, 249, 0.98);
}

.cinelove-chapter-page .cinelove-gallery-arrow-prev {
  grid-column: 1;
}

.cinelove-chapter-page .cinelove-gallery-arrow-next {
  grid-column: 3;
}

.cinelove-chapter-page .cinelove-gallery-arrow span {
  font-size: 1rem;
  line-height: 1;
}

.inline-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.triad-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 0 1rem 0 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 0 0 1.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-link {
  margin-top: 0;
  font-size: 1.15rem;
}

.instagram-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.instagram-tile {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.instagram-tile img {
  aspect-ratio: 1 / 1.05;
}

.contact-page .page-hero {
  max-width: 52rem;
  padding-top: clamp(1rem, 3vw, 2rem);
}

.contact-page .page-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-intro {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.contact-page .contact-page-layout {
  max-width: 54rem;
  gap: 2.2rem;
  padding-top: 2rem;
}

.contact-page .contact-card {
  padding-bottom: 1.25rem;
}

.contact-page .contact-card-primary {
  min-width: 0;
}

.contact-page .contact-card-secondary {
  opacity: 0.9;
}

.contact-page .contact-link {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.contact-card-note {
  max-width: 23rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.contact-page .instagram-preview {
  max-width: 40rem;
  margin-inline: auto;
  padding-top: 3.4rem;
}

.instagram-signature {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  justify-items: center;
  text-align: center;
}

.instagram-signature h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.instagram-signature-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.instagram-signature-link:hover,
.instagram-signature-link:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
}

.instagram-still {
  display: block;
  overflow: hidden;
  background: rgba(27, 23, 20, 0.04);
}

.instagram-still img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.94;
}

.instagram-still:hover img,
.instagram-still:focus-visible img {
  filter: grayscale(0.15);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 150ms;
}

.reveal-delay-2 {
  transition-delay: 300ms;
}

.reveal-delay-3 {
  transition-delay: 450ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-roots-page .journey-spine.reveal,
.journey-roots-page .journey-spine.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {

  .hero-home,
  .page-hero-split,
  .preview-grid-about,
  .feature-split,
  .chapter-feature,
  .triad-grid,
  .contact-page-layout,
  .instagram-grid,
  .chapter-grid,
  .reading-layout {
    grid-template-columns: 1fr;
  }

  .homepage .chapter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chapter-feature img,
  .chapter-card img {
    min-height: 18rem;
  }

  .homepage .chapter-card img {
    min-height: clamp(24rem, 34vw, 30rem);
  }

  .building-overview-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .building-overview-intro {
    max-width: 100%;
    justify-self: start;
  }

  .building-overview-page .chapter-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 0;
  }

  .building-overview-page .chapter-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .building-overview-page .chapter-feature:nth-child(even) img,
  .building-overview-page .chapter-feature:nth-child(even) .chapter-feature-copy {
    order: initial;
  }

  .building-overview-page .chapter-feature img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    width: 100%;
    display: block;
  }

  .building-overview-page .chapter-feature-copy {
    max-width: 100%;
    padding: 0.5rem 0;
  }

  .building-overview-page .chapter-feature-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    max-width: 100%;
  }

  .building-overview-page .chapter-feature-copy p:last-of-type {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .building-from-scratch-page .reading-layout,
  .building-from-scratch-page .feature-split,
  .building-from-scratch-page .building-social-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-stage {
    min-height: clamp(22rem, 50vw, 32rem);
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-copy-main {
    max-width: min(24rem, 48vw);
  }

  .homepage .hero-stage {
    min-height: clamp(34rem, 68vw, 46rem);
    aspect-ratio: 16 / 10;
  }

  .homepage .hero-copy-editorial {
    padding:
      clamp(6rem, 9vw, 7rem) clamp(1.15rem, 3vw, 1.8rem) clamp(1.2rem, 2.2vw, 1.6rem);
  }

  .homepage .hero-copy-main {
    max-width: min(28rem, 48vw);
  }

  .homepage .hero-copy-editorial h1 {
    font-size: clamp(3.8rem, 8.4vw, 6.4rem);
  }

  .homepage .hero-text-editorial {
    max-width: min(22rem, 34vw);
  }

  .building-social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cinelove-chapter-page .cinelove-role-highlights {
    grid-template-columns: 1fr;
  }

  .cinelove-chapter-page .cinelove-role-item {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cinelove-chapter-page .cinelove-role-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .cinelove-chapter-page .reading-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: start;
  }

  .cinelove-chapter-page .cinelove-process-image-frame {
    height: clamp(18rem, 44vw, 28rem);
  }

  .cinelove-chapter-page .cinelove-process-slide img {
    height: auto;
    max-height: 100%;
  }

  .cinelove-chapter-page .cinelove-gallery-arrow {
    width: 2.7rem;
    height: 2.7rem;
  }

  .cinelove-chapter-page .cinelove-process-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .cinelove-chapter-page .cinelove-process-gallery-wedding {
    margin-top: 0;
  }

  .cinelove-chapter-page .cinelove-process-gallery-viewport {
    grid-column: 1;
    grid-row: 1;
  }

  .cinelove-chapter-page .cinelove-gallery-arrow-prev,
  .cinelove-chapter-page .cinelove-gallery-arrow-next {
    grid-column: 1;
    grid-row: 2;
  }

  .cinelove-chapter-page .cinelove-gallery-arrow-prev {
    justify-self: start;
  }

  .cinelove-chapter-page .cinelove-gallery-arrow-next {
    justify-self: end;
  }

  .chapter-card-copy {
    padding-top: 5rem;
  }

  .homepage .chapter-card-copy {
    padding: clamp(4.2rem, 8vw, 5.2rem) clamp(1rem, 2.2vw, 1.2rem) clamp(1rem, 2vw, 1.2rem);
  }

  .closing-panel {
    display: grid;
    justify-content: stretch;
  }

  .closing-copy {
    padding-top: 0;
  }

  .work-overview-section .section-heading h2,
  .contact-home-section .closing-copy h2 {
    max-width: none;
  }

  .journey-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage .journey-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.8vw, 1rem);
    padding: clamp(1rem, 2vw, 1.2rem);
  }

  .journey-preview article,
  .info-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
  }

  .homepage .journey-preview article {
    padding-right: clamp(0.5rem, 1.2vw, 0.85rem);
    padding-bottom: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .homepage .journey-preview article:last-child {
    border-right: 0;
  }

  .hero-stage {
    min-height: 100vh;
  }

  .homepage .journey-highlight {
    grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.95fr);
    gap: clamp(1.2rem, 2.8vw, 2rem);
  }

  .homepage .journey-highlight-copy {
    padding-top: clamp(1rem, 3vw, 2rem);
  }

  .homepage .journey-title {
    font-size: clamp(2.9rem, 5.8vw, 4.6rem);
  }

  .homepage .journey-highlight-copy p {
    max-width: min(30rem, 100%);
  }

  .homepage .journey-highlight-media {
    max-width: 100%;
  }

  .journey-highlight {
    grid-template-columns: 1fr;
  }

  .journey-highlight-copy {
    padding-top: 0;
  }

  .about-story-aside {
    max-width: none;
    margin-left: 0;
    padding-top: 0;
  }



}

@media (max-width: 900px) {
  .site-header {
    left: 0;
    width: 100%;
    transform: none;
    padding: 1rem;
  }

  .homepage .site-header,
  .building-from-scratch-page .site-header,
  .cinelove-chapter-page .site-header {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
  }

  .site-header.is-hidden {
    transform: translateY(-18px);
  }

  .homepage .site-header.is-hidden,
  .building-from-scratch-page .site-header.is-hidden,
  .cinelove-chapter-page .site-header.is-hidden {
    transform: translateY(-18px);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: start;
    justify-content: stretch;
    gap: 1.75rem;
    padding:
      max(7.25rem, env(safe-area-inset-top, 0px) + 6rem) 1.2rem max(1.5rem, env(safe-area-inset-bottom, 0px) + 1rem);
    background:
      linear-gradient(180deg, rgba(250, 246, 240, 0.98), rgba(245, 240, 232, 0.98)),
      radial-gradient(circle at top left, rgba(179, 111, 73, 0.1), transparent 20rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.2rem);
    transition: opacity 220ms ease, transform 220ms ease;
    overflow-y: auto;
    box-shadow: none;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .menu-toggle span {
    transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav-links {
    display: grid;
    align-content: start;
    gap: 0.2rem;
  }

  .site-nav-links a {
    width: fit-content;
    color: var(--ink);
    font-family: "DM Serif Display", serif;
    font-size: clamp(2.3rem, 8vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

  .site-nav-meta {
    display: grid;
    align-content: start;
    gap: 0.8rem;
    margin-top: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 23, 20, 0.1);
  }

  .site-nav-cta {
    display: none;
  }

  .site-header.is-open .site-nav-links a,
  .site-header.is-open .site-nav-note,
  .site-header.is-open .site-nav-kicker,
  .site-header.is-open .site-nav-social {
    color: var(--ink);
  }

  .cinelove-chapter-page .site-header {
    background: transparent;
    backdrop-filter: none;
  }

  .cinelove-chapter-page .brand,
  .cinelove-chapter-page .brand-text {
    color: rgba(255, 253, 249, 0.96);
  }

  .cinelove-chapter-page .menu-toggle span {
    background: rgba(255, 253, 249, 0.96);
  }

  .hero-copy-editorial {
    justify-content: flex-end;
    padding: 8rem 1.2rem 1.4rem;
    background:
      linear-gradient(180deg, rgba(250, 246, 240, 0.12), rgba(250, 246, 240, 0.04) 34%, rgba(18, 16, 14, 0.58) 100%);
  }

  .homepage .hero-stage {
    min-height: clamp(32rem, 84vw, 42rem);
    aspect-ratio: 4 / 5;
  }

  .homepage .hero-copy-editorial {
    padding:
      clamp(6.2rem, 12vw, 7.4rem) clamp(1rem, 3vw, 1.4rem) clamp(1rem, 2.8vw, 1.3rem);
  }

  .homepage .hero-copy-main {
    max-width: min(24rem, 82vw);
  }

  .homepage .hero-copy-editorial h1 {
    max-width: 6.5ch;
    font-size: clamp(3.4rem, 11vw, 5.4rem);
    color: rgba(255, 253, 249, 0.92);
  }

  .homepage .hero-text-editorial {
    max-width: min(23rem, 88vw);
    font-size: clamp(0.92rem, 0.84rem + 0.3vw, 1rem);
  }

  .hero-copy-editorial .eyebrow,
  .hero-copy-editorial .hero-role {
    color: rgba(255, 253, 249, 0.82);
  }

  .hero-copy-editorial h1 {
    color: var(--surface-strong);
  }

  .hero-copy-editorial .hero-text-editorial {
    color: rgba(255, 253, 249, 0.82);
  }

  .hero-copy-editorial .hero-aside {
    color: #d0b57b;
  }

  .homepage .brand-text {
    display: none; /* Removed for redundancy with hero h1 */
  }

  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy-editorial .button-secondary {
    color: var(--surface-strong);
    border-color: rgba(255, 253, 249, 0.24);
    background: rgba(255, 253, 249, 0.08);
  }

  .homepage .journey-highlight {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.82fr);
    align-items: start;
  }

  .homepage .chapter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .homepage .chapter-card img {
    min-height: clamp(20rem, 36vw, 24rem);
  }

  .homepage .journey-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage .journey-preview article:nth-child(2n) {
    border-right: 0;
  }

  .homepage .journey-preview article:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .journey-tree::before {
    left: 0.7rem;
    transform: none;
  }

  .journey-node {
    grid-template-columns: 1fr;
    padding-left: 2.25rem;
  }

  .journey-node::before {
    left: 0.7rem;
    transform: none;
  }

  .journey-node .journey-year,
  .journey-node .journey-content,
  .journey-node-right .journey-year,
  .journey-node-right .journey-content {
    grid-column: 1;
  }

}

@media (max-width: 720px) {
  .cinelove-chapter-page .reading-layout {
    grid-template-columns: 1fr;
  }

  .cinelove-chapter-page .cinelove-process-image-frame {
    height: clamp(16rem, 72vw, 24rem);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .homepage .page-shell {
    width: 100%;
  }

  .homepage,
  .homepage main,
  .homepage .hero-home-fullbleed,
  .homepage .hero-stage {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    padding: 1rem;
  }

  .site-nav {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-nav-links a {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-copy-editorial {
    justify-content: flex-end;
    padding: 6.5rem 1rem 1rem;
  }

  .hero-copy-main {
    max-width: 100%;
  }

  .hero-editorial-image img,
  .hero-editorial-image video {
    object-position: 62% center;
  }

  .homepage .hero-editorial-image img,
  .homepage .hero-editorial-image video {
    object-position: 28% center;
  }

  .hero-foot-note {
    max-width: 22rem;
    font-size: 0.88rem;
  }

  .hero-copy-editorial .hero-actions {
    width: 100%;
  }

  .hero-copy-editorial .button {
    flex: 1 1 100%;
  }

  .homepage .hero-stage {
    min-height: clamp(30rem, 100svh, 42rem);
    aspect-ratio: 4 / 5;
  }

  .homepage .hero-copy-editorial {
    padding:
      clamp(5.75rem, 18vw, 6.6rem) clamp(0.95rem, 4vw, 1.05rem) clamp(0.95rem, 4vw, 1.05rem);
  }

  .homepage .hero-copy-main,
  .homepage .hero-text-editorial,
  .homepage .journey-highlight-copy p,
  .homepage .contact-home-section .contact-text {
    max-width: 100%;
  }

  .homepage .hero-copy-editorial h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .homepage .hero-aside {
    font-size: clamp(1rem, 4.2vw, 1.24rem);
    color: #1b1714 !important;
    text-shadow: none !important; /* Removed shadow for black text */
  }

  .homepage .hero-actions {
    gap: 0.7rem;
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-copy-editorial {
    justify-content: flex-end;
    padding: 5.25rem 1.75rem 1.75rem;
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-copy-main {
    max-width: 100%;
  }

  .return-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .next-link {
    text-align: left;
    align-items: flex-start;
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-editorial-image img,
  .building-from-scratch-page .building-from-scratch-hero .hero-editorial-image video {
    object-position: 52% top;
  }

  .building-from-scratch-page .building-from-scratch-hero h1 {
    max-width: 6ch;
    font-size: clamp(2rem, 8.8vw, 3.1rem);
  }

  .building-from-scratch-page .reading-layout,
  .building-from-scratch-page .feature-split,
  .building-from-scratch-page .building-social-section {
    grid-template-columns: 1fr;
  }

  .building-from-scratch-page .feature-image {
    aspect-ratio: 4 / 3;
  }

  .building-from-scratch-page .building-from-scratch-hero .hero-stage {
    min-height: clamp(30rem, 86vh, 42rem);
    aspect-ratio: 4 / 5;
  }

  .building-social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .journey-preview {
    grid-template-columns: 1fr;
  }

  .homepage .journey-highlight {
    grid-template-columns: 1fr;
  }

  .homepage .journey-highlight-copy {
    padding-top: 0;
  }

  .homepage .journey-highlight-media {
    max-width: min(32rem, 100%);
    justify-self: start;
  }

  .homepage .chapter-grid,
  .homepage .journey-preview {
    grid-template-columns: 1fr;
  }

  .homepage .journey-preview article {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .homepage .journey-preview article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-hero .page-hero-copy {
    gap: 0.8rem;
    padding-bottom: 0;
  }

  .about-hero-media {
    min-height: 24rem;
  }

  .about-hero-media figcaption {
    padding-left: 0.8rem;
    font-size: 0.72rem;
  }



  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* --- Ideas Beyond Page Specialized Styles --- */

  .ideas-beyond-page .project-showcase {
    padding-bottom: 8rem;
  }

  .project-header {
    margin-bottom: 4rem;
  }

  .project-header h2 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin: 1.5rem 0 2.5rem;
  }

  .ideas-beyond-page .project-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
  }

  /* Individual Grid Item Rhythms */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .gallery-item:hover img {
    transform: scale(1.04);
  }

  /* Specific Grid Placements for Chaukhat */
  .project-chaukhat .gallery-item:nth-child(1) {
    grid-column: span 12;
    aspect-ratio: 21 / 9;
    margin-bottom: 2rem;
  }

  .project-chaukhat .gallery-item:nth-child(2) {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
  }

  .project-chaukhat .gallery-item:nth-child(3) {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
    margin-top: 4rem;
  }

  .project-chaukhat .gallery-item:nth-child(4) {
    grid-column: span 7;
    aspect-ratio: 16 / 10;
    margin-top: -2rem;
  }

  .project-chaukhat .gallery-item:nth-child(5) {
    grid-column: span 5;
    aspect-ratio: 1 / 1;
  }

  /* Apparel & Music Grids */
  .project-apparel .gallery-item:nth-child(odd) {
    grid-column: span 7;
    aspect-ratio: 4 / 3;
  }

  .project-apparel .gallery-item:nth-child(even) {
    grid-column: span 5;
    aspect-ratio: 3 / 4;
  }

  .project-music .gallery-item {
    grid-column: span 4;
    aspect-ratio: 1 / 1;
  }

  .project-music .gallery-item:nth-child(3n+1) {
    grid-column: span 6;
    aspect-ratio: 16 / 9;
  }

  .project-music .gallery-item:nth-child(3n+2) {
    grid-column: span 6;
    aspect-ratio: 16 / 9;
  }

  /* Video Sections */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .video-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
  }

  .video-placeholder {
    position: relative;
    background: var(--ink);
    transition: transform 400ms ease;
  }

  .video-item:hover .video-placeholder {
    transform: translateY(-4px);
  }

  .play-icon {
    width: 3.5rem;
    height: 3.5rem;
    border: 1.5px solid rgba(255, 253, 249, 0.4);
    border-radius: 50%;
    position: relative;
    transition: all 300ms ease;
  }

  .play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent white;
  }

  .video-item:hover .play-icon {
    transform: scale(1.1);
    border-color: white;
    background: rgba(255, 253, 249, 0.1);
  }

  .video-info {
    display: grid;
    gap: 0.5rem;
  }

  .video-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .video-info p:last-child {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 28rem;
  }

  .video-item.coming-soon {
    opacity: 0.5;
    pointer-events: none;
  }

  @media (max-width: 900px) {
    .ideas-beyond-page .project-gallery {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .gallery-item {
      grid-column: span 1 !important;
      margin-top: 0 !important;
    }

    .video-grid {
      grid-template-columns: 1fr;
    }

    .feed-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* --- Featured Project & Modal Styles --- */

  .project-featured {
    display: grid;
    justify-items: start;
    /* Aligning left for a more editorial feel */
    gap: 2rem;
    max-width: 100%;
    margin: 0;
  }

  .featured-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    /* Scaling down further as requested */
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    background: var(--line);
    box-shadow: 0 10px 25px rgba(27, 23, 20, 0.05);
  }

  .featured-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    /* Uniform 3/4 ratio */
    object-fit: cover;
    transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .featured-frame:hover img {
    transform: scale(1.04);
  }

  .frame-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
    /* Fixing the desktop click issue */
  }

  .featured-frame:hover .frame-overlay {
    opacity: 1;
  }

  .view-label {
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
  }

  /* Gallery Modal */
  .gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 500ms ease;
    overflow-y: auto;
  }

  .gallery-modal.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .modal-close {
    position: fixed;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2100;
    opacity: 0.6;
    transition: opacity 240ms ease;
  }

  .modal-close:hover {
    opacity: 1;
  }

  .modal-content {
    padding: 8rem 2rem 5rem;
    max-width: 110rem;
    margin: 0 auto;
  }

  .modal-gallery-grid {
    columns: 2;
    column-gap: 2rem;
  }

  .modal-gallery-item {
    margin-bottom: 2rem;
    break-inside: avoid;
  }

  .modal-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }

  @media (max-width: 900px) {
    .modal-gallery-grid {
      columns: 1;
    }

    .modal-content {
      padding: 6rem 1rem 3rem;
    }

    .modal-close {
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2.5rem;
    }
  }

  /* --- Click Safety Fixes --- */
  .project-showcase {
    position: relative;
    z-index: 10;
  }

  .project-featured {
    position: relative;
    z-index: 20;
  }

  .featured-frame,
  .button-outline {
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  .frame-overlay {
    pointer-events: none !important;
    /* Ensure overlay never blocks the click */
  }

  /* --- FINAL FORCE FIX FOR THUMBNAILS --- */
  body.ideas-beyond-page .project-featured .featured-frame,
  body.ideas-beyond-page .project-featured .featured-frame img {
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
  }

  body.ideas-beyond-page .project-featured {
    display: block !important;
    /* Switch from grid to block for simpler control */
    text-align: left !important;
  }

  body.ideas-beyond-page .button-outline {
    display: inline-block !important;
    margin-top: 1.5rem !important;
  }