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

:root {
  --ink: #12161c;
  --ink-2: #1c232c;
  --paper: #f3efe8;
  --paper-2: #e6dfd3;
  --sand: #c4a574;
  --text: #1c1916;
  --muted: #5e594f;
  --line: rgba(28, 25, 22, 0.12);
  --font-d: "Fraunces", Georgia, serif;
  --font-b: "Source Sans 3", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--paper);
  color: var(--text);
  line-height: 1.5;
  font-size: 1.05rem;
  -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.4rem;
  padding: 0.9rem 5vw;
  background: rgba(18, 22, 28, 0.94);
  color: #f3efe8;
}

.logo {
  font-family: var(--font-d);
  font-weight: 560;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav a {
  text-decoration: none;
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.98rem;
}

.nav a:hover { color: #fff; }

.header__btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--sand);
  color: var(--ink);
  font-weight: 650;
  padding: 0.7rem 1rem;
  border-radius: 2px;
}

.btn { padding: 0.9rem 1.25rem; }
.btn--light { background: var(--paper); color: var(--ink); }

.header__btn:hover,
.btn:hover { filter: brightness(1.06); }

.hero__media {
  height: 62vh;
  min-height: 280px;
  background: var(--ink);
}

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

.hero__panel {
  padding: 2.4rem 5vw 2.8rem;
  max-width: 48rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a5a32;
  margin-bottom: 0.7rem;
}

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

h1 {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}

.lead { color: var(--muted); max-width: 40rem; margin-bottom: 1.4rem; }

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: #f3efe8;
}

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

.ticker__track p {
  padding: 0.75rem 0;
  white-space: nowrap;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(243, 239, 232, 0.86);
}

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

.intro {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: 4.5rem 5vw;
  border-bottom: 1px solid var(--line);
}

.intro__years span {
  display: block;
  font-family: var(--font-d);
  font-size: 6.5rem;
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.intro__years {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.intro p { color: var(--muted); max-width: 40rem; }

.adv {
  padding: 4.2rem 5vw 1rem;
  max-width: 58rem;
}

.adv ol { list-style: none; }

.adv li {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1.5rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.adv h3 { font-size: 1.7rem; line-height: 1.15; }
.adv p { color: var(--muted); }

.pay {
  margin: 2rem 5vw 0;
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.pay h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.pay__list { list-style: none; }

.pay__list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.pay__list span {
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: #8a5a32;
}

.pay__list h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.pay__list p { color: var(--muted); }

.band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 28rem;
  background: var(--ink);
  color: #f3efe8;
}

.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  min-height: 18rem;
}

.band__copy {
  padding: 3rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.band .eyebrow { color: var(--sand); }

.band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.band p { color: rgba(243, 239, 232, 0.75); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 5vw 1.5rem;
  background: var(--ink-2);
  color: rgba(243, 239, 232, 0.7);
}

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

@media (max-width: 860px) {
  .header { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; margin-left: 0; }
  .hero__media { height: 52vh; }
  .intro, .adv li, .pay, .band { grid-template-columns: 1fr; }
  .intro__years span { font-size: 4.5rem; }
  .footer { flex-direction: column; }
}

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