:root {
  --bg: #efe8dd;
  --ink: #161413;
  --muted: #655c53;
  --rust: #c9643a;
  --line: rgba(22, 20, 19, 0.12);
  --card-shadow: rgba(22, 20, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--mx, 80%) var(--my, 10%), rgba(201, 100, 58, 0.25), transparent 16%),
    linear-gradient(180deg, #f7f2eb 0%, #efe8dd 100%);
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(0,0,0,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.7) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(22, 20, 19, 0.26);
  transition: width .18s ease, height .18s ease, border-color .18s ease, background .18s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(201, 100, 58, 0.45);
  background: rgba(201, 100, 58, 0.08);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 4px;
  z-index: 20;
  background: linear-gradient(90deg, var(--rust), #161413);
}

.wrap {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.page {
  padding: 28px 0 72px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand,
h1,
h2,
h3 {
  font-family: Syne, sans-serif;
  margin: 0;
}

.brand {
  font-size: 2rem;
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--ink);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 14px 0;
  margin-top: 26px;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 34px;
  min-width: max-content;
  animation: scroll-x 22s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--muted);
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--rust);
  font-weight: 800;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.3rem);
  line-height: 0.86;
  max-width: 640px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.9;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 0.95;
}

p {
  line-height: 1.82;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin-top: 14px;
}

.layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 24px;
  padding-top: 28px;
}

.intro {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 28px 0;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.list div,
.section-line {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.editorial,
.stack {
  display: grid;
  gap: 18px;
}

.feature,
.content-card,
.wide-scene {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 60px var(--card-shadow);
}

.feature {
  min-height: 74vh;
  padding: 22px;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}

.feature.show,
.reveal.show {
  transform: translateY(0);
  opacity: 1;
}

.feature::before,
.wide-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.76));
}

.feature-copy,
.scene-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 620px;
  color: white;
}

.feature-copy p,
.scene-copy p {
  color: rgba(255,255,255,.82);
}

.feature-copy span,
.scene-copy span {
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: #f3d4bf;
  font-weight: 800;
}

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

.hero-block {
  padding-top: 28px;
}

.wide-scene {
  min-height: 82vh;
  background-size: cover;
  background-position: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.content-card {
  padding: 24px;
  background: rgba(255,255,255,.46);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.content-card span {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--rust);
  font-weight: 800;
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  .cursor-ring,
  .cursor-dot {
    display: none;
  }

  .layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    position: relative;
    top: 0;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature {
    min-height: 56vh;
  }

  .wide-scene {
    min-height: 56vh;
  }
}
