/* =========================================================
   Auden Collective — Static one-page site
   No frameworks. Just CSS.
   ========================================================= */

:root {
  --bg:       #fffcf0;
  --ink:      #1a1409;
  --ink-dim:  rgba(26, 20, 9, 0.35);
  --ink-soft: rgba(26, 20, 9, 0.5);
  --rule:     rgba(26, 20, 9, 0.12);
  --accent:   #8a6530;   /* deeper amber — readable on cream */

  /* Hero palette — always dark */
  --hero-ink: #e8e2d6;
  --hero-dim: rgba(232, 226, 214, 0.32);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "Space Mono", "Courier New", monospace;

  --max:    1240px;
  --narrow: 760px;
  --gutter: clamp(24px, 5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- Alignment utilities ---------- */
.align-left   { text-align: left; }
.align-center { text-align: center; }
.align-right  { text-align: right; }

/* ---------- Mono tag — utility label ---------- */
.mono-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

/* ---------- Layout containers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow {
  max-width: var(--narrow);
}
.container--flush-left {
  padding-left: 0;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 44ch;
}

/* =========================================================
   CINEMATIC HERO
   ========================================================= */

.hero--cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Centered identity lockup over the image */
.hero-identity {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-name {
  font-family: "Bowlby One SC", var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fffcf0;
  text-shadow: 0 2px 32px rgba(0,0,0,0.28);
}

.hero-est {
  color: #fffcf0;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.22em;
}

/* No vignette — image shown clean */

/* Film grain */
.hero--cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* =========================================================
   TAGLINE SECTION
   ========================================================= */
.tagline-section {
  background: var(--bg);
  padding: clamp(72px, 12vh, 140px) 0;
  padding-top: 50.08px;
  border-bottom: 1px solid var(--rule);
}

.tagline-wrap {
  position: relative;
}

.tagline-ghost {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

#tagline-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.tagline-text {
  font-family: "Bebas Neue", var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .tagline-text {
    font-size: 80px;
  }
}

.type-cursor {
  display: inline;
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-size: 1em;
  line-height: inherit;
  vertical-align: baseline;
  color: var(--ink);
  margin-left: 0.04em;
}

.type-cursor--blink {
  animation: cursor-blink 0.75s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* =========================================================
   WORD ROTATION SECTION — standalone below hero
   ========================================================= */
.footer-wordrot {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 120px;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.mc-headline {
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  padding: 0;
  user-select: none;
  white-space: normal;
}

@media (min-width: 700px) {
  .mc-headline {
    white-space: nowrap;
  }
}

.mc-static {
  color: #fffcf0;
  font-style: normal;
}

.mc-word {
  color: #fffcf0;
  font-style: normal;
  display: inline-block;
  min-width: 2ch;
}

.mc-wordmark {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--hero-dim);
}

/* Scroll hint at bottom of hero */
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(32px, 5vh, 56px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--ink-soft);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6) translateY(8px); }
}

/*
  mc-word-slot: inline-grid stacks mc-word and mc-sizer in the
  same grid cell so layout never shifts between words.
*/
.mc-word-slot {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  vertical-align: baseline;
}

.mc-word,
.mc-sizer {
  grid-area: 1 / 1;
}

.mc-sizer {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Word exit / enter animations */
@keyframes mc-word-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes mc-word-in {
  from { opacity: 0; transform: translateY(0.14em); }
  to   { opacity: 1; transform: translateY(0); }
}

.mc-word {
  will-change: opacity, transform;
}

.mc-word.is-exiting {
  animation: mc-word-out 160ms ease-in forwards;
}

.mc-word.is-entering {
  animation: mc-word-in 280ms cubic-bezier(0.2, 0.65, 0.3, 0.9) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .mc-word.is-exiting,
  .mc-word.is-entering {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-line { animation: none; }
}

/* =========================================================
   MANIFESTO — rapid match-cut glitch sequence
   ========================================================= */
.manifesto {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  border-top: 1px solid rgba(232,226,214,0.1);
}

/* Manifesto text stays light on its black background */
.manifesto .mf-line {
  color: #e8e2d6;
}
.manifesto .mf-line.is-accent {
  color: #c9a96e;
}
.manifesto .mf-progress-track {
  background: rgba(232,226,214,0.1);
}
.manifesto .mf-progress-fill {
  background: #c9a96e;
}
.manifesto .mf-counter {
  color: rgba(232,226,214,0.5);
}

/* Scanline overlay */
.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  z-index: 1;
}

.manifesto-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vh, 80px);
  padding: var(--gutter);
  text-align: center;
}

.manifesto-frame {
  position: relative;
  min-height: clamp(80px, 16vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* The cycling word/phrase */
.mf-line {
  position: relative;
  display: inline-block;
  font-family: "Outfit", var(--sans);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 10rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  will-change: transform, opacity, clip-path;
}

/* RGB channel split — before = red, after = blue */
.mf-line::before,
.mf-line::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: inherit;
  will-change: transform, opacity;
}

.mf-line::before {
  color: #ff3860;
  mix-blend-mode: screen;
}

.mf-line::after {
  color: #2472ff;
  mix-blend-mode: screen;
}

/* ---- GLITCH EXIT ---- */
@keyframes mf-exit-main {
  0%   { opacity: 1; transform: translateX(0);    clip-path: inset(0 0 0 0); }
  18%  { opacity: 1; transform: translateX(-10px); clip-path: inset(0 0 0 0); }
  30%  { opacity: 0.8; transform: translateX(8px);  clip-path: inset(20% 0 40% 0); }
  44%  { opacity: 0.5; transform: translateX(-5px); clip-path: inset(55% 0 10% 0); }
  60%  { opacity: 0.2; transform: translateX(3px);  clip-path: inset(0 0 85% 0); }
  80%  { opacity: 0.05; }
  100% { opacity: 0; transform: translateX(0); clip-path: inset(0 0 100% 0); }
}

@keyframes mf-exit-red {
  0%   { opacity: 0; transform: translateX(0); }
  15%  { opacity: 0.85; transform: translateX(-14px); clip-path: inset(15% 0 45% 0); }
  35%  { opacity: 0.6;  transform: translateX(10px);  clip-path: inset(50% 0 20% 0); }
  55%  { opacity: 0.3;  transform: translateX(-6px);  clip-path: inset(0 0 70% 0); }
  100% { opacity: 0; transform: translateX(0); }
}

@keyframes mf-exit-blue {
  0%   { opacity: 0; transform: translateX(0); }
  15%  { opacity: 0.85; transform: translateX(14px);  clip-path: inset(30% 0 30% 0); }
  35%  { opacity: 0.6;  transform: translateX(-10px); clip-path: inset(10% 0 60% 0); }
  55%  { opacity: 0.3;  transform: translateX(6px);   clip-path: inset(65% 0 5% 0); }
  100% { opacity: 0; transform: translateX(0); }
}

.mf-line.is-exiting {
  animation: mf-exit-main 260ms cubic-bezier(0.4, 0, 1, 1) forwards;
}
.mf-line.is-exiting::before {
  animation: mf-exit-red  260ms cubic-bezier(0.4, 0, 1, 1) forwards;
}
.mf-line.is-exiting::after {
  animation: mf-exit-blue 260ms cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* ---- GLITCH ENTER ---- */
@keyframes mf-enter-main {
  0%   { opacity: 0; transform: translateX(12px);  clip-path: inset(0 0 0 100%); }
  20%  { opacity: 0.4; transform: translateX(-8px); clip-path: inset(0 0 0 65%); }
  40%  { opacity: 0.7; transform: translateX(5px);  clip-path: inset(0 0 0 30%); }
  65%  { opacity: 0.9; transform: translateX(-2px); clip-path: inset(0 0 0 8%); }
  100% { opacity: 1;   transform: translateX(0);   clip-path: inset(0 0 0 0); }
}

@keyframes mf-enter-red {
  0%   { opacity: 0; transform: translateX(0); }
  20%  { opacity: 0.7; transform: translateX(-16px); clip-path: inset(0 0 0 60%); }
  50%  { opacity: 0.4; transform: translateX(10px);  clip-path: inset(0 0 0 20%); }
  100% { opacity: 0; transform: translateX(0); clip-path: inset(0 0 0 0); }
}

@keyframes mf-enter-blue {
  0%   { opacity: 0; transform: translateX(0); }
  20%  { opacity: 0.7; transform: translateX(16px);  clip-path: inset(0 0 0 60%); }
  50%  { opacity: 0.4; transform: translateX(-10px); clip-path: inset(0 0 0 20%); }
  100% { opacity: 0; transform: translateX(0); clip-path: inset(0 0 0 0); }
}

.mf-line.is-entering {
  animation: mf-enter-main 220ms cubic-bezier(0, 0, 0.2, 1) forwards;
}
.mf-line.is-entering::before {
  animation: mf-enter-red  220ms cubic-bezier(0, 0, 0.2, 1) forwards;
}
.mf-line.is-entering::after {
  animation: mf-enter-blue 220ms cubic-bezier(0, 0, 0.2, 1) forwards;
}

/* Accent color for the last phrase */
.mf-line.is-accent {
  color: var(--accent);
}

/* UI strip at bottom of manifesto */
.manifesto-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(400px, 70vw);
}

.mf-progress-track {
  width: 100%;
  height: 1px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}

.mf-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 600ms linear;
}

.mf-counter {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .mf-line.is-exiting,
  .mf-line.is-exiting::before,
  .mf-line.is-exiting::after,
  .mf-line.is-entering,
  .mf-line.is-entering::before,
  .mf-line.is-entering::after {
    animation: none !important;
  }
  .mf-progress-fill { transition: none; }
}

/* =========================================================
   THESIS
   ========================================================= */
.thesis {
  padding: 0;
  padding-top: 0px;
  margin-bottom: 0px;
  border-top: 1px solid var(--rule);
  overflow-x: clip;
}

.markets-inner {
  padding: 0 var(--gutter);
}

.markets-header {
  flex-shrink: 0;
}

.thesis-heading {
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0px 0 6px 0;
  text-align: center;
  white-space: normal;
}

@media (min-width: 700px) {
  .thesis-heading {
    white-space: nowrap;
    font-size: 185px;
  }
}

@media (min-width: 768px) {
  .thesis {
    padding-bottom: 120px;
  }

  .thesis-heading {
    text-align: left;
  }

  .footer-name {
    white-space: nowrap;
  }
}

.thesis-rule {
  border: none;
  border-top: 1.5px solid var(--ink);
  margin: 0;
}

.markets-stage {
  padding-top: 0px;
}

.market-col-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--ink-soft);
  margin-top: 10px;
  text-align: left;
}

.market-item {
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-size: clamp(48px, 12vw, 100px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 10px;
}

/* =========================================================
   WHO ARE WE — sticky horizontal ticker (section 4)
   ========================================================= */
.who-section {
  height: 300vh;
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.who-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.who-track {
  white-space: nowrap;
  padding: 0 var(--gutter) 0 10vw;
  will-change: transform;
  line-height: 1;
}

@media (min-width: 700px) {
  .who-track {
    padding-left: 50vw;
  }
}

.who-heading-inline,
.who-quote-inline {
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 11rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline;
}

.who-quote-inline {
  font-size: clamp(3.5rem, 9vw, 100px);
  color: #ffab00;
  margin-left: 10px;
  margin-right: 10px;
}

.thesis-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  padding-bottom: 3px;
  transition: border-color 200ms ease, opacity 200ms ease;
  width: fit-content;
}

.thesis-cta:hover {
  border-bottom-color: var(--accent);
  opacity: 0.75;
}

/* =========================================================
   SECTORS — vertical storytelling (section 5)
   ========================================================= */
.sectors-section {
  height: 380vh;
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.sectors-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 var(--gutter);
  overflow: hidden;
}

.sectors-header { flex-shrink: 0; }

.sectors-heading {
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 20px 0 6px 0;
  text-align: right;
}

@media (min-width: 768px) {
  .sectors-heading {
    font-size: 185px;
  }
}

.sectors-rule {
  border: none;
  border-top: 1.5px solid var(--ink);
  margin: 0;
}

.sectors-stage {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(16px, 3vh, 32px);
  position: relative;
}

.sectors-item {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(56px);
  will-change: opacity, transform;
}

.sector-name {
  font-family: "Bebas Neue", var(--sans);
  font-weight: 400;
  font-size: clamp(48px, 12vw, 100px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
  text-align: right;
}

.sector-img {
  width: clamp(180px, 22vw, 320px);
  height: clamp(270px, 33vw, 480px);
  object-fit: cover;
  margin-top: 16px;
  display: block;
  border: 1px solid rgba(26, 20, 9, 0.18);
  border-radius: 10px;
}

@media (min-width: 768px) {
  .sector-img {
    width: clamp(270px, 33vw, 480px);
    height: clamp(405px, 49.5vw, 720px);
  }
}

.sectors-counter {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: lowercase;
}

/* =========================================================
   BAND LISTS (sectors / standards / markets)
   ========================================================= */

/* Items: 2-col grid on mobile, equal columns on desktop */
.band-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 700px) {
  .band-list {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-template-columns: none;
    gap: clamp(2rem, 4vw, 5rem);
  }
}

.band-list li {
  font-family: "Bebas Neue", var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink);
  padding-top: clamp(1.2rem, 2.5vh, 1.8rem);
  border-top: 1px solid var(--rule);
  transition: color 220ms ease;
  text-align: left;
}

.band-list li:hover {
  color: var(--accent);
}

/* Vertical variant — stacks items in a column */
.band-list--col {
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 700px) {
  .band-list--col {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.band-list--col li + li {
  border-top: 0;
  padding-top: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--rule);
  padding: 0;
  margin: 0;
}

.footer-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  padding-left: clamp(20px, 6vw, 80px);
  padding-right: clamp(20px, 6vw, 80px);
  padding-top: 0;
  padding-bottom: 20px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.footer-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-studio {
  display: block;
  margin-bottom: 4px;
}

.footer-name {
  font-family: "Bowlby One SC", var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  white-space: nowrap;
  margin: 0;
  color: #fffcf0;
  letter-spacing: 0.01em;
  line-height: 1;
}

.email {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: #fffcf0;
  width: fit-content;
  transition: opacity 200ms ease;
}

.email:hover {
  opacity: 0.7;
  border-bottom-color: var(--accent);
}

.footer-meta {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

/* =========================================================
   REVEAL-ON-SCROLL (progressive enhancement)
   ========================================================= */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 800ms cubic-bezier(0.2, 0.65, 0.3, 0.9),
    transform 800ms cubic-bezier(0.2, 0.65, 0.3, 0.9);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   MOBILE OVERRIDES (max-width: 767px)
   ========================================================= */

@media (max-width: 767px) {
  /* Section 2: Tagline — 100vh, large font to fill height */
  .tagline-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .tagline-text {
    font-size: 50px;
    line-height: 1.2;
    text-align: left;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section 5: Markets — top + center aligned */
  .thesis {
    min-height: unset;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(40px, 8vh, 80px);
    padding-bottom: clamp(40px, 8vh, 80px);
  }
  .markets-inner {
    width: 100%;
    text-align: center;
  }
  .market-col-label {
    text-align: center;
  }
  .market-item {
    text-align: center;
  }

  /* 02. Sectors — center all elements + bigger images */
  .sectors-heading {
    text-align: center;
  }
  .sectors-item {
    align-items: center;
  }
  .sector-name {
    text-align: center;
  }
  .sector-img {
    width: 70vw;
    height: 105vw;
  }
}
