:root {
  --cream: #f5efe6;
  --paper: #fbf8f2;
  --ink: #191713;
  --muted: #6f675d;
  --brown: #5b3f2b;
  --espresso: #2b211a;
  --gold: #b5904a;
  --line: rgba(25, 23, 19, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.brand-sub {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-style: italic;
  color: var(--brown);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: .92rem;
  color: var(--muted);
  transition: color .2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero {
  padding: 104px 0 92px;
}

.eyebrow,
.kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

.eyebrow,
.kicker {
  color: var(--brown);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 56px;
  align-items: end;
  margin-top: 28px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.7rem, 9.6vw, 9.2rem);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 500;
}

h1 span {
  display: block;
  color: var(--brown);
  font-style: italic;
}

.hero-copy {
  padding-bottom: 10px;
}

.hero-copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.hero-rule {
  height: 1px;
  background: var(--line);
  margin: 78px 0 30px;
}

.manifesto {
  display: flex;
  justify-content: flex-end;
}

.manifesto p {
  max-width: 560px;
  margin: 0;
  text-align: right;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.15;
}

.section {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 58px;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255,255,255,.42);
}

.number {
  margin-bottom: auto;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.pillar h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar p {
  color: var(--muted);
  margin-bottom: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.brand-card {
  min-height: 470px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}

a.brand-card:hover,
a.brand-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(40, 28, 18, .08);
}

.brand-card-dark {
  background: var(--espresso);
  color: #f7f1e8;
  border-color: transparent;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.arrow {
  font-size: 1.4rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.card-label {
  color: var(--gold);
  margin-bottom: 12px;
}

.brand-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

.card-copy {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.brand-card-dark .card-copy {
  color: #cfc3b6;
}

.closing {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.closing-inner {
  padding: 130px 0;
}

blockquote {
  margin: 26px 0 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.2vw, 7.2rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 500;
}

.contact {
  padding: 118px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 70px;
}

.contact-details {
  align-self: end;
}

.contact-details > p:first-child {
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-details > a {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  margin-bottom: 38px;
  text-underline-offset: 4px;
}

.fine-print {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 0;
}

.site-footer {
  background: var(--ink);
  color: #f6f0e6;
}

.footer-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand .brand-sub {
  color: #d7bd8a;
}

.footer-inner p {
  margin: 0;
  color: #c9c1b8;
  font-size: .85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal-1 {
  transition-delay: .08s;
}

.reveal-2 {
  transition-delay: .16s;
}

.reveal-3 {
  transition-delay: .24s;
}

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

@media (max-width: 900px) {
  .hero {
    padding-top: 78px;
  }

  .hero-grid,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    max-width: 640px;
  }

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

  .pillar {
    min-height: 250px;
  }

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

  .brand-card {
    min-height: 390px;
  }

  .section-heading {
    gap: 18px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 68px 0 74px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.8rem);
  }

  .hero-rule {
    margin-top: 56px;
  }

  .manifesto p {
    text-align: left;
  }

  .section {
    padding: 88px 0;
  }

  .pillar,
  .brand-card {
    padding: 26px;
    border-radius: 22px;
  }

  .closing-inner,
  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand-card {
    transition: none;
  }
}
