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

:root {
  --ink: #16130f;
  --ink-soft: #241f19;
  --paper: #f4efe6;
  --paper-2: #e9e2d4;
  --brass: #8d6b3e;
  --brass-2: #c6a36a;
  --text: #221e19;
  --muted: #6d6458;
  --line: rgba(34, 30, 25, 0.14);
  --font-d: "Newsreader", Georgia, serif;
  --font-b: "Manrope", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--paper);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 4vw;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

.header__btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--ink);
  color: #f6f1e7;
  padding: 0.75rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 2px;
}

.btn { padding: 0.95rem 1.35rem; }

.header__btn:hover,
.btn:hover { background: #2c261f; }

.hero {
  display: grid;
  grid-template-columns: minmax(15rem, 0.68fr) 1.32fr;
  min-height: calc(100svh - 8.5rem);
  background: var(--ink);
  color: #f4efe6;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 3.2rem 2vw 3rem 2.2vw;
  max-width: 32rem;
  margin-right: auto;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-2);
}

.hero .eyebrow { color: var(--brass-2); }

h1, h2, h3 { font-family: var(--font-d); font-weight: 500; letter-spacing: -0.02em; }

h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  line-height: 1.02;
}

.lead {
  max-width: 36rem;
  color: rgba(244, 239, 230, 0.78);
  font-size: 1.05rem;
}

.hero__photo { min-height: 100%; background: #111; }

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}

.ticker {
  overflow: hidden;
  background: var(--ink-soft);
  color: #efe6d6;
  border-bottom: 1px solid rgba(198, 163, 106, 0.28);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.ticker__track p {
  padding: 0.8rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.years {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2rem;
  align-items: end;
  padding: 5.5rem 4vw;
  border-bottom: 1px solid var(--line);
}

.years__num {
  font-family: var(--font-d);
  font-size: clamp(5rem, 9vw, 7.5rem);
  line-height: 0.85;
  color: var(--ink);
}

.years__num span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.years__text h2,
.section-head h2,
.split__copy h2,
.close h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.years__text p,
.split__copy p,
.points__list p,
.steps__list p {
  color: var(--muted);
  max-width: 40rem;
}

.points, .steps, .split, .close {
  padding: 5rem 4vw;
}

.section-head { max-width: 38rem; margin-bottom: 2.4rem; }

.points__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.points__list li {
  padding: 1.6rem 1.6rem 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.points__list li:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid var(--line);
}

.points__list li:nth-child(even) { padding-left: 2.5rem; }

.points__list h3,
.steps__list h3 {
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.steps {
  background: var(--ink);
  color: #f4efe6;
}

.section-head--light .eyebrow { color: var(--brass-2); }

.steps__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.steps__list span {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--brass-2);
}

.steps__list p { color: rgba(244, 239, 230, 0.72); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split__photo img {
  width: 100%;
  height: 100%;
  max-height: 36rem;
  object-fit: cover;
  object-position: 50% 55%;
}

.split__copy ul {
  margin-top: 1.2rem;
  padding-left: 1.1rem;
  color: var(--text);
}

.split__copy li + li { margin-top: 0.45rem; }

.close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.close h2 { margin: 0; max-width: 36rem; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 4vw 1.6rem;
  background: var(--ink);
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.92rem;
}

.footer p:first-child {
  font-family: var(--font-d);
  color: #f4efe6;
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .header { flex-wrap: wrap; gap: 0.75rem 1rem; }
  .nav { order: 3; width: 100%; margin-left: 0; }
  .hero, .years, .split, .steps__list, .points__list { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero__photo { order: -1; height: 62vw; min-height: 16rem; }
  .points__list li,
  .points__list li:nth-child(odd),
  .points__list li:nth-child(even) {
    padding: 1.3rem 0;
    border-right: 0;
  }
  .close { flex-direction: column; align-items: flex-start; }
  .footer { flex-direction: column; }
}

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