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

:root {
  --bg: #f4efe5;
  --accent: #c47759;
  --accent2: #7a8c6d;
  --text: #493f35;
  --muted: #8a7f72;
  --cream: #faf7f1;
  --sand: #e8dbc6;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: var(--accent);
}

.corner-stack {
  display: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.hero.split-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.tagline {
  font-family: system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.hero-visual {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(73, 63, 53, 0.12);
}

.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}

.notes-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.note {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 2px 3px 0 rgba(73, 63, 53, 0.06);
}

.note h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.note p {
  margin: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.note-a { transform: rotate(-1deg); }
.note-b { transform: rotate(0.5deg); }
.note-c { transform: rotate(-0.5deg); }

.film-strip .strip-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.film-strip figure {
  flex: 0 0 min(240px, 70vw);
  margin: 0;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--sand);
  background: var(--cream);
}

.legal.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.legal-panel {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--sand);
}

.legal-panel h2 {
  font-size: 1.25rem;
  margin-top: 0;
}

.legal-panel p {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero.split-asymmetric {
    grid-template-columns: 1fr;
  }

  .legal.side-by-side {
    grid-template-columns: 1fr;
  }
}
