@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500;1,6..96,600&family=Geist:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --black:          #000000;
  --surface:        #0C0C0C;
  --overlay:        #1A1A1A;
  --gold:           #D4AF37;
  --gold-dim:       rgba(212,175,55,0.25);
  --white:          #FFFFFF;
  --gray:           #A0A0A0;
  --border:         rgba(255,255,255,0.08);
  --border-active:  rgba(255,255,255,0.2);

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Geist', 'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --max-w:          1440px;
  --margin:         64px;
  --margin-sm:      24px;
  --gutter:         24px;
  --nav-h:          92px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ─── Utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--margin);
}

.label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hairline {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: #c5a230; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--margin);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(0,0,0,0.55);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  filter: invert(1);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-contact-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 24px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-contact-btn:hover { background: #c5a230; color: var(--black); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--nav-h);
}

/* gold letterbox bars — the "cinema frame" */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero::before { top: var(--nav-h); }
.hero::after  { bottom: 0; }

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px var(--margin);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  animation: aperture-open 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes aperture-open {
  from {
    clip-path: inset(0 48% 0 48%);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0% 0 0%);
    opacity: 1;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 900px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .label { color: var(--gray); }
.scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scroll-drip 2.2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.15); opacity: 0.9; }
}

/* ─── Section chrome ──────────────────────────────────────── */
.section {
  padding: 112px 0;
  border-top: 1px solid var(--border);
}
.section-sm { padding: 80px 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}
.section-heading-group { display: flex; flex-direction: column; gap: 12px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.see-all {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.see-all:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.see-all .arrow { transition: transform 0.2s; }
.see-all:hover .arrow { transform: translateX(4px); }

/* ─── Featured Film ───────────────────────────────────────── */
.film-feature {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.film-poster {
  position: relative;
  aspect-ratio: 5/7;
  overflow: hidden;
}
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: filter 0.5s, transform 0.7s ease;
}
.film-poster:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}
.film-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 1;
}

.film-meta { display: flex; flex-direction: column; gap: 28px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray);
}
.chip-gold {
  color: var(--gold);
  border-color: rgba(212,175,55,0.3);
}

.film-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.film-synopsis {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.award-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.award-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 3px;
}
.award-row span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Director teaser ─────────────────────────────────────── */
.director-section { background: var(--surface); }

.director-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}

.director-portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.director-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1);
  transition: filter 0.6s;
}
.director-portrait:hover img { filter: grayscale(0.7); }
.director-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}

.director-info { display: flex; flex-direction: column; gap: 24px; }

.director-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.director-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.credential::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Services overview ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--black);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--overlay); }

.service-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.service-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray);
}

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--surface);
  padding: 72px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 72px;
  filter: invert(1);
  opacity: 0.55;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 280px;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-nav-col h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav-col li + li { margin-top: 12px; }
.footer-nav-col a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-email {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold); }

/* ─── Inner page hero ─────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 96px) 0 80px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.page-header-label { margin-bottom: 16px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 560px;
  margin-top: 24px;
  font-weight: 300;
}

/* ─── About page ──────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about-portrait-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-portrait-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
}
.about-portrait-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}

.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { font-size: 15px; line-height: 1.9; color: var(--gray); }
.about-text p.lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--white);
  font-weight: 300;
}

.company-section { background: var(--surface); }
.company-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.company-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 16px;
}
.company-text p:last-child { margin-bottom: 0; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.stat-block {
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}
.stat-block:hover { background: var(--overlay); }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── Films page ──────────────────────────────────────────── */
.film-full-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.film-poster-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 5/7;
  overflow: hidden;
}
.film-poster-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.5s;
}
.film-poster-sticky:hover img { filter: saturate(1); }
.film-poster-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}

.film-full-info { display: flex; flex-direction: column; gap: 40px; }
.film-full-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.info-block { display: flex; flex-direction: column; gap: 14px; }
.info-block p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray);
}

.awards-box {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.awards-box-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.award-entry {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.award-star { color: var(--gold); font-size: 9px; flex-shrink: 0; margin-top: 1px; }
.award-entry span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.6;
}

.ngo-section { background: var(--surface); }
.ngo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.ngo-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 16px;
}
.ngo-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.ngo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.ngo-item::before { content: '→'; color: var(--gold); flex-shrink: 0; }

.ngo-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.ngo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1) brightness(0.65);
  transition: filter 0.5s;
}
.ngo-image:hover img { filter: grayscale(0.5) brightness(0.75); }
.ngo-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}

/* ─── Services page ───────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}
.services-cta {
  margin-top: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.services-cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  max-width: 560px;
}
.services-cta-text em { font-style: italic; color: var(--gold); }

/* ─── Contact page ────────────────────────────────────────── */
.contact-section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 112px) 0 112px;
  display: flex;
  align-items: center;
  background: var(--black);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 48px;
  font-weight: 300;
}
.contact-email-link {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email-link:hover { color: var(--gold); border-color: var(--gold); }

.location-stack { display: flex; flex-direction: column; gap: 16px; }
.location-card {
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s;
}
.location-card:hover { border-color: rgba(212,175,55,0.35); }
.location-region {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.location-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.location-detail {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  :root { --margin: 40px; }

  .film-feature,
  .director-layout,
  .about-layout,
  .film-full-layout,
  .company-layout,
  .ngo-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-portrait-sticky,
  .film-poster-sticky {
    position: static;
    max-height: 520px;
    aspect-ratio: auto;
  }

  .stat-grid { position: static; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --margin: var(--margin-sm); }

  .nav-links, .nav-contact-btn { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 32px var(--margin-sm);
    border-bottom: 1px solid var(--border);
    gap: 28px;
    align-items: flex-start;
  }
  .nav-links.is-open a { font-size: 12px; color: var(--white); }

  .section { padding: 72px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .services-grid,
  .services-full-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }

  .awards-box { padding: 24px; }
  .page-title { letter-spacing: -0.02em; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; opacity: 1; clip-path: none; }
  .scroll-bar   { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
