:root {
  --background: #0d0a0e;
  --card: #151118;
  --foreground: #f5f5f5;
  --muted: #cfc4db;
  --muted-2: #aa9fb5;
  --accent: #c9a55a;
  --hot-accent: #d84b8b;
  --primary: #d7c4e8;
  --border: rgba(215, 196, 232, 0.18);
  --font-heading: "Times New Roman", Times, serif;
  --font-body: Arial, Helvetica, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max-width), calc(100% - 8rem));
  margin-inline: auto;
}
.narrow { max-width: 760px; }
.medium { max-width: 900px; }
.centered { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 10, 14, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-inline: 2rem;
}
.site-title {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent { color: var(--accent); }
.hot-accent {
  color: var(--hot-accent);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  justify-content: center;
}

.main-nav a {
  position: relative;
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  padding-block: 0.35rem;
}

.main-nav a:hover,
.main-nav a.active { color: var(--foreground); }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }

.header-cta {
  flex: 0 0 auto;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.65rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  justify-self: end;
}

.header-cta:hover {
  background: var(--accent);
  color: var(--background);
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px; height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--foreground);
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.08;
}

p { margin-top: 0; }

.eyebrow {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.5;
}

.section-kicker {
  color: var(--muted);
  margin-top: -0.4rem;
  margin-bottom: 4rem;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0a0e 0%, #1a0d2e 45%, #2a0a1a 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(215, 196, 232, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 196, 232, 0.14) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-corner {
  position: absolute;
  width: 96px;
  height: 96px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-corner-top {
  top: 0; left: 0;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.hero-corner-bottom {
  right: 0;
  bottom: 0;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 4rem);
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 460px);
  margin-inline: auto;
}

.image-frame { position: absolute; pointer-events: none; }
.image-frame-inner {
  inset: -12px;
  border: 1px solid rgba(201, 165, 90, 0.38);
}
.image-frame-outer {
  inset: -24px;
  border: 1px solid rgba(201, 165, 90, 0.14);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.querying-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: var(--background);
  padding: 0.45rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.query-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.title-rule {
  width: 60%;
  height: 4px;
  margin: 0.85rem 0 0.8rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-subtitle {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.byline {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.byline strong { color: var(--foreground); }

.hero-tagline {
  margin: 0;
  max-width: 650px;
  color: var(--hot-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.4rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.85rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--accent);
  color: var(--background);
  border: 1px solid var(--accent);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--muted);
}
.button-secondary:hover {
  border-color: var(--accent);
  color: var(--foreground);
}

/* Sections */
.section { padding-block: clamp(4rem, 8vw, 4rem); }
.section-card { background: var(--card); }
.section-gradient {
  background: linear-gradient(160deg, #0d0a0e 0%, #1a0d2e 60%, #0d0a0e 100%);
}

.dropcap-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dropcap-heading h2 { margin-bottom: 0; }

.dropcap {
  flex: 0 0 auto;
  color: var(--hot-accent);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.82;
  font-weight: 800;
}

.section-rule {
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(90deg, rgba(201, 165, 90, 0.6), transparent);
}

/* Excerpts */
.excerpts { max-width: 900px; }
.quote-stack { display: grid; gap: 4rem; }

.featured-quote {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 0;
  padding-left: 1.6rem;
  border-left: 2px solid;
}

.featured-quote::before {
  content: "“";
  position: absolute;
  top: -3.4rem;
  left: -0.7rem;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.13;
}

.featured-quote p {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.featured-quote cite {
  color: var(--muted-2);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-quote { border-color: var(--hot-accent); }
.primary-quote p { color: var(--hot-accent); }
.accent-quote { border-color: var(--accent); }
.accent-quote p { color: var(--accent); }

.more-link-wrap { margin-top: 4rem; }

.text-link {
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 165, 90, 0.45);
  padding-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Facts */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 2.2rem 0 2.4rem;
  background: var(--border);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--background);
  padding: 1.3rem;
}

.fact-label {
  color: var(--muted-2);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.fact-value {
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Footer */
.site-footer { background: var(--card); }
.footer-accent { height: 1px; background: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3rem 2.4rem;
  padding-inline: 2rem;
}

.footer-title {
  margin-bottom: 0.55rem;
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
}

.footer-tagline,
.footer-small,
.footer-bottom {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.footer-tagline { font-style: italic; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a,
.social-links a {
  width: fit-content;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.footer-nav a:hover,
.social-links a:hover { color: var(--foreground); }

.footer-name {
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-badge { margin-bottom: 0.8rem; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { margin: 0; }
/* ============================================================
   About Page
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-photo-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.25rem 1rem;
  background: linear-gradient(
    to top,
    rgba(13, 10, 14, 0.9),
    transparent
  );
}

.about-photo-name {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.about-photo-label {
  margin: 0;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Responsive */
@media (max-width: 1050px) {
  .header-cta { display: none; }
  .main-nav { gap: 1.15rem; }
  .about-grid {
  grid-template-columns: 1fr;
  gap: 4rem;  }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    background: rgba(13, 10, 14, 0.99);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.8rem 0; }
  .main-nav a::after { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 6.5rem));
  }

  .site-title { font-size: 1.25rem; }
  .hero { min-height: auto; }

  .hero-actions { flex-direction: column; }
  .button { width: 100%; }

  .dropcap-heading { gap: 0.75rem; }
  .dropcap { font-size: 4rem; }

  .facts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* ============================================================
   Filmography
   ============================================================ */

.film-stats-section {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.film-stats {
  display: flex;
  gap: 5rem;
  padding-block: 2.5rem;
  padding-left: 2rem;
}

.film-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.film-stat-number {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.film-stat-label {
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Main filmography area */

.filmography-section {
  background: var(--card);
  padding-block: 7rem;
}

.filmography-inner {
  max-width: 1050px;
  position: relative;
  left: 7rem;
}


/* Legend */

.filmography-legend {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  margin-left: 2rem;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filmography-legend > span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}


/* Title / Notes heading */

.filmography-header {
  display: grid;
  grid-template-columns: 1rem 22rem 1fr;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  margin-left: 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Movie list */

.filmography-list {
  border-top: 0;
  margin-left: 2rem;
}

.film-row {
  display: grid;
  grid-template-columns: 1rem 22rem 1fr;
  gap: 0.5rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.film-dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--border);
}

.film-dot-accent {
  background: var(--accent);
}

.film-dot-primary {
  background: var(--hot-accent);
}

.film-title {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.film-note {
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

.film-total {
  margin-top: 2rem;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Mobile */

@media (max-width: 700px) {

  .film-stats {
    gap: 2rem;
  }

  .filmography-header {
    display: none;
  }

  .film-row {
    grid-template-columns: 1rem 1fr;
  }

  .film-note {
    grid-column: 2;
  }
}
/* ============================================================
   Agents Page
   ============================================================ */

/* The Book — text left, details right */

.agents-book-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.book-details {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.book-detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--background);
}


/* Manuscript request form */

.request-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}


/* Responsive */

@media (max-width: 800px) {

  .agents-book-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

.request-form .button {
  align-self: flex-start;
}

/* ============================================================
   Comparison Cards
   ============================================================ */

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--border);
}

.comp-card {
  padding: 1.5rem;
  background: var(--background);
}

.comp-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 1.25rem;
  background: var(--accent);
}

.comp-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
}

.comp-card .hot-accent {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.comp-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .comp-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   Contact Page
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 4rem;
  align-items: start;
  max-width: 1050px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail-text {
  color: var(--foreground);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-social a:hover {
  color: var(--hot-accent);
}

.contact-social img {
  width: 18px;
  height: 18px;
}

.contact-agents-box {
  padding: 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.3);
}

.contact-agents-box .eyebrow {
  margin-bottom: 0.75rem;
}

.contact-agents-box p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 800px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

}
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
/* ============================================================
   Timeline
   ============================================================ */

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5.5rem;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.65rem 0;
}

.timeline-year {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin-top: 0.2rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--card);
}

.timeline-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .timeline::before {
    left: 4.5rem;
  }

  .timeline-item {
    grid-template-columns: 4rem 1rem 1fr;
    gap: 0.75rem;
  }

  .timeline-year {
    font-size: 0.85rem;
  }
}
#request-proposal {
    scroll-margin-top: 80px;
}