:root {
  --bg: #1a1612;
  --text: #f4e8d0;
  --muted: #8a7f72;
  --accent: #c9a227;
  --accent2: #4a6b4a;
  --crimson: #8b1e2f;
  --ink: #3d2b1f;
  --panel: rgba(244, 232, 208, 0.06);
  --dock-h: 4.25rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: calc(var(--dock-h) + 1.5rem);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.page {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.band {
  padding: 3rem 1.25rem;
}

.band__inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-lead {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 1.25rem 2.5rem;
}

.hero--split {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero--split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    padding-top: 4rem;
  }
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.05;
}

.hero__subtitle {
  margin: 0.35rem 0 1rem;
  font-size: 1.25rem;
  color: var(--muted);
  font-style: italic;
}

.hero__tagline {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.02rem;
}

.hero__cta {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #a8841f);
  color: var(--bg);
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__visual img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.band--intro {
  border-top: 1px solid rgba(244, 232, 208, 0.08);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent2));
  opacity: 0.55;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
}

.timeline__node {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
  z-index: 1;
}

.timeline__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.timeline__body p {
  margin: 0;
  color: var(--muted);
  font-family: system-ui, -apple-system, sans-serif;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-row figure {
  margin: 0;
}

.gallery-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid rgba(244, 232, 208, 0.1);
}

.film-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.film-strip__frame {
  flex: 0 0 min(260px, 72vw);
  margin: 0;
  scroll-snap-align: start;
  background: var(--panel);
  border-radius: 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(244, 232, 208, 0.08);
}

.film-strip__frame img {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.film-strip__frame figcaption {
  margin-top: 0.6rem;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
}

.legal p {
  margin: 0 0 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  color: rgba(244, 232, 208, 0.88);
}

.legal__updated {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal--dropcap > p:first-of-type::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 0.85;
  padding-right: 0.45rem;
  padding-top: 0.1rem;
  color: var(--accent);
  font-weight: 700;
}

.support-email {
  font-size: 1.1rem;
}

.footer-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 1.5rem));
  min-height: var(--dock-h);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.25rem;
  padding: 0.45rem 0.65rem;
  background: rgba(26, 22, 18, 0.92);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 20;
}

.bottom-dock__link {
  flex: 1 1 auto;
  text-align: center;
  padding: 0.45rem 0.35rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .bottom-dock__link {
    font-size: 0.8rem;
  }
}

.bottom-dock__link.is-active {
  background: rgba(201, 162, 39, 0.22);
  color: var(--accent);
  font-weight: 600;
}
