:root {
  --fg: #151413;
  --fg-mid: #555049;
  --fg-muted: #8a8279;
  --fg-faint: #b5aea5;
  --bg: #faf9f7;
  --bg-warm: #f3f0eb;
  --bg-dark: #1c1b19;
  --bg-card: #ffffff;
  --accent: #2e5c4f;
  --accent-hover: #3a7565;
  --accent-faint: rgba(46,92,79,0.07);
  --border: #e6e1da;
  --border-light: #efeae4;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans); background: var(--bg); color: var(--fg);
  line-height: 1.7; font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,249,247,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}
nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg); text-decoration: none;
}
.nav-logo span { font-weight: 200; color: var(--fg-muted); margin-left: 0.3em; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-mid);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--fg); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--fg); margin: 4px 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 0 6rem;
}

.hero-overline {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) forwards 0.2s;
}

.hero h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 300; line-height: 1.18; max-width: 780px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) forwards 0.4s;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem; color: var(--fg-mid); max-width: 560px;
  line-height: 1.85; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) forwards 0.6s;
}

.hero-capabilities {
  display: flex; gap: 3rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) forwards 0.8s;
}

.hero-cap { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--fg-muted); }
.hero-cap strong {
  display: block; font-family: var(--serif); font-size: 1.1rem;
  font-weight: 400; color: var(--fg); letter-spacing: 0; margin-bottom: 0.2rem;
}

/* ── SECTIONS ── */
section { padding: 7rem 0; }

.section-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 300; line-height: 1.3; margin-bottom: 3.5rem; max-width: 680px;
}

.divider { height: 1px; background: var(--border); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.service-card {
  border: 1px solid var(--border); padding: 1.8rem;
  transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.service-icon {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--border); margin-bottom: 1.5rem; transition: color 0.3s;
}
.service-card:hover .service-icon { color: var(--accent); }

.service-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.9rem; color: var(--fg-mid); line-height: 1.75; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.service-tag {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--fg-muted); background: var(--bg-warm); padding: 0.25rem 0.7rem;
}

/* ── WORK ── */
.work-grid { display: flex; flex-direction: column; gap: 0; }

.work-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 3rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border-light);
}
.work-card:last-child { border-bottom: none; }

.work-domain {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-faint); padding-top: 0.35rem;
}

.work-content h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.8rem; }
.work-content p { font-size: 0.92rem; color: var(--fg-mid); line-height: 1.8; margin-bottom: 1rem; }

.work-metrics { display: flex; gap: 2.5rem; margin-top: 1rem; }
.work-metric { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--fg-muted); }
.work-metric strong {
  display: block; font-family: var(--serif); font-size: 1.5rem;
  font-weight: 400; color: var(--fg); letter-spacing: 0; margin-bottom: 0.15rem;
}

/* ── VENTURES ── */
.ventures-section { background: var(--bg-warm); padding: 7rem 0; }
.ventures-intro {
  font-size: 0.95rem; color: var(--fg-mid); max-width: 620px;
  line-height: 1.85; margin-bottom: 3.5rem;
}

.ventures-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

.venture-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 3rem; transition: all 0.35s var(--ease);
}
.venture-card:hover {
  border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.venture-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; margin-bottom: 1.5rem;
}
.venture-badge--live { background: var(--accent); color: #fff; }
.venture-badge--live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #6fdfb8; animation: pulse 2s ease infinite;
}
.venture-badge--soon { background: var(--bg-warm); color: var(--accent); border: 1px solid var(--accent); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.venture-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.5rem; }
.venture-tagline {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--accent); margin-bottom: 1.5rem;
}
.venture-card p { font-size: 0.9rem; color: var(--fg-mid); line-height: 1.8; margin-bottom: 1rem; }

.venture-facts { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.venture-fact-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-faint);
}
.venture-fact-value { font-size: 0.88rem; color: var(--fg); margin-top: 0.15rem; }

.venture-link {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent);
  padding-bottom: 2px; transition: all 0.3s;
}
.venture-link:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; }

.about-quote {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 300;
  line-height: 1.55; font-style: italic; color: var(--accent);
  border-left: 2px solid var(--accent); padding-left: 2rem; margin-top: 0.5rem;
}

.about-text p { font-size: 0.95rem; color: var(--fg-mid); line-height: 1.85; margin-bottom: 1.5rem; }

.values-row {
  display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.value { flex: 1; }
.value h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; }
.value p { font-size: 0.82rem; color: var(--fg-mid); margin-bottom: 0; }

/* ── PERSPECTIVES ── */
.perspectives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.perspective-card {
  border: 1px solid var(--border); padding: 2.2rem;
  transition: all 0.35s var(--ease); cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.perspective-card:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.perspective-tag {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}

.perspective-card h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  line-height: 1.4; margin-bottom: 0.8rem;
}
.perspective-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; }
.perspective-date { font-size: 0.72rem; color: var(--fg-faint); margin-top: 1.2rem; }

/* ── PERSPECTIVES LIST PAGE ── */
.perspectives-page { padding-top: 10rem; padding-bottom: 4rem; min-height: 80vh; }

/* ── PERSPECTIVE SINGLE / ARTICLE ── */
.article-header { padding-top: 10rem; padding-bottom: 3rem; }
.article-header .section-label { margin-bottom: 1.5rem; }
.article-header h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.25; max-width: 740px; margin-bottom: 1.5rem;
}
.article-meta { font-size: 0.82rem; color: var(--fg-faint); }

.article-body {
  max-width: 700px; padding: 3rem 0 6rem;
}
.article-body p {
  font-size: 1rem; color: var(--fg-mid); line-height: 1.9; margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  margin-top: 3rem; margin-bottom: 1rem; color: var(--fg);
}
.article-body h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  margin-top: 2.5rem; margin-bottom: 0.8rem; color: var(--fg);
}
.article-body blockquote {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  color: var(--accent); border-left: 2px solid var(--accent);
  padding-left: 1.5rem; margin: 2rem 0;
}
.article-body code {
  font-size: 0.88rem; background: var(--bg-warm); padding: 0.15rem 0.45rem;
  border-radius: 2px;
}
.article-body pre {
  background: var(--bg-dark); color: #d5cfc6; padding: 1.5rem;
  overflow-x: auto; margin: 2rem 0; font-size: 0.85rem; line-height: 1.6;
}
.article-body pre code { background: none; padding: 0; }
.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem; color: var(--fg-mid);
}
.article-body li { margin-bottom: 0.5rem; font-size: 0.95rem; line-height: 1.8; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--accent-hover); }

.article-back {
  display: inline-block; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
}
.article-back:hover { color: var(--accent-hover); }

/* ── CONTACT ── */
.contact-section { background: var(--bg-dark); color: #fff; padding: 7rem 0; }
.contact-section .section-label { color: #6fdfb8; }
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; }

.contact-cta {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300; line-height: 1.4; margin-bottom: 1.5rem; color: #f0ece6;
}
.contact-cta em { font-style: italic; color: #6fdfb8; }

.contact-sub { font-size: 0.95rem; color: #8a8279; line-height: 1.8; max-width: 480px; }

.contact-details { display: flex; flex-direction: column; gap: 2rem; justify-content: center; }
.contact-item-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #6a6560; margin-bottom: 0.3rem;
}
.contact-item-value { font-size: 1rem; color: #d5cfc6; }
.contact-item-value a {
  color: #d5cfc6; text-decoration: none; border-bottom: 1px solid #3a3835;
  transition: border-color 0.3s;
}
.contact-item-value a:hover { border-color: #6fdfb8; }

/* ── FOOTER ── */
footer { background: var(--bg-dark); padding: 2rem 0; border-top: 1px solid #2a2926; }
footer .container { display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 0.75rem; color: #555049; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  section { padding: 4.5rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .hero-capabilities { flex-direction: column; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .work-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .work-domain { padding-top: 0; margin-bottom: 0.5rem; }
  .work-metrics { flex-wrap: wrap; gap: 1.5rem; }
  .ventures-section { padding: 4.5rem 0; }
  .ventures-grid { grid-template-columns: 1fr; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .perspectives-grid { grid-template-columns: 1fr; }
  .values-row { flex-direction: column; gap: 1.5rem; }
  .contact-section { padding: 4.5rem 0; }
  footer .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .article-header { padding-top: 7rem; }
  .perspectives-page { padding-top: 7rem; }
}
.work-attribution {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}