/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #1c1c1c;
  --bg-2: #141414;
  --surface: #2a2a2a;
  --surface-2: #222222;
  --amber: #e8a838;
  --amber-dim: #b8812a;
  --white: #f5f5f0;
  --gray: #999999;
  --gray-dark: #555555;
  --text: #f0ede8;
  --text-dim: #888888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, .hero-headline, .section-title, .why-headline, .craft-headline, .closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(28,28,28,0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--amber); }

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-orb {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,168,56,0.15);
}

.orb-ring-1 { width: 380px; height: 380px; animation: pulse-ring 4s ease-in-out infinite; }
.orb-ring-2 { width: 280px; height: 280px; border-color: rgba(232,168,56,0.25); animation: pulse-ring 4s ease-in-out infinite 0.5s; }
.orb-ring-3 { width: 180px; height: 180px; border-color: rgba(232,168,56,0.4); animation: pulse-ring 4s ease-in-out infinite 1s; }

.orb-center {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232,168,56,0.2) 0%, transparent 70%);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orb-cross-h, .orb-cross-v {
  position: absolute;
  background: var(--amber);
}

.orb-cross-h { width: 60px; height: 1px; }
.orb-cross-v { width: 1px; height: 60px; }

.orb-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--amber);
  position: relative;
  z-index: 1;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.7; }
}

/* === FILMS === */
.films {
  padding: 6rem 4rem;
  background: var(--bg-2);
}

.section-header { margin-bottom: 3rem; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-top: 0.5rem;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.film-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.film-card:hover { border-color: rgba(232,168,56,0.4); }

.film-card-accent { border-color: var(--amber-dim); background: linear-gradient(135deg, var(--surface) 0%, rgba(232,168,56,0.05) 100%); }

.film-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.film-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.film-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.film-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.film-features li {
  font-size: 0.75rem;
  color: var(--gray-dark);
  padding-left: 1rem;
  position: relative;
}

.film-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber-dim);
}

/* === WHY === */
.why {
  padding: 6rem 4rem;
  background: var(--bg);
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
}

.why-body {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.why-points { display: flex; flex-direction: column; gap: 1.5rem; }

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,168,56,0.1);
  border: 1px solid rgba(232,168,56,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
}

.why-point h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.why-point p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

.why-right { position: relative; }

.why-visual-block {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  border-radius: 4px;
}

.visual-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.visual-label:first-child { margin-top: 0; }

.visual-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 92%;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber));
  border-radius: 2px;
}

.bar-fill-2 { width: 97%; }
.bar-fill-3 { width: 88%; }
.bar-fill-4 { width: 95%; }

.visual-caption {
  font-size: 0.7rem;
  color: var(--gray-dark);
  margin-top: 1.5rem;
  font-style: italic;
}

/* === PROCESS === */
.process {
  padding: 6rem 4rem;
  background: var(--bg-2);
  text-align: center;
}

.process .section-title {
  margin: 0.5rem auto 4rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 260px;
  text-align: left;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(232,168,56,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(232,168,56,0.3), rgba(232,168,56,0.1));
  flex-shrink: 0;
  margin-top: 2.5rem;
}

/* === CRAFT === */
.craft {
  padding: 6rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.craft::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,168,56,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.craft-content { position: relative; z-index: 1; }

.craft-top { text-align: center; margin-bottom: 3rem; }

.craft-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-top: 0.5rem;
}

.craft-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.craft-stat { text-align: center; }

.craft-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.craft-sub {
  font-size: 0.7rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--amber));
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 3rem 4rem;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .why-content { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
  .step-connector { display: none; }
  .craft-stats { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 4rem 1.5rem; min-height: auto; }
  .films, .why, .process, .craft, .closing { padding: 4rem 1.5rem; }
  .film-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
}