/* ═══════════════════════════════════════════════════════════
   Marr Dynamics - v6
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { pointer-events: none; -webkit-user-drag: none; user-select: none; }

:root {
  --bg:       #060608;
  --surface:  #0a0a0d;
  --border:   rgba(255,255,255,.06);
  --white:    #eae7e1;
  --dim:      rgba(234,231,225,.55);
  --faint:    rgba(234,231,225,.28);
  --ghost:    rgba(234,231,225,.07);
  --gold:     #b89860;
  --gold-dim: rgba(184,152,96,.12);
  --sans:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:     'DM Mono', 'SF Mono', monospace;
  --nav-h:    56px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --pad:      clamp(1.25rem, 4vw, 2.5rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: .02; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  padding: 0 var(--pad);
  transition: background .4s var(--ease);
}
.nav.scrolled {
  background: rgba(6,6,8,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nav__brand {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none;
}
.nav__logo-img {
  width: 22px; height: 22px; border-radius: 3px;
  pointer-events: auto; opacity: .8;
}
.nav__wordmark {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.nav__links {
  display: flex; align-items: center; gap: 1.5rem;
  margin-left: auto;
}
.nav__link {
  font-size: .55rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .25s var(--ease);
}
.nav__link:hover { color: rgba(255,255,255,.65); }
.nav__link--active { color: rgba(255,255,255,.6); }
@media (max-width: 560px) {
  .nav__links { gap: .8rem; }
  .nav__link { font-size: .48rem; letter-spacing: .08em; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero-pin { position: relative; height: 260vh; }
.hero {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden; background: #000;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s ease;
  will-change: transform;
}
.hero__video.playing { opacity: .72; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 25%, transparent 65%, rgba(6,6,8,.92) 100%);
}

.hero__content {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end;
  height: 100%;
  padding: 0 var(--pad) 11vh;
  animation: heroIn 1.8s var(--ease) .05s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 300; letter-spacing: -.035em;
  line-height: 1.02;
  color: #fff;
  max-width: 14ch;
}

.hero__sound {
  position: absolute; bottom: 1.75rem; right: var(--pad);
  z-index: 4; display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%; padding: .5rem;
  color: rgba(255,255,255,.35); cursor: pointer;
  transition: color .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.hero__sound:hover {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.hero__sound-icon { display: block; }

.hero__rendering {
  position: absolute; bottom: 2rem; left: var(--pad);
  z-index: 4;
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.12);
  pointer-events: none;
}

.hero__scroll-cue {
  position: absolute; bottom: 1.75rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  animation: cueFade 1s var(--ease) 2.2s both;
}
@keyframes cueFade { from { opacity: 0; } to { opacity: 1; } }
.hero__scroll-cue span {
  display: block; width: 16px; height: 16px;
  border-right: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
  transform: rotate(45deg);
  animation: cueBounce 2.6s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .2; }
  50%      { transform: rotate(45deg) translateY(5px); opacity: .7; }
}

/* ═══════════════════════════════════════════════════════════
   INTRO - Left-aligned, asymmetric
   ═══════════════════════════════════════════════════════════ */
.s-intro {
  padding: 12rem 0 8rem;
}
.s-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.s-intro__text {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -.015em;
  max-width: 680px;
}

/* ═══════════════════════════════════════════════════════════
   MEDIA - Full-bleed, no frame, no box
   ═══════════════════════════════════════════════════════════ */
.s-media {
  position: relative;
  margin: 0 var(--pad);
}
.s-media__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.s-media__frame::after {
  content: '';
  position: absolute; bottom: .75rem; right: .75rem;
  width: 22px; height: 22px;
  background: url('/images/logo.png') center / contain no-repeat;
  filter: invert(1);
  opacity: .15;
  pointer-events: none;
  z-index: 1;
}
.s-media__frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: .7;
  transition: opacity .6s ease;
  pointer-events: auto;
}
.s-media:hover .s-media__frame img { opacity: .82; }
.s-media__label {
  display: block;
  margin-top: .6rem;
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════════════════════
   FOCUS - Editorial split, asymmetric
   ═══════════════════════════════════════════════════════════ */
.s-focus {
  padding: 10rem 0 6rem;
}
.s-focus__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.s-focus__lead {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
}
.s-focus__lead p {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--dim);
  letter-spacing: -.005em;
}

.s-focus__lead-img {
  margin-top: 2.5rem;
  position: relative;
}
.s-focus__lead-img::after {
  content: '';
  position: absolute; bottom: .6rem; right: .6rem;
  width: 20px; height: 20px;
  background: url('/images/logo.png') center / contain no-repeat;
  filter: invert(1);
  opacity: .15;
  pointer-events: none;
}
.s-focus__lead-img img {
  width: 100%;
  display: block;
  opacity: .6;
  transition: opacity .6s ease;
  pointer-events: auto;
}
.s-focus__lead-img:hover img { opacity: .78; }
.s-focus__lead-label {
  display: block;
  margin-top: .5rem;
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.12);
}

.s-focus__areas {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.s-focus__area {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
}
.s-focus__area:last-child {
  border-bottom: 1px solid var(--border);
}
.s-focus__area h3 {
  font-size: .8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .7rem;
}
.s-focus__area p {
  font-size: .82rem;
  color: var(--dim);
  line-height: 1.75;
  max-width: 440px;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY - Horizontal scroll strip
   ═══════════════════════════════════════════════════════════ */
.s-gallery {
  padding: 3rem 0 6rem;
}
.s-gallery__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 var(--pad) 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.s-gallery__track::-webkit-scrollbar { height: 6px; }
.s-gallery__track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.08);
  border-radius: 20px;
}
.s-gallery__track::-webkit-scrollbar-track { background: transparent; }
.s-gallery__item {
  min-width: clamp(260px, 55vw, 620px);
  scroll-snap-align: start;
  position: relative;
}
.s-gallery__item::after {
  content: '';
  position: absolute; bottom: 2rem; right: .75rem;
  width: 20px; height: 20px;
  background: url('/images/logo.png') center / contain no-repeat;
  filter: invert(1);
  opacity: .15;
  pointer-events: none;
}
.s-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  opacity: .72;
  transition: opacity .6s ease;
  pointer-events: auto;
}
.s-gallery__item:hover img { opacity: .9; }
.s-gallery__label {
  display: block;
  margin-top: .5rem;
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════════════════════
   END - Just a location, nothing more
   ═══════════════════════════════════════════════════════════ */
.s-end {
  padding: 8rem 0 10rem;
}
.s-end__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.s-end__line {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem var(--pad) 2rem;
}
.footer__inner {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.footer__left {
  display: flex; align-items: center; gap: .45rem;
}
.footer__logo {
  width: 18px; height: 18px; border-radius: 2px;
  pointer-events: auto; opacity: .7;
}
.footer__name {
  font-size: .6rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer__right { display: flex; gap: 1.5rem; align-items: center; }
.footer__right a {
  font-size: .6rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint);
  transition: color .2s;
}
.footer__right a:hover { color: var(--dim); }

/* share row */
.footer__share {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer__share-label {
  font-family: var(--mono);
  font-size: .45rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-right: .25rem;
}
.footer__share a,
.footer__share button {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.22);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  background: none; padding: 0; cursor: pointer;
  font-family: inherit;
}
.footer__share a:hover,
.footer__share button:hover {
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}
.footer__share svg { display: block; }
.footer__copy { position: relative; }
.footer__copy-tip {
  position: absolute;
  bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.footer__copy-tip.show { opacity: 1; }

.footer__legal {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem 1.25rem;
}
.footer__legal span {
  font-size: .55rem; color: rgba(255,255,255,.35);
}
.footer__disclaimer {
  font-size: .5rem; color: rgba(255,255,255,.25);
  font-style: italic;
}
.footer__disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 9000; max-width: 440px; margin: 0 auto;
  background: rgba(10,10,13,.96); border: 1px solid var(--border);
  padding: .75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  opacity: 0; transform: translateY(6px); visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); visibility: visible; }
.cookie-banner p { font-size: .68rem; color: var(--dim); }
.cookie-banner a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__btns { display: flex; gap: .25rem; flex-shrink: 0; }
.cookie-banner__btns button {
  font-size: .55rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .65rem;
  border: 1px solid var(--border); background: transparent;
  color: var(--dim); cursor: pointer; font-family: var(--sans);
  transition: all .2s;
}
.cookie-banner__btns button:hover { border-color: var(--faint); color: var(--white); }
.btn--accept {
  background: var(--gold) !important; color: var(--bg) !important;
  border-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-content {
  padding: calc(var(--nav-h) + 5rem) 0 6rem;
  max-width: 640px; margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.legal-content h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300; margin-bottom: .3rem;
}
.legal-content .updated {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 2.5rem; display: block;
}
.legal-content h2 {
  font-size: .85rem; font-weight: 500;
  color: var(--dim); margin: 2rem 0 .4rem;
}
.legal-content p, .legal-content li {
  font-size: .82rem; color: rgba(234,231,225,.5);
  line-height: 1.85; margin-bottom: .7rem;
}
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.cookie-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-top: 1px solid var(--border); gap: 2rem;
}
.cookie-toggle-row:last-of-type { border-bottom: 1px solid var(--border); }
.cookie-toggle-label { font-size: .82rem; color: var(--dim); font-weight: 500; }
.cookie-toggle-desc  { font-size: .68rem; color: var(--faint); margin-top: .1rem; }
.toggle-switch { position: relative; width: 36px; height: 20px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-switch__track {
  position: absolute; inset: 0; background: var(--border);
  border-radius: 10px; cursor: pointer; transition: background .2s;
}
.toggle-switch input:checked + .toggle-switch__track { background: var(--gold); }
.toggle-switch__track::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: var(--white);
  border-radius: 50%; transition: transform .2s;
}
.toggle-switch input:checked + .toggle-switch__track::after { transform: translateX(16px); }
.toggle-switch input:disabled + .toggle-switch__track { cursor: not-allowed; opacity: .4; }

/* ═══════════════════════════════════════════════════════════
   JOURNAL - Index + Post
   ═══════════════════════════════════════════════════════════ */
.journal {
  padding: calc(var(--nav-h) + 5rem) 0 6rem;
  max-width: 760px;
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.journal__header { margin-bottom: 3.5rem; }
.journal__header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.journal__desc {
  font-size: .85rem;
  color: var(--dim);
  line-height: 1.7;
  max-width: 520px;
}
.journal__feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journal__card {
  display: block;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: background .3s var(--ease);
}
.journal__card:last-child { border-bottom: 1px solid var(--border); }
.journal__card:hover { background: rgba(255,255,255,.015); }
.journal__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 2px;
  margin-bottom: .6rem;
}
.journal__tag--industry {
  color: var(--gold);
  background: var(--gold-dim);
}
.journal__tag--internal {
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
}
.journal__date {
  display: block;
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: .5rem;
}
.journal__title {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: .5rem;
}
.journal__card:hover .journal__title { color: #fff; }
.journal__excerpt {
  font-size: .78rem;
  color: var(--dim);
  line-height: 1.75;
  max-width: 560px;
}

/* Journal post */
.journal-post {
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  max-width: 680px;
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.journal-post__header { margin-bottom: 3rem; }
.journal-post__back {
  display: inline-block;
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.5rem;
  transition: color .2s;
}
.journal-post__back:hover { color: var(--dim); }
.journal-post__header .journal__tag { display: inline-block; margin-bottom: .5rem; }
.journal-post__header .journal__date { margin-bottom: 1rem; }
.journal-post__header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.journal-post__body p {
  font-size: .85rem;
  color: var(--dim);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.journal-post__body h2 {
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
  margin: 2.5rem 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .75rem;
}
.journal-post__body strong {
  color: var(--white);
  font-weight: 500;
}
.journal-post__disclaimer {
  font-size: .72rem;
  color: var(--faint);
  font-style: italic;
  line-height: 1.8;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold-dim);
  margin-bottom: 2rem;
  background: rgba(255,255,255,.015);
}

/* ═══════════════════════════════════════════════════════════
   PAGE CONTENT — About, Work, Contact shared layout
   ═══════════════════════════════════════════════════════════ */
.page-content {
  padding: calc(var(--nav-h) + 5rem) 0 0;
  max-width: 960px;
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.page-header { margin-bottom: 3.5rem; }
.page-tag {
  display: inline-block;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  padding: .2rem .5rem; border-radius: 2px;
  margin-bottom: 1rem;
}
.page-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: .8rem;
}
.page-subtitle {
  font-size: .88rem; color: var(--dim);
  line-height: 1.75; max-width: 600px;
}
.page-rule {
  height: 1px; background: var(--border);
  margin: 3rem 0;
}

/* PAGE BLOCKS */
.page-block { padding: 0 0 1rem; }
.page-block__tag {
  display: inline-block;
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: .6rem;
}
.page-block__title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.page-block p {
  font-size: .84rem; color: var(--dim);
  line-height: 1.85; margin-bottom: .8rem;
  max-width: 680px;
}

/* ── PRINCIPLES (About page) ── */
.principle-list { margin-top: .5rem; }
.principle {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}
.principle:last-child { border-bottom: 1px solid var(--border); }
.principle h3 {
  font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .4rem; color: var(--white);
}
.principle p {
  font-size: .82rem; color: var(--dim);
  line-height: 1.8; max-width: 560px; margin: 0;
}

/* ── TIMELINE (About page) ── */
.timeline { margin-top: .5rem; }
.timeline__item {
  padding: 2rem 0 2rem 2rem;
  border-left: 1px solid var(--border);
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute; left: -4px; top: 2.35rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
}
.timeline__item--redacted { opacity: .5; }
.timeline__phase {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: .3rem;
}
.timeline__label {
  font-size: .9rem; font-weight: 400;
  color: var(--white); margin-bottom: .4rem;
}
.timeline__status {
  display: inline-block;
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .15rem .4rem; border-radius: 2px;
  margin-bottom: .6rem;
}
.timeline__status--complete { color: #4ade80; background: rgba(74,222,128,.08); }
.timeline__status--active { color: var(--gold); background: var(--gold-dim); }
.timeline__status--pending { color: var(--faint); background: rgba(255,255,255,.04); }
.timeline__status--redacted { color: rgba(255,255,255,.25); background: rgba(255,255,255,.03); }
.timeline__item p {
  font-size: .8rem; color: var(--dim);
  line-height: 1.8; max-width: 520px; margin: 0;
}
.redacted-text {
  color: rgba(255,255,255,.08) !important;
  user-select: none; letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════
   WORK GRID — 9-slot render gallery
   ═══════════════════════════════════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 0 3rem;
}
.work-card__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.work-card__frame::after {
  content: '';
  position: absolute; bottom: .5rem; right: .5rem;
  width: 18px; height: 18px;
  background: url('/images/logo.png') center / contain no-repeat;
  filter: invert(1); opacity: .1;
  pointer-events: none; z-index: 1;
}
.work-card__frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: .7; transition: opacity .5s ease;
}
.work-card:hover .work-card__frame img { opacity: .9; }
.work-card__pending {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint);
}
.work-card__pending-icon {
  font-size: 1.5rem; opacity: .3;
}
.work-card__meta {
  padding: .6rem 0 0;
  display: flex; align-items: center;
  gap: .6rem;
}
.work-card__badge {
  font-family: var(--mono); font-size: .42rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  padding: .15rem .35rem; border-radius: 2px;
  flex-shrink: 0;
}
.work-card__desc {
  font-size: .65rem; color: var(--faint);
  letter-spacing: .02em;
}
.work-notice {
  padding: 1.5rem; margin-bottom: 4rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.015);
}
.work-notice p {
  font-size: .75rem; color: var(--faint);
  line-height: 1.8; font-style: italic; margin: 0;
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; gap: 1rem; }
  .page-content { padding-top: calc(var(--nav-h) + 3rem); }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT — Form + sidebar
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 0 0 5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); margin-bottom: .35rem;
}
.form-input {
  width: 100%; padding: .6rem .75rem;
  font-family: var(--sans); font-size: .82rem;
  color: var(--white); background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  background: rgba(184,152,96,.03);
}
.form-input::placeholder { color: var(--faint); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2rem;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-block;
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .65rem 1.75rem;
  background: var(--gold); color: var(--bg);
  border: none; cursor: pointer;
  font-weight: 500;
  transition: opacity .2s;
}
.form-submit:hover { opacity: .85; }
.form-note {
  margin-top: .8rem;
  font-size: .65rem; color: var(--faint);
  line-height: 1.7; font-style: italic;
}
.contact-success {
  padding: 2rem;
  border: 1px solid var(--gold-dim);
  background: rgba(184,152,96,.03);
  text-align: center;
}
.contact-success__icon {
  display: block; font-size: 1.5rem;
  color: var(--gold); margin-bottom: .5rem;
}
.contact-success h3 {
  font-size: .9rem; font-weight: 400;
  color: var(--white); margin-bottom: .4rem;
}
.contact-success p {
  font-size: .78rem; color: var(--dim);
  line-height: 1.7;
}

/* sidebar */
.contact-info-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:first-child { border-top: 1px solid var(--border); }
.contact-info__label {
  display: block;
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: .2rem;
}
.contact-info__value {
  font-size: .82rem; color: var(--white);
  transition: color .2s;
}
a.contact-info__value:hover { color: var(--gold); }
.contact-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold-dim);
  background: rgba(255,255,255,.015);
}
.contact-notice p {
  font-size: .72rem; color: var(--faint);
  line-height: 1.8; font-style: italic; margin: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   REVEAL - Multiple directions
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal--up    { transform: translateY(30px); }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(20px); }
.reveal--fade  { transform: none; }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-pin { height: 180vh; }
  .hero__h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero__content { padding: 0 var(--pad) 9vh; }

  .s-intro { padding: 7rem 0 5rem; }
  .s-intro__text { font-size: clamp(1.1rem, 5vw, 1.5rem); }

  .s-media { margin: 0; }
  .s-media__frame { aspect-ratio: 16 / 9; }

  .s-focus { padding: 6rem 0 4rem; }
  .s-focus__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .s-focus__lead { position: static; }
  .s-focus__area { padding: 1.5rem 0; }

  .s-end { padding: 5rem 0 6rem; }

  .s-gallery { padding: 2rem 0 5rem; }
  .s-gallery__track { gap: 1rem; }
  .s-gallery__item { min-width: 78vw; }

  .footer { padding: 2rem var(--pad) 1.5rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: .8rem; margin-bottom: 1.5rem; }
  .footer__share { flex-wrap: wrap; gap: .6rem; padding-bottom: 1.5rem; margin-bottom: 1rem; }
  .footer__legal { flex-direction: column; gap: .4rem; }

  .cookie-banner {
    flex-direction: column; align-items: stretch;
    bottom: .5rem; left: .5rem; right: .5rem;
    text-align: center;
  }
  .cookie-banner__btns { justify-content: center; }

  .legal-content { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; }

  .journal { padding-top: calc(var(--nav-h) + 3rem); }
  .journal__header { margin-bottom: 2.5rem; }
  .journal-post { padding-top: calc(var(--nav-h) + 2.5rem); }
}

@media (max-width: 400px) {
  .hero__h1 { font-size: 1.75rem; }
  .s-intro__text { font-size: 1.05rem; }
}
