/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  --bg:          #161616;
  --bg-subtle:   #1f1f1f;
  --text:        #f2ede8;
  --text-mid:    rgba(242,237,232,0.62);
  --text-dim:    rgba(242,237,232,0.38);
  --accent:      #ddd0c4;
  --border:      rgba(242,237,232,0.1);
  --font-display: 'Cormorant', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
* { cursor: none !important; }

/* ─── CUSTOM CURSOR ─────────────────────────────── */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(242,237,232,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-expo),
              height 0.25s var(--ease-expo),
              background 0.25s,
              border-color 0.25s,
              opacity 0.3s;
  opacity: 0;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor-ring.hover {
  width: 48px; height: 48px;
  border-color: rgba(221,208,196,0.4);
  background: rgba(221,208,196,0.06);
}

/* ─── NAVIGATION ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(22,22,22,0.92);
  backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.3s var(--ease-expo);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; }

/* ─── HAMBURGER ─────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease-expo), opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-expo);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ─── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ─── PAGE HEADER ───────────────────────────────── */
.page-header {
  padding: 160px 64px 72px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.88;
  color: var(--text);
  letter-spacing: -0.01em;
}
.page-header-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 300px;
}

/* ─── SECTION EYEBROW ───────────────────────────── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  display: block;
  margin-bottom: 40px;
}

/* ─── WORK / PROJECT INDEX ──────────────────────── */
.work-section {
  padding: 0 64px;
}

.work-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 0;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
  position: relative;
}
.work-item:first-child { border-top: 1px solid var(--border); }
.work-section:hover .work-item { opacity: 0.4; }
.work-section:hover .work-item:hover { opacity: 1; }

.work-item-index {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.work-item-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.work-item:hover .work-item-title { color: var(--accent); }

.work-item-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.work-item-category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}
.work-item-arrow {
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease-expo), transform 0.3s var(--ease-expo);
}
.work-item:hover .work-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── PROJECT DETAIL ────────────────────────────── */
.project-meta-bar {
  padding: 48px 64px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.project-meta-item {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.project-meta-item:last-child { border-right: none; padding-right: 0; padding-left: 40px; }

.project-meta-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 10px;
}
.project-meta-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
}

.project-body {
  padding: 80px 64px;
}

.project-section {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.project-section:first-child { padding-top: 0; }
.project-section:last-child { border-bottom: none; }

.project-section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  padding-top: 6px;
}
.project-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.project-section-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ─── BLOG / JOURNAL ────────────────────────────── */
.journal-section {
  padding: 0 64px;
}

.journal-item {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: start;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.journal-item:first-child { border-top: 1px solid var(--border); }
.journal-section:hover .journal-item { opacity: 0.4; }
.journal-section:hover .journal-item:hover { opacity: 1; }

.journal-item-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  padding-top: 10px;
}

.journal-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.journal-item:hover .journal-item-title { color: var(--accent); }

.journal-item-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 520px;
}

.journal-item-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-align: right;
  padding-top: 10px;
}

/* ─── EDITORIAL TEXT SECTION ────────────────────── */
.editorial-section {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  align-items: start;
}

.editorial-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  padding-top: 8px;
}

.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 0.98;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.editorial-title em { font-style: italic; color: var(--accent); }

.editorial-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 560px;
}

/* ─── CTA SECTION ───────────────────────────────── */
.cta-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
}
.cta-title em { font-style: italic; color: var(--accent); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(242,237,232,0.2);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.cta-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cta-btn svg { transition: transform 0.3s var(--ease-expo); }
.cta-btn:hover svg { transform: translateX(4px); }

/* ─── BACK LINK ─────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }
.back-link svg { transition: transform 0.3s var(--ease-expo); }
.back-link:hover svg { transform: translateX(-4px); }

/* ─── FOOTER ────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .page-header { padding: 120px 24px 56px; flex-direction: column; align-items: flex-start; }
  .page-header-sub { max-width: 100%; }

  .work-section { padding: 0 24px; }
  .work-item { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 28px 0; }

  .journal-section { padding: 0 24px; }
  .journal-item { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .journal-item-tag { padding-top: 0; }
  .journal-item-date { text-align: left; padding-top: 0; }

  .editorial-section { padding: 60px 24px; grid-template-columns: 1fr; gap: 20px; }
  .cta-section { padding: 72px 24px; }

  .project-meta-bar { padding: 32px 24px; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .project-meta-item { border-right: none; padding: 0 0 20px; border-bottom: 1px solid var(--border); }
  .project-meta-item:last-child { border-bottom: none; padding: 0; }

  .project-body { padding: 48px 24px; }
  .project-section { grid-template-columns: 1fr; gap: 16px; padding: 48px 0; }
  .project-section:first-child { padding-top: 0; }

  footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .page-header-title { font-size: 4.5rem; }
  .work-item-title { font-size: 2rem; }
  .work-item-index { display: none; }
}

/* ─── TEAM / ABOUT PAGE ─────────────────────────── */
.team-section {
  padding: 0 64px;
}

.member {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.member:last-child { border-bottom: none; }
.member.reversed { direction: rtl; }
.member.reversed > * { direction: ltr; }

.member-bg-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 300;
  color: var(--text);
  opacity: 0.03;
  top: 40px;
  left: -2vw;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.member.reversed .member-bg-num { left: auto; right: -2vw; }

.member-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.member-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: transform 0.8s var(--ease-expo), filter 0.8s;
}
.member:hover .member-portrait img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.member-portrait::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 33%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s 0.3s var(--ease-expo);
}
.member.reversed .member-portrait::after { transform-origin: right; right: 0; left: auto; }
.member-portrait.visible::after { transform: scaleX(1); }

.member-body {
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
.member.reversed .member-body { padding-left: 0; padding-right: 64px; }

.member-role {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.member-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}
.member-bio-short {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.member-bio-long {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.disciplines-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 12px;
}
.disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.discipline-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  padding: 5px 12px;
  border: 1px solid rgba(242,237,232,0.15);
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.socials { display: flex; flex-wrap: wrap; gap: 20px; }
.social-link {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s;
}
.social-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.3s var(--ease-expo);
}
.social-link:hover { color: var(--accent); }
.social-link:hover::after { width: 100%; }

/* ─── VALUES ────────────────────────────────────── */
.values-section {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.values-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  display: block;
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value-item {
  border-top: 1px solid var(--border);
  padding: 28px 40px 28px 0;
}
.value-item:last-child { padding-right: 0; }
.value-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-body {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-mid);
}

@media (max-width: 900px) {
  .team-section { padding: 0 24px; }
  .member { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .member.reversed { direction: ltr; }
  .member-body { padding-left: 0 !important; padding-right: 0 !important; }
  .values-section { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { padding-right: 0; padding-bottom: 28px; }
}

@media (max-width: 600px) {
  .member-name { font-size: 3rem; }
}

/* ─── ABSTRACT PORTRAIT ─────────────────────────── */
.abstract-portrait {
  aspect-ratio: 3/4;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abstract-portrait .ap-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(242,237,232,0.14) 1px, transparent 1px);
  background-size: 28px 28px;
}
.abstract-portrait .ap-circle {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(221,208,196,0.25);
  border-radius: 50%;
  animation: ap-spin 28s linear infinite;
}
.abstract-portrait .ap-circle-2 {
  width: 35%;
  border-color: rgba(221,208,196,0.15);
  animation-duration: 18s;
  animation-direction: reverse;
}
.abstract-portrait .ap-line-h,
.abstract-portrait .ap-line-v {
  position: absolute;
  background: rgba(242,237,232,0.07);
}
.abstract-portrait .ap-line-h { width: 60%; height: 1px; top: 30%; }
.abstract-portrait .ap-line-v { height: 60%; width: 1px; left: 30%; }
.abstract-portrait .ap-box {
  position: relative;
  z-index: 1;
  width: 100px; height: 100px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,22,22,0.6);
  transition: transform 0.6s var(--ease-expo);
}
.member:hover .ap-box { transform: rotate(5deg) scale(1.05); }
.abstract-portrait .ap-initial {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1;
}
@keyframes ap-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── HERO (HOME PAGE) ──────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 64px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.geo-shape {
  position: absolute;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.geo-shape.s1 {
  top: 8%; right: 6%;
  width: clamp(180px, 25vw, 360px);
  animation: geo-drift-1 22s ease-in-out infinite;
}
.geo-shape.s2 {
  bottom: 12%; left: 3%;
  width: clamp(120px, 16vw, 220px);
  animation: geo-drift-2 18s ease-in-out infinite;
}
.geo-shape.s3 {
  top: 40%; right: 22%;
  width: clamp(60px, 8vw, 120px);
  animation: geo-drift-3 14s ease-in-out infinite;
}
.geo-shape.s4 {
  bottom: 30%; right: 8%;
  width: clamp(80px, 10vw, 140px);
  animation: geo-drift-1 26s ease-in-out infinite reverse;
}
.geo-shape.s5 {
  top: 20%; left: 20%;
  width: clamp(40px, 5vw, 80px);
  animation: geo-drift-2 16s ease-in-out infinite reverse;
}

@keyframes geo-drift-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-18px, 24px) rotate(45deg); }
  50%  { transform: translate(12px, -18px) rotate(90deg); }
  75%  { transform: translate(-8px, 10px) rotate(135deg); }
}
@keyframes geo-drift-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(22px, -16px) rotate(-60deg); }
  66%  { transform: translate(-14px, 20px) rotate(-120deg); }
}
@keyframes geo-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50%  { transform: translate(10px, 14px) scale(1.15) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-expo) 0.1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  overflow: hidden;
}
.hero-title .ht-a {
  font-size: clamp(5rem, 14vw, 13rem);
  display: block;
  color: var(--text);
  opacity: 0;
  transform: translateY(60px);
  animation: fade-up 1s var(--ease-expo) 0.3s forwards;
}
.hero-title .ht-b {
  font-size: clamp(4rem, 12vw, 11rem);
  display: block;
  font-style: italic;
  color: var(--accent);
  opacity: 0;
  transform: translateY(60px);
  animation: fade-up 1s var(--ease-expo) 0.45s forwards;
}
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-expo) 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-expo) 0.9s forwards;
}
.hero-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: color 0.2s;
}
.hero-link.primary {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.hero-link.primary:hover { color: var(--accent); }
.hero-link.secondary { color: var(--text-mid); }
.hero-link.secondary:hover { color: var(--text); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-expo) 1.4s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scroll-tick 2s ease-in-out 2s infinite;
}
@keyframes scroll-tick {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── HOME SECTIONS ─────────────────────────────── */
.home-section {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.home-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.home-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}
.home-section-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.home-section-link:hover { color: var(--text); }

/* ─── PROJECT CARDS ─────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.project-card {
  background: var(--bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.project-card:not(.locked):hover { background: var(--bg-subtle); }
.project-card.locked { opacity: 0.35; }
.project-card.locked .pc-title::after { content: ' — Soon'; font-size: 0.6em; color: var(--text-dim); }

.pc-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 140px;
}
.pc-visual svg { width: 100%; height: 100%; }

.pc-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}
.pc-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.pc-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.pc-arrow {
  font-size: 0.7rem;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease-expo), transform 0.3s var(--ease-expo);
}
.project-card:not(.locked):hover .pc-arrow { opacity: 1; transform: translateX(0); }

/* ─── DONATE BUTTON ─────────────────────────────── */
.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(221,208,196,0.4);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.donate-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ─── CONTACT FORM ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-dim);
}
.form-field input,
.form-field textarea {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-submit {
  align-self: flex-start;
  background: none;
  border: 1px solid rgba(242,237,232,0.2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  padding: 16px 32px;
  transition: border-color 0.25s, color 0.25s;
}
.form-submit:hover { border-color: var(--accent); color: var(--accent); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}
.contact-info-block {}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 10px;
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.contact-info-value:hover { color: var(--text); }
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── BLOG POST PAGE ────────────────────────────── */
.post-header {
  padding: 160px 64px 64px;
  border-bottom: 1px solid var(--border);
  max-width: 860px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.post-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}
.post-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.post-author {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.post-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
}
.post-body {
  padding: 64px 64px 80px;
  max-width: 860px;
}
.post-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}
.post-body h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin: 36px 0 16px;
}
.post-body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}

/* ─── RESPONSIVE ADDITIONS ──────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 0 24px; min-height: 100svh; }
  .hero-scroll { left: 24px; }
  .home-section { padding: 60px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .post-header { padding: 120px 24px 48px; }
  .post-body { padding: 48px 24px 60px; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .projects-grid { gap: 1px; }
  .project-card { padding: 28px 24px; }
}
