:root {
  --indigo-950: #071a2d;
  --indigo-900: #0d2743;
  --indigo-800: #153d68;
  --indigo-600: #2f638f;
  --indigo-200: #b9cad6;
  --paper: #f1ede4;
  --paper-soft: #f8f5ee;
  --ink: #14202a;
  --line: rgba(20, 32, 42, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(7, 26, 45, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(47, 99, 143, 0.08), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  background: #fff;
  color: #000;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell { overflow: hidden; }
.site-header,
.site-footer,
.section-pad,
.hero {
  width: min(100% - 3rem, 1320px);
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  text-decoration: none;
}

.social {
	display: flex;
}
.social-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .73rem;
  font-weight: 600;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}
.social-link:hover { color: var(--indigo-600); }
.social-link:not(:last-child) {
	margin-right: 1.5em;
}

.hero {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  grid-template-rows: 1fr auto;
  gap: 2rem 5vw;
  align-items: center;
  padding: clamp(3rem, 7vw, 3rem) 0 2rem;
  position: relative;
}

.hero-copy { position: relative; z-index: 3; max-width: 760px; }
.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--indigo-600);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
}

h1, h2 { font-family: var(--serif); font-weight: 500; line-height: .98; margin: 0; }
h1 {
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -.055em;
  max-width: 9ch;
}
h2 {
  font-size: clamp(2.8rem, 5.7vw, 5.8rem);
  letter-spacing: -.035em;
}

.intro {
  max-width: 620px;
  margin: 2rem 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  color: rgba(20, 32, 42, .76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.3rem;
}
.button {
  min-height: 50px;
  padding: .85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--indigo-900); color: var(--paper-soft); }
.button--primary:hover { background: var(--indigo-800); }
.button--ghost { border: 1px solid var(--line); }
.button--ghost:hover { background: rgba(255,255,255,.35); }

.hero-art {
  min-height: min(70vw, 720px);
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art img {
	max-width: 100%;
}

.hero-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(20,32,42,.58);
}
.hero-note__line { width: 44px; height: 1px; background: currentColor; }

.section-pad { padding-block: clamp(5rem, 10vw, 10rem); }


.site-footer {
  min-height: 110px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--indigo-600); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes drift {
  from { transform: rotate(7deg) translate3d(-8px, -5px, 0) scale(.98); }
  to { transform: rotate(14deg) translate3d(10px, 8px, 0) scale(1.02); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: 4rem;
  }
  .hero-art { grid-row: 2; min-height: 520px; }
  .hero-note { grid-column: 1; }
  .manifesto { grid-template-columns: 50px 1fr; }
  .site-footer { grid-template-columns: 1fr auto; padding-block: 2rem; }
  .site-footer > p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  .site-header, .site-footer, .section-pad, .hero { width: min(100% - 2rem, 1320px); }
  .site-header { min-height: 76px; }
	.social {
		flex-direction: column;
	}
  .social-link span { font-size: 1rem; }
  h1 { font-size: clamp(3.6rem, 19vw, 5.7rem); }
  .site-footer { grid-template-columns: 1fr; }
}

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