@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:            #FAFAF2;
  --bg-alt:        #F0F0E6;
  --bg-dark:       #1C1B18;
  --white:         #FFFFFF;
  --text:          #1C1B18;
  --text-mid:      #4A4844;
  --text-sec:      #6E6B66;
  --text-muted:    #9E9B96;
  --border:        #DDD9D2;
  --border-mid:    #C5C1BA;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --max:    1280px;
  --nav-h:  72px;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; }
p { color: var(--text-sec); font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }

/* ── Layout ────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.25rem;
}

/* ── Nav ───────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 2rem;
  line-height: 0;
}
.nav-logo img {
  height: 8rem;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.75rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sec);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
  border-bottom: 1.5px solid #c47be8;
  padding-bottom: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: 0.25s;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: background 0.22s, color 0.22s;
}
.btn:hover { background: var(--text); color: var(--bg); }

.btn-filled { background: #D1FE9F; color: #1A1A1A; border-color: #D1FE9F; }
.btn-filled:hover { background: transparent; color: var(--text); border-color: var(--text); }

/* ── Section chrome ────────────────────────── */
section { padding: 5.5rem 0; }

.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }

.section-header .view-all {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.section-header .view-all:hover { color: var(--text); border-color: var(--text); }

/* ── Hero ──────────────────────────────────── */
.hero {
  padding: 7rem 0 6rem;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.hero h1 {
  font-size: clamp(3.25rem, 6.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.03;
  color: var(--text);
  max-width: 18ch;
  margin-bottom: 1.75rem;
}

.hero h1 em { font-style: italic; }

.hero-lead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-sec);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}

/* ── Hero 2-col layout ─────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Carousel ──────────────────────────────── */
.hero-carousel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.carousel-track {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide inner layouts */
.cs-video,
.cs-article,
.cs-event,
.cs-stat {
  width: 100%;
  height: 100%;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

/* Video slide */
.cs-video {
  background: #272522;
  justify-content: space-between;
}

.cs-video .cs-play {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-video h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 300;
  color: #F8F5F1;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* Article slide */
.cs-article {
  background: #EDE8DF;
  justify-content: space-between;
}

.cs-article blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  flex: 1;
  display: flex;
  align-items: center;
}

.cs-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-sec);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.cs-read {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* Event slide */
.cs-event {
  background: #D5CFC4;
  justify-content: space-between;
}

.cs-event-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  flex: 1;
  display: flex;
  align-items: center;
}

.cs-event-label {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 28ch;
  margin-bottom: 0.5rem;
}

/* Stat slide */
.cs-stat {
  background: var(--bg-dark);
  justify-content: space-between;
}

.cs-big-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-weight: 300;
  color: #F8F5F1;
  line-height: 1;
  flex: 1;
  display: flex;
  align-items: center;
}

.cs-stat-label {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(248,245,241,0.75);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.cs-stat-sub {
  font-size: 0.875rem;
  color: rgba(248,245,241,0.4);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cs-link {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,241,0.6);
  border-bottom: 1px solid rgba(248,245,241,0.2);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.cs-link:hover { color: #F8F5F1; border-color: rgba(248,245,241,0.5); }

/* Shared slide elements */
.cs-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.cs-video .cs-tag  { color: rgba(248,245,241,0.45); }
.cs-article .cs-tag { color: var(--text-muted); }
.cs-event .cs-tag  { color: var(--text-sec); }
.cs-stat .cs-tag   { color: rgba(248,245,241,0.4); }

.cs-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(248,245,241,0.4);
}

/* Carousel navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-arrow {
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.carousel-arrow:hover { border-color: var(--text); color: var(--text); }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.cdot {
  width: 24px;
  height: 2px;
  background: var(--border-mid);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.cdot.active {
  background: var(--text);
  width: 40px;
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .carousel-track { aspect-ratio: 16/9; }
}

/* ── Page hero (inner pages) ───────────────── */
.page-hero {
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  max-width: 22ch;
}

.page-hero p {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
  max-width: 58ch;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-top-color 0.2s;
}
.card:hover { border-top-color: #c47be8; }

.card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  flex-shrink: 0;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-thumb img { transform: scale(1.04); }

.card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ── In-card Instagram carousel ── */
.card-thumb--square { aspect-ratio: 1/1; }

.cc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cc-slide.active { opacity: 1; }
.cc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cc-prev, .cc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(248,245,241,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s;
  padding: 0;
}
.card-thumb:hover .cc-prev,
.card-thumb:hover .cc-next { opacity: 1; }
.cc-prev { left: 10px; }
.cc-next { right: 10px; }
.cc-prev svg, .cc-next svg { width: 14px; height: 14px; }

.cc-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(28,27,24,0.55);
  color: #F8F5F1;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 5;
}

.cc-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}
.cc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.cc-dot.active { background: rgba(255,255,255,0.95); }

.play-btn svg { opacity: 0.9; }

.card-body {
  padding: 1.25rem 1.5rem 1.625rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.card-tag::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c47be8;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-sec);
  flex: 1;
}

.card-date {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 1rem;
}

/* ── About strip (homepage) ────────────────── */
.about-strip { background: var(--bg-alt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.founders-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.founder-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.about-text h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); margin-bottom: 1.25rem; }

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.375rem;
  max-width: 46ch;
}

/* ── Stats ─────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.stat {
  padding: 2.75rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.625rem;
}

.stat-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-sec);
  line-height: 1.6;
  max-width: 20ch;
}

/* ── Quote ─────────────────────────────────── */
.quote-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
  text-align: center;
}

.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3.25vw, 2.625rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  max-width: 28ch;
  margin: 0 auto 1.375rem;
}

.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quote-attr::before {
  content: '—';
  color: #c47be8;
  margin-right: 0.5em;
}

/* ── Why page ──────────────────────────────── */
.why-hero {
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--border);
}

.why-hero-h1 {
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  margin-top: 1.5rem;
}

/* Bold dark statement */
.why-statement {
  background: var(--bg-dark);
  padding: 6.5rem 2.25rem;
  text-align: center;
}

.why-statement-text {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--bg);
  max-width: 22ch;
  margin: 0 auto;
}

.why-statement-text em { font-style: italic; }

/* Stats checkerboard */
.stats-checkerboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.scb-cell {
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.scb-dark { background: #4A3040; }
.scb-light { background: var(--bg-alt); }

.scb-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
}

.scb-dark .scb-num  { color: var(--bg); }
.scb-light .scb-num { color: var(--text); }

.scb-label {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 24ch;
  margin-top: 1.5rem;
}

.scb-dark .scb-label  { color: rgba(248,245,241,0.55); }
.scb-light .scb-label { color: var(--text-sec); }

/* Consequences */
.consequences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.consequence {
  padding: 2.75rem 2.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.consequence-icon {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.consequence h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.consequence p {
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Manifesto rows */
.manifesto { border-top: 1px solid var(--border); }

.manifesto-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.manifesto-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border-mid);
  line-height: 1;
  padding-top: 0.25rem;
}

.manifesto-body h2 {
  font-size: clamp(1.75rem, 2.75vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.manifesto-body p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 56ch;
}

/* Action panels */
.action-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-dark);
}

.action-panel {
  padding: 4rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.action-panel:last-child { border-right: none; }

.ap-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,241,0.3);
  margin-bottom: 1.5rem;
}

.action-panel h3 {
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 1rem;
}

.action-panel p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248,245,241,0.55);
}

/* Why responsive */
@media (max-width: 768px) {
  .stats-checkerboard { grid-template-columns: 1fr; }
  .scb-cell { min-height: auto; padding: 3rem 2.25rem; }
  .consequences-grid { grid-template-columns: 1fr; }
  .manifesto-row { grid-template-columns: 60px 1fr; gap: 1rem; }
  .manifesto-num { font-size: 2.5rem; }
  .action-panels { grid-template-columns: 1fr; }
  .action-panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .action-panel:last-child { border-bottom: none; }
}

/* ── Why pillars ───────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.pillar {
  padding: 3.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border-mid);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.pillar h3 { font-size: 1.375rem; margin-bottom: 0.875rem; }
.pillar p { font-size: 0.9375rem; line-height: 1.8; }

/* ── About page — circle portraits ────────── */
.founders-bio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-bio-col {
  padding: 3.5rem 3.5rem 3.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.founder-bio-col:last-child { border-right: none; }

.founder-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.founder-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.founder-name {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.founder-role-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.founder-bio-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-sec);
  max-width: 36ch;
  margin: 0 auto;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.ftag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
}

.founder-bio-col .socials { justify-content: center; }

/* Origin story */
.origin-story { max-width: 56ch; }

.origin-text {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .founders-bio-row { grid-template-columns: 1fr; }
  .founder-bio-col { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .founder-bio-col:last-child { border-bottom: none; }
}

/* ── About page persons ────────────────────── */
.person {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5.5rem;
  align-items: start;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.person.flip { grid-template-columns: 1fr 380px; }
.person.flip .person-img { order: 2; }
.person.flip .person-bio { order: 1; }

.person-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
}

.person-img img { width: 100%; height: 100%; object-fit: cover; }

.person-bio { padding-top: 0.5rem; }

.person-bio h2 { font-size: clamp(2.75rem, 4.5vw, 4rem); margin-bottom: 0.25rem; }

.person-role {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.person-bio p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.375rem;
  max-width: 50ch;
}

/* ── Content filter ────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.75rem;
}

.filter-btn {
  padding: 0.875rem 1.625rem;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sec);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: var(--text); border-bottom-color: #c47be8; }

.content-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

/* ── Social links ──────────────────────────── */
.socials {
  display: flex;
  gap: 1.625rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--text); border-color: var(--text); }

/* ── CTA band ──────────────────────────────── */
.cta-band {
  background: var(--bg-dark);
  padding: 5.5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--bg);
  margin-bottom: 1.125rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(248,245,241,0.6);
  max-width: 44ch;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-light {
  border-color: rgba(248,245,241,0.5);
  color: var(--bg);
}
.btn-light:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}

/* ── Footer ────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 4.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 0.875rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(248,245,241,0.45);
  line-height: 1.7;
  max-width: 26ch;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,241,0.35);
  margin-bottom: 1.125rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(248,245,241,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bg); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(248,245,241,0.3);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }

  .person,
  .person.flip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .person.flip .person-img,
  .person.flip .person-bio { order: unset; }
  .person-img { aspect-ratio: 4/3; max-width: 520px; }

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

@media (max-width: 900px) {
  .why-split { grid-template-columns: 1fr !important; gap: 3rem !important; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem 2.25rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars { grid-template-columns: 1fr; }
  section { padding: 3.75rem 0; }
  .hero { padding: 5rem 0 4.5rem; }
}

@media (max-width: 560px) {
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .founders-images { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
