/* ============================================================
   ALAgrApHY Gallery — Shared Stylesheet
   Design: Dark editorial gallery · Paris 2025
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --bg:          #070707;
  --surface:     #111111;
  --surface2:    #181818;
  --border:      rgba(201,168,76,0.15);
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    rgba(201,168,76,0.08);
  --text:        #e8e4dc;
  --muted:       #888880;
  --accent:      #c9a84c;
  --red:         #c94c4c;
  --nav-h:       72px;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Utility ---- */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--surface); }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.spacer { display: block; height: 1px; background: var(--border); margin: 40px 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-social a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-toggle svg { width: 18px; height: 18px; fill: currentColor; }
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-social {
  display: flex; gap: 16px; padding-top: 16px;
}
.nav-drawer .drawer-social a { border: none; padding: 0; }
.nav-drawer .drawer-social svg { width: 20px; height: 20px; fill: currentColor; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--bg);
  animation: heroShift 16s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}
.hero-img {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 40px 24px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.6;
}
.hero-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--muted);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll svg  { width: 18px; height: 18px; fill: currentColor; }

/* ---- Page Hero (sub-pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.page-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  opacity: 0.35;
  position: absolute;
  inset: 0;
  height: 100%;
}
.page-hero-content { position: relative; z-index: 2; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* ---- Grid Cards ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.gallery-grid--3 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: block;
  group: true;
  aspect-ratio: 4/3;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s ease;
  filter: grayscale(0.2) brightness(0.75);
}
.gallery-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(0.9);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(7,7,7,0.96) 0%, rgba(7,7,7,0.5) 60%, rgba(0,0,0,0.1) 100%);
}
.gallery-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.gallery-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.gallery-card:hover .gallery-card-desc {
  max-height: 80px;
  opacity: 1;
}
.gallery-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-card:hover .gallery-card-arrow {
  opacity: 1;
  transform: translateY(0);
}
.gallery-card-arrow svg { width: 14px; height: 14px; fill: currentColor; }

/* ---- Sponsor Grid ---- */
.sponsor-grid {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  justify-content: center;
  gap: 32px;
}

/* ---- Art Work Cards (for sub-pages) ---- */
.artwork-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.artwork-card {
  background: var(--surface);
  border: 1px var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.artwork-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.artwork-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.artwork-card:hover img { filter: brightness(1); }
.artwork-card-body {
  padding: 24px;
}
.artwork-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.artwork-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- About / Bio Section ---- */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.bio-section--reverse { direction: rtl; }
.bio-section--reverse > * { direction: ltr; }
.bio-image {
  position: relative;
}
.bio-image img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  filter: brightness(0.8) grayscale(0.1);
}
.bio-image::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px var(--border);
  border-radius: var(--radius);
  z-index: -1;
}
.bio-text h2 { margin-bottom: 20px; }
.bio-text p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.bio-text .btn { margin-top: 8px; }

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ---- Press ---- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.press-item {
  background: var(--surface);
  border: 1px var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  transition: border-color var(--transition), background var(--transition);
}
.press-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: var(--gold-dim);
}
.press-item-lang {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.press-item-name { color: var(--text); font-weight: 500; }

/* ---- FAQ ---- */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px var(--border);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q svg {
  width: 18px; height: 18px; fill: currentColor;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 16px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--surface);
  border-top: 1px var(--border);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.84rem;
  color: var(--muted);
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 0.76rem;
  color: var(--muted);
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Noise overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ---- Spotlight Content (expandable) ---- */
.spotlight-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 24px;
}
.spotlight-content img {
  width: 100%;
  border-radius: var(--radius);
  filter: brightness(0.9);
  transition: filter var(--transition);
}
.spotlight-content img:hover {
  filter: brightness(1);
}
.spotlight-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.spotlight-text a {
  color: var(--gold);
  font-style: italic;
}
@media (max-width: 768px) {
  .spotlight-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bio-section { grid-template-columns: 1fr; gap: 40px; }
  .bio-section--reverse { direction: ltr; }
  .bio-image::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 56px 0; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .artwork-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
}

/* ---- Gold line decoration ---- */
.gold-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.gold-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---- Section Intro ---- */
.section-intro { max-width: 640px; }
.section-intro h2 { margin-bottom: 16px; }

/* ---- Bilingual ---- */
.bilingual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.bilingual-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 768px) {
  .bilingual { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Floating label list ---- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}
.feature-item {
  background: var(--surface);
  border: 1px var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: rgba(201,168,76,0.35); }
.feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 18px; height: 18px; fill: currentColor; }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* ---- Commission CTA ---- */
.cta-box {
  background: var(--surface);
  border: 1px var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--muted); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-box .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Filmography ---- */
.film-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: border-color var(--transition);
}
.film-item:hover {
  border-color: rgba(201,168,76,0.3);
}
.film-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  transition: color var(--transition);
}
.film-summary::-webkit-details-marker { display: none; }
.film-summary:hover { color: var(--gold); }
.film-title {
  font-weight: 400;
}
.imdb-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 8px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.imdb-link:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ---- Contact form ---- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Scroll progress bar ---- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1100;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}