@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #F9F8F5;
  --text: #1A1918;
  --text-mid: #6B6560;
  --text-light: #9C9590;
  --red: #A81C1C;
  --border: #E5E2DC;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.nav-light {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-light .nav-logo { color: var(--text); }
.nav-dark .nav-logo { color: #fff; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-light .nav-links a { color: var(--text-mid); }
.nav-light .nav-links a:hover { color: var(--red); }
.nav-dark .nav-links a { color: rgba(255,255,255,0.75); }
.nav-dark .nav-links a:hover { color: #fff; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  visibility: hidden;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 4px;
  -webkit-appearance: none;
  appearance: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
}

.nav-light .hamburger span { background: var(--text); }
.nav-dark .hamburger span { background: #fff; }

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.75rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red); }

/* ── LAYOUT ── */
.page-content { padding-top: 72px; }

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── LABELS & HEADINGS ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
}

.page-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── BODY TEXT ── */
.body-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

.body-text p + p { margin-top: 1.25rem; }
.body-text strong { color: var(--text); font-weight: 500; }
.body-text a { color: var(--text); border-bottom: 1px solid var(--border); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.body-text a:hover { border-color: var(--red); color: var(--red); }

/* ── LINKS ── */
.text-link {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  margin-right: 1.5rem;
}

.text-link:hover { color: var(--red); border-color: var(--red); }

.arrow-link {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}

.arrow-link:hover { color: var(--red); gap: 0.75rem; }
.arrow-link::after { content: '→'; }

.back-link {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.back-link::before { content: '←'; }
.back-link:hover { color: var(--red); }

/* ── FILMS ── */
.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.film-card { border-top: 2px solid var(--border); padding-top: 1.5rem; }
.film-card:first-child { border-top-color: var(--red); }

.film-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  margin-bottom: 1.25rem;
}

.film-player iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.film-meta {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.film-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.film-logline {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.video-card { border-top: 1px solid var(--border); padding-top: 0.75rem; }

.video-player-sm {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  margin-bottom: 0.65rem;
}

.video-player-sm iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-title {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── BOOKS ── */
.book-listing {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  border-top: 2px solid var(--red);
  padding-top: 2rem;
}

.book-cover img {
  width: 100%;
  display: block;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.book-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.book-series {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.book-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--red);
  margin-bottom: 1.25rem;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form { max-width: 520px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--text); }

.form-submit {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: none;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-submit:hover { background: var(--red); }
.form-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-success {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red);
  margin-top: 1.5rem;
}

/* ── SOCIAL ICONS ── */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.social-link {
  color: var(--text-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.social-link:hover { color: var(--text); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; visibility: visible; }

  .section { padding: 3.5rem 1.5rem; }
  .film-grid { grid-template-columns: 1fr; gap: 3rem; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .book-listing { grid-template-columns: 1fr; gap: 2rem; }
  .book-listing .book-cover { max-width: 220px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}

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