/* ============================================
   MAFER ROUSSELL — PORTFOLIO WEBSITE
   Design: Cinematic dark, warm gold accents
   ============================================ */

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

:root {
  --bg:       #0c0c0c;
  --surface:  #141414;
  --card:     #1c1c1c;
  --border:   #2a2a2a;
  --gold:     #c9a96e;
  --gold-lt:  #e0c490;
  --cream:    #f0ece4;
  --muted:    #888;
  --light:    #bbb;
  --serif:    'Playfair Display', Georgia, serif;
  --italic:   'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- SHARED TYPOGRAPHY ---- */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-lt); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 60px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.60) 50%,
    rgba(8,8,8,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}
.hero-pretitle {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-location {
  font-family: var(--italic);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-concept {
  font-family: var(--italic);
  font-size: 17px;
  font-style: italic;
  color: var(--gold-lt);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.pull-quote p {
  font-family: var(--italic);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 28px;
}
.pull-quote p em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}
.pull-quote cite {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 140px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.about-photo-frame {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-declaration {
  font-family: var(--italic);
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 28px;
}
.about-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--light);
  margin-bottom: 20px;
}
.about-bio em { color: var(--gold-lt); font-style: italic; }

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   CAREER
   ============================================ */
.career {
  padding: 140px 0;
  background: var(--surface);
}

.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab {
  background: none;
  border: none;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.tab.active { color: var(--gold); }
.tab.active::after { transform: scaleX(1); }
.tab:hover { color: var(--cream); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s;
}
.work-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.work-card:hover::before { height: 100%; }

.work-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.work-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.3;
}
.work-role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: italic;
}
.work-note {
  font-size: 12px;
  color: var(--light);
  line-height: 1.6;
}
.work-note strong { color: var(--gold-lt); }
.work-note em { font-style: italic; color: var(--muted); }

/* ---- has-photos card badge ---- */
.has-photos { cursor: pointer; }
.view-photos-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.has-photos:hover .view-photos-badge {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ---- Production Photo Modal ---- */
.prod-modal {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(5,5,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.prod-modal.open {
  opacity: 1;
  pointer-events: all;
}
.prod-modal-inner {
  width: min(860px, 94vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.prod-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--light);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s;
}
.prod-modal-close:hover { color: var(--gold); }

.prod-modal-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  letter-spacing: 0.02em;
}
.prod-modal-stage {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.prod-img-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  max-height: 72vh;
  overflow: hidden;
}
#prodModalImg {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  transition: opacity 0.25s;
}
#prodModalImg.fade { opacity: 0; }

.prod-nav {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.prod-nav:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.prod-nav:disabled { opacity: 0.2; cursor: default; }

.prod-dots {
  display: flex;
  gap: 8px;
}
.prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.prod-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 140px 0;
  background: var(--bg);
}
.gallery-section .section-title { margin-bottom: 60px; }

.gallery-grid {
  columns: 4;
  column-gap: 8px;
  padding: 0 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.gallery-plus { font-size: 28px !important; }

/* ============================================
   AWARDS
   ============================================ */
.awards {
  padding: 140px 0;
  background: var(--surface);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.award-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.award-card:hover { border-color: var(--gold); transform: translateY(-6px); }

.award-diamond {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.award-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}
.award-desc {
  font-size: 13px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.award-work {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   TRAINING
   ============================================ */
.training {
  padding: 100px 0;
  background: var(--bg);
}
.training-inner {
  border: 1px solid var(--border);
  padding: 60px 80px;
  background: var(--card);
}
.training-heading {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 48px;
}
.training-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.training-item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.training-item:last-child { border-bottom: none; }
.training-year {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
  line-height: 1.2;
}
.training-info h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.training-info p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================
   COMP CARD
   ============================================ */
.compcard {
  padding: 120px 0;
  background: var(--surface);
}
.compcard-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 60px;
  background: var(--card);
}
.compcard-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%);
}
.compcard-name {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 6px;
}
.compcard-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.compcard-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
}
.compcard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.compcard-key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.compcard-val {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
}
.compcard-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.compcard-cta:hover { background: var(--gold-lt); }

@media (max-width: 900px) {
  .compcard-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  .compcard-photo img { height: 360px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 15%;
  filter: grayscale(20%);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.92) 40%,
    rgba(8,8,8,0.55) 65%,
    rgba(8,8,8,0.10) 100%
  );
}
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 24px;
  margin-top: 16px;
}
.contact-sub {
  font-size: 15px;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.contact-email:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.contact-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.contact-location {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,5,5,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 32px; right: 40px;
  background: none;
  border: none;
  color: var(--light);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1000;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#lightboxImg {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-caption {
  font-family: var(--italic);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---- workshops ---- */
.workshops-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.workshop-tag {
  font-size: 10px !important;
  letter-spacing: 0.15em;
  color: var(--gold) !important;
  background: rgba(201,169,110,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}
.training-info em {
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.85); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo img { height: 480px; }
  .gallery-grid { columns: 3; }
  .training-inner { padding: 48px 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(12,12,12,0.97);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }

  .hero-content { padding: 0 24px; }
  .hero-name { font-size: clamp(52px, 13vw, 80px); }

  .about { padding: 80px 0; }
  .career { padding: 80px 0; }
  .awards { padding: 80px 0; }
  .gallery-section { padding: 80px 0; }
  .contact { padding: 100px 0; }

  .about-photo-frame { display: none; }
  .about-stats { gap: 32px; flex-wrap: wrap; }

  .gallery-grid { columns: 2; padding: 0 12px; }

  .training-inner { padding: 40px 24px; }
  .training-item { gap: 24px; }

  .tabs { gap: 0; }
  .tab { padding: 12px 16px; font-size: 11px; }

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

  .contact-bg img { object-position: 70% center; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .awards-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: clamp(52px, 16vw, 72px); }
  .about-stats { flex-direction: column; gap: 24px; }
}

/* ---- ALDER PRODUCTIONS ---- */
.alder {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.alder-sub {
  font-family: var(--italic);
  font-size: 18px;
  font-style: italic;
  color: var(--light);
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.7;
}
.alder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.alder-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.alder-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.alder-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.alder-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.alder-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .alder-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .alder-grid { grid-template-columns: 1fr; }
  .hero-concept { font-size: 15px; }
}

/* ---- COMMUNITY ---- */
.community {
  padding: 120px 0;
  background: var(--bg);
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.community-item {
  border-left: 2px solid var(--gold);
  padding: 0 0 0 24px;
}
.community-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.community-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.community-years {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.community-item p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .community-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .community-grid { grid-template-columns: 1fr; }
}
