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

:root {
  --bg: #fbf7f0;
  --bg-warm: #f5f0e8;
  --text: #2A2523;
  --text-soft: #6B5E57;
  --text-muted: #9C8E85;
  --gold: #B69455;
  --gold-light: #D4B87A;
  --gold-dark: #8C6D3A;
  --gold-glow: rgba(182, 148, 85, 0.15);
  --rose: #C9A89A;
  --rose-light: #E8D5CC;
  --cream: #F0EAE0;
  --white: #FFFFFF;
  --deep: #1a1a2e;
  --green: #5a8a5e;
  --teal: #4a8b8b;
  --amber: #c4882b;
  --red-soft: #c25a5a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(42, 37, 35, 0.06);
  --shadow-lg: 0 8px 30px rgba(42, 37, 35, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim.visible.d1 { animation-delay: 0.1s; }
.anim.visible.d2 { animation-delay: 0.2s; }
.anim.visible.d3 { animation-delay: 0.3s; }
.anim.visible.d4 { animation-delay: 0.4s; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(182, 148, 85, 0.08);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  color: var(--text); text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-soft);
  text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-decoration: none;
  cursor: pointer; transition: all 0.3s; border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-secondary {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-nav {
  padding: 10px 24px; background: var(--gold); color: var(--white) !important;
  border-radius: 100px; font-size: 12px !important; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.btn-nav:hover { background: var(--gold-dark); }
.btn-nav::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

/* === HERO === */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero .subtitle {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* === SEARCH BOX === */
.search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto 24px;
}
.search-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.search-field {
  flex: 1; min-width: 140px;
}
.search-field label {
  display: block; font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px;
}
.search-field input, .search-field select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 14px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}
.search-field input:focus, .search-field select:focus {
  outline: none; border-color: var(--gold);
}
.search-field input::placeholder { color: var(--text-muted); }
.search-btn {
  align-self: flex-end;
  padding: 10px 32px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--gold-dark); }

/* Quick filter pills */
.filter-pills {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; max-width: 720px; margin: 0 auto;
}
.filter-pill {
  padding: 6px 16px;
  border: 1.5px solid var(--cream);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--text-soft);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* === SECTIONS === */
.section { padding: 64px 0; }
.section-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

/* === LISTING CARDS === */
.card-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding-bottom: 16px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.card-scroll::-webkit-scrollbar { height: 4px; }
.card-scroll::-webkit-scrollbar-track { background: var(--cream); border-radius: 4px; }
.card-scroll::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }

.listing-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.card-photo {
  width: 100%; height: 170px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.card-photo .placeholder-icon {
  font-size: 48px; opacity: 0.3;
}
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.card-body { padding: 16px; }
.card-body h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  margin-bottom: 8px; line-height: 1.2;
}
.card-meta {
  font-size: 13px; color: var(--text-soft);
  margin-bottom: 4px; display: flex; align-items: center; gap: 6px;
}
.card-meta .icon { font-size: 14px; }

.card-badges { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-style { background: var(--gold-glow); color: var(--gold-dark); }
.badge-virtual { background: rgba(74, 139, 139, 0.12); color: var(--teal); }
.badge-interview { background: rgba(90, 138, 94, 0.12); color: var(--green); }
.badge-photogenic { background: rgba(201, 168, 154, 0.2); color: #8b6b5d; }
.badge-beginner { background: rgba(182, 148, 85, 0.1); color: var(--gold-dark); }
.badge-nationals { background: rgba(194, 90, 90, 0.1); color: var(--red-soft); }
.badge-free { background: rgba(90, 138, 94, 0.12); color: var(--green); }
.badge-open { background: rgba(74, 139, 139, 0.1); color: var(--teal); }

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--cream);
}
.card-fee { font-size: 14px; font-weight: 600; color: var(--text); }
.card-saves { font-size: 12px; color: var(--text-muted); }

/* === DIRECTOR PITCH === */
.pitch-section {
  background: var(--bg-warm);
  padding: 64px 0;
}
.pitch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; text-align: center;
}
.pitch-item h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  margin-bottom: 8px;
}
.pitch-item p {
  font-size: 15px; color: var(--text-soft);
  line-height: 1.5;
}
.pitch-icon {
  font-size: 36px; margin-bottom: 12px;
}

/* === FOOTER === */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
footer .container {
  display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between;
}
.footer-col h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 18px; margin-bottom: 12px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  font-size: 14px; margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-email-form {
  display: flex; gap: 8px; margin-top: 8px;
}
.footer-email-form input {
  flex: 1; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--sans); font-size: 14px;
}
.footer-email-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-email-form select {
  padding: 10px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-family: var(--sans); font-size: 14px;
}
.footer-email-form button {
  padding: 10px 20px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.footer-email-form button:hover { background: var(--gold-dark); }

.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; text-align: center;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .search-row { flex-direction: column; }
  .search-field { min-width: 100%; }
  .search-btn { width: 100%; }
  .pitch-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .listing-card { flex: 0 0 280px; }
  footer .container { flex-direction: column; gap: 32px; }
  .footer-email-form { flex-direction: column; }
}

/* === SKELETON LOADING === */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, var(--bg-warm) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  flex: 0 0 300px;
  height: 320px;
  border-radius: var(--radius);
}

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42, 37, 35, 0.5);
  z-index: 200;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal h2 {
  font-family: var(--serif);
  font-size: 24px; margin-bottom: 16px;
}
.modal .close-btn {
  float: right; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--text-muted);
}

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-soft); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 14px;
  background: var(--bg); color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-error { color: var(--red-soft); font-size: 12px; margin-top: 4px; }

/* Checkbox / radio labels */
.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  cursor: pointer;
  line-height: 1.4;
}
.check-label input[type="checkbox"],
.check-label input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.checkbox-grid .check-label {
  width: 100%;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
