/* ================================================================
   QUIET AUTHORITY — LANDING PAGE
   Brand system: Chocolate Plum, Celadon, Cream, Ink.
   Lato only. Left-aligned. Rectangular. No gradients / shadows / radius.
   ================================================================ */

:root {
  --plum: #553832;
  --plum-shadow: rgba(85, 56, 50, 0.15);
  --celadon: #A8D3A8;
  --celadon-soft: rgba(168, 211, 168, 0.25);
  --cream: #FAF8F3;
  --ink: #1E1218;
  --ink-60: rgba(30, 18, 24, 0.6);
  --ink-30: rgba(30, 18, 24, 0.3);
  --cream-60: rgba(250, 248, 243, 0.6);
  --cream-30: rgba(250, 248, 243, 0.3);

  --font: "Lato", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --max: 1120px;
  --max-narrow: 760px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(80px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--cream);
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

p { margin: 0 0 1.1em 0; }
p:last-child { margin-bottom: 0; }

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

button, input, textarea { font-family: inherit; }

::selection { background: var(--celadon); color: var(--ink); }

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.wrap {
  width: 100%;
  max-width: var(--max);
  padding: 0 var(--gutter);
  margin: 0 auto;
}
.wrap--narrow { max-width: calc(var(--max-narrow) + (2 * var(--gutter))); }

.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--tight { padding: clamp(60px, 7vw, 100px) 0; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--plum { background: var(--plum); color: var(--cream); }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin: 0 0 28px 0;
}
.eyebrow--dark { color: var(--ink-60); }
.eyebrow--cream { color: var(--cream-60); }

/* Display — used only in hero */
.display {
  font-weight: 100;
  font-size: clamp(58px, 9.5vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 36px 0;
  color: var(--cream);
  overflow-wrap: break-word;
  hyphens: none;
}
.display__thin,
.display__black {
  display: block;
}
.display__thin { font-weight: 100; }
.display__black {
  font-weight: 900;
  letter-spacing: -0.04em;
}
.display__thin--sm {
  font-size: 0.42em;
  letter-spacing: 0.04em;
  font-weight: 100;
  margin-top: 10px;
  color: var(--celadon);
  text-transform: lowercase;
}

/* Section headings */
.h2 {
  font-weight: 100;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 40px 0;
  color: var(--ink);
  max-width: 16ch;
}
.h2--lead { max-width: 20ch; }
.h2--cream { color: var(--cream); }
.h2__black {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.h2__emph {
  font-weight: 900;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.h2__emph::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 8%;
  height: 38%;
  background: var(--celadon);
  z-index: -1;
}

.h3 {
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 48px 0 18px 0;
  color: var(--ink);
}

.lede {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 48px 0;
  max-width: 48ch;
  color: var(--ink);
}

/* ================================================================
   BUTTONS + LINKS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: transparent;
  color: var(--ink);
}
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: transparent;
  color: var(--cream);
}
.section--cream .btn--cream {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.section--cream .btn--cream:hover {
  background: transparent;
  color: var(--ink);
}

.link-arrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-60);
  border-bottom: 1px solid var(--cream-30);
  padding-bottom: 4px;
  transition: color 180ms ease, border-color 180ms ease;
}
.link-arrow:hover { color: var(--cream); border-color: var(--cream); }

.link-underline {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  color: var(--ink);
}
.link-underline--light { color: var(--cream); }
.link-underline:hover { color: var(--celadon); border-color: var(--celadon); }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(30, 18, 24, 0.08);
  backdrop-filter: saturate(1.2);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__mark { width: 28px; height: 28px; }
.nav__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__word-thin { font-weight: 100; }
.nav__word-black { font-weight: 900; }

.nav .btn { padding: 12px 22px; font-size: 12px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--plum);
  color: var(--cream);
  padding: clamp(70px, 9vw, 130px) 0 clamp(90px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--cream-30) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.04;
  pointer-events: none;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text { min-width: 0; max-width: 100%; }

.hero__headline {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 28px 0;
  max-width: 22ch;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-60);
  margin: 0 0 40px 0;
  max-width: 48ch;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ================================================================
   PHOTO FRAMES (with placeholders while real photos are pending)
   ================================================================ */
.photo-frame {
  position: relative;
  width: 100%;
}
.photo-frame--hero {
  aspect-ratio: 4 / 5;
  max-width: 400px;
  margin-left: auto;
}
.photo-frame--side {
  aspect-ratio: 4 / 5;
  max-width: 340px;
}

.photo-frame__accent {
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--celadon);
  z-index: 0;
}

.photo-frame__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #2f1f1c;
  background-size: cover;
  background-position: center 18%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  filter: grayscale(0.06) contrast(1.03) saturate(0.95);
}
.photo-frame__image[data-photo="brand-shot"] {
  background-image: url("assets/photos/brand-shot.jpg");
  background-position: center 20%;
}
.photo-frame__image[data-photo="human-shot"] {
  background-image: url("assets/photos/human-shot.jpg");
  background-position: center 35%;
}
.photo-frame__image[data-photo] .photo-placeholder-label { display: none; }
.photo-frame__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(125deg, transparent 45%, rgba(85, 56, 50, 0.08) 100%),
    repeating-linear-gradient(0deg, rgba(30, 18, 24, 0.02) 0 2px, transparent 2px 4px);
  pointer-events: none;
}
.photo-placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-60);
  background: rgba(30, 18, 24, 0.45);
  padding: 6px 12px;
}

/* ================================================================
   PROSE (long-form editorial body)
   ================================================================ */
.prose {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.7;
  max-width: 60ch;
  color: var(--ink);
}
.prose p { margin: 0 0 1.25em; }

.pullquote {
  margin: 56px -16px;
  padding: 32px 36px;
  border-left: 4px solid var(--celadon);
  background: var(--celadon-soft);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pullquote p { margin: 0; }

/* ================================================================
   TWO-COLUMN PATTERNS
   ================================================================ */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}
.two-col--fixes { margin-top: 24px; }
.two-col--contrast { margin-top: 64px; }
.two-col--fit { margin-top: 32px; }

.fix-card {
  padding: 40px 36px;
  background: var(--cream);
  border-top: 2px solid var(--ink);
}
.fix-card--accent {
  background: var(--celadon-soft);
  border-top-color: var(--plum);
}
.fix-card__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0 0 14px 0;
}
.fix-card__title {
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.caption {
  margin-top: 40px;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-60);
}

/* Contrast columns (NOT / IS) */
.contrast-col {
  padding: 28px 0 0;
  border-top: 2px solid var(--ink);
}
.contrast-col--no { opacity: 0.55; }
.contrast-col__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  color: var(--ink);
}
.contrast-col ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--ink-30);
  font-size: 16px;
  line-height: 1.5;
}
.contrast-col ul li:last-child { border-bottom: 0; }
.contrast-col--no ul li { text-decoration: line-through; text-decoration-color: var(--ink-30); }

/* Fit columns */
.fit {
  padding: 36px 32px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
}
.fit--yes {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.fit__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
.fit ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  line-height: 1.5;
}
.fit--no ul li { border-color: var(--ink-30); }
.fit ul li:last-child { border-bottom: 0; }

/* ================================================================
   NUMBERED LIST (how it works)
   ================================================================ */
.numbered {
  display: grid;
  gap: 0;
  margin-top: 16px;
}
.numbered li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--ink-30);
  align-items: start;
}
.numbered li:last-child { border-bottom: 1px solid var(--ink-30); }
.numbered__num {
  font-weight: 100;
  font-size: clamp(44px, 4.5vw, 60px);
  line-height: 1;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.numbered__title {
  font-weight: 900;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.015em;
  margin: 6px 0 10px 0;
  color: var(--ink);
}
.numbered li p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 50ch;
}

/* ================================================================
   CALLOUT
   ================================================================ */
.callout {
  margin-top: 64px;
  padding: 40px clamp(28px, 4vw, 56px);
  background: var(--plum);
  color: var(--cream);
  max-width: var(--max-narrow);
}
.callout p { color: var(--cream); font-size: 17px; line-height: 1.6; }

/* ================================================================
   LUXURY LIST (plum section bullets)
   ================================================================ */
.list-lux {
  margin: 32px 0 48px 0;
  display: grid;
  gap: 0;
}
.list-lux li {
  padding: 20px 0;
  border-top: 1px solid var(--cream-30);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.list-lux li:last-child { border-bottom: 1px solid var(--cream-30); }

.plum-tagline {
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  color: var(--celadon);
}

/* ================================================================
   PHASES (what's included)
   ================================================================ */
.phases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.phase {
  padding: 44px clamp(24px, 3vw, 40px);
  background: var(--cream);
  border: 1.5px solid var(--ink);
}
.phase--ongoing {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.phase__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid currentColor;
}
.phase__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  opacity: 0.6;
}
.phase__title {
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.phase__list li {
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px dashed currentColor;
  opacity: 0.92;
}
.phase__list li:last-child { border-bottom: 0; }

/* ================================================================
   TIMELINE (what this means for you)
   ================================================================ */
.timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.timeline {
  border-top: 2px solid var(--ink);
}
.timeline__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-30);
  align-items: baseline;
}
.timeline__when {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0;
}
.timeline__what {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink);
}

.timeline__aside {
  position: sticky;
  top: 100px;
  justify-self: end;
  width: 100%;
  max-width: 340px;
}

.result-card {
  margin-top: 64px;
  padding: 40px clamp(28px, 3vw, 48px);
  background: var(--celadon);
  color: var(--ink);
  max-width: 720px;
}
.result-list li {
  padding: 12px 0;
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.45;
  border-bottom: 1px solid rgba(30, 18, 24, 0.15);
}
.result-list li:last-child { border-bottom: 0; }
.result-list li em { font-style: italic; font-weight: 900; }

/* ================================================================
   DURATION
   ================================================================ */
.duration {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 40px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.duration__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0 0 10px 0;
}
.duration__value {
  font-weight: 100;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 10px 0;
  color: var(--ink);
}
.duration__note {
  margin: 0;
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.5;
  max-width: 30ch;
}
.duration__divider {
  width: 1px;
  height: 80px;
  background: var(--ink-30);
}

/* ================================================================
   STEPS (what happens next)
   ================================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 40px;
}
.steps__item {
  padding: 32px 28px 36px;
  background: transparent;
  border: 1.5px solid var(--cream-30);
  position: relative;
  transition: border-color 250ms ease, transform 250ms ease, background 250ms ease;
}
.steps__item:hover {
  border-color: var(--celadon);
  background: rgba(168, 211, 168, 0.05);
  transform: translateY(-3px);
}
.steps__num {
  display: block;
  font-weight: 100;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--celadon);
  line-height: 1;
  margin-bottom: 20px;
}
.steps__item h3 {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
  color: var(--cream);
}
.steps__item p {
  color: var(--cream-60);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

/* ================================================================
   FOUNDERS (founding client block)
   ================================================================ */
.section--founders {
  border-top: 1px solid rgba(250, 248, 243, 0.1);
}
.founders {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.founders__body {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--cream);
  max-width: 54ch;
  margin-bottom: 24px;
}
.founders__note {
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream-60);
  max-width: 54ch;
  margin-bottom: 36px;
  font-style: italic;
}
.founders__cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.founders__accent {
  display: flex;
  justify-content: center;
}
.founders__badge {
  width: 260px;
  height: 260px;
  background: var(--celadon);
  color: var(--plum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.founders__badge::before {
  content: "";
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1.5px solid var(--cream-30);
  z-index: -1;
}
.founders__badge-small {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0;
}
.founders__badge-big {
  font-weight: 900;
  font-size: 140px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 4px 0;
}

/* ================================================================
   PS
   ================================================================ */
.ps {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.ps__label {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  color: var(--plum);
}
.ps__body {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  max-width: 58ch;
  margin-bottom: 48px;
}

.sig {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--ink-30);
  border-bottom: 1px solid var(--ink-30);
}
.sig__name {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 4px 0;
  color: var(--ink);
}
.sig__role {
  font-size: 15px;
  color: var(--ink-60);
  margin: 0 0 12px 0;
}
.sig__links {
  font-size: 15px;
  margin: 0;
}
.sig__links a {
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 1px;
  transition: border-color 180ms ease;
}
.sig__links a:hover { border-color: var(--plum); color: var(--plum); }

.ps__foot {
  font-size: 15px;
  color: var(--ink-60);
  font-style: italic;
  margin: 0;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--plum);
  color: var(--cream);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(250, 248, 243, 0.08);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer__mark { width: 28px; height: 28px; }
.footer__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 16px;
  color: var(--cream);
}
.footer__word-thin { font-weight: 100; }
.footer__word-black { font-weight: 900; }

.footer__nav {
  display: inline-flex;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__nav a {
  color: var(--cream-60);
  transition: color 180ms ease;
}
.footer__nav a:hover { color: var(--celadon); }

.footer__copy {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin: 0;
  text-align: right;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 360px; }
  .photo-frame--hero { max-width: 360px; margin: 0; }

  .timeline-grid { grid-template-columns: 1fr; }
  .timeline__aside { position: static; justify-self: start; max-width: 300px; margin-top: 24px; }

  .founders { grid-template-columns: 1fr; }
  .founders__accent { order: -1; }
  .founders__badge { width: 220px; height: 220px; }
  .founders__badge-big { font-size: 110px; }

  .steps { grid-template-columns: 1fr; }
  .two-col--fixes, .two-col--contrast, .two-col--fit, .phases { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; text-align: left; gap: 20px; }
  .footer__nav { justify-content: flex-start; }
  .footer__copy { text-align: left; }

  .numbered li { grid-template-columns: 80px 1fr; gap: 20px; }
  .timeline__row { grid-template-columns: 130px 1fr; gap: 20px; }
  .duration { grid-template-columns: 1fr; gap: 32px; }
  .duration__divider { width: 60px; height: 1px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding-top: 56px; padding-bottom: 80px; }
  .hero__sub { font-size: 16px; }
  .hero__cta { gap: 18px; }

  .nav__inner { padding: 14px var(--gutter); }
  .nav__wordmark { display: none; }

  .h2 { max-width: 100%; }
  .numbered li { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
  .numbered__num { font-size: 38px; }
  .timeline__row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }

  .pullquote { margin: 40px 0; padding: 24px; }
  .callout { padding: 28px 22px; margin-top: 48px; }
  .steps__item { padding: 24px 22px; }
  .founders__body, .founders__note { font-size: 16px; }
  .phase { padding: 28px 22px; }
  .fit { padding: 26px 22px; }

  .btn { padding: 14px 22px; font-size: 12px; }
}
