/* ═══════════════════════════════════════════════
   VisualSparkle — Global Styles
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --gold: #B8975C;
  --gold-light: #D4BA8A;
  --gold-subtle: rgba(184, 151, 92, 0.08);
  --black: #1A1A1A;
  --white: #FAFAF8;
  --warm-white: #F5F3EF;
  --warm-gray: #E8E4DE;
  --text: #2C2C2C;
  --text-light: #6B6560;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --max-width: 1200px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--gold-light); color: var(--black); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── Animations ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.page-enter { animation: fadeUp 0.6s var(--transition) both; }
.anim { opacity: 0; transform: translateY(36px); transition: all 0.7s var(--transition); }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.heading {
  font-family: var(--serif); font-weight: 400; line-height: 1.2;
  color: var(--black); letter-spacing: -0.01em;
}
.heading--xl { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.heading--lg { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.heading--md { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.heading--sm { font-size: clamp(1.4rem, 3vw, 2rem); }
.heading--white { color: #fff; }
.body-text {
  font-family: var(--sans); font-size: 0.95rem; line-height: 1.75;
  color: var(--text-light); font-weight: 300;
}

/* ─── Layout ─── */
.container { max-width: var(--max-width); margin: 0 auto; }
.section { padding: 100px clamp(20px, 5vw, 60px); }
.section--sm { padding: 64px clamp(20px, 5vw, 60px); }
.section--bg-warm { background: var(--warm-white); }
.section--bg-dark { background: var(--black); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; }
.max-w-660 { max-width: 660px; }
.max-w-560 { max-width: 560px; }
.max-w-540 { max-width: 540px; }
.max-w-520 { max-width: 520px; }
.max-w-500 { max-width: 500px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }

/* ─── Grid ─── */
.grid { display: grid; gap: 36px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--films { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid--addons { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

/* ─── Buttons ─── */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 36px; text-align: center;
  transition: all 0.3s var(--transition); text-decoration: none;
}
.btn--primary { background: var(--black); color: #fff; border: none; }
.btn--primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--black); border: none; }
.btn--gold:hover { opacity: 0.9; transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--text-light);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Header ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: all 0.4s var(--transition);
}
.header--solid {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header--transparent { background: transparent; }
.header__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; transition: height 0.3s var(--transition);
}
.header--scrolled .header__inner { height: 64px; }
.header__logo {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 1.85rem); font-weight: 500;
  letter-spacing: 0.03em; text-decoration: none;
  transition: color 0.3s;
}
.header--solid .header__logo { color: var(--black); }
.header--transparent .header__logo { color: #fff; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav-link {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; padding-bottom: 2px;
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.header--solid .header__nav-link { color: var(--text-light); }
.header--solid .header__nav-link:hover,
.header--solid .header__nav-link--active { border-color: var(--gold); }
.header--transparent .header__nav-link { color: rgba(255,255,255,0.9); }
.header--transparent .header__nav-link:hover,
.header--transparent .header__nav-link--active { border-color: #fff; }
.header__right { display: flex; align-items: center; gap: 16px; }
.header__social { display: flex; gap: 12px; align-items: center; }
.header__social a { transition: color 0.3s; }
.header--solid .header__social a { color: var(--text-light); }
.header--transparent .header__social a { color: #fff; }
.header__cta {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; text-decoration: none; transition: all 0.3s;
}
.header--solid .header__cta { background: var(--black); color: #fff; }
.header--transparent .header__cta {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.header__mobile-toggle {
  display: none; background: none; border: none; padding: 8px; cursor: pointer;
}
.header--solid .header__mobile-toggle { color: var(--black); }
.header--transparent .header__mobile-toggle { color: #fff; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(250,250,248,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
  animation: fadeIn 0.3s ease;
}
.mobile-menu a {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--black); letter-spacing: 0.02em; text-decoration: none;
}
.mobile-menu .btn {
  margin-top: 16px; font-size: 0.8rem; padding: 14px 36px;
}
.mobile-menu--hidden { display: none; }

@media (max-width: 900px) {
  .header__nav, .header__social, .header__cta { display: none; }
  .header__mobile-toggle { display: block; }
}

/* ─── Hero ─── */
.hero {
  height: 100vh; min-height: 600px; position: relative;
  display: flex; align-items: center;
  padding: 0 clamp(20px, 5vw, 60px);
  background: #1a1510;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
}
.hero__frame {
  position: absolute; top: 40px; left: 40px; right: 40px; bottom: 40px;
  border: 1px solid rgba(184,151,92,0.12); pointer-events: none; z-index: 2;
}
.hero__content { max-width: 720px; position: relative; z-index: 3; }
.hero__title {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1.15; color: #fff;
  margin-bottom: 24px; letter-spacing: -0.01em;
  animation: slideUp 0.8s var(--transition) 0.2s both;
}
.hero__text {
  font-family: var(--sans); font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,0.65); font-weight: 300;
  max-width: 560px; margin-bottom: 36px;
  animation: slideUp 0.8s var(--transition) 0.4s both;
}
.hero__buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: slideUp 0.8s var(--transition) 0.6s both;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  animation: fadeIn 1s ease 1.5s both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,151,92,0.5), transparent);
}

/* Inner page hero */
.page-hero {
  padding: 160px clamp(20px, 5vw, 60px) 80px;
}

/* ─── Film Thumbnail ─── */
.film-thumb { cursor: pointer; display: block; }
.film-thumb__image {
  aspect-ratio: 16/9; background: linear-gradient(135deg, #2a2520, #1a1815);
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--transition);
}
.film-thumb:hover .film-thumb__image { transform: scale(1.02); }

/* Thumbnail with real image */
.film-thumb__image--has-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.film-thumb__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7; transition: opacity 0.3s;
}
.film-thumb:hover .film-thumb__play { opacity: 1; }
.film-thumb__play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(4px);
}
.film-thumb__corner {
  position: absolute; width: 24px; height: 24px;
}
.film-thumb__corner--tl {
  top: 16px; left: 16px;
  border-top: 1px solid rgba(184,151,92,0.4);
  border-left: 1px solid rgba(184,151,92,0.4);
}
.film-thumb__corner--br {
  bottom: 16px; right: 16px;
  border-bottom: 1px solid rgba(184,151,92,0.4);
  border-right: 1px solid rgba(184,151,92,0.4);
}
.film-thumb__names {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--black); margin: 16px 0 4px;
}
.film-thumb__subtitle {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.06em; margin-bottom: 8px;
}
.film-thumb__line {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
  color: var(--text-light); line-height: 1.6;
}

/* ─── Video Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.lightbox--open { opacity: 1; pointer-events: all; }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s; z-index: 2001;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__close svg { color: #fff; }
.lightbox__video-wrap {
  width: 90vw; max-width: 960px; position: relative;
}
.lightbox__video-ratio {
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative; height: 0; overflow: hidden;
}
.lightbox__video-ratio iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* ─── Trust Strip ─── */
.trust-item__title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--black); margin-bottom: 8px;
}

/* ─── Points with left border ─── */
.point { padding-left: 24px; border-left: 2px solid var(--gold); }
.point__title {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--black); margin-bottom: 8px;
}

/* ─── Collection cards (dark bg) ─── */
.collection-card {
  border: 1px solid rgba(184,151,92,0.2); padding: 40px 32px;
  transition: border-color 0.4s;
}
.collection-card:hover { border-color: rgba(184,151,92,0.5); }
.collection-card__title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--gold-light); margin-bottom: 12px;
}
.collection-card__text { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ─── Testimonial ─── */
.testimonial { padding: 40px; background: var(--warm-white); position: relative; }
.testimonial__quote {
  font-family: var(--serif); font-size: 3rem; color: var(--gold);
  line-height: 1; position: absolute; top: 20px; left: 28px;
}
.testimonial__text {
  font-family: var(--serif); font-size: 1.05rem; line-height: 1.8;
  color: var(--text); font-weight: 400; font-style: italic; padding-top: 20px;
}

/* ─── Process steps ─── */
.process-step { text-align: center; }
.process-step__num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--gold); margin-bottom: 12px;
}
.process-step__title {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--black); margin-bottom: 8px;
}

/* ─── Accordion ─── */
.accordion { border-bottom: 1px solid var(--warm-gray); padding: 20px 0; }
.accordion__header {
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; background: none; border: none;
  width: 100%; text-align: left; padding: 0;
}
.accordion__question {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  color: var(--black);
}
.accordion__icon {
  font-family: var(--sans); font-size: 1.4rem; font-weight: 300;
  color: var(--gold); transition: transform 0.3s; line-height: 1; flex-shrink: 0;
}
.accordion--open .accordion__icon { transform: rotate(45deg); }
.accordion__body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition);
}
.accordion--open .accordion__body { max-height: 300px; }
.accordion__answer { padding-top: 12px; max-width: 600px; }

/* ─── Collection detail ─── */
.collection-detail__popular {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.collection-detail__best {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 400;
  color: var(--gold); margin-bottom: 12px;
}
.collection-detail__price {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500;
  color: var(--black); margin-bottom: 24px; letter-spacing: -0.01em;
}
.collection-detail__list-heading {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.collection-detail__item { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.collection-detail__diamond {
  width: 6px; height: 6px;
  border: 1px solid var(--gold); transform: rotate(45deg); flex-shrink: 0;
}
.addon-tag {
  padding: 16px 20px; background: var(--warm-white);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 300;
  color: var(--text);
}

/* ─── Collection Split Layout ─── */
.collection-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.collection-split--reverse .collection-split__text { order: 2; }
.collection-split--reverse .collection-split__image { order: 1; }
.collection-split__text { max-width: 560px; }
.collection-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
}
.collection-img--landscape {
  aspect-ratio: 4/3;
}
.collection-img__corner {
  position: absolute; width: 24px; height: 24px;
}
.collection-img__corner--tl {
  top: 16px; left: 16px;
  border-top: 1px solid rgba(184,151,92,0.5);
  border-left: 1px solid rgba(184,151,92,0.5);
}
.collection-img__corner--br {
  bottom: 16px; right: 16px;
  border-bottom: 1px solid rgba(184,151,92,0.5);
  border-right: 1px solid rgba(184,151,92,0.5);
}
.collection-image-break {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center 40%;
}
@media (max-width: 768px) {
  .collection-split { grid-template-columns: 1fr; gap: 32px; }
  .collection-split--reverse .collection-split__text { order: 1; }
  .collection-split--reverse .collection-split__image { order: 2; }
  .collection-img { aspect-ratio: 16/10; }
  .collection-img--landscape { aspect-ratio: 16/10; }
  .collection-image-break { height: 220px; }
}

/* ─── Values ─── */
.value__title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--gold); margin-bottom: 16px;
}
.value__line {
  width: 48px; height: 1px; background: var(--gold); margin: 0 auto 16px;
}

/* ─── Form ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-label {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 6px;
  display: block;
}
.form-input {
  width: 100%; padding: 14px 16px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  color: var(--text); background: var(--white);
  border: 1px solid var(--warm-gray); outline: none;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-checkbox {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 300;
  color: var(--text); padding: 10px 16px;
  border: 1px solid var(--warm-gray); transition: all 0.2s;
}
.form-checkbox--checked {
  border-color: var(--gold); background: var(--gold-subtle);
}
.form-checkbox input { display: none; }
.form-checkbox__box {
  width: 16px; height: 16px;
  border: 1px solid var(--warm-gray);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-checkbox--checked .form-checkbox__box { border-color: var(--gold); }
.info-block { padding: 36px; background: var(--warm-white); }
.info-block__title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  margin-bottom: 10px;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-family: var(--sans); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
}
.contact-btn--dark { background: var(--black); color: #fff; }
.contact-btn--outline { border: 1px solid var(--text-light); color: var(--text); }

/* ─── Thank you ─── */
.thankyou {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px clamp(20px, 5vw, 60px);
}
.thankyou__icon {
  width: 56px; height: 56px; border: 2px solid var(--gold);
  border-radius: 50%; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.thankyou__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.thankyou__link {
  padding: 13px 28px; font-family: var(--sans); font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
}
.thankyou__link--dark { background: var(--black); color: #fff; }
.thankyou__link--outline { border: 1px solid var(--text-light); color: var(--text); }

/* ─── Footer ─── */
.footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 80px clamp(20px, 5vw, 60px) 40px;
}
.footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px; margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: #fff; margin-bottom: 20px;
}
.footer__text { font-size: 0.88rem; line-height: 1.7; max-width: 360px; font-weight: 300; }
.footer__sub { font-size: 0.82rem; margin-top: 16px; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer__heading {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.3s;
}
.footer__link:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy {
  font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.35);
}
.footer__copy a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ─── Video Lightbox ─── */
.video-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center;
}
.video-lightbox.lightbox--open { display: flex; }
.video-lightbox__close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2.2rem; color: rgba(255,255,255,0.7);
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); line-height: 1; z-index: 2;
  transition: color 0.2s;
}
.video-lightbox__close:hover { color: #fff; }
.video-lightbox__wrapper {
  width: 90%; max-width: 960px;
}
.video-lightbox__container {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 4px; background: #000;
}
