/* ─────────── Hero ─────────── */
  .hero{
    position:relative;min-height:100vh;min-height:100svh;
    color:#fff;overflow:hidden;
    display:flex;flex-direction:column;
    padding-top:clamp(180px, 24vh, 260px);
    padding-bottom:clamp(80px, 12vh, 140px);
  }
  .hero__bg{position:absolute;inset:0;z-index:0}
  .hero__bg img{width:100%;height:100%;object-fit:cover;object-position:center;transform:scale(1.04);animation:slowZoom 18s ease-out forwards}

  .hero__bg img,
  .hero__bg video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.04);
    animation:slowZoom 18s ease-out forwards;
    filter:saturate(.85) hue-rotate(-6deg);
  }

  .hero__bg video{
    display:block;
    pointer-events:none;
  }

  @keyframes slowZoom{to{transform:scale(1)}}
  .hero__veil{position:absolute;inset:0;z-index:1;background:
    linear-gradient(180deg, rgba(20,36,54,.72) 0%, rgba(20,36,54,.50) 35%, rgba(20,36,54,.40) 60%, rgba(20,36,54,.72) 88%, rgba(20,36,54,.92) 100%),
    linear-gradient(90deg, rgba(20,36,54,.55) 0%, rgba(20,36,54,.18) 60%, rgba(20,36,54,.05) 100%),
    radial-gradient(120% 90% at 30% 60%, rgba(27,46,68,.35), transparent 70%);
    mix-blend-mode:normal;
  }
  .hero__grain{position:absolute;inset:0;z-index:2;pointer-events:none;opacity:.06;mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>")}

  .hero__content{position:relative;z-index:3;display:flex;flex-direction:column;gap:48px;flex:1;min-height:0}
  .hero__top{display:flex;justify-content:space-between;align-items:flex-end;gap:32px;flex-wrap:wrap;flex:0 0 auto}
  .hero .wrap{padding-left:clamp(20px, 7vw, 140px);padding-right:clamp(20px, 4vw, 56px);max-width:100%;margin-left:0;margin-right:auto}
  .hero__main{margin-top:auto;margin-bottom:0;flex:0 0 auto;text-align:left;align-items:flex-start;max-width:920px}
  .hero__mark{display:block;height:clamp(180px, 22vh, 280px);width:auto;margin:0 0 32px 0}
  .hero__meta{display:flex;flex-direction:column;gap:6px;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--muted-on-dark)}
  .hero__meta strong{color:#fff;font-weight:500}
  .hero h1{color:#fff;max-width:22ch;font-weight:300;text-align:left}
  .hero h1 em{font-style:italic;color:var(--gold-soft);font-weight:300}
  .hero__sub{color:rgba(255,255,255,.78);max-width:54ch;font-size:clamp(15px,1.1vw,17px);margin-top:22px;text-align:left}
  /*
  .hero__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:36px;align-items:center;justify-content:flex-start}
  */
  .hero__ctas{
  display:inline-grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:36px;
  align-items:stretch;
  justify-content:start;
}

.hero__ctas .btn{
  width:100%;
  box-sizing:border-box;
  justify-content:center;
}

@media (min-width: 1024px) {
  .hero__ctas{
    display:none;
  }
}

@media (max-width:640px){
  .hero__ctas{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }
}

