@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../Resources/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../Resources/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../Resources/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../Resources/fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Turret Road'; font-style: normal; font-weight: 500; font-display: swap; src: url('../Resources/fonts/turret-road-500.woff2') format('woff2'); }
@font-face { font-family: 'Turret Road'; font-style: normal; font-weight: 700; font-display: swap; src: url('../Resources/fonts/turret-road-700.woff2') format('woff2'); }

:root {
  --accent: #a7a812;
  --bg: #08080d;
  --surface: #101018;
  --surface-2: #171720;
  --text: #b6b6c2;
  --title: #f7f7f8;
  --border: rgba(255,255,255,.1);
  --radius: 1.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Poppins', sans-serif; line-height: 1.7; }
body.lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { border: 0; color: inherit; font: inherit; }
h1, h2, h3 { color: var(--title); line-height: 1.2; }
.container { margin-inline: auto; width: min(1120px, calc(100% - 2rem)); }
.section { padding: 5.5rem 0; }
.header { background: rgba(8,8,13,.9); border-bottom: 1px solid transparent; left: 0; position: fixed; right: 0; top: 0; transition: .3s; z-index: 20; }
.header.scrolled { backdrop-filter: blur(14px); border-color: var(--border); }
.nav { align-items: center; display: flex; height: 4.75rem; justify-content: space-between; }
.brand { color: var(--title); font-family: 'Turret Road', sans-serif; font-size: 1.15rem; font-weight: 700; }
.nav-menu { align-items: center; display: flex; gap: 1.5rem; }
.nav-menu a { font-size: .9rem; transition: color .25s; }
.nav-menu a:hover, .nav-menu .active { color: var(--accent); }
.nav-toggle, .nav-close { align-items: center; background: transparent; cursor: pointer; display: none; font-size: 1.4rem; height: 44px; justify-content: center; min-width: 44px; }
.hero { padding: 10rem 0 4rem; }
.back-link, .eyebrow { color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.back-link { align-items: center; display: inline-flex; gap: .4rem; margin-bottom: 2rem; }
.hero-grid { align-items: center; display: grid; gap: 4rem; grid-template-columns: 1.05fr .95fr; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin: .8rem 0 1.4rem; }
.hero-text { font-size: 1.05rem; max-width: 670px; }
.hero-image { aspect-ratio: 4 / 3; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hero-image img { height: 100%; object-fit: cover; }
.hero-image.poster img { object-fit: contain; }
.hero-image.print-cover img { object-fit: contain; }
.meta { display: flex; flex-wrap: wrap; gap: .65rem; list-style: none; margin-top: 2rem; }
.meta li { background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; color: var(--title); font-size: .78rem; padding: .45rem .8rem; }
.intro { background: var(--surface); border-block: 1px solid var(--border); }
.intro-grid { display: grid; gap: 4rem; grid-template-columns: .65fr 1.35fr; }
.intro h2, .gallery-head h2, .next h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.intro-copy { display: grid; gap: 1rem; }
.facts { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.fact { background: var(--surface-2); border: 1px solid var(--border); border-radius: 1rem; padding: 1.2rem; }
.fact strong { color: var(--title); display: block; margin-bottom: .25rem; }
.gallery-head { align-items: end; display: flex; gap: 2rem; justify-content: space-between; margin-bottom: 2.5rem; }
.gallery-head p { max-width: 560px; }
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.gallery-item { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; cursor: zoom-in; overflow: hidden; position: relative; }
.gallery-item img { aspect-ratio: 4 / 3; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.025); }
.video-item::after {
  align-items: center;
  background: rgba(8,8,13,.78);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: white;
  content: '\25B6';
  display: flex;
  font-size: 1.25rem;
  height: 4rem;
  justify-content: center;
  left: 50%;
  padding-left: .2rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background .25s, transform .25s;
  width: 4rem;
}
.video-item:hover::after { background: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: auto; }
.gallery.posters .gallery-item img { aspect-ratio: 2 / 3; background: #050507; object-fit: contain; }
.gallery.print-gallery { grid-template-columns: repeat(2, 1fr); }
.gallery.print-gallery .gallery-item img { background: #202022; object-fit: contain; }
.gallery.print-gallery .business-card-showcase img { aspect-ratio: 2 / 3; }
.caption { background: linear-gradient(transparent, rgba(0,0,0,.8)); bottom: 0; color: white; font-size: .85rem; left: 0; padding: 2rem 1rem 1rem; position: absolute; right: 0; }
.next { background: var(--accent); color: #101018; }
.next .container { align-items: center; display: flex; gap: 2rem; justify-content: space-between; }
.next h2 { color: #101018; margin-top: .35rem; }
.button { align-items: center; background: #101018; border-radius: .6rem; color: white; display: inline-flex; gap: .5rem; padding: .85rem 1.2rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }
.button.secondary { background: transparent; border: 1px solid var(--border); color: var(--title); }
.button.secondary:hover { border-color: var(--accent); color: var(--accent); }
.coming-soon { padding-top: 0; }
.coming-soon-box {
  background: var(--surface);
  border: 1px dashed rgba(167,168,18,.65);
  border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
}
.coming-soon-box i { color: var(--accent); display: block; font-size: 2.5rem; margin-bottom: .75rem; }
.coming-soon-box h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .75rem; }
.coming-soon-box p { margin-inline: auto; max-width: 620px; }
.footer { border-top: 1px solid var(--border); padding: 2rem 0; }
.footer .container { align-items: center; display: flex; font-size: .85rem; justify-content: space-between; }
.lightbox { align-items: center; background: rgba(0,0,0,.94); display: none; inset: 0; justify-content: center; padding: 2rem; position: fixed; z-index: 50; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: min(1100px, 92vw); object-fit: contain; width: auto; }
.lightbox iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: .75rem;
  display: none;
  height: auto;
  max-height: calc(100dvh - 4rem);
  width: min(1100px, 92vw);
}
.lightbox.video-open iframe { display: block; }
.lightbox.video-open img { display: none; }
.lightbox-close { background: transparent; color: white; cursor: pointer; font-size: 2.25rem; position: absolute; right: 1.5rem; top: 1rem; z-index: 2; }

@media (max-width: 800px) {
  .nav-toggle, .nav-close { display: inline-flex; }
  .nav-menu { align-items: flex-start; background: var(--surface); bottom: 0; flex-direction: column; padding: 5rem 2rem 2rem; position: fixed; right: -100%; top: 0; transition: right .3s; width: min(320px, 86vw); }
  .nav-menu.show { right: 0; }
  .nav-close { position: absolute; right: 1.5rem; top: 1.35rem; }
  .hero-grid, .intro-grid { gap: 2.5rem; grid-template-columns: 1fr; }
  .hero { padding-top: 8rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (orientation: landscape) and (max-height: 560px) {
  .lightbox.video-open iframe {
    height: auto;
    max-height: calc(100dvh - 4rem);
    width: min(1100px, 92vw, calc(177.778dvh - 7.111rem));
  }
}

@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .facts, .gallery { grid-template-columns: 1fr; }
  .gallery.print-gallery { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .gallery-item.tall img { aspect-ratio: 4 / 3; }
  .gallery-head, .next .container, .footer .container { align-items: flex-start; flex-direction: column; }
  .lightbox.video-open { padding: .75rem; }
  .lightbox.video-open iframe {
    max-height: calc(100dvh - 3.5rem);
    width: calc(100vw - 1.5rem);
  }
  .lightbox.video-open .lightbox-close { right: .75rem; top: .5rem; }
}
