/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Inter:wght@400;500;600&display=swap');

:root{
  --bg0: #0f0c08;
  --bg1: #15110c;
  --bg2: #1b160f;
  --text: #f5e8cc;
  --text2: #e8dcc2;
  --muted: #8c8272;
  --muted2: #6f6658;
  --accent: #d58b1e;
  --accent2:#b87413;
  --border: #2a241b;
  --border2:#3a3126;
  --shadow: rgba(0,0,0,.55);
  --card: rgba(255,255,255,0.02);
  --card2: rgba(255,255,255,0.03);
  --radius: 14px;
}

* { box-sizing:border-box; }

html,body { height:100%; }

body{
  margin:0;
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(255,255,255,0.04), transparent 55%),
    radial-gradient(900px 600px at 50% 85%, rgba(213,139,30,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{ color:inherit; text-decoration:none; }

.container{
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
  padding: 46px 0 90px;
}

@media (max-width: 900px){
  .container{ width: min(960px, calc(100% - 40px)); }
}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(15,12,8,0.95), rgba(15,12,8,0.86));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(213,139,30,0.12);
}

.nav-inner{
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
  padding: 18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 28px;
}

@media (max-width: 900px){
  .nav-inner{ width: min(960px, calc(100% - 40px)); }
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 260px;
}

.brand-mark{
  width: 26px;
  height: 26px;
  display:grid;
  place-items:center;
  color: var(--accent);
}

.brand-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 24px;
  color: var(--text);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
}

.nav-link{
  position:relative;
  color: rgba(245,232,204,0.55);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 2px;
}

.nav-link:hover{ color: rgba(245,232,204,0.85); }

.nav-link.active{
  color: var(--text);
}

.nav-link.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
}

/* TYPO */
.h-serif{
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero{
  min-height: 610px;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 32px 0 40px;
}

.stars{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-bottom: 18px;
}

.star{
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.hero h1{
  margin:0;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.95;
  font-weight: 700;
}

.hero .gold-italic{
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.hero p{
  margin: 20px auto 0;
  max-width: 72ch;
  color: rgba(245,232,204,0.45);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap: 18px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 18px 28px;
  min-width: 240px;
  border-radius: 0;
  font-weight: 600;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(245,232,204,0.72);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.btn:hover{
  border-color: rgba(255,255,255,0.28);
  color: rgba(245,232,204,0.90);
}

.btn-primary{
  background: var(--accent);
  color: #13100c;
  border-color: rgba(213,139,30,0.65);
}

.btn-primary:hover{
  background: var(--accent2);
}

.btn .arrow{
  font-size: 24px;
  line-height: 0;
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Footer line (EST. 2024) */
.est{
  margin-top: 70px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  color: rgba(245,232,204,0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.est::before,
.est::after{
  content:"";
  width: 120px;
  height: 1px;
  background: rgba(213,139,30,0.22);
}

@media (max-width: 520px){
  .est::before,.est::after{ width: 70px; }
}

/* Years page */
.year-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.year-select-wrap{
  width: 270px;
}

.year-select{
  width: 100%;
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  padding: 22px 54px 18px 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 0.02em;
  outline: none;
}

.year-select-wrap{
  position: relative;
}

.year-caret{
  position:absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-45%);
  color: var(--accent);
  font-size: 20px;
  pointer-events: none;
}

.year-sub{
  margin-top: 14px;
  color: rgba(245,232,204,0.35);
  font-style: italic;
  font-size: 14px;
}

.poster-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1100px){ .poster-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 800px){ .poster-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px){ .poster-grid{ grid-template-columns: repeat(1, minmax(0,1fr)); } }

.poster-tile{
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.015);
  box-shadow: 0 18px 36px rgba(0,0,0,0.40);
  overflow:hidden;
}

.poster{
  width: 100%;
  aspect-ratio: 2 / 3;
  background: rgba(255,255,255,0.02);
  display:block;
}

.poster img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Panelists */
.page-title{
  text-align:center;
  margin: 34px 0 30px;
}

.page-title h1{
  margin: 0;
  font-size: 66px;
  font-weight: 700;
}

.page-title p{
  margin: 16px auto 0;
  max-width: 78ch;
  color: rgba(245,232,204,0.35);
  font-size: 16px;
  line-height: 1.8;
}

.panelist-list{
  display:grid;
  gap: 30px;
  margin-top: 36px;
}

.panelist-card{
  display:grid;
  grid-template-columns: 560px 1fr;
  gap: 0;
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.01);
  box-shadow: 0 18px 36px rgba(0,0,0,0.40);
}

@media (max-width: 1100px){
  .panelist-card{ grid-template-columns: 1fr; }
}

.panelist-photo{
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(213,139,30,0.10);
  min-height: 360px;
}

@media (max-width: 1100px){
  .panelist-photo{ border-right: none; border-bottom: 1px solid rgba(213,139,30,0.10); }
}

.panelist-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.panelist-body{
  padding: 48px 46px;
}

.panelist-name{
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 700;
  margin: 0;
}

.panelist-quote{
  margin: 14px 0 0;
  color: var(--accent);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

.panelist-bio{
  margin: 22px 0 0;
  color: rgba(245,232,204,0.35);
  line-height: 1.9;
  font-size: 16px;
}

.panelist-footer{
  margin-top: 30px;
  display:flex;
  align-items:center;
  gap: 22px;
  color: rgba(245,232,204,0.35);
  font-size: 14px;
}

.panelist-footer a{
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.panelist-footer a:hover{
  color: #f0b04c;
}

.panelist-footer .arrow{
  margin-left: 10px;
  font-size: 16px;
  transform: translateY(1px);
}

/* Movie page minimal (keep consistent dark theme) */
.movie-layout{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items:start;
}

@media (max-width: 950px){
  .movie-layout{ grid-template-columns: 1fr; }
}

.card{
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.01);
  box-shadow: 0 18px 36px rgba(0,0,0,0.40);
}

.card-pad{ padding: 26px; }

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border: 1px solid rgba(213,139,30,0.20);
  color: rgba(245,232,204,0.70);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-strong{
  background: rgba(213,139,30,0.14);
  color: var(--accent);
  border-color: rgba(213,139,30,0.35);
}

.hr{
  height: 1px;
  background: rgba(213,139,30,0.14);
  margin: 22px 0;
}

.small-muted{
  color: rgba(245,232,204,0.35);
  font-size: 14px;
  line-height: 1.9;
}

.review-card{
  padding: 22px 26px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.review-top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.review-name{
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
}

.review-text{
  color: rgba(245,232,204,0.35);
  line-height: 1.9;
  font-size: 15px;
}

/* Utility */
.hidden{ display:none !important; }

/* --- YEARS FILTERS (dropdowns like screenshot) --- */

.filters {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-wrap {
  position: relative;
  width: 520px;
  max-width: 100%;
}

.filter-select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  padding: 22px 64px 22px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 54px;
  letter-spacing: -0.02em;
  outline: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.filter-select:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.16);
}

.filter-select:focus-visible {
  border-color: rgba(213,139,30,0.55);
  box-shadow: 0 0 0 3px rgba(213,139,30,0.18), 0 18px 40px rgba(0,0,0,0.35);
}

.filter-caret {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.55;
}

.filter-caret svg {
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.70);
}

/* Award dropdown is same shape but slightly smaller type */
.filter-wrap.award .filter-select {
  font-size: 46px;
}

/* Smaller screens */
@media (max-width: 900px) {
  .filter-wrap { width: 100%; }
  .filter-select { font-size: 42px; padding: 18px 58px 18px 22px; }
  .filter-wrap.award .filter-select { font-size: 36px; }
}

/* --- POSTER GRID: 4 per row on desktop, 1086x1609 aspect --- */

.poster-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1100px) { .poster-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px)  { .poster-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); } }

.poster-tile {
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.01);
  box-shadow: 0 18px 36px rgba(0,0,0,0.40);
  overflow: hidden;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.poster-tile:hover {
  border-color: rgba(213,139,30,0.22);
  background: rgba(255,255,255,0.018);
  transform: translateY(-1px);
}

.poster {
  width: 100%;
  aspect-ratio: 1086 / 1609;
  background: rgba(255,255,255,0.02);
  display: block;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* nomination labels under poster */
.poster-meta {
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(213,139,30,0.10);
}

.poster-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: rgba(245,232,204,0.92);
}

.nom-list {
  margin: 0;
  color: rgba(245,232,204,0.40);
  font-size: 13px;
  line-height: 1.6;
}

.nom-chip {
  display: inline;
  color: rgba(245,232,204,0.40);
}

.nom-chip.active {
  color: var(--accent);
  font-weight: 600;
}

/* --- YEARS FILTERS (dropdowns like screenshot) --- */

.filters {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-wrap {
  position: relative;
  width: 520px;        /* same width for both */
  max-width: 100%;
}

.filter-select {
  width: 100%;
  height: 104px;       /* forces same height */
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);

  padding: 18px 64px 18px 28px;
  border-radius: 16px;

  font-weight: 800;
  font-size: 52px;     /* base tile size */
  letter-spacing: -0.02em;
  line-height: 1;

  outline: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.filter-select:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.16);
}

.filter-select:focus-visible {
  border-color: rgba(213,139,30,0.55);
  box-shadow: 0 0 0 3px rgba(213,139,30,0.18), 0 18px 40px rgba(0,0,0,0.35);
}

.filter-caret {
  position: absolute;
  right: 22px;
  top: 52px; /* half of height-ish */
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.55;
}

.filter-caret svg {
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.70);
}

/* Make dropdown list items readable and smaller */
.filter-select option {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/*
  Trick: First option is the big “display” style.
  Everything else will appear smaller in the dropdown list anyway,
  but this also helps the selected text feel “less huge” once changed.
*/
.filter-select.is-compact {
  font-size: 40px;     /* selected state smaller */
  font-weight: 800;
}

/* Small screens */
@media (max-width: 900px) {
  .filter-wrap { width: 100%; }
  .filter-select { height: 90px; font-size: 42px; padding: 16px 58px 16px 22px; }
  .filter-select.is-compact { font-size: 34px; }
  .filter-caret { top: 45px; }
}

.filter-wrap .filter-select.is-compact {
  font-size: 40px !important;
  font-weight: 800;
}

/* --- MOVIE PAGE: compact layout --- */

.movie-page {
  margin-top: 18px;
}

.movie-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 26px;
  align-items: start;
}

@media (max-width: 980px) {
  .movie-shell { grid-template-columns: 1fr; }
}

.movie-left {
  position: sticky;
  top: 92px;
}

@media (max-width: 980px) {
  .movie-left { position: static; }
}

.movie-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.05;
}

.movie-sub {
  color: rgba(245,232,204,0.38);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.movie-sub .score {
  color: var(--accent);
  font-weight: 700;
}

.movie-poster {
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.01);
  box-shadow: 0 18px 36px rgba(0,0,0,0.40);
  overflow: hidden;
}

.movie-poster .poster {
  aspect-ratio: 1086 / 1609;
}

.movie-reviews {
  display: grid;
  gap: 16px;
}

.review-row {
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.01);
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
  padding: 18px 20px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.review-panelist {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.review-score {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 16px;
}

.review-text {
  margin: 0;
  color: rgba(245,232,204,0.38);
  line-height: 1.9;
  font-size: 15px;
}

/* --- PANELISTS: lock image height to text card --- */

.panelist-card {
  display: grid;
  grid-template-columns: 420px 1fr; /* fixed image width */
  align-items: stretch;             /* force equal height */
}

@media (max-width: 1100px) {
  .panelist-card {
    grid-template-columns: 1fr;
  }
}

/* Image column */
.panelist-photo {
  position: relative;
  overflow: hidden;                 /* crop overflow */
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(213,139,30,0.10);
}

/* Match height of text column automatically */
.panelist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;                /* crop instead of stretch */
  display: block;
}

/* Text column */
.panelist-body {
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

/* Ensure text block defines height */
.panelist-name {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .panelist-photo {
    border-right: none;
    border-bottom: 1px solid rgba(213,139,30,0.10);
    min-height: 320px;               /* reasonable mobile crop */
  }
}

/* Force every panelist image area to the same size */
.panelist-card{
  grid-template-columns: 420px 1fr; /* fixed image width */
  align-items: stretch;
}

/* Fixed image height for all cards */
.panelist-photo{
  height: 390px;        /* <-- change this number to whatever you want */
  overflow: hidden;
}

/* Crop image to the fixed box */
.panelist-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;    /* crop */
  object-position: center;
  display: block;
}

/* Mobile: still consistent, just smaller */
@media (max-width: 1100px){
  .panelist-card{ grid-template-columns: 1fr; }
  .panelist-photo{ height: 320px; } /* <-- mobile height */
}

/* Small back link (e.g. "Back to All Years") */
.small-link{
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,232,204,0.45);
  transition: color 120ms ease, transform 120ms ease;
}

.small-link:hover{
  color: var(--accent);
  transform: translateX(-2px);
}

/* --- PANELIST PAGE (single panelist) --- */

.avatar {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
}

.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panelist-review {
  border: 1px solid rgba(213,139,30,0.12);
  background: rgba(255,255,255,0.01);
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
  padding: 18px 20px;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.panelist-review:hover {
  border-color: rgba(213,139,30,0.22);
  background: rgba(255,255,255,0.018);
  transform: translateY(-1px);
}

.panelist-review-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.panelist-review-movie {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.panelist-review-score {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 16px;
}

.panelist-review-text {
  margin: 0;
  color: rgba(245,232,204,0.38);
  line-height: 1.9;
  font-size: 15px;
}

.inline-link {
  color: inherit;
  text-decoration: none;
  transition: color 120ms ease;
}

.inline-link:hover {
  color: var(--accent); /* same orange as rest of site */
}

/* Mobile nav layout */
@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    justify-content: center;
  }

  .brand-title {
    text-align: center;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 0 12px;
  }

  .nav-link {
    text-align: center;
  }
}

/* Years page: 2 posters per row on mobile */
@media (max-width: 720px) {
  .poster-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .poster-grid .poster-tile {
    width: 100%;
  }

  .poster-grid .poster {
    width: 100%;
  }
}


