/* ============================================
   The End of Oak Street — Official Site
   ============================================ */

:root {
  --bg: #050506;
  --panel: #11131A;
  --panel-hover: #181B26;
  --border: #1E2030;
  --white: #FFFFFF;
  --muted: #BFC3D4;
  --dim: #6B7280;
  --amber: #D97706;
  --amber-glow: rgba(217, 119, 6, 0.15);
  --brown: #78350F;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 960px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

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

/* ----- Container ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Navigation ----- */
nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}

/* ----- Hero ----- */
.hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo {
  margin-bottom: 32px;
}
.hero-logo img {
  height: 64px;
  width: auto;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero .subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero .release {
  font-size: 0.95rem;
  color: var(--dim);
  margin-bottom: 40px;
}
.hero .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  border-radius: 40px;
  background: var(--amber);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.hero .btn-primary:hover {
  background: #B8630A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
}
.hero .btn-primary svg {
  width: 18px;
  height: 18px;
}

/* ----- Hero Meta (Studio / Date) ----- */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta-item {
  text-align: center;
}
.hero-meta-item .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 4px;
}
.hero-meta-item .value {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ----- Section ----- */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type {
  border-bottom: none;
}

.section-header {
  margin-bottom: 40px;
}
.section-header .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ----- Synopsis Card ----- */
.synopsis-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.synopsis-card p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.synopsis-card p:last-child {
  margin-bottom: 0;
}

/* ----- Credits / Details Grid ----- */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.detail-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.detail-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 6px;
}
.detail-item .value {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ----- How It Works / Process Steps ----- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.process-step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.process-step:hover {
  border-color: var(--amber);
  background: var(--panel-hover);
}
.process-step .step-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ----- Why It Matters / Info Cards ----- */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.info-card:hover {
  border-color: var(--amber);
}
.info-card .icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.info-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ----- Deep Dive / Explainer Section ----- */
.explainer-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
}
.explainer-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.explainer-card p:last-child {
  margin-bottom: 0;
}
.explainer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ----- Trailer Section ----- */
.trailer-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-placeholder {
  text-align: center;
  padding: 40px;
}
.trailer-placeholder .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.2s;
}
.trailer-placeholder .play-icon:hover {
  transform: scale(1.05);
}
.trailer-placeholder .play-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  margin-left: 2px;
}
.trailer-placeholder p {
  font-size: 1rem;
  color: var(--muted);
}

/* ----- FAQ Section ----- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--amber);
}
.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ----- Footer ----- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner p {
  font-size: 0.8rem;
  color: var(--dim);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--dim);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: var(--dim);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--muted);
}
.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-meta {
    gap: 24px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
