:root {
  --dark: #101010;
  --dark-2: #171717;
  --light: #f3f1ec;
  --white: #ffffff;
  --muted: #7b7b7b;
  --line-dark: rgba(255,255,255,.18);
  --line-light: rgba(16,16,16,.18);
  --accent: #ae1f24;
  --accent-ink: #ffffff;
  --content: 1380px;
  --radius: 0px;
  --heading: Arial Black, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
  --focus-ring: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { width: 100%; max-width: 100%; margin: 0; background: var(--dark); color: var(--white); font-family: var(--body); -webkit-font-smoothing: antialiased; overflow-x: clip; }
html.menu-open, body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }

:where(a, button, input, select, textarea):focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; box-shadow: var(--focus-ring); }

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translate3d(0,0,0);
  transition: transform .48s var(--ease-premium), background .34s ease, color .34s ease, border-color .34s ease, box-shadow .48s var(--ease-premium), filter .34s ease;
}
.btn::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(110deg,transparent 24%,rgba(255,255,255,.18) 48%,transparent 72%); transform:translateX(-145%); transition:transform .7s var(--ease-premium); pointer-events:none; }
.btn:hover { transform: translate3d(0,-2px,0); }
.btn:hover::before { transform: translateX(145%); }
.btn:active { transform: scale(.985); transition-duration:.14s; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline-muted { border-color: var(--line-dark); color: var(--white); background: transparent; }
.btn-outline-muted:hover { border-color: var(--accent); color: var(--accent); }
.btn-icon, .cart-icon { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.btn-icon { margin-left: 4px; transition: transform .3s var(--ease-premium); }
.btn:hover .btn-icon { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(16,16,16,.92);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { background: rgba(12,12,12,.965); border-bottom-color: rgba(255,255,255,.13); box-shadow: 0 14px 42px rgba(0,0,0,.24); }
.header-inner { min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
.brand, .brand-logo { min-width: max-content; }
.brand { font-family: var(--heading); font-size: 23px; letter-spacing: -.04em; text-transform: uppercase; }
.brand span { color: var(--accent); }
.brand-logo img { width: auto; max-height: 48px; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(12px,1.45vw,24px); }
.main-nav a { position: relative; padding-block: 10px; font-family: var(--label); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .2s ease; }
.main-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:3px; height:1px; background:var(--accent); transition:right .32s var(--ease-premium); }
.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header-actions { display:flex; align-items:center; gap:8px; }
.header-actions .btn { min-height:50px; padding-inline:clamp(12px,1.15vw,18px); gap:16px; font-size:11px; white-space:nowrap; }
.cart { position:relative; width:48px; height:48px; display:inline-grid; place-items:center; border:1px solid var(--line-dark); background:transparent; color:var(--white); transition:transform .3s var(--ease-premium),border-color .25s ease,color .25s ease,background .25s ease; }
.cart:hover { transform: translateY(-2px); border-color:var(--accent); color:var(--accent); }
.cart-count { position:absolute; top:-6px; right:-6px; width:20px; height:20px; display:grid; place-items:center; border-radius:50%; background:var(--accent); color:var(--white); font-size:10px; font-weight:800; }
.menu-toggle, .mobile-header-cta, .mobile-panel { display:none; }

@media (min-width:1101px) {
  .header-actions .btn.is-journey-active { transform:translate3d(0,-2px,0); box-shadow:0 10px 26px rgba(0,0,0,.16); }
  .header-actions .btn.is-journey-active::before { transform:translateX(145%); }
  .header-actions .browse-btn.is-journey-active { border-color:var(--accent); color:var(--accent); background:transparent; }
  .header-actions .book-btn.is-journey-active { filter:brightness(1.08); }
}

.menu-toggle { position:relative; padding:0; }
.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after { position:absolute; left:50%; width:20px; height:1.5px; background:currentColor; transform:translateX(-50%); transition:transform .32s var(--ease-premium),background .2s ease; }
.menu-toggle-lines::before, .menu-toggle-lines::after { content:""; left:0; transform:none; }
.menu-toggle-lines::before { transform:translateY(-6px); }
.menu-toggle-lines::after { transform:translateY(6px); }
body.menu-open .menu-toggle-lines { background:transparent; }
body.menu-open .menu-toggle-lines::before { transform:rotate(45deg); }
body.menu-open .menu-toggle-lines::after { transform:rotate(-45deg); }

.mobile-panel { position:fixed; inset:72px 0 0; z-index:998; overflow-y:auto; padding:32px 24px 40px; background:var(--dark); border-top:1px solid var(--line-dark); }
.admin-bar .mobile-panel { top:104px; }
.mobile-panel nav { display:grid; gap:6px; width:min(100%,680px); margin-inline:auto; }
.mobile-panel a { padding:18px 0; border-bottom:1px solid var(--line-dark); font-family:var(--heading); font-size:31px; line-height:1; text-transform:uppercase; }
.mobile-panel a.is-active { color:var(--accent); }
.mobile-panel-cta-link { font-family:var(--label) !important; font-size:13px !important; letter-spacing:.08em; }
body.menu-open .mobile-panel { display:block; }

@media (max-width:1100px) {
  .main-nav { display:none; }
  .header-actions .browse-btn, .header-actions .book-btn { display:none; }
  .menu-toggle { display:inline-grid; place-items:center; width:48px; height:48px; border:1px solid var(--line-dark); background:transparent; color:var(--white); }
  body.menu-open .site-header { background:var(--dark); border-bottom-color:var(--line-dark); backdrop-filter:none; box-shadow:none; }
}

@media (max-width:782px) { .admin-bar .site-header { top:46px; } .admin-bar .mobile-panel { top:118px; } }

@media (max-width:620px) {
  .container { width:min(calc(100% - 32px),var(--content)); }
  .header-inner { min-height:72px; grid-template-columns:auto 1fr auto; gap:10px; padding-top:0; padding-bottom:74px; }
  .brand { font-size:21px; }
  .header-actions { grid-column:3; }
  .cart, .menu-toggle { width:44px; height:44px; }
  .mobile-header-cta { position:absolute; left:16px; right:16px; bottom:11px; display:grid; grid-template-columns:auto minmax(0,1fr) minmax(0,1fr); align-items:center; gap:8px; }
  .mobile-cta-label { font-family:var(--label); font-size:8px; line-height:1.2; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.5); }
  .mobile-header-cta .btn { min-height:42px; justify-content:center; gap:0; padding-inline:9px; font-size:8px; text-align:center; }
  .mobile-panel { inset:128px 0 0; padding-top:22px; }
  .admin-bar .mobile-panel { top:174px; }
}

/* Elementor compatibility */
.lucky1-elementor-main, .elementor, .elementor-section-wrap, .e-con { width:100%; }
body.elementor-page .lucky1-elementor-main { padding:0; margin:0; }
.elementor-edit-area-active .site-header { pointer-events:auto; }
section[id], .e-con[id], .elementor-element[id] { scroll-margin-top:160px; }

.theme-build-placeholder { min-height:70vh; display:grid; align-items:center; padding:100px 0; background:radial-gradient(circle at 70% 30%,color-mix(in srgb,var(--accent) 22%,transparent),transparent 30%),var(--dark); }
.placeholder-kicker { margin:0 0 18px; font-family:var(--label); letter-spacing:.14em; text-transform:uppercase; color:var(--accent); }
.theme-build-placeholder h1 { margin:0; font-family:var(--heading); font-size:clamp(48px,8vw,110px); line-height:.9; letter-spacing:-.06em; text-transform:uppercase; }
.theme-build-placeholder p:last-child { max-width:650px; margin:26px 0 0; color:rgba(255,255,255,.68); font-size:18px; line-height:1.6; }
.site-footer-placeholder { padding:28px 0; border-top:1px solid var(--line-dark); background:#080808; }
.footer-inner { display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.45); font-family:var(--label); font-size:10px; letter-spacing:.08em; text-transform:uppercase; }
@media (max-width:620px) { .footer-inner { align-items:flex-start; flex-direction:column; } }


/* =========================================================
   LUCKY1 HERO — Elementor template v0.2
   The section stays editable in Elementor; the theme provides
   the exact visual layout and responsive behaviour.
   ========================================================= */
.lucky1-hero {
  --l1-accent: var(--accent, #ae1f24);
  --display: grid;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(680px, 82svh, 860px);
  margin: 0;
  padding:
    clamp(76px, 8vw, 124px)
    max(24px, calc((100% - var(--content, 1380px)) / 2))
    clamp(42px, 4.5vw, 72px);
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  grid-template-areas:
    "eyebrow video"
    "title video"
    "lede video"
    "actions video";
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  column-gap: 72px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16,16,16,.98) 0%, rgba(16,16,16,.88) 51%, rgba(16,16,16,.2) 100%),
    radial-gradient(circle at 78% 45%, color-mix(in srgb, var(--l1-accent) 30%, transparent), transparent 29%),
    #101010;
}
.lucky1-hero > .elementor-element { min-width: 0; margin: 0; }
.lucky1-hero .elementor-widget-container { margin: 0; }

.lucky1-hero__eyebrow { grid-area: eyebrow; align-self: end; }
.lucky1-hero__eyebrow p {
  margin: 0 0 22px;
  color: var(--l1-accent);
  font-family: var(--label);
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lucky1-hero__title { grid-area: title; }
.lucky1-hero__title .elementor-heading-title {
  max-width: 1050px;
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(58px, 8.9vw, 154px);
  font-weight: 900;
  line-height: .91;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.lucky1-accent-word,
.lucky1-accent-dot { color: var(--l1-accent); }

.lucky1-hero__lede { grid-area: lede; }
.lucky1-hero__lede p {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.74);
  font-family: var(--body);
  font-size: clamp(18px, 1.65vw, 27px);
  line-height: 1.5;
  letter-spacing: -.025em;
}

.lucky1-hero__actions {
  --display: flex;
  grid-area: actions;
  align-self: start;
  display: flex !important;
  flex-flow: row wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px !important;
  padding: 0 !important;
}
.lucky1-hero__button { width: auto; }
.lucky1-hero__button .elementor-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .48s var(--ease-premium), background .34s ease, color .34s ease, border-color .34s ease, filter .34s ease;
}
.lucky1-hero__button .elementor-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 24%, rgba(255,255,255,.18) 48%, transparent 72%);
  transform: translateX(-145%);
  transition: transform .7s var(--ease-premium);
}
.lucky1-hero__button .elementor-button:hover { transform: translateY(-2px); }
.lucky1-hero__button .elementor-button:hover::before { transform: translateX(145%); }
.lucky1-hero__button--primary .elementor-button { background: var(--l1-accent); color: #fff; }
.lucky1-hero__button--primary .elementor-button:hover { filter: brightness(1.08); }
.lucky1-hero__button--secondary .elementor-button {
  border-color: rgba(255,255,255,.42);
  background: transparent;
  color: #fff;
}
.lucky1-hero__button--secondary .elementor-button:hover { background: #fff; color: #101010; }
.lucky1-hero__button .elementor-button-icon { font-size: 17px; }

.lucky1-hero__video {
  --display: grid;
  grid-area: video;
  position: relative;
  align-self: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: clamp(24px, 3vw, 42px) !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 72% 28%, color-mix(in srgb, var(--l1-accent) 24%, transparent), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 46%),
    #151515;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.lucky1-hero__video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
}
.lucky1-hero__video::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.lucky1-hero__video > .elementor-element { position: relative; z-index: 2; min-width: 0; }
.lucky1-hero__video-kicker { justify-self: start; align-self: start; }
.lucky1-hero__video-kicker p {
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,10,10,.5);
  font-family: var(--label);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.lucky1-hero__video-play {
  justify-self: center;
  align-self: center;
  width: clamp(54px, 4.4vw, 68px) !important;
  height: clamp(54px, 4.4vw, 68px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(8,8,8,.72);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  transition: transform .45s var(--ease-premium), background .3s ease, color .3s ease;
}
.lucky1-hero__video-play .elementor-icon-wrapper { line-height: 0; }
.lucky1-hero__video-play .elementor-icon { color: inherit; font-size: 20px; }
.lucky1-hero__video-play .elementor-icon i { transform: translateX(1px); }
.lucky1-hero__video-title { align-self: end; }
.lucky1-hero__video-title .elementor-heading-title {
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.lucky1-hero__video-subtitle p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.58);
  font-family: var(--label);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (hover:hover) {
  .lucky1-hero__video:hover .lucky1-hero__video-play {
    transform: scale(1.055);
    background: #fff;
    color: #101010;
  }
}

@media (max-width: 1100px) {
  .lucky1-hero {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 42px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lede"
      "actions"
      "video";
    grid-template-rows: auto;
    gap: 0;
  }
  .lucky1-hero__video {
    width: min(100%, 760px);
    margin-top: 42px !important;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .lucky1-hero {
    padding: 50px 16px 30px;
    grid-template-areas:
      "eyebrow"
      "title"
      "video"
      "lede"
      "actions";
  }
  .lucky1-hero__eyebrow p { margin-bottom: 20px; font-size: 13px; }
  .lucky1-hero__title .elementor-heading-title { font-size: clamp(50px, 15vw, 78px); }
  .lucky1-hero__video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 28px !important;
    margin-bottom: 30px !important;
    padding: 20px !important;
  }
  .lucky1-hero__video::after { inset: 10px; }
  .lucky1-hero__video-kicker p { padding: 8px 10px; font-size: 8px; }
  .lucky1-hero__video-play { width: 54px !important; height: 54px; }
  .lucky1-hero__video-title .elementor-heading-title { font-size: clamp(25px, 8vw, 34px); }
  .lucky1-hero__video-subtitle p { margin-top: 5px; font-size: 8px; letter-spacing: .09em; }
  .lucky1-hero__lede p { margin-top: 0; font-size: 17px; line-height: 1.55; }
  .lucky1-hero__actions {
    width: 100%;
    margin-top: 28px !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lucky1-hero__button,
  .lucky1-hero__button .elementor-button { width: 100%; }
}

/* =========================================================
   LUCKY1 HERO — custom Elementor widget v0.3
   Custom markup prevents Elementor global styles from changing
   the production design while retaining editable widget controls.
   ========================================================= */
.elementor-widget-lucky1_hero,
.elementor-widget-lucky1_hero > .elementor-widget-container {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

.l1-hero-section {
  --l1-accent: var(--accent, #ae1f24);
  position: relative;
  isolation: isolate;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: clamp(680px, 82svh, 860px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16,16,16,.98) 0%, rgba(16,16,16,.88) 51%, rgba(16,16,16,.2) 100%),
    radial-gradient(circle at 78% 45%, color-mix(in srgb, var(--l1-accent) 30%, transparent), transparent 29%),
    #101010;
}

.l1-hero-inner {
  width: min(calc(100% - 48px), var(--content, 1380px));
  min-height: inherit;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: 72px;
  padding-top: clamp(76px, 8vw, 124px);
  padding-bottom: clamp(42px, 4.5vw, 72px);
}

.l1-hero-section--no-video .l1-hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.l1-hero-copy,
.l1-hero-video {
  min-width: 0;
}

.l1-hero-eyebrow {
  margin: 0 0 22px !important;
  color: var(--l1-accent) !important;
  font-family: var(--label) !important;
  font-size: clamp(14px, 1.12vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.l1-hero-title {
  max-width: 1050px;
  margin: 0 !important;
  color: #fff !important;
  font-family: var(--heading) !important;
  font-size: clamp(58px, 8.9vw, 154px) !important;
  font-weight: 900 !important;
  line-height: .91 !important;
  letter-spacing: -.065em !important;
  text-transform: uppercase !important;
}

.l1-hero-accent-word,
.l1-hero-accent-dot {
  color: var(--l1-accent) !important;
}

.l1-hero-lede {
  max-width: 660px;
  margin: 30px 0 0 !important;
  color: rgba(255,255,255,.74) !important;
  font-family: var(--body) !important;
  font-size: clamp(18px, 1.65vw, 27px) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: -.025em !important;
}

.l1-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.l1-hero-btn {
  position: relative;
  isolation: isolate;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--label) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform .48s cubic-bezier(.22,1,.36,1), background .34s ease, color .34s ease, border-color .34s ease, filter .34s ease;
}

.l1-hero-btn:hover { transform: translate3d(0,-2px,0); }
.l1-hero-btn--primary { background: var(--l1-accent) !important; color: #fff !important; }
.l1-hero-btn--primary:hover { filter: brightness(1.08); }
.l1-hero-btn--secondary { border-color: rgba(255,255,255,.42) !important; background: transparent !important; color: #fff !important; }
.l1-hero-btn--secondary:hover { background: #fff !important; color: #101010 !important; }
.l1-hero-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.l1-hero-video {
  position: relative;
  height: min(64vh, 680px);
  min-height: 480px;
  display: flex;
  align-items: center;
}

.l1-hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
    var(--l1-video-poster, none) center / cover no-repeat,
    radial-gradient(circle at 72% 28%, color-mix(in srgb, var(--l1-accent) 24%, transparent), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 46%),
    #151515;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.l1-hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
}

.l1-hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.l1-hero-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
  color: #fff;
}

.l1-hero-video-kicker {
  justify-self: start;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,10,10,.5);
  font-family: var(--label) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.l1-hero-video-play {
  width: clamp(54px, 4.4vw, 68px);
  height: clamp(54px, 4.4vw, 68px);
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.82);
  background: rgba(8,8,8,.72);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}

.l1-hero-video-play svg {
  width: 31%;
  height: 31%;
  fill: currentColor;
  transform: translateX(5%);
}

.l1-hero-video-copy {
  align-self: end;
  display: grid;
  gap: 8px;
}

.l1-hero-video-copy strong {
  color: #fff !important;
  font-family: var(--heading) !important;
  font-size: clamp(28px, 3.4vw, 52px) !important;
  font-weight: 900 !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase;
}

.l1-hero-video-copy span {
  color: rgba(255,255,255,.58) !important;
  font-family: var(--label) !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

.l1-hero-video-media,
.l1-hero-video-embed,
.l1-hero-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border: 0;
}

.l1-hero-video-media { object-fit: cover; background:#080808; }

@media (min-width: 1101px) {
  .l1-hero-video {
    height: min(72vh, 760px);
    min-height: 560px;
  }
  .l1-hero-video-frame { aspect-ratio: 4 / 3; }
}

@media (max-width: 1100px) {
  .l1-hero-inner { grid-template-columns: 1fr; }
  .l1-hero-video { height: auto; min-height: 0; }
}

@media (max-width: 620px) {
  .l1-hero-section { min-height: auto; }
  .l1-hero-inner {
    padding-top: 50px;
    padding-bottom: 30px;
    gap: 0;
  }
  .l1-hero-copy { display: contents; }
  .l1-hero-eyebrow { order: 1; }
  .l1-hero-title { order: 2; }
  .l1-hero-video {
    order: 3;
    width: 100%;
    margin-top: 28px;
    margin-bottom: 30px;
  }
  .l1-hero-lede { order: 4; margin-top: 0 !important; }
  .l1-hero-actions {
    order: 5;
    display: grid;
    width: 100%;
    margin-top: 28px;
  }
  .l1-hero-btn { width: 100%; }
  .l1-hero-video-frame { aspect-ratio: 16 / 9; }
  .l1-hero-video-placeholder { padding: 20px; }
  .l1-hero-video-frame::after { inset: 10px; }
  .l1-hero-video-kicker { padding: 8px 10px; font-size: 8px !important; }
  .l1-hero-video-play { width: 54px; height: 54px; }
  .l1-hero-video-copy { gap: 5px; }
  .l1-hero-video-copy strong { font-size: clamp(25px, 8vw, 34px) !important; }
  .l1-hero-video-copy span { font-size: 8px !important; letter-spacing: .09em !important; }
}
