:root {
  --bg: #2a2725;
  --bg: oklch(0.17 0.01 60);
  --ink: #f5f3f1;
  --ink: oklch(0.96 0.01 60);
  --muted: #9c9794;
  --muted: oklch(0.62 0.02 60);
  --accent: #c4683a;
  --accent: oklch(0.74 0.17 55);
  --bg-2: #332f2d;
  --bg-2: oklch(0.20 0.01 60);
  --hair: rgba(245, 243, 241, 0.1);
  --line: rgba(196, 104, 58, 0.2);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
}

b {
  color: var(--accent);
  font-weight: 400;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
  background-color: var(--bg);
}

.hero__halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, var(--line) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.thesis {
  padding: 12rem 2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.thesis__inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.thesis__statement {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

.thesis__lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 8rem auto;
  padding: 0 2rem;
  align-items: center;
}

.feature--mirrored {
  grid-template-columns: 0.82fr 1fr;
}

.feature__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature__index {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1.5rem;
}

.feature__heading {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.feature__text {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.feature__caption {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 1rem;
}

.band {
  padding: 8rem 0;
  overflow: hidden;
}

.strip {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr 0.72fr;
  gap: 1rem;
  height: 70vh;
  min-height: 400px;
  width: 100%;
}

.strip__cell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band__caption {
  text-align: center;
  margin-top: 2rem;
  padding: 0 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.rows {
  max-width: 900px;
  margin: 8rem auto;
  padding: 0 2rem;
}

.row {
  display: grid;
  grid-template-columns: 4rem 1fr 2fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}

.row__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

.row__heading {
  font-size: 1.25rem;
}

.row__text {
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  text-align: center;
  margin: 12rem auto;
  padding: 0 2rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 99px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.footer {
  border-top: 1px solid var(--hair);
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
}

@media (max-width: 860px) {
  .feature, .feature--mirrored {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem auto;
  }
  .feature--mirrored .feature__visual {
    order: -1;
  }
  .strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 50vh;
  }
  .strip__cell {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  .row__num {
    margin-bottom: 0.25rem;
  }
  .footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}