/* ═══════════════════════════════════════════════════
   METANEERING — Global Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Font Faces ── */
@font-face {
  font-family: 'Enter Sansman';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Enter_Sansman_-_DGL_Bold.woff2') format('woff2'),
       url('/fonts/Enter_Sansman_-_DGL_Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/HankenGrotesk-VariableFont_wght.woff2') format('woff2'),
       url('/fonts/HankenGrotesk-VariableFont_wght.ttf') format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Newsreader-VariableFont_opsz,wght.woff2') format('woff2'),
       url('/fonts/Newsreader-VariableFont_opsz,wght.ttf') format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
  src: url('/fonts/Newsreader-Italic-VariableFont_opsz,wght.woff2') format('woff2'),
       url('/fonts/Newsreader-Italic-VariableFont_opsz,wght.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Mono';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/SpaceMono-Regular.woff2') format('woff2'),
       url('/fonts/SpaceMono-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Mono';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/SpaceMono-Bold.woff2') format('woff2'),
       url('/fonts/SpaceMono-Bold.ttf') format('truetype');
}

/* ── CSS Custom Properties ── */
:root {
  --van-dyke: #4A3C31;
  --burnt-orange: #C2662D;
  --ecru-gold: #CEB888;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --brown: #6B4C3B;
  --text: #1A1D23;
  --text2: rgba(26,29,35,0.55);
  --text3: rgba(26,29,35,0.35);
  --text4: rgba(26,29,35,0.2);
  --line: rgba(26,29,35,0.08);
  --line2: rgba(26,29,35,0.12);
  --orange: #C2662D;
  --footer-bg: #5D5047;
  --footer-text: #F5F0E8;
  --background: hsl(36, 33%, 97%);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ── Container ── */
.container { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  left: 0; right: 0;
  z-index: 50;
  transition: all .3s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

@media (min-width: 1024px) {
  .nav__inner { padding: 0 2rem; }
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 80px; width: auto; object-fit: contain; max-width: 240px; }
@media (max-width: 768px) {
  .nav__logo img { height: 50px; max-width: 180px; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__link {
  position: relative;
  padding: .5rem 0;
  font-size: 15px;
  text-transform: uppercase;
  transition: color .2s;
  color: var(--text3);
}
.nav__link:hover { color: var(--orange); }
.nav__link--active {
  color: var(--text);
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
}

/* About dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem 0;
  font-size: 15px;
  text-transform: uppercase;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
  position: relative;
}
.nav__dropdown-btn:hover { color: var(--orange); }
.nav__dropdown-btn--active {
  color: var(--text);
}
.nav__dropdown-btn--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
}
.nav__dropdown-btn svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}
.nav__dropdown:hover .nav__dropdown-btn svg,
.nav__dropdown.open .nav__dropdown-btn svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}
.nav__dropdown-item {
  display: block;
  padding: .625rem 1.25rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text3);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  transition: color .2s, background .2s;
}
.nav__dropdown-item:hover {
  color: var(--orange);
  background: rgba(245,240,232,0.5);
}

/* Right side: lang + contact */
.nav__right {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .nav__right { display: flex; }
}

/* Language switcher */
.lang-switch {
  position: relative;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text3);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color .2s;
}
.lang-switch__btn:hover { color: var(--text); }
.lang-switch__btn svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}
.lang-switch.open .lang-switch__btn svg {
  transform: rotate(180deg);
}
.lang-switch__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 80px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .375rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  z-index: 100;
}
.lang-switch.open .lang-switch__menu {
  display: block;
}
.lang-switch__option {
  display: block;
  width: 100%;
  padding: .5rem 1rem;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text3);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color .2s, background .2s;
}
.lang-switch__option:hover {
  color: var(--text);
  background: rgba(245,240,232,0.5);
}
.lang-switch__option--active {
  color: var(--text);
  font-weight: 600;
}

.nav__contact {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text3);
  transition: color .2s;
}
.nav__contact:hover { color: var(--orange); }

/* Mobile menu button */
.nav__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}
@media (min-width: 768px) {
  .nav__burger { display: none; }
}
.nav__burger svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--background);
  padding: 2rem;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text3);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.mobile-menu__link:hover { color: var(--orange); }
.mobile-menu__link--active { color: var(--text); }
.mobile-menu__sub {
  padding-left: 1.5rem;
}
.mobile-menu__sub .mobile-menu__link {
  font-size: 15px;
}
.mobile-menu__lang {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.mobile-menu__lang-btn {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text3);
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem .75rem;
  transition: color .2s;
}
.mobile-menu__lang-btn:hover { color: var(--text); }
.mobile-menu__lang-btn--active {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--text);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: auto;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}
.footer__text {
  font-family: 'Newsreader', Georgia, serif;
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.7);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8125rem;
  letter-spacing: .04em;
  color: rgba(245,240,232,0.6);
  transition: color .2s;
}
.footer__link:hover { color: var(--footer-text); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__copy {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .75rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: .04em;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .6875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  transition: color .2s;
}
.footer__legal-link:hover { color: rgba(245,240,232,0.5); }

/* ═══════════════════════════════════════════════════
   HOMEPAGE HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 72vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero__pyramid {
  position: absolute;
  right: 0; bottom: 0;
  width: min(720px, 70vw);
  height: min(520px, 70vh);
  pointer-events: none;
  z-index: 1;
  background: url("/images/hero-background.png") bottom right / contain no-repeat;
  opacity: .18;
  mix-blend-mode: multiply;
  filter: contrast(1.35) brightness(.85);
}
.hero__lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ln { position: absolute; background: var(--text); transform-origin: 0 0; }

.ln--1 { top:28%; left:0; width:0; height:1px; opacity:0;
  animation: lnH 1.4s cubic-bezier(.16,1,.3,1) .6s forwards, lnOut 1s ease 3.2s forwards; }
.ln--2 { top:0; right:18%; width:1px; height:0; opacity:0;
  animation: lnV 1.2s cubic-bezier(.16,1,.3,1) .9s forwards, lnOut 1s ease 3.5s forwards; }
.ln--3 { bottom:32%; right:0; width:0; height:1px; opacity:0;
  animation: lnHr 1.6s cubic-bezier(.16,1,.3,1) 1.1s forwards, lnOut 1s ease 3.8s forwards; }
.ln--4 { top:50%; left:8%; width:0; height:1px; opacity:0;
  animation: lnSh 1s cubic-bezier(.16,1,.3,1) 1.5s forwards, lnOut .8s ease 3.4s forwards; }
.ln--5 { bottom:18%; left:25%; width:1px; height:0; opacity:0;
  animation: lnSv 1s cubic-bezier(.16,1,.3,1) 1.7s forwards, lnOut .8s ease 3.6s forwards; }
.ln--6 { top:22%; right:30%; width:0; height:1px; opacity:0;
  transform: rotate(-25deg);
  animation: lnDg 1.2s cubic-bezier(.16,1,.3,1) 2s forwards, lnOut .8s ease 4s forwards; }

@keyframes lnH  { 0%{width:0;opacity:0}  15%{opacity:.06} 100%{width:38vw;opacity:.06} }
@keyframes lnV  { 0%{height:0;opacity:0} 15%{opacity:.05} 100%{height:35vh;opacity:.05} }
@keyframes lnHr { 0%{width:0;opacity:0}  15%{opacity:.06} 100%{width:32vw;opacity:.06} }
@keyframes lnSh { 0%{width:0;opacity:0}  15%{opacity:.08} 100%{width:120px;opacity:.08} }
@keyframes lnSv { 0%{height:0;opacity:0} 15%{opacity:.07} 100%{height:80px;opacity:.07} }
@keyframes lnDg { 0%{width:0;opacity:0}  15%{opacity:.04} 100%{width:180px;opacity:.04} }
@keyframes lnOut { to { opacity:0 } }

.hero__content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: hIn 1.2s cubic-bezier(.16,1,.3,1) .3s forwards;
}
@keyframes hIn {
  0%   { opacity:0; transform:translateY(12px) }
  100% { opacity:1; transform:translateY(0) }
}

.hero h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.25rem;
}

.hero__positioning {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  color: rgba(107,76,59,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--brown);
  opacity: 0;
  margin: 0 auto 2rem;
  animation: dIn .8s ease 1.8s forwards;
}
@keyframes dIn { to { opacity: .25 } }

.hero__claim {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: clamp(.875rem, 1.8vw, 1.25rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(107,76,59,0.4);
  line-height: 1;
}
.hero__claim strong { color: var(--brown); font-weight: 700; }

.hero__bottom {
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: hIn .8s ease 2.2s forwards;
}
.hero__co {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text4);
}
.hero__est {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: .8125rem;
  color: var(--text4);
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════ */
.sec {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--text4);
}

.arr { width: 14px; height: 14px; }

.sec-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .06em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  transition: gap .2s, color .2s;
}
.sec-link:hover { gap: .625rem; color: var(--orange); }

.sec h2 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

/* Latest entries */
.latest__entry { max-width: 700px; }
.latest__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text4);
  margin-bottom: .625rem;
}
.latest__title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1rem;
}
.latest__title a { transition: color .2s; }
.latest__title a:hover { color: var(--orange); }
.latest__teaser {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 1.5rem;
}
.latest__divider {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background: var(--line);
  margin: 2.5rem 0;
}

/* Founder card */
.f-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  padding: 2.25rem 2.75rem;
  max-width: 800px;
  margin: 0 auto;
  transition: border-color .3s;
}
.f-card:hover { border-color: var(--line2); }
.f-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%);
}
.f-info { flex: 1; }
.f-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: .25rem;
}
.f-name {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: .625rem;
}
.f-desc {
  font-size: .9375rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Luxembourg section */
.sec--center { text-align: center; }
.lux__primary {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text2);
  margin-bottom: .5rem;
}
.lux__secondary {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--text4);
}
.practice__primary { margin-bottom: .5rem; }
.practice__link {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.0625rem;
  color: var(--text2);
  transition: color .2s;
}
.practice__link:hover { color: var(--orange); }
.practice__secondary {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--text4);
}

/* Careers section on homepage */
.careers {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.careers p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 1rem;
  max-width: 600px;
}
.careers .careers__cta-text {
  font-size: .9375rem;
  color: var(--text3);
}

/* ═══════════════════════════════════════════════════
   PERSPECTIVES PAGE
   ═══════════════════════════════════════════════════ */
.ge-blue {
  background: linear-gradient(to bottom, currentColor 72%, #1A4E9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ge-orange {
  background: linear-gradient(to bottom, currentColor 72%, #C2662D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pp-hero {
  position: relative;
  background: var(--cream);
  padding: 10rem 2rem 5rem;
  overflow: hidden;
}
.pp-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pp-hero__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.pp-hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--text4);
}
.pp-hero__title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.pp-hero__sub {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: rgba(107,76,59,0.6);
  max-width: 540px;
}
.pp-hero__count {
  position: absolute;
  right: 2rem;
  bottom: 0;
  font-family: 'Space Mono', monospace;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 700;
  line-height: .8;
  color: rgba(107,76,59,0.04);
  pointer-events: none;
  z-index: 1;
}

.pp-body { background: var(--white); padding: 0; }

.pp-item {
  border-top: 1px solid var(--line);
  padding: 4rem 2rem;
  position: relative;
  transition: background .4s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.pp-item:hover { background: rgba(245,240,232,0.35); }
.pp-item__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  align-items: start;
}
.pp-item__meta { padding-top: .25rem; }
.pp-item__number {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text4);
  margin-bottom: 1rem;
}
.pp-item__type {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: .25rem;
}
.pp-item__year {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: .8125rem;
  color: var(--text4);
}
.pp-item__content { max-width: 620px; }
.pp-item__title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color .2s;
}
.pp-item:hover .pp-item__title { color: var(--orange); }
.pp-item__teaser {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 1.5rem;
}
.pp-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.pp-item__tag {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text3);
  background: var(--cream);
  padding: .25rem .625rem;
  border: 1px solid var(--line);
}
.pp-item__link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .06em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  transition: gap .2s, color .2s;
}
.pp-item__link:hover { gap: .625rem; color: var(--orange); }

.pp-colophon {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 4rem 2rem 5rem;
  text-align: center;
}
.pp-colophon__text {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text3);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   ARTICLE PAGE (Long Voyage)
   ═══════════════════════════════════════════════════ */
.article-hero {
  background: var(--cream);
  padding: 10rem 2rem 4rem;
}
.article-hero__inner {
  max-width: 768px;
  margin: 0 auto;
}
.article-hero__back {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: .8125rem;
  letter-spacing: .06em;
  color: var(--text3);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-bottom: 2rem;
  transition: color .2s;
}
.article-hero__back:hover { color: var(--orange); }

.article-hero__card {
  background: var(--van-dyke);
  color: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.article-hero__gradient-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C2662D 0%, #CEB888 50%, #4A3C31 100%);
}
.article-hero__eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1.5rem;
}
.article-hero__title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.article-hero__subtitle {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.article-hero__meta-item {}
.article-hero__meta-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-bottom: .25rem;
}
.article-hero__meta-value {
  font-family: 'Newsreader', Georgia, serif;
  font-size: .875rem;
  color: rgba(245,240,232,0.7);
}

/* Article body */
.article-body {
  max-width: 768px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.article-body h2 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.article-body h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
  color: var(--text);
}
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 1.5rem;
}
.article-body blockquote {
  border-left: 3px solid var(--ecru-gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text2);
}
.article-body blockquote p {
  margin-bottom: .5rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: .5rem;
}
.article-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--van-dyke); }

.article-divider {
  width: 48px;
  height: 1px;
  background: var(--line2);
  margin: 3rem 0;
}

.article-section-number {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: .75rem;
  color: var(--text4);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */
.about-hero {
  min-height: 100vh;
  background: var(--background);
  padding: 8rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
}
@media (min-width: 768px) { .about-hero__bg { opacity: .1; } }
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
}

.about-hero__content {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.about-hero__header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.about-hero__subtitle {
  font-size: 1.25rem;
  color: var(--text2);
  max-width: 40rem;
  margin: 2rem auto 0;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.about-card {
  display: block;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-card { padding: 3.5rem; }
}
.about-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.about-card__arrow {
  position: absolute;
  top: 0; right: 0;
  padding: 1.5rem;
  opacity: 0;
  transition: all .3s;
  transform: translateX(1rem);
  color: var(--text);
}
.about-card:hover .about-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
.about-card__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(245,240,232,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform .3s;
}
.about-card:hover .about-card__icon { transform: scale(1.1); }
.about-card__icon svg { width: 24px; height: 24px; color: var(--text); }
.about-card__title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.about-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text2);
}

/* ═══════════════════════════════════════════════════
   CONTENT PAGES (Founder, Company, Career, etc.)
   ═══════════════════════════════════════════════════ */
.content-page {
  background: var(--cream);
  padding: 10rem 2rem 5rem;
}
.content-page__inner {
  max-width: 768px;
  margin: 0 auto;
}
.content-page--wide .content-page__inner {
  max-width: 900px;
}
.content-page h1 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.content-page__subtitle {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text2);
  margin-bottom: 2rem;
}

.content-body {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.content-body__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.content-body--wide .content-body__inner {
  max-width: 900px;
}
.content-body h2 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.content-body h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}
.content-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 1.25rem;
}
.content-body ul, .content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.content-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: .375rem;
}
.content-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-body a:hover { color: var(--van-dyke); }

.content-divider {
  width: 48px;
  height: 1px;
  background: var(--line2);
  margin: 2.5rem 0;
}

/* ── Legal pages ── */
.legal-body h2 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-body h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.legal-body p {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero { min-height: 85vh; padding: 7rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero__bottom { left: 1.25rem; right: 1.25rem; }
  .hero__pyramid { width: 300px; height: 300px; right: -30px; }
  .ln--1, .ln--2, .ln--3, .ln--6 { display: none; }
  .f-card { flex-direction: column; text-align: center; padding: 2rem; gap: 1.5rem; }
  .pp-hero { padding: 7rem 1.5rem 3.5rem; }
  .pp-hero__count { font-size: 5rem; right: 1rem; }
  .pp-item { padding: 2.5rem 1.5rem; }
  .pp-item__inner { grid-template-columns: 1fr; gap: 1rem; }
  .pp-item__number { font-size: 1.75rem; margin-bottom: .5rem; }
  .article-hero { padding: 7rem 1.25rem 3rem; }
  .article-hero__card { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ln, .hero__content, .hero__divider, .hero__bottom {
    animation: none !important;
    opacity: 1 !important;
  }
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
