:root {
  --bg: #09090b;
  --bg-soft: #111114;
  --panel: #161619;
  --cream: #f2e9dc;
  --muted: #b9b0a4;
  --gold: #c9a568;
  --gold-light: #e5c78f;
  --line: rgba(242, 233, 220, .16);
  --shadow: 0 30px 80px rgba(0, 0, 0, .38);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; background: var(--bg); color: var(--cream); font-family: var(--sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #111; }

.grain { position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .045; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 200; background: var(--cream); color: #000; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.section-pad { padding: 9rem max(5vw, 1.5rem); }
.eyebrow { margin: 0 0 1.3rem; color: var(--gold-light); font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; margin: 0; }
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }
h2 { font-size: clamp(3rem, 6vw, 6.2rem); letter-spacing: -.035em; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: flex; align-items: center; justify-content: space-between; height: 86px; padding: 0 max(4vw, 1.25rem); border-bottom: 1px solid transparent; transition: background .4s ease, border-color .4s ease, height .4s ease; }
.site-header.scrolled { height: 70px; background: rgba(9,9,11,.82); border-color: var(--line); backdrop-filter: blur(18px); }
.wordmark, .footer-wordmark { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: .22em; }
.desktop-nav { display: flex; gap: 2.3rem; }
.desktop-nav a { color: rgba(242,233,220,.78); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; transition: color .3s; }
.desktop-nav a:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 1.2rem; }
.language-toggle, .menu-toggle { background: none; border: 0; cursor: pointer; }
.language-toggle { font-size: .68rem; letter-spacing: .12em; color: rgba(242,233,220,.6); padding: .5rem; }
.language-toggle .lang-current { color: var(--gold-light); }
.lang-divider { margin: 0 .28rem; }
.menu-toggle { display: none; width: 38px; height: 38px; position: relative; }
.menu-toggle span { position: absolute; left: 7px; right: 7px; height: 1px; background: var(--cream); transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 14px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: rgba(9,9,11,.97); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .35s ease; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: 1.5rem; text-align: center; }
.mobile-menu a { font-family: var(--serif); font-size: 2.6rem; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-image { position: absolute; inset: -4%; background: url('assets/images/hero.webp') center 22%/cover no-repeat; animation: heroDrift 24s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1.04) translate3d(-1%, 0, 0); } to { transform: scale(1.11) translate3d(1.5%, -1%, 0); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,7,.93) 0%, rgba(5,5,7,.55) 45%, rgba(5,5,7,.2) 72%), linear-gradient(0deg, rgba(5,5,7,.9) 0%, transparent 55%); }
.hero-content { position: relative; z-index: 2; width: min(1000px, 90vw); padding: 0 0 12vh max(6vw, 1.5rem); }
.hero h1 { font-size: clamp(4.2rem, 8.6vw, 9.5rem); letter-spacing: -.05em; }
.hero-subtitle { margin: 2rem 0 2.3rem; font-size: clamp(.9rem, 1.4vw, 1.2rem); letter-spacing: .08em; color: rgba(242,233,220,.75); }
.hero-buttons { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .8rem 1.35rem; border: 1px solid transparent; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: transform .25s, background .25s, border-color .25s, color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { background: rgba(9,9,11,.25); border-color: rgba(242,233,220,.34); backdrop-filter: blur(10px); }
.btn-ghost:hover, .btn-ghost[aria-pressed="true"] { border-color: var(--gold); color: var(--gold-light); }
.sound-icon { width: 24px; height: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 3px; }
.sound-icon i { width: 2px; height: 7px; background: currentColor; display: block; }
.ambient-toggle[aria-pressed="true"] .sound-icon i { animation: bars .8s ease-in-out infinite alternate; }
.ambient-toggle[aria-pressed="true"] .sound-icon i:nth-child(2) { animation-delay: .15s; }
.ambient-toggle[aria-pressed="true"] .sound-icon i:nth-child(3) { animation-delay: .3s; }
@keyframes bars { to { height: 15px; } }
.hero-foot { position: absolute; z-index: 2; right: max(4vw, 1.25rem); bottom: 3rem; display: flex; align-items: center; gap: 1rem; color: rgba(242,233,220,.55); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-line { width: 70px; height: 1px; background: rgba(242,233,220,.45); }

.release-section { background: linear-gradient(180deg, #0d0d10 0%, #111014 100%); }
.section-heading { max-width: 860px; margin-bottom: 5rem; }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); font-size: 1.05rem; margin-top: 2rem; }
.release-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.3rem, 2.5vw, 3rem); max-width: var(--max); margin: 0 auto; }
.release-card { min-width: 0; }
.cover-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: #19191c; box-shadow: var(--shadow); }
.cover-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; }
.release-card:hover .cover-wrap img { transform: scale(1.04); filter: brightness(.78); }
.preview-play { position: absolute; left: 50%; top: 50%; width: 70px; height: 70px; margin: -35px 0 0 -35px; border-radius: 50%; border: 1px solid rgba(255,255,255,.65); background: rgba(7,7,8,.38); backdrop-filter: blur(12px); cursor: pointer; opacity: 0; transform: scale(.8); transition: .35s; }
.release-card:hover .preview-play, .preview-play:focus-visible { opacity: 1; transform: scale(1); }
.play-shape { display: inline-block; margin: 5px 0 0 4px; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.release-meta { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center; margin-top: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.release-date { width: 58px; padding-right: 1rem; border-right: 1px solid var(--line); line-height: 1; }
.release-date span { display: block; font-family: var(--serif); font-size: 2.3rem; color: var(--gold-light); }
.release-date small { font-size: .52rem; letter-spacing: .12em; white-space: nowrap; color: var(--muted); }
.release-kicker { margin: 0 0 .2rem; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.release-meta h3 { font-size: clamp(1.7rem, 2.5vw, 2.4rem); line-height: 1.05; }
.release-copy { color: var(--muted); min-height: 5.2rem; font-size: .91rem; }
.countdown { color: rgba(242,233,220,.62); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; min-height: 1.2rem; }
.release-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-light); font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.release-link::after { content: "↗"; font-size: 1rem; }
.release-link.disabled { color: rgba(242,233,220,.38); pointer-events: none; }
.platform-row { max-width: var(--max); margin: 6rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; color: rgba(242,233,220,.52); font-size: .68rem; letter-spacing: .08em; }
.platform-row span { color: var(--gold); text-transform: uppercase; font-weight: 600; letter-spacing: .16em; }

.manifesto-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 900px; background: #0c0c0e; }
.manifesto-image { background: linear-gradient(180deg, transparent 60%, rgba(9,9,11,.65)), url('assets/images/story-rooftop.webp') center/cover no-repeat; min-height: 700px; }
.manifesto-content { display: flex; flex-direction: column; justify-content: center; }
.manifesto-content h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.manifesto-content .lead { margin: 2.2rem 0 3rem; max-width: 680px; color: var(--muted); font-size: 1.02rem; }
.manifesto-lines { border-top: 1px solid var(--line); }
.manifesto-lines p { margin: 0; padding: 1.3rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 48px 180px 1fr; gap: 1rem; align-items: start; }
.manifesto-lines span { color: var(--gold); font-size: .65rem; letter-spacing: .1em; }
.manifesto-lines strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.manifesto-lines small { color: var(--muted); font-size: .8rem; line-height: 1.6; }

.story-section { background: radial-gradient(circle at 82% 18%, rgba(148,96,39,.13), transparent 28%), #121114; }
.story-intro { max-width: 1050px; margin-bottom: 5rem; }
.story-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.story-copy p { color: var(--muted); font-size: 1rem; max-width: 620px; }
.story-copy blockquote { margin: 3rem 0; padding: 1.2rem 0 1.2rem 2rem; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.2; color: var(--cream); }
.signature { color: var(--cream) !important; font-family: var(--serif); font-size: 1.35rem !important; }
.signature small { color: var(--gold); font-family: var(--sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.story-visual { position: relative; }
.story-visual img { width: 100%; box-shadow: var(--shadow); }
.story-visual span { position: absolute; bottom: -1.4rem; right: -1rem; max-width: 250px; padding: 1.1rem; background: var(--gold); color: #111; font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; line-height: 1.5; }

.cinema-section { display: grid; grid-template-columns: 1fr 1.25fr 1fr; min-height: 78vh; background: #08080a; }
.cinema-card { position: relative; overflow: hidden; min-height: 600px; }
.cinema-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,6,.8), transparent 55%); }
.cinema-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.77); transition: transform 1s, filter .6s; }
.cinema-card:hover img { transform: scale(1.045); filter: saturate(.95) brightness(.9); }
.cinema-card span { position: absolute; z-index: 2; bottom: 2.2rem; left: 2.2rem; font-family: var(--serif); font-size: 2.6rem; }
.card-one { margin-top: 5rem; }
.card-three { margin-top: 10rem; }

.contact-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 9vw, 9rem); background: linear-gradient(135deg, #15120f, #09090b 62%); }
.contact-copy > p:not(.eyebrow,.privacy-note) { color: var(--muted); max-width: 620px; margin: 2rem 0; }
.newsletter-form { max-width: 650px; display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(242,233,220,.44); position: relative; }
.newsletter-form input { min-width: 0; padding: 1.1rem 0; background: transparent; border: 0; color: var(--cream); outline: none; font-size: 1rem; }
.newsletter-form input::placeholder { color: rgba(242,233,220,.43); }
.newsletter-form button { background: none; border: 0; color: var(--gold-light); cursor: pointer; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.form-status { grid-column: 1 / -1; margin: .6rem 0 0 !important; min-height: 1.2rem; font-size: .72rem !important; color: var(--gold-light) !important; }
.privacy-note { color: rgba(242,233,220,.42); font-size: .66rem; }
.privacy-note a { color: var(--gold); }
.contact-panel { align-self: center; border: 1px solid var(--line); padding: 2.2rem; background: rgba(255,255,255,.025); }
.contact-panel img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin-bottom: 2rem; }
.contact-panel h3 { font-size: 2.1rem; }
.contact-panel p { color: var(--muted); font-size: .84rem; }
.contact-email { display: inline-block; color: var(--gold-light); margin: 1rem 0 2rem; border-bottom: 1px solid var(--gold); }
.social-links { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.social-links a { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(242,233,220,.55); }
.social-links a:hover { color: var(--gold-light); }
.social-links a.disabled { opacity: .3; pointer-events: none; }

.site-footer { padding: 5rem max(5vw, 1.5rem) 2rem; background: #070708; border-top: 1px solid var(--line); }
.site-footer > p { max-width: 560px; color: var(--muted); margin: 1.3rem 0 4rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: rgba(242,233,220,.4); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }

.audio-dock { position: fixed; z-index: 80; left: 50%; bottom: 1.2rem; width: min(720px, calc(100vw - 2rem)); transform: translate(-50%, 160%); opacity: 0; display: grid; grid-template-columns: auto auto 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.2rem; background: rgba(15,15,18,.92); border: 1px solid rgba(242,233,220,.17); backdrop-filter: blur(18px); box-shadow: 0 20px 70px rgba(0,0,0,.5); transition: .45s cubic-bezier(.2,.7,.2,1); }
.audio-dock.open { transform: translate(-50%, 0); opacity: 1; }
.dock-close { position: absolute; right: .4rem; top: .15rem; background: none; border: 0; color: rgba(242,233,220,.4); cursor: pointer; font-size: 1.2rem; }
.dock-info { min-width: 150px; }
.dock-info small { display: block; color: var(--gold); font-size: .55rem; letter-spacing: .14em; text-transform: uppercase; }
.dock-title { font-family: var(--serif); font-weight: 500; }
.dock-play { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: none; cursor: pointer; }
.dock-play.is-playing .play-shape { width: 10px; height: 12px; border: 0; margin: 3px 0 0; background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65%); }
.dock-progress { height: 2px; background: rgba(242,233,220,.18); cursor: pointer; }
.dock-progress span { display: block; width: 0; height: 100%; background: var(--gold); }
.dock-time { font-size: .62rem; color: var(--muted); }
.noscript { position: fixed; bottom: 0; left: 0; right: 0; background: var(--gold); color: #111; padding: 1rem; text-align: center; z-index: 100; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.privacy-page { min-height: 100vh; padding: 10rem max(5vw, 1.5rem) 5rem; max-width: 920px; margin: 0 auto; }
.privacy-page h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
.privacy-page h2 { font-size: 2.2rem; margin-top: 3rem; }
.privacy-page p, .privacy-page li { color: var(--muted); }
.privacy-page .back { color: var(--gold-light); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .release-grid { grid-template-columns: 1fr 1fr; }
  .release-card:last-child { grid-column: 1 / -1; width: calc(50% - .7rem); }
  .manifesto-section { grid-template-columns: 1fr; }
  .manifesto-image { min-height: 62vh; }
  .story-layout, .contact-section { grid-template-columns: 1fr; }
  .story-visual { max-width: 650px; }
  .cinema-section { min-height: auto; }
  .cinema-card { min-height: 520px; }
}

@media (max-width: 680px) {
  .section-pad { padding: 6.5rem 1.25rem; }
  .site-header { height: 72px; padding: 0 1.1rem; }
  .wordmark { font-size: 1.05rem; }
  .hero-content { padding: 0 1.25rem 15vh; width: 100%; }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 5.9rem); }
  .hero-image { background-position: 61% 15%; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,5,7,.95) 0%, rgba(5,5,7,.25) 78%), linear-gradient(90deg, rgba(5,5,7,.75), transparent); }
  .hero-buttons { align-items: stretch; flex-direction: column; max-width: 330px; }
  .hero-foot { display: none; }
  h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .release-grid { grid-template-columns: 1fr; }
  .release-card:last-child { grid-column: auto; width: auto; }
  .release-copy { min-height: 0; }
  .preview-play { opacity: 1; transform: scale(.85); }
  .platform-row { gap: 1rem 1.4rem; }
  .manifesto-content h2 { font-size: clamp(2.9rem, 13vw, 4.4rem); }
  .manifesto-lines p { grid-template-columns: 38px 1fr; }
  .manifesto-lines small { grid-column: 2; }
  .story-visual span { right: .5rem; }
  .cinema-section { display: block; padding: 1.25rem; }
  .cinema-card, .card-one, .card-three { min-height: 70vh; margin: 0 0 1.25rem; }
  .contact-section { padding-bottom: 8rem; }
  .newsletter-form { grid-template-columns: 1fr auto; }
  .audio-dock { grid-template-columns: 1fr auto; gap: .65rem; }
  .dock-info { min-width: 0; }
  .dock-progress { grid-column: 1 / -1; }
  .dock-time { position: absolute; right: 1rem; bottom: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
