:root {
  --bone: #f8f4ec;
  --paper: #fffdf9;
  --sand: #e9dec8;
  --indigo: #183b4e;
  --indigo-deep: #0e2530;
  --morinda: #8c3a32;
  --charcoal: #252421;
  --line: rgba(37, 36, 33, 0.14);
  --muted: rgba(37, 36, 33, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--charcoal);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

body,
button,
input,
select,
textarea {
  font-family: "Poppins", Arial, sans-serif;
}

body:has(.mobile-menu.open) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--indigo);
  font-weight: 500;
  line-height: 1.2;
}

button,
input,
textarea {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 56px, 1180px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--morinda);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--sand);
}

.btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  padding: 11px 22px;
  font-size: 12.5px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--indigo);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--indigo-deep);
}

.btn-light {
  background: var(--paper);
  color: var(--indigo);
}

.btn-light:hover {
  background: var(--sand);
}

.btn-cta {
  min-height: 38px;
  background: var(--morinda);
  color: var(--paper);
  padding: 9px 18px;
  font-size: 12px;
}

.btn-cta:hover {
  background: #742d26;
}

/* Navigation */

.nav {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid transparent;
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(37, 36, 33, 0.06);
}

.nav-brand {
  color: var(--indigo);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.1;
}

.nav-brand span {
  display: block;
  margin-top: 4px;
  color: var(--morinda);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  border-bottom: 1px solid transparent;
  color: rgba(37, 36, 33, 0.6);
  font-size: 12.5px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  border-color: var(--morinda);
  color: var(--indigo);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart {
  color: var(--muted);
  font-size: 12.5px;
}

.cart-badge {
  display: none;
}

.burger {
  display: none;
  width: 24px;
  border: 0;
  padding: 2px;
  background: transparent;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--indigo);
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */

.story-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  background: var(--indigo-deep);
  color: var(--sand);
}

.story-hero::before {
  position: absolute;
  top: -170px;
  left: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(233, 222, 200, 0.08);
  border-radius: 50%;
  content: "";
}

.story-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.story-hero-copy {
  padding-bottom: 50px;
}

.story-hero h1 {
  max-width: 700px;
  color: var(--paper);
  font-size: clamp(43px, 5.3vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 505px;
  margin-top: 28px;
  color: rgba(233, 222, 200, 0.68);
  font-size: 13.5px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  border-bottom: 1px solid rgba(233, 222, 200, 0.25);
  font-size: 12px;
  font-weight: 500;
}

.text-link span {
  margin-left: 6px;
}

.text-link-light {
  color: var(--sand);
}

.story-hero-art {
  position: relative;
  min-height: 640px;
}

.hero-tall-photo {
  position: absolute;
  inset: 20px 75px 0 20px;
  overflow: hidden;
  border-radius: 4px 160px 4px 4px;
}

.hero-tall-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(14, 37, 48, 0.3));
  content: "";
}

.hero-tall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-detail-photo {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 35px;
  width: 185px;
  padding: 8px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  transform: rotate(3deg);
}

.hero-detail-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  top: 86px;
  right: -28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(233, 222, 200, 0.8);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
}

.hero-caption i {
  width: 35px;
  height: 1px;
  background: rgba(233, 222, 200, 0.35);
}

.hero-index {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(233, 222, 200, 0.15);
}

.hero-index span {
  padding: 18px 0;
  color: rgba(233, 222, 200, 0.55);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-index span + span {
  padding-left: 22px;
  border-left: 1px solid rgba(233, 222, 200, 0.15);
}

.rise {
  animation: rise-in 700ms both ease-out;
}

.rise-delay {
  animation-delay: 120ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Manifesto */

.manifesto-section {
  padding: 120px 0;
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 95px;
}

.manifesto-label {
  max-width: 270px;
  align-self: end;
  padding-top: 16px;
  border-top: 1px solid var(--morinda);
}

.manifesto-label span {
  color: var(--morinda);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-label p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 12px;
}

.manifesto-copy {
  max-width: 720px;
}

.manifesto-copy h2 {
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.manifesto-copy > p:last-child {
  max-width: 610px;
  margin-top: 26px;
  color: var(--muted);
}

/* Maker story */

.maker-section {
  padding: 120px 0;
  background: var(--bone);
}

.maker-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.maker-visual {
  position: relative;
}

.maker-photo {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-radius: 180px 4px 4px 4px;
}

.maker-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(14, 37, 48, 0.25));
  content: "";
}

.maker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-credit {
  margin-top: 12px;
  color: rgba(37, 36, 33, 0.48);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.maker-story {
  max-width: 570px;
}

.maker-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.maker-heading h2 {
  font-size: clamp(39px, 5vw, 61px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.maker-role {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.maker-mark {
  display: grid;
  width: 72px;
  height: 72px;
  flex: none;
  place-items: center;
  border: 1px solid var(--morinda);
  border-radius: 50%;
  color: var(--morinda);
  font-size: 17px;
  font-weight: 500;
}

.maker-story blockquote {
  margin-top: 40px;
  color: var(--indigo);
  font-size: clamp(23px, 2.8vw, 33px);
  font-weight: 300;
  line-height: 1.45;
}

.maker-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.maker-body p {
  color: var(--muted);
  font-size: 11.5px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--indigo);
  color: var(--indigo);
  font-size: 11.5px;
  font-weight: 500;
}

/* Impact numbers */

.impact-section {
  padding: 115px 0 125px;
  background: var(--morinda);
  color: var(--paper);
}

.impact-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}

.impact-heading h2 {
  max-width: 660px;
  color: var(--paper);
  font-size: clamp(36px, 4.6vw, 59px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.impact-heading > p {
  max-width: 410px;
  justify-self: end;
  color: rgba(255, 253, 249, 0.66);
  font-size: 11.5px;
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 253, 249, 0.2);
  border-bottom: 1px solid rgba(255, 253, 249, 0.2);
}

.impact-numbers article {
  min-height: 250px;
  padding: 33px 25px 28px 0;
}

.impact-numbers article + article {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 253, 249, 0.2);
}

.impact-number {
  display: block;
  color: var(--paper);
  font-size: clamp(49px, 6vw, 77px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-numbers h3 {
  max-width: 190px;
  margin-top: 45px;
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 500;
}

.impact-numbers p {
  max-width: 205px;
  margin-top: 10px;
  color: rgba(255, 253, 249, 0.57);
  font-size: 10.5px;
}

/* Ledger */

.ledger-section {
  padding: 120px 0;
  background: var(--paper);
}

.ledger-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 65px;
  margin-bottom: 58px;
}

.ledger-heading h2 {
  font-size: clamp(35px, 4.5vw, 57px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.ledger-heading > p {
  max-width: 420px;
  justify-self: end;
  color: var(--muted);
  font-size: 11.5px;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 295px 245px;
  gap: 13px;
}

.ledger-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--bone);
}

.ledger-number {
  color: var(--morinda);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.ledger-card h3 {
  font-size: 18px;
  font-weight: 500;
}

.ledger-card p {
  max-width: 310px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}

.ledger-card-image {
  position: relative;
  grid-row: span 2;
  padding: 0;
  border: 0;
}

.ledger-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 37, 48, 0.68));
  content: "";
}

.ledger-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ledger-card-image div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--paper);
}

.ledger-card-image span {
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ledger-card-image strong {
  font-size: 13px;
  font-weight: 500;
}

.ledger-card-dark {
  background: var(--indigo-deep);
}

.ledger-card-dark h3 {
  color: var(--paper);
}

.ledger-card-dark p {
  color: rgba(233, 222, 200, 0.64);
}

.ledger-card-dark .ledger-number {
  color: var(--sand);
}

.ledger-card-wide {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  flex-direction: row;
  align-items: end;
  gap: 45px;
  background: var(--sand);
}

.ledger-card-wide > div {
  max-width: 480px;
  margin-left: auto;
}

.ledger-line {
  position: absolute;
  top: -115px;
  left: 45px;
  width: 285px;
  height: 285px;
  border: 1px solid rgba(140, 58, 50, 0.22);
  border-radius: 50%;
}

/* AI Story Guide */

.ai-section {
  padding: 120px 0;
  background: var(--sand);
}

.ai-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}

.ai-intro h2 {
  font-size: clamp(37px, 4.7vw, 61px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.ai-intro-note {
  max-width: 420px;
  justify-self: end;
}

.ai-intro-note p {
  color: var(--muted);
  font-size: 11.5px;
}

.ai-intro-note > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--indigo);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-intro-note i,
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #547a56;
  box-shadow: 0 0 0 3px rgba(84, 122, 86, 0.14);
}

.ai-shell {
  display: grid;
  min-height: 690px;
  grid-template-columns: 270px 1fr;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid rgba(37, 36, 33, 0.12);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(37, 36, 33, 0.12);
}

.ai-sidebar {
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  background: var(--indigo-deep);
  color: var(--sand);
}

.ai-brandline {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 7px 22px;
  border-bottom: 1px solid rgba(233, 222, 200, 0.14);
}

.ai-symbol {
  display: grid;
  width: 35px;
  height: 35px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(233, 222, 200, 0.35);
  border-radius: 50%;
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
}

.ai-brandline div,
.chat-header > div > div {
  display: flex;
  flex-direction: column;
}

.ai-brandline strong {
  color: var(--paper);
  font-size: 11.5px;
  font-weight: 500;
}

.ai-brandline small {
  color: rgba(233, 222, 200, 0.48);
  font-size: 8.5px;
}

.sidebar-label {
  margin: 24px 7px 10px;
  color: rgba(233, 222, 200, 0.4);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-topics {
  display: grid;
  gap: 5px;
}

.ai-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 5px;
  padding: 11px 12px;
  background: transparent;
  color: rgba(233, 222, 200, 0.7);
  text-align: left;
}

.ai-topic:hover,
.ai-topic.active {
  background: rgba(255, 253, 249, 0.09);
  color: var(--paper);
}

.ai-topic span {
  font-size: 10.5px;
  font-weight: 500;
}

.ai-topic small {
  color: rgba(233, 222, 200, 0.4);
  font-size: 8px;
}

.ai-boundary {
  margin-top: auto;
  padding: 18px 13px;
  border: 1px solid rgba(233, 222, 200, 0.14);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.04);
}

.ai-boundary span {
  color: var(--sand);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-boundary p {
  margin-top: 7px;
  color: rgba(233, 222, 200, 0.52);
  font-size: 9px;
  line-height: 1.55;
}

.ai-chat {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto auto auto;
  padding: 0 35px 22px;
  background-color: var(--paper);
  background-image: linear-gradient(rgba(24, 59, 78, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 59, 78, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.chat-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
}

.chat-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header strong {
  color: var(--indigo);
  font-size: 11px;
  font-weight: 600;
}

.chat-header small {
  color: var(--muted);
  font-size: 8px;
}

.chat-header button {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 2px 0;
  background: none;
  color: var(--muted);
  font-size: 8.5px;
}

.chat-messages {
  display: flex;
  min-height: 330px;
  max-height: 390px;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  padding: 32px 3px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) transparent;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.message-user {
  justify-content: flex-end;
  padding-left: 18%;
}

.message-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--paper);
  font-size: 9px;
  font-weight: 600;
}

.message-bubble {
  max-width: 670px;
  border: 1px solid var(--line);
  border-radius: 3px 11px 11px 11px;
  padding: 15px 17px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 8px 24px rgba(37, 36, 33, 0.05);
}

.message-user .message-bubble {
  border-color: var(--indigo);
  border-radius: 11px 3px 11px 11px;
  background: var(--indigo);
  color: var(--paper);
}

.message-bubble p {
  font-size: 11.5px;
  line-height: 1.75;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.source-tags span {
  padding: 3px 7px;
  border: 1px solid rgba(24, 59, 78, 0.13);
  border-radius: 999px;
  color: var(--muted);
  font-size: 7.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prompt-area {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
}

.prompt-area > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.prompt-chips button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  background: var(--bone);
  color: var(--indigo);
  font-size: 8.5px;
}

.prompt-chips button:hover {
  border-color: var(--indigo);
  background: var(--paper);
}

.chat-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 15px;
  padding: 7px;
  border: 1px solid rgba(37, 36, 33, 0.18);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 0 8px 30px rgba(37, 36, 33, 0.07);
}

.chat-composer:focus-within {
  border-color: var(--indigo);
}

.chat-composer input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 5px 8px;
  background: transparent;
  font-size: 11.5px;
}

.chat-composer input::placeholder {
  color: rgba(37, 36, 33, 0.4);
}

.chat-composer button {
  display: flex;
  min-width: 82px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 5px;
  padding: 8px 13px;
  background: var(--morinda);
  color: var(--paper);
  font-size: 9.5px;
  font-weight: 600;
}

.chat-composer button:hover {
  background: #742d26;
}

.chat-composer button i {
  font-style: normal;
}

.ai-disclaimer {
  margin-top: 8px;
  color: rgba(37, 36, 33, 0.44);
  font-size: 7.5px;
  text-align: center;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 43px;
}

.typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  animation: typing-bounce 900ms infinite ease-in-out;
}

.typing-dots i:nth-child(2) {
  animation-delay: 120ms;
}

.typing-dots i:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* Continuity */

.continuity-section {
  padding: 120px 0;
  background: var(--indigo-deep);
  color: var(--sand);
}

.continuity-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.continuity-copy h2 {
  max-width: 520px;
  color: var(--paper);
  font-size: clamp(36px, 4.6vw, 59px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.continuity-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 25px 0 33px;
  color: rgba(233, 222, 200, 0.64);
  font-size: 12px;
}

.continuity-images {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: end;
  gap: 13px;
}

.continuity-images figure:first-child {
  height: 370px;
}

.continuity-images figure:last-child {
  height: 560px;
}

.continuity-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */

.footer {
  padding: 68px 0 25px;
  background: #091b23;
  color: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 45px;
}

.footer-word {
  margin-bottom: 13px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

.footer-word span {
  color: var(--sand);
  font-weight: 300;
}

.footer-brand > p:not(.footer-word) {
  max-width: 290px;
  color: rgba(233, 222, 200, 0.65);
  font-size: 11.5px;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.footer-social a {
  border-bottom: 1px solid rgba(233, 222, 200, 0.25);
  font-size: 11px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col h4 {
  margin-bottom: 7px;
  color: var(--paper);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: rgba(233, 222, 200, 0.68);
  font-size: 11.5px;
}

.footer-col a:hover,
.footer-social a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(233, 222, 200, 0.14);
}

.footer-bottom p {
  max-width: 720px;
  color: rgba(233, 222, 200, 0.43);
  font-size: 9.5px;
}

.footer-bottom a {
  color: rgba(233, 222, 200, 0.7);
  font-size: 10.5px;
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 1080px) {
  .story-hero-grid {
    gap: 50px;
  }

  .hero-tall-photo {
    right: 45px;
  }

  .maker-grid,
  .continuity-grid {
    gap: 55px;
  }

  .impact-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-numbers article:nth-child(3) {
    border-top: 1px solid rgba(255, 253, 249, 0.2);
    border-left: 0;
  }

  .impact-numbers article:nth-child(4) {
    border-top: 1px solid rgba(255, 253, 249, 0.2);
  }

  .ai-shell {
    grid-template-columns: 230px 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 72px 0 0;
    flex-direction: column;
    gap: 0;
    padding: 18px 28px 35px;
    background: var(--bone);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu > a:not(.btn) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--indigo);
    font-size: 14px;
  }

  .mobile-menu .btn {
    align-self: flex-start;
    margin-top: 22px;
  }

  .story-hero-grid,
  .manifesto-grid,
  .maker-grid,
  .impact-heading,
  .ledger-heading,
  .ai-intro,
  .continuity-grid {
    grid-template-columns: 1fr;
  }

  .story-hero-copy {
    padding-bottom: 0;
  }

  .story-hero-art {
    min-height: 620px;
  }

  .manifesto-grid {
    gap: 55px;
  }

  .manifesto-label {
    max-width: 360px;
  }

  .maker-photo {
    min-height: 570px;
  }

  .impact-heading > p,
  .ledger-heading > p,
  .ai-intro-note {
    justify-self: start;
  }

  .ledger-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 290px 230px 230px;
  }

  .ledger-card-image {
    grid-row: span 2;
  }

  .ledger-card-wide {
    grid-column: span 2;
  }

  .ai-shell {
    grid-template-columns: 1fr;
  }

  .ai-sidebar {
    display: block;
  }

  .ai-topics {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
  }

  .ai-topic {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar-label,
  .ai-boundary {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .nav {
    min-height: 66px;
    padding: 12px 18px;
  }

  .nav-actions .nav-cart,
  .nav-actions .btn-cta {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 66px;
    padding-inline: 18px;
  }

  .story-hero {
    padding-top: 55px;
  }

  .story-hero-grid {
    min-height: 0;
    gap: 50px;
  }

  .story-hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 12.5px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .story-hero-art {
    min-height: 490px;
  }

  .hero-tall-photo {
    right: 25px;
    left: 0;
    border-radius: 4px 100px 4px 4px;
  }

  .hero-detail-photo {
    width: 125px;
  }

  .hero-caption {
    display: none;
  }

  .hero-index {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .hero-index span {
    padding: 13px 0;
    font-size: 8px;
  }

  .hero-index span:nth-child(3) {
    border-top: 1px solid rgba(233, 222, 200, 0.15);
    border-left: 0;
  }

  .hero-index span:nth-child(4) {
    border-top: 1px solid rgba(233, 222, 200, 0.15);
  }

  .manifesto-section,
  .maker-section,
  .impact-section,
  .ledger-section,
  .ai-section,
  .continuity-section {
    padding: 80px 0;
  }

  .manifesto-copy h2,
  .impact-heading h2,
  .ledger-heading h2,
  .ai-intro h2,
  .continuity-copy h2 {
    font-size: 35px;
  }

  .maker-grid {
    gap: 45px;
  }

  .maker-photo {
    min-height: 470px;
    border-radius: 110px 4px 4px 4px;
  }

  .maker-heading h2 {
    font-size: 43px;
  }

  .maker-mark {
    width: 55px;
    height: 55px;
  }

  .maker-story blockquote {
    font-size: 23px;
  }

  .maker-body {
    grid-template-columns: 1fr;
  }

  .impact-heading,
  .ledger-heading,
  .ai-intro {
    gap: 25px;
  }

  .impact-numbers {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .impact-numbers article,
  .impact-numbers article + article {
    min-height: 205px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 253, 249, 0.2);
    border-left: 0;
  }

  .impact-numbers article:first-child {
    border-top: 0;
  }

  .impact-numbers h3 {
    margin-top: 27px;
  }

  .ledger-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ledger-card,
  .ledger-card-image,
  .ledger-card-wide {
    min-height: 235px;
    grid-row: auto;
    grid-column: 1;
  }

  .ledger-card-image {
    min-height: 440px;
  }

  .ledger-card-wide {
    align-items: flex-start;
    flex-direction: column;
  }

  .ledger-card-wide > div {
    margin-left: 0;
  }

  .ai-shell {
    min-height: 0;
    margin-top: 45px;
  }

  .ai-sidebar {
    padding: 18px 13px;
  }

  .ai-topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-chat {
    padding: 0 15px 17px;
  }

  .chat-header {
    min-height: 70px;
  }

  .chat-header button {
    font-size: 8px;
  }

  .chat-messages {
    min-height: 350px;
    max-height: 440px;
    padding-top: 24px;
  }

  .message-user {
    padding-left: 10%;
  }

  .message-bubble {
    padding: 13px;
  }

  .prompt-chips button {
    flex: 1;
  }

  .chat-composer button {
    min-width: 58px;
  }

  .chat-composer button span {
    display: none;
  }

  .continuity-grid {
    gap: 50px;
  }

  .continuity-images figure:first-child {
    height: 250px;
  }

  .continuity-images figure:last-child {
    height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}