@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;600&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f1e8;
  --bg-accent: #fff1dc;
  --ink: #1f1d1a;
  --muted: #5b5348;
  --accent: #e06f30;
  --accent-dark: #c85c1f;
  --card: #fffdf7;
  --border: #e5d5c5;
  --shadow: 0 18px 45px rgba(31, 29, 26, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Assistant", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #fff1dc 0%, rgba(255, 241, 220, 0) 45%),
    radial-gradient(circle at 85% 0%, #ffe1eb 0%, rgba(255, 225, 235, 0) 40%),
    linear-gradient(180deg, #fff9ef 0%, #fffdf9 45%, #f7f1e8 100%);
  min-height: 100vh;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 213, 197, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
}

.site-logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  background: var(--bg-accent);
}

.site-main {
  padding: 3rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}

.hero-copy h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.6rem, 3vw + 1.4rem, 4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(224, 111, 48, 0.35);
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-media img,
.poster-detail-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.page-intro {
  margin-top: 2.5rem;
  max-width: 820px;
}

.poster-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.poster-card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 29, 26, 0.12);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.poster-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.poster-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.poster-card-body {
  padding: 1rem 1.2rem 1.4rem;
}

.poster-card-body h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}

.poster-card-body p {
  margin: 0;
  color: var(--muted);
}

.poster-detail {
  display: grid;
  gap: 2.5rem;
}

.poster-detail-header {
  max-width: 720px;
}

.poster-detail-media {
  max-width: 900px;
  margin: 0 auto;
}

.poster-detail-body {
  max-width: 720px;
}

.poster-placeholder {
  min-height: 260px;
  border: 2px dashed var(--border);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  text-align: center;
}

.form-embed {
  margin-top: 1.6rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.form-embed iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  color: var(--muted);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-media,
.page-intro,
.poster-card {
  animation: fade-up 0.7s ease both;
}

.hero-media {
  animation-delay: 0.12s;
}

.page-intro {
  animation-delay: 0.2s;
}

.poster-card:nth-child(2) {
  animation-delay: 0.05s;
}

.poster-card:nth-child(3) {
  animation-delay: 0.1s;
}

.poster-card:nth-child(4) {
  animation-delay: 0.15s;
}

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

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

  .poster-card img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .site-main {
    padding: 2rem 0 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
