.header-logo-link{display:inline-flex;align-items:center;min-width:0}.header-logo-img{display:block;width:auto;height:58px;max-width:190px;object-fit:contain}@media(max-width:640px){.header-logo-img{height:48px;max-width:150px}}
::selection{background:#c7a24d;color:#0b1633}.soft-bg{position:relative;overflow:hidden;background:linear-gradient(135deg,#fffdf8 0%,#eff8ff 38%,#fff4d8 100%)}.soft-bg:before{content:"";position:absolute;inset:-30%;background:radial-gradient(circle at 20% 25%,rgba(94,196,255,.26),transparent 20%),radial-gradient(circle at 74% 18%,rgba(199,162,77,.26),transparent 22%),radial-gradient(circle at 52% 78%,rgba(88,204,150,.18),transparent 24%);filter:blur(18px);animation:floatOrbs 16s ease-in-out infinite}.soft-bg:after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(11,22,51,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(11,22,51,.055) 1px,transparent 1px);background-size:72px 72px;animation:gridMove 24s linear infinite;mask-image:linear-gradient(to bottom,black,transparent 88%)}.soft-bg>*{position:relative;z-index:1}.glass{background:rgba(255,255,255,.78);border:1px solid rgba(15,23,42,.10);box-shadow:0 24px 70px rgba(16,42,86,.14);backdrop-filter:blur(18px)}.shine{position:relative;overflow:hidden}.shine:before{content:"";position:absolute;inset:0;background:linear-gradient(110deg,transparent 30%,rgba(255,255,255,.55) 45%,transparent 60%);transform:translateX(-140%) rotate(10deg)}.shine:hover:before{animation:shine 1.2s ease}.reveal-card{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}.reveal-card.is-visible{opacity:1;transform:translateY(0)}.icon-chip{display:grid;place-items:center;border-radius:1rem;background:linear-gradient(135deg,rgba(199,162,77,.16),rgba(94,196,255,.14));color:#102a56}.section-pad{padding-top:5.5rem;padding-bottom:5.5rem}.text-balance{text-wrap:balance}@keyframes floatOrbs{0%,100%{transform:translate3d(0,0,0) scale(1)}33%{transform:translate3d(30px,-30px,0) scale(1.05)}66%{transform:translate3d(-28px,24px,0) scale(.98)}}@keyframes gridMove{0%{background-position:0 0}100%{background-position:72px 72px}}@keyframes shine{0%{transform:translateX(-140%) rotate(10deg)}100%{transform:translateX(160%) rotate(10deg)}}@media(max-width:768px){.section-pad{padding-top:4rem;padding-bottom:4rem}}@media print{nav,footer{display:none!important}.soft-bg:before,.soft-bg:after{display:none!important}.glass{box-shadow:none!important;background:white!important}}

/* ============================================================
   CINEMATIC HERO — rebuilt
   ============================================================ */

/* ── Section shell ── */
.hero-cinema {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #080e24; /* fallback while images load */
}

/* ── Slide wrappers ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Ken-Burns zoom: each slide scales in over 8 s while active */
  transform: scale(1.08);
  transition: transform 9s cubic-bezier(.25,.46,.45,.94);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active img {
  transform: scale(1);
}

/* Per-slide pan bias */
.slide-1 img { object-position: center 30%; }
.slide-2 img { object-position: center 55%; }
.slide-3 img { object-position: 40%   center; }

/* ── Blur overlay ── sits right above images, below dark overlays ── */
.hero-blur-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(3px) saturate(1.1);
  -webkit-backdrop-filter: blur(3px) saturate(1.1);
  /* Very subtle — enough to soften edges but city is still clearly visible */
  background: rgba(5, 10, 30, 0.15);
}

/* ── Dark / gradient overlays ── */
.hero-ov-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(6, 11, 28, 0.42);
}

.hero-ov-gradient {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to right,  rgba(6,11,28,.78) 0%, rgba(6,11,28,.28) 52%, transparent 100%),
    linear-gradient(to top,    rgba(6,11,28,.65) 0%, transparent 48%);
}

.hero-ov-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at center, transparent 36%, rgba(4,8,24,.55) 100%);
  pointer-events: none;
}

/* ── Film grain ── */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grainShift .2s steps(1) infinite;
  pointer-events: none;
}

@keyframes grainShift {
  0%  { background-position:  0%   0% }
  20% { background-position: 60%  40% }
  40% { background-position: 20%  80% }
  60% { background-position: 80%  20% }
  80% { background-position: 40%  60% }
  100%{ background-position:  0%   0% }
}

/* ── Letterbox bars ── */
.lbox-top, .lbox-bottom {
  position: absolute;
  left: 0; right: 0;
  z-index: 6;
  background: #000;
  height: 60px;
  transition: height 1.5s cubic-bezier(.77,0,.18,1);
}
.lbox-top    { top: 0; }
.lbox-bottom { bottom: 0; }

.hero-cinema.cinema-open .lbox-top,
.hero-cinema.cinema-open .lbox-bottom { height: 0; }

/* ── Content wrapper ── */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
  }
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(199,162,77,.42);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e8cb7e;
  margin-bottom: 1.6rem;
  width: fit-content;
  opacity: 0;
  animation: hFadeUp .7s .35s cubic-bezier(.4,0,.2,1) forwards;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c7a24d;
  flex-shrink: 0;
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(199,162,77,.3); }
  50%     { box-shadow: 0 0 0 7px rgba(199,162,77,.1); }
}

/* ── Headline ── */
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: 'Manrope','Inter',ui-sans-serif;
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.032em;
  color: #fff;
  margin-bottom: 1.8rem;
}

.hero-line {
  display: block;
  font-size: clamp(3rem, 8.5vw, 7.8rem);
  opacity: 0;
  transform: translateY(28px) skewY(1.5deg);
}

.line1 { animation: hFadeUp .85s .52s cubic-bezier(.4,0,.2,1) forwards; }
.line2 { animation: hFadeUp .85s .70s cubic-bezier(.4,0,.2,1) forwards; }
.line3 {
  animation: hFadeUp .85s .88s cubic-bezier(.4,0,.2,1) forwards;
  color: #c7a24d;
}

/* ── Sub-copy ── */
.hero-sub {
  max-width: 540px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: rgba(255,255,255,.70);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: hFadeUp .85s 1.06s cubic-bezier(.4,0,.2,1) forwards;
}

/* ── CTA buttons ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: hFadeUp .85s 1.24s cubic-bezier(.4,0,.2,1) forwards;
}

.btn-primary-hero {
  display: inline-block;
  background: #c7a24d;
  color: #0b1633;
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 999px;
  box-shadow: 0 8px 36px rgba(199,162,77,.45);
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none;
}
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(199,162,77,.55);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  text-decoration: none;
}
.btn-ghost-hero:hover {
  transform: translateY(-3px);
  border-color: rgba(199,162,77,.55);
  background: rgba(199,162,77,.1);
}
.btn-arrow { transition: transform .22s ease; }
.btn-ghost-hero:hover .btn-arrow { transform: translateX(5px); }

/* ── Contact card ── */
.hero-card-wrap {
  opacity: 0;
  animation: hFadeUp 1s 1.48s cubic-bezier(.4,0,.2,1) forwards;
}

@media (min-width: 1024px) {
  .hero-card-wrap { display: flex; justify-content: flex-end; }
}

.hero-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 32px 80px rgba(0,0,0,.42), inset 0 0 0 1px rgba(199,162,77,.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1.75rem;
  padding: 1.8rem;
  color: #fff;
  width: 100%;
  max-width: 380px;
}

.card-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #c7a24d;
  margin-bottom: .45rem;
}
.card-brand {
  font-family: 'Manrope',ui-sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.card-details {
  display: grid;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.13);
  padding-top: .9rem;
  margin-bottom: 1rem;
}
.card-details a {
  color: #e8cb7e;
  font-weight: 800;
  text-decoration: none;
}
.card-pills {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .5rem;
}
.card-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .7rem .4rem;
  border-radius: .9rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  gap: 3px;
}
.card-pill b {
  font-size: 1.1rem;
  font-weight: 900;
  color: #c7a24d;
}
.card-pill span {
  font-size: .67rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Slide indicators ── */
.slide-indicators {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.slide-ind {
  width: 3px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,.24);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .4s ease, height .4s ease;
}
.slide-ind.active {
  background: #c7a24d;
  height: 46px;
}

/* ── Scroll cue ── */
.scroll-cue {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: hFadeUp .8s 2.4s ease forwards;
}
.scroll-cue span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(199,162,77,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0; transform: scaleY(.2); transform-origin: top; }
  40%,60% { opacity: 1; transform: scaleY(1);  transform-origin: top; }
}

/* ── Shared entrance keyframe ── */
@keyframes hFadeUp {
  from { opacity:0; transform: translateY(22px) skewY(1.2deg); }
  to   { opacity:1; transform: translateY(0)    skewY(0deg); }
}

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  .hero-cinema   { min-height: 100dvh; }
  .hero-title    { margin-bottom: 1.2rem; }
  .hero-sub      { font-size: .93rem; }
  .hero-card     { border-radius: 1.25rem; padding: 1.3rem; }
  .slide-indicators { bottom: 3.5rem; right: 1rem; }
}
