:root {
  --black: #080808;
  --black-soft: #0d0d0d;
  --panel: #111111;
  --ivory: #eee9df;
  --muted: #aaa49a;
  --gold: #d7b46a;
  --gold-dim: #8e7544;
  --burgundy: #4c1117;
  --line: rgba(215, 180, 106, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { z-index: 100; width: auto; height: auto; clip: auto; padding: .7rem 1rem; background: var(--gold); color: #080808; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  padding: 0 clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.55), transparent);
}

.brand { display: block; width: clamp(230px, 24vw, 390px); }
.brand img { display: block; width: 100%; height: auto; }
nav { display: flex; gap: clamp(1.4rem, 3vw, 3.5rem); align-items: center; }
nav a {
  position: relative;
  color: #d6d2ca;
  font-size: .86rem;
  letter-spacing: .08em;
  padding: .8rem 0;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .35rem;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
nav a:hover::after, nav a:focus-visible::after, nav a.active::after { right: 0; }
.language-switcher {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-left: .15rem;
}
.language-button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .15rem;
  border: 0;
  color: #77736d;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  transition: color .25s ease, opacity .25s ease;
}
.language-button span[aria-hidden="true"] { font-size: 1rem; filter: saturate(.8); }
.language-button:hover, .language-button:focus-visible, .language-button.active { color: var(--ivory); }
.language-button.active span[aria-hidden="true"] { filter: saturate(1); }
.language-divider { width: 1px; height: 15px; background: rgba(215,180,106,.35); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(860px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image {
  background: url("./assets/stage-hero.png") center / cover no-repeat;
  transform: scale(1.01);
  transition: transform 9s ease;
}
.hero:hover .hero-image { transform: scale(1.045); }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 34%, rgba(0,0,0,.15) 75%, rgba(0,0,0,.28) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 74vw);
  margin-left: clamp(1.5rem, 6vw, 7rem);
  padding-top: 5rem;
}
.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--gold);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-weight: 200; }
h1 {
  max-width: 760px;
  margin-bottom: 2.5rem;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  transition: color .25s, background .25s;
}
.outline-button:hover, .outline-button:focus-visible { color: #080808; background: var(--gold); }
.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 6vw, 7rem);
  top: 43%;
  color: var(--gold);
  font-size: .68rem;
  line-height: 1.8;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.hero-note::after { content: ""; display: block; width: 42px; height: 1px; margin-top: 1.2rem; background: var(--gold); }
.hero-keywords {
  position: absolute;
  z-index: 2;
  bottom: 2.2rem;
  left: clamp(1.5rem, 6vw, 7rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #aaa69f;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero-keywords > span:first-child { width: 58px; height: 1px; background: var(--gold); }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 7rem); }
.services { background: radial-gradient(circle at 50% 0, #15120d 0, var(--black) 32rem); }
.section-heading { margin-bottom: 3.5rem; text-align: center; }
.section-heading .eyebrow { margin-bottom: .55rem; }
.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -.025em;
}
.gold-line { display: block; width: 54px; height: 1px; margin: 0 auto; background: var(--gold); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1500px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  min-height: 230px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,.006));
  transition: border-color .3s, transform .3s, background .3s;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .45s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(215,180,106,.35); background: rgba(215,180,106,.035); }
.service-card:hover::after { width: 100%; }
.service-icon {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}
.service-icon svg { width: 54px; fill: none; stroke: var(--gold); stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-number { margin: 0 0 .5rem; color: var(--gold-dim); font-size: .68rem; letter-spacing: .2em; }
.service-card h3 { margin-bottom: .65rem; font-size: clamp(1.2rem, 1.8vw, 1.65rem); letter-spacing: .04em; text-transform: uppercase; }
.service-card p:last-child { max-width: 480px; margin: 0; color: var(--muted); font-size: 1rem; }

.projects {
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, #090909, #0d0c0a);
}
.featured-project {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(360px, 1.2fr);
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.1);
  background: #0b0b0b;
  transition: border-color .35s ease, transform .35s ease;
}
.featured-project:hover, .featured-project:focus-visible { transform: translateY(-5px); border-color: rgba(215,180,106,.48); }
.featured-project + .featured-project { margin-top: clamp(1.5rem, 3vw, 3rem); }
.featured-project-reverse .featured-project-image { order: 2; }
.featured-project-reverse .featured-project-copy { order: 1; }
.featured-project-image { min-height: 620px; overflow: hidden; }
.featured-project-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: transform .8s ease, filter .5s ease; }
.featured-project:hover .featured-project-image img { transform: scale(1.025); filter: grayscale(.2) contrast(1.03); }
.featured-project-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.project-index { margin: 0 0 4rem; color: var(--gold-dim); font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; }
.featured-project h3 { margin: 0; font-size: clamp(3.5rem, 7vw, 7.5rem); line-height: .95; letter-spacing: -.05em; }
.project-subtitle { margin: 1rem 0 2.3rem; color: var(--gold); font-family: Georgia, serif; font-size: 1rem; font-style: italic; letter-spacing: .08em; }
.featured-project-copy > p:not(.project-index):not(.project-subtitle) { max-width: 580px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.project-link { display: inline-flex; gap: 1rem; align-items: center; margin-top: 3rem; color: var(--gold); font-size: .73rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; }

.project-page { background: #070707; }
.project-site-header { position: absolute; }
.project-hero { position: relative; display: grid; grid-template-columns: minmax(400px, 44vw) 1fr; min-height: 100vh; border-bottom: 1px solid rgba(255,255,255,.08); }
.project-hero-image { position: relative; min-height: 800px; overflow: hidden; }
.project-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, #070707 100%); }
.project-hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.08); }
.project-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 10rem clamp(2rem, 7vw, 8rem) 5rem clamp(2.5rem, 6vw, 7rem); }
.back-button { display: inline-flex; align-items: center; gap: .9rem; width: fit-content; margin-bottom: clamp(4rem, 9vh, 7rem); padding: .7rem 0; color: #b6b0a7; font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; transition: color .25s ease; }
.back-button:hover, .back-button:focus-visible { color: var(--gold); }
.project-hero h1 { margin: 0; font-size: clamp(4.8rem, 10vw, 10rem); line-height: .82; letter-spacing: -.065em; }
.project-tagline { margin: 1.6rem 0 3rem; color: var(--gold); font-family: Georgia, serif; font-size: clamp(1rem, 1.5vw, 1.3rem); font-style: italic; letter-spacing: .1em; }
.project-lead { max-width: 690px; margin: 0; color: #cbc5bb; font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.6; }
.project-role { display: grid; gap: .55rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.project-role span { color: #7f7a72; font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; }
.project-role strong { color: #d7d1c6; font-size: .9rem; font-weight: 300; letter-spacing: .08em; }
.project-gallery { background: radial-gradient(circle at 50% 0, #16130e, #080808 34rem); }
.project-section-heading { max-width: 1320px; margin: 0 auto 3.5rem; }
.project-section-heading h2, .poster-copy h2 { margin: 0; font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1; letter-spacing: -.04em; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(.8rem, 1.4vw, 1.5rem); max-width: 1320px; margin: 0 auto; }
.gallery-grid figure { height: clamp(330px, 38vw, 560px); margin: 0; overflow: hidden; background: #111; }
.gallery-grid .gallery-wide { grid-column: 1 / -1; height: clamp(420px, 53vw, 760px); }
.gallery-grid figure img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid .gallery-portrait img { object-position: center 22%; }
.project-poster { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(360px, 1.35fr); gap: clamp(4rem, 10vw, 11rem); align-items: center; max-width: 1500px; margin: 0 auto; }
.poster-image { max-width: 470px; justify-self: end; box-shadow: 0 35px 90px rgba(0,0,0,.55); }
.poster-image img { width: 100%; display: block; }
.poster-copy { max-width: 650px; }
.poster-copy > p:last-of-type { max-width: 520px; margin-top: 1.8rem; color: var(--muted); font-size: 1.1rem; }
.back-button-bottom { margin: 3.5rem 0 0; color: var(--gold); }
.oniria-page { background: #070810; }
.oniria-hero { background: radial-gradient(circle at 85% 48%, rgba(46,57,112,.22), transparent 36%), #070810; }
.oniria-hero .project-hero-image::after { background: linear-gradient(90deg, transparent 65%, #070810 100%); }
.oniria-hero .project-hero-image img { filter: saturate(.88) contrast(1.04); object-position: center top; }
.oniria-gallery { background: radial-gradient(circle at 50% 0, rgba(64,72,145,.2), transparent 34rem), #080910; }
.oniria-image-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.8rem, 1.4vw, 1.5rem); max-width: 1320px; margin: 0 auto; }
.oniria-image-grid figure { aspect-ratio: 1; margin: 0; overflow: hidden; background: #111; }
.oniria-image-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.oniria-image-grid figure:hover img { transform: scale(1.03); }
.oniria-film { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(500px, 1.45fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; background: linear-gradient(135deg, #070810, #11101a); }
.film-copy h2 { margin: 0 0 1.8rem; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .9; letter-spacing: -.055em; }
.film-copy > p:last-child { color: var(--muted); font-size: 1.08rem; }
.film-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(215,180,106,.2); box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.film-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.project-return { display: flex; justify-content: center; padding-top: 1rem; padding-bottom: 5rem; }
.project-return .back-button { margin: 0; }

.vision {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  gap: clamp(4rem, 8vw, 10rem);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(135deg, #0a0a0a, #12100d);
}
.vision h2 { margin-bottom: 1.5rem; font-size: clamp(2.5rem, 4.5vw, 5rem); line-height: 1.06; letter-spacing: -.04em; }
.vision-copy > p:last-child { max-width: 660px; color: var(--muted); font-size: 1.12rem; }
.vision-words { display: grid; grid-template-columns: 1fr 1fr; }
.vision-words span { padding: 2.2rem 1rem; border-bottom: 1px solid var(--line); color: #d8d3ca; font-size: clamp(1.1rem, 2vw, 1.8rem); letter-spacing: .08em; }
.vision-words span:nth-child(odd) { border-right: 1px solid var(--line); }

.contact {
  position: relative;
  overflow: hidden;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  background: radial-gradient(circle at 50% 120%, rgba(215,180,106,.12), transparent 42%), #090909;
}
.contact-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.contact .eyebrow { margin-bottom: .9rem; }
.contact h2 {
  max-width: 780px;
  margin: 0 auto 2.4rem;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-width: 250px;
  padding: 1rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.contact-button:hover, .contact-button:focus-visible { color: #080808; background: var(--gold); }
.contact-arrow { font-size: 1rem; letter-spacing: 0; }
.contact-email {
  display: block;
  width: fit-content;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .08em;
  transition: color .25s ease;
}
.contact-email:hover, .contact-email:focus-visible { color: var(--gold); }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
  padding: .65rem .9rem;
  color: #b8b2a8;
  font-size: .82rem;
  letter-spacing: .08em;
  transition: color .25s ease;
}
.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.instagram-link .instagram-dot { fill: currentColor; stroke: none; }
.instagram-link:hover, .instagram-link:focus-visible { color: var(--gold); }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem clamp(1.5rem, 6vw, 7rem);
  border-top: 1px solid rgba(255,255,255,.08);
  color: #89857f;
  font-size: .78rem;
}
footer img { width: 210px; }
footer p { margin: 0; }
.copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
  .site-header { min-height: 82px; }
  .brand { width: 235px; }
  .menu-button {
    position: relative;
    z-index: 30;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    color: white;
    background: transparent;
  }
  .menu-button span:not(.sr-only) { display: block; width: 25px; height: 1px; background: var(--gold); transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(7,7,7,.98);
  }
  nav.open { display: flex; }
  nav a { font-size: 1.2rem; }
  .language-switcher { margin: 1rem 0 0; }
  .language-button { font-size: 1rem; }
  .language-button span[aria-hidden="true"] { font-size: 1.25rem; }
  .hero-note { display: none; }
  .hero-content { width: min(85vw, 700px); }
  .hero-keywords { right: 1.5rem; font-size: .55rem; letter-spacing: .18em; }
  .service-grid, .vision, .featured-project, .project-poster { grid-template-columns: 1fr; }
  .featured-project-reverse .featured-project-image { order: 1; }
  .featured-project-reverse .featured-project-copy { order: 2; }
  .featured-project-image { min-height: 700px; }
  .project-hero { grid-template-columns: 1fr; }
  .project-hero-image { min-height: 72vh; }
  .project-hero-image::after { background: linear-gradient(180deg, transparent 64%, #070707 100%); }
  .oniria-hero .project-hero-image::after { background: linear-gradient(180deg, transparent 64%, #070810 100%); }
  .project-hero-copy { margin-top: -6rem; padding-top: 4rem; }
  .poster-image { max-width: 500px; justify-self: center; }
  .oniria-film { grid-template-columns: 1fr; }
  .vision { gap: 4rem; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: 0 auto; }
  .copyright { text-align: center; }
}

@media (max-width: 590px) {
  .hero { min-height: 760px; }
  .hero-image { background-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.62)); }
  .hero-content { width: auto; margin-right: 1.5rem; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero-keywords { display: none; }
  .service-card { grid-template-columns: 68px 1fr; gap: 1.25rem; padding: 1.6rem; }
  .featured-project-image { min-height: 520px; }
  .featured-project-copy { padding: 2.3rem 1.6rem 3rem; }
  .project-index { margin-bottom: 2.5rem; }
  .project-hero-image { min-height: 68vh; }
  .project-hero-copy { padding: 2rem 1.5rem 4.5rem; }
  .project-hero h1 { font-size: clamp(4.4rem, 23vw, 6.8rem); }
  .back-button { margin-bottom: 3.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-wide { grid-column: auto; height: 320px; }
  .gallery-grid figure { height: 350px; }
  .gallery-grid .gallery-portrait { height: 470px; }
  .oniria-image-grid { grid-template-columns: 1fr; }
  .service-icon svg { width: 42px; }
  .vision-words { grid-template-columns: 1fr; }
  .vision-words span:nth-child(odd) { border-right: 0; }
  .contact-email { font-size: .78rem; letter-spacing: .03em; }
}
