/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 05 2025 | 22:34:47 */
/* ====== CLEANED BUILD (appended overrides) ====== */
 /* ==== TWEAK KNOBS (safe to change) ===================== */
  :root{
	--sticky-offset: 90px!important; /* will be updated by JS to your header height */
	--sticky-offset-mobile: 60px!important; /* will be updated by JS to your header height */
	--wby80page-bg: #2a2d31;            /* page background */
	--wby80-card-w: max(87.5vw - var(--global-scrollbar-width),var(--shared-media-gallery-responsive-content-absolute-min-width));
	    --navpill-bg: rgba(255,255,255,.12);
  --navpill-bg-hover: rgba(255,255,255,.18);
  --navpill-border: rgba(255,255,255,.22);
}

/* ==== BUY BUTTONS ===================================== */
/* Make disabled Buy buttons truly inert */
.offer-btn[disabled],
.offer-btn[aria-disabled="true"],
.buy-btn[disabled],
.buy-btn[aria-disabled="true"]{
  pointer-events: none;   /* <- prevents clicks */
  cursor: not-allowed;
  opacity: .55;
}
/* HERO: make the inner a 2-col grid: [price][button] with note under */
.hero-cta-inner{
  display: grid;
  grid-template-columns: auto auto;   /* price | button */
  align-items: center;
  column-gap: 1.25rem;
  row-gap: .35rem;
}

.hero-cta .ship-note{
  grid-column: 1 / -1;                /* full width under both */
  justify-self: center;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  line-height: 1;
  margin-top: -1.9rem;
}
/* your mobile block already turns the CTA into a grid.
   Just keep the note full-width there too. */
@media (max-width: 900px){
  .hero-cta .ship-note{
    width: 100%;
    justify-self: center;
    text-align: center;
    font-size: .95rem;
margin-top:.5rem;
  }
}
/* --- Sticky: price + button on one row, ship note below --- */
#wby80-sticky.is-fixed .sticky-right{
  display: grid;
  grid-template-columns: auto auto;   /* price | button */
  grid-auto-rows: auto;
  align-items: center;
  justify-content: end;               /* push to the right edge */
  column-gap: .6rem;
  row-gap: .2rem;
}

#wby80-sticky.is-fixed .sticky-right .ship-note{
  grid-column: 1 / -1;                /* span under both */
  justify-self: end;                  /* align with the button */
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1;
  margin-top: .05rem;
}

/* Mobile: keep it compact; (you already hide price ≤768px) */
@media (max-width: 768px){
  #wby80-sticky.is-fixed .sticky-right{
    grid-template-columns: auto;      /* button only in the top row */
    justify-items: end;
    column-gap: 0;
  }
  #wby80-sticky.is-fixed .sticky-right .ship-note{
    grid-column: 1;
    font-size: .78rem;
  }
}

/* If you still have these earlier rules, remove or override them:
   .sticky-right { display:flex; ... }
   @media (max-width:768px) .sticky-right { display:inline-flex; ... }
*/


/* On the white PDP band */
.wby80-offer.is-bleed .ship-note{
  color:#2b2f33;
  opacity:.75;
  text-align:center;
}

 /* ==== HERO ============================================ */

/* Full-page dark overlay (uniform) */

.wby80-hero {
  position: relative;
  min-height: 85vh;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.0) 50%),
    url('https://weatherby.com/wp-content/uploads/2025/08/WBY_80th_Hero-2560x1218-1.jpg')
    center/cover no-repeat;
  display: flex;
  align-items: flex-end;     /* push content to bottom */
  justify-content: space-between;
  padding: 0 6vw 6vh;        /* breathing room left/right/bottom */
  color: #fff;
}
.wby80-hero-content {
	color:#fff!important;
}
.eyebrow {
  display: block;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: #E9D7A6;  /* Weatherby gold */
}

.wby80-hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  /*text-transform: uppercase;*/
  text-shadow: 0 6px 20px rgba(0,0,0,.35);
	color:#fff;
	letter-spacing:-.05rem;
}

/* CTA right */
.hero-cta{
  position: relative;
  display: inline-flex;              /* make it flex so flex-* apply */
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 2;
}
.hero-cta-inner {
	/*display:flex;*/
	align-items:center;
	gap:2rem;
}
.hero-cta .price {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  /*margin-bottom: 0.5rem;*/
	color:#fff;
	margin-top:.5rem;
}
.hero-cta .buy-btn {
  display: inline-block;
  background: #C7A459;
  color: #1d1a14;
  padding: 0.75rem 2.6rem;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.hero-cta .buy-btn:hover {
  filter: brightness(1.25);
  /*transform: translateY(-1px);*/
}

  /* ==== RESPONSIVE HERO ====================================== */
  @media (max-width: 680px){
	  .wby80-hero {
		height:40vh;  
	  } 
	  .wby80-hero-content h1 {
		  letter-spacing:-.02rem;
	  }
  }
/* ---------------------------------------------
   HERO: laptop / mobile layout
   (stack + center; taller hero; CTA under headline)
----------------------------------------------*/
@media (max-width: 900px){

  .wby80-hero{
    /* make it feel like a hero on small screens */
    min-height: clamp(520px, 88vh, 900px);
    /* stack & center */
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 3vw, 24px);
    padding: 0 clamp(16px, 5vw, 28px) clamp(20px, 6vh, 40px);
    background-position: 52% 42%; /* small bias to the engraving; tweak if needed */
  }

  .wby80-hero{
    /* swap only the image; keep the same gradient, sizing, and cropping */
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%),
      url('https://weatherby.com/wp-content/uploads/2025/08/WBY_80th_Hero_mobile-1028x960-1.jpg');
    /* you already set background-position below; keep/tweak as needed */
    /* background-position: 52% 42%; */
  }


  .wby80-hero-content{
    width: 100%;
    text-align: center;
  }

  .wby80-hero-title{
    width: 100%;
    max-width: 28ch;                     /* let it span; wrap gracefully */
    margin: 0 auto;
    font-size: clamp(28px, 7.2vw, 40px); /* larger on phones */
    line-height: 1.06;
    letter-spacing: -.03rem;
  }

  .eyebrow{
    font-size: clamp(12px, 3.5vw, 14px);
    letter-spacing: .14em;
    margin-bottom: .35rem;
  }

  /* neutralize the absolute pill, and center it under the title */
  #hero-cta{
    position: static;
    opacity: 1;
    transform: none;
    animation: none;
    width: min(520px, 92vw);
    margin-inline: auto;
  }

  .hero-cta{
    display: grid;
    justify-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
  }

  .hero-cta-inner{
    display: grid;
    gap: 10px;
    width: 100%;
    justify-items: center;
  }

  .hero-cta .price{
    font-size: clamp(18px, 5.2vw, 24px);
    padding: 8px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, #000 60%, transparent);
    margin-top: 0;
  }

  .hero-cta .buy-btn{
    inline-size: 100%;
    max-inline-size: 420px;
    justify-content: center;
    text-align: center;
  }
}
/* Force hero CTA to stack on small screens */
@media (max-width: 900px){
  #hero-cta .hero-cta-inner{
    display: grid !important;      /* overrides the earlier display:flex */
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    justify-items: center;
  }

  /* Make the wrapper behave like a grid card too (in case inline-flex wins) */
  #hero-cta.hero-cta{
    display: grid !important;
    justify-items: center;
    padding: 12px 14px;
    border-radius: 16px;
  }

  /* Order + sizing */
  #hero-cta .price{
    order: 1;
    font-size: clamp(18px, 5.2vw, 24px);
    padding: 8px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, #000 60%, transparent);
  }

  #hero-cta .buy-btn{
    order: 2;
    width: 100%;
    max-width: 420px;
    text-align: center;
  }

  #hero-cta .ship-note{
    order: 3;
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    line-height: 1.1;
  }
}


/* Safer bottom spacing on devices with a home-indicator */
@media (max-width: 900px){
  .wby80-hero{
    padding-bottom: calc(clamp(20px, 6vh, 40px) + env(safe-area-inset-bottom));
  }
}

/* Landscape phones (short viewports): keep CTA visible */
@media (orientation: landscape) and (max-height: 560px){
  .wby80-hero{ min-height: 100vh; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  #hero-cta{ animation: none; transform: none; opacity: 1; }
}

/* Ensure touch targets are comfy */
.hero-cta .buy-btn{ min-height: 44px; }

/* Slightly stronger title legibility on busy wood grain */
.wby80-hero-title{
  text-shadow: 0 10px 28px rgba(0,0,0,.45), 0 1px 0 rgba(0,0,0,.35);
}


/* Initial placement inside hero (bottom-right)
#heroCTA {
  position: absolute;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3.2vw, 48px);
  z-index: 3;

  
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  border-radius: 16px;

 
  opacity: 0;
  transform: translateY(10px);
  animation: ctaEnter 550ms ease-out 120ms forwards;
}*/

/* default state (not yet fixed) */
#wby80-sticky{
  position: relative;          /* in the normal flow */
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

/* when the hero scrolls out, make it fixed to the viewport */
#wby80-sticky.is-fixed{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--sticky-offset);
  /*z-index: 1003;*/
z-index:19;

  opacity: 1;
  transform: none;
  pointer-events: auto;

  background: rgba(199,164,89,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.wby80-sticky-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-left .sticky-title{
  font-size: 1.1rem;
  font-weight: 700;
  /*color: #1d1a14;*/
	color:#fff;
}

.sticky-right{ display:flex; align-items:center; gap:1rem; }
.sticky-right .price{ font-size:1.1rem; font-weight:700; /*color:#1d1a14;*/ color:#fff; }
.sticky-right .buy-btn{
  background:#15191C; /*color:#1d1a14;*/ color:#fff; padding:.5rem 3rem;
  border-radius:20px; font-weight:700; text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.sticky-right .buy-btn:hover {background-color:black;}

/* ==== Compact sticky bar on small screens ==== */
@media (max-width: 768px) {
  /* tighter chrome + blur */
  #wby80-sticky.is-fixed{
    background: rgba(199,164,89,.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	    top: var(--sticky-offset-mobile);
  }

  .wby80-sticky-inner{
    padding: .5rem .75rem;
    gap: .75rem;
  }

  /* make the title flexibly shrink, allow ellipsis */
  .sticky-left{
    flex: 1 1 auto;
    min-width: 0;               /* enables text-overflow */
  }
  .sticky-left .sticky-title{
    font-size: clamp(.85rem, 2.7vw, 1rem);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;     /* stays on one line */
    letter-spacing: .01em;
    color: #fff;
  }

  .sticky-right{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
  }
  /*.sticky-right .price{
    font-size: clamp(.9rem, 3vw, 1rem);
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
  }*/
	.sticky-right .price {
		display:none;
	}
  .sticky-right .buy-btn{
    padding: .45rem 1.1rem;
    border-radius: 999px;
    font-size: clamp(.85rem, 2.9vw, .95rem);
    line-height: 1;
  }

}

/* Ultra-narrow safety (optional): hide price to guarantee one line) */
@media (max-width: 380px){
  .sticky-right .price{ display:none; }
}


/* === 80th Highlights v2 (Apple-style) === */
.wby80-highlights-v2 { background: var(--wby80page-bg); padding: clamp(28px,6vw,64px) 0; }

/* header aligns with rail's left edge */
.wby80-highlights-v2-head{
  --left-pad: max((100vw - var(--maxw))/2, var(--gutter));
  padding-left: var(--left-pad);
  padding-right: var(--gutter);
  /* was: clamp(12px, 2.2vw, 18px) */
  margin-bottom: clamp(20px, 4vw, 56px);
  text-align:left;
}
.wby80-highlights-v2-head h2{
  margin:0 0 .85rem;
  font-weight:900;
  font-size:clamp(1.6rem,3.2vw,5rem);
  color: var(--gold);
}
.wby80-highlights-v2-sub{
  margin:0;
  color:rgba(255,255,255,.8);
  font-size: clamp(.96rem, 1vw, 1.5rem);
}

/* rail: same left alignment, overflow right */
.hgl-rail{
  --left-pad: max((100vw - var(--maxw))/2, var(--gutter));
  --card-gap: clamp(16px, 2.6vw, 28px);
  padding-left: var(--left-pad);

  display:grid;
  grid-auto-flow: column;
  gap: var(--card-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--left-pad);

  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 1px; margin-bottom:-1px; /* cloak */
}
.hgl-rail::-webkit-scrollbar{ height:0 !important; }
.hgl-rail::-webkit-scrollbar-thumb,
.hgl-rail::-webkit-scrollbar-track{ background:transparent; }

/* Apple-like card:
   - very wide & fairly short
   - full-bleed image
   - copy overlay inside image, bottom-left
*/
.hgl-card{
  --radius: clamp(18px, 2.2vw, 28px);
  /* Width targets Apple’s big tiles: ~66–90vw but capped for desktop */
  --card-w: clamp(720px, 78vw, 1280px);
  /* Height ratio close to Apple highlights (short & cinematic) */
  width: var(--card-w);
  aspect-ratio: 21 / 9;                 /* ~2.33:1 */
  position: relative;
  scroll-snap-align: start;
	/*scroll-snap-stop:always;*/

  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s, box-shadow .25s;
	color:white;
}
/*.hgl-card:hover{ transform: translateY(-2px); box-shadow: 0 22px 64px rgba(0,0,0,.18); }*/

/* media */
.hgl-media{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02);
}

/* subtle gradient for legibility (keeps image full-bleed) */
.hgl-card::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 55%);
  pointer-events:none;
}
/* Right-side variant: place copy on the right & flip the gradient */
.hgl-card.is-right .hgl-copy{
  left: auto;
  right: clamp(16px, 4vw, 56px);
  text-align: right;                       /* optional, looks very Apple */
}

/* flip the side gradient so the text block has contrast on the right */
.hgl-card.is-right::after{
  background:
    linear-gradient(270deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 55%);
}
/* copy overlay pulled onto the image */
.hgl-copy{
  position:absolute;
  left: clamp(16px, 3.2vw, 40px);
  top: 66%;
  transform: translateY(-46%);
  color:#fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);

  /* NEW: limit the text measure */
  width: min(var(--copy-w, 75ch), 48vw);  /* defaults to ~58 characters or 48% viewport */
  right: auto; /* let width control the right edge */
	z-index:3;
}
.hgl-eyebrow{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(.72rem, .9vw, .86rem);
  opacity:.8;
  display:block;
  margin-bottom: .25rem;
}
.hgl-copy h3{
text-wrap:balance;
  margin:.1rem 0 .35rem;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height:1.15;
	text-transform:uppercase;
	letter-spacing:.25rem;
	color:#fff;
}
.hgl-copy p{
  margin:0;
  font-size: clamp(.98rem, 1.1vw, 1.5rem);
  line-height:1.85;
  opacity:.75;
	font-weight:600;
}

/* arrows (reuse style but new class names) */
.hgl-nav{
  --left-pad: max((100vw - var(--maxw))/2, var(--gutter));
  display:flex; gap:.5rem; justify-content:flex-start;
  padding-left: var(--left-pad);
  margin-top: .6rem;
}
.hgl-btn{
  appearance:none; border:1px solid #dfdbd4; background:#fff; color:#222;
  padding:.5rem .75rem; border-radius:12px; font-size:1.05rem; cursor:pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.hgl-btn:hover{ border-color:#d5d0c8; box-shadow: 0 16px 42px rgba(0,0,0,.08); }

/* responsive nudges */
@media (max-width: 900px){
  .hgl-card{ --card-w: 88vw; aspect-ratio: 20 / 11; } /* a touch taller for small screens */
  .hgl-copy h3{ font-size: clamp(1.12rem, 4.5vw, 1.6rem); }
}
@media (max-width: 640px){
  .hgl-card{ --card-w: 92vw; border-radius: 18px; }
	  .wby80-highlights-v2-head{
    margin-bottom: clamp(18px, 5vw, 32px);
  }
  .hgl-copy{
    top:auto;
    bottom: clamp(14px, 3vw, 38px);
    transform:none;
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    width: auto;                /* use the insets on small screens */
    max-width: none;
	}
	  .hgl-card.is-right .hgl-copy{
    top: auto;
    bottom: clamp(14px, 3vw, 38px);
    transform: none;
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    text-align: left;                      /* easier to read on small screens */
    width: auto;
  }
}

/* === Defining Details: mobile immersion tweaks === */
@media (max-width: 640px){

  /* Make the section feel like a full screen */
  .wby80-highlights-v2{
    min-height: 100dvh;              /* dynamic vh = stable with URL bar */
    display: grid;
    align-content: start;
  }

  /* One big card per “page” with a hint of the next, as you already have */
  .hgl-rail{
    grid-auto-columns: 92vw;         /* keep one-at-a-time feel */
    gap: 16px;
    padding-bottom: 8px;
  }

  /* Let the image be the hero: tall card (~80% of screen) */
  .hgl-card{
    height: 55dvh;                   /* <<< key change */
    aspect-ratio: auto;              /* override the wide cinematic ratio */
    /* fallback if some browser clings to the ratio */
    aspect-ratio: unset;
    border-radius: 18px;
  }

  /* Make the bottom fade a touch stronger for legibility */
  .hgl-card::after{
    background:
      linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 42%),
      linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  }
  .hgl-card.is-right::after{
    background:
      linear-gradient(270deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 42%),
      linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  }

  /* Copy block sits on the image near the bottom with generous insets */
  .hgl-copy{
    top: auto;
    bottom: clamp(14px, 3vw, 38px);
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    transform: none;
    width: auto;
    max-width: none;
    text-align: left;
  }
  .hgl-card.is-right .hgl-copy{
    top: auto; bottom: clamp(14px, 3vw, 38px);
    left: clamp(12px, 4vw, 24px); right: clamp(12px, 4vw, 24px);
    transform: none; text-align: left;
    width: auto; max-width: none;
  }

  /* Tighter paragraph styling for mobile */
  .hgl-copy p{
    font-size: clamp(.9rem, 3.6vw, 1rem);
    line-height: 1.35;
    letter-spacing: .01em;
    opacity: .85;                    /* a tad brighter since we increased fade */
    max-width: 70ch;
  }

  /* Nudge the section header spacing a bit tighter above the rail */
  .wby80-highlights-v2-head{
    margin-bottom: clamp(14px, 4.5vw, 28px);
  }
}


/* Guard rails for highlight card copy (prevents right-side clipping) */
.wby80-highlights-slim .hgl-copy{
  left:  clamp(16px, 3.2vw, 40px);
  right: clamp(16px, 3.2vw, 40px);      /* NEW: keep a safe right inset */
  width: auto;                          /* was: width: min(...); */
  max-width: min(
    62ch,                                /* comfortable reading measure */
    calc(100% - (clamp(16px,3.2vw,40px) + clamp(16px,3.2vw,40px)))
  );
}

/* Right-anchored variant: keep a slightly larger right inset if you like */
.wby80-highlights-slim .hgl-card.is-right .hgl-copy{
  right: clamp(16px, 4vw, 56px);
  left:  clamp(16px, 3.2vw, 40px);      /* keep a left guard rail too */
  text-align: right;
}

/* Help long words/tight layouts avoid hard clipping */
.wby80-highlights-slim .hgl-copy p{
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Optional: tighten measure a bit on smaller laptops */
@media (min-width: 1000px) and (max-width: 1360px){
  .wby80-highlights-slim .hgl-copy{
    max-width: min(
      58ch,
      calc(100% - (clamp(16px,3vw,36px) + clamp(16px,3vw,36px)))
    );
  }
}


/* === 80th Case Full-Bleed === */
.wby80-case-bleed{
  position: relative;
  width: 100%;
  /*min-height: calc(100svh - var(--sticky-h, 0px)); /* full viewport minus sticky bar */
  background: #0f1112;            /* behind the image if it has transparency */
  isolation: isolate;              /* keeps overlay effects contained */
--hero-mult: 1.20; /* 1.20 = 120% of viewport height */
  min-height: calc(100dvh * var(--hero-mult) - var(--sticky-h, 0px));
/* tweak this to nudge the band up/down over the image */
  --trio-top: 38%;                  /* vertical anchor: % of hero height */
}

/* variant heights */
.wby80-case-bleed.is-tall   { --hero-mult: 1.25; } /* 125vh */
.wby80-case-bleed.is-x-tall { --hero-mult: 1.75; } /* 140vh */

/* The background image fills the viewport (like Apple) */
.wby80-case-bleed .case-bg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;               /* fill both dimensions */
  /* Tune the focal point so the rifle/case sits where you want */
  object-position: var(--focal-x, 50%) var(--focal-y, 85%); /* bias toward bottom */
  filter: saturate(1.02);
}

/* Legibility gradient (top + bottom) 
.wby80-case-bleed::after{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 38%),
    linear-gradient(0deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 45%);
}*/

/* Centered heading/subhead near the top like Apple */
.case-bleed-content{
  position: absolute; inset: 0;
  display: grid;
  align-content: start;            /* copy sits toward the top */
  justify-items: center;
  gap: clamp(10px, 1.8vw, 18px);
  padding:
    clamp(32px, 12vh, 160px)       /* top breathing */
    max((100vw - var(--maxw))/2, var(--gutter))  /* left/right safe padding */
    clamp(28px, 6vh, 80px);        /* bottom padding */
  color: #fff; text-align: center;
  z-index: 1;
}

.case-bleed-title{
  margin:0;
  font-weight: 900;
  font-size: clamp(2.4rem, 8.2vw, 6rem);
  text-wrap: balance;
	color:white;
}
.case-bleed-sub{
  margin:0;
  max-width: 80ch;
  font-size: clamp(1.25rem, 1.4vw, 1.65rem);
  line-height: 1.65;
  opacity:.85;
}

/* Mobile: let the case anchor to the bottom edge */
@media (max-width: 640px){
  .wby80-case-bleed .case-bg{ object-position: var(--focal-x, 50%) 100%; }
}
/* container positioned over the image */
.case-bleed-trio{
  position: absolute;
  left: 0; right: 0;
  top: var(--trio-top);
  transform: translateY(-8%);       /* sit a touch above the anchor line */
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* side padding aligned to your page gutter / max width */
.case-bleed-trio .trio-wrap{
  --side: max((100vw - var(--maxw))/2, var(--gutter));
  padding-left: var(--side);
  padding-right: var(--side);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 32px);
}

/* column text styles */
.trio-col h4{
  margin: 0 0 .4rem;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  text-wrap: balance;
	color:var(--gold);
}
.trio-col p{
  margin: 0;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.55;
  opacity: .92;
  max-width: 45ch;                  /* keep a comfortable measure */
}

/* subtle local legibility lift under the band (optional) 
.case-bleed-trio::before{
  content: "";
  position: absolute; left: 0; right: 0; top: -8vh; bottom: -8vh;
  background: radial-gradient(100% 120% at 50% 50%,
              rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}*/

/* responsive: 2 cols, then 1 */
@media (max-width: 1100px){
  .case-bleed-trio .trio-wrap{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px){
  .case-bleed-trio{
    top: auto; bottom: clamp(22px, 6vh, 48px); transform:none;  /* anchor near bottom on phones */
  }
  .case-bleed-trio .trio-wrap{ grid-template-columns: 1fr; }
  .trio-col p{ max-width: none; }
}
/* iPhone-ish widths: keep the trio from colliding with the copy */
@media (max-width: 700px){
  /* 1) Nudge the trio lower on mobile */
  .wby80-case-bleed{
    /* you can still override per-page with --trio-top-m inline if needed */
    --trio-top-m: 34%; /* was 26% */
  }

  .case-bleed-trio{
    top: var(--trio-top-m);
    transform: translateY(-10%); /* slightly less lift so it sits lower */
  }

  /* 2) Reserve vertical space so body copy never runs into the trio */
  .case-bleed-content{
    /* add padding that scales with viewport width; acts as a spacer */
    padding-bottom: clamp(140px, 38vw, 240px);
  }

  /* make the sub a touch tighter so the card reads clean on 390px */
  .case-bleed-sub{
    font-size: clamp(.96rem, 3.5vw, 1.08rem);
    line-height: 1.45;
  }
}

/* Extra guard for very narrow / tall phones (iPhone 12/13/14 at 390px wide) */
@media (max-width: 420px) and (min-height: 700px){
  .wby80-case-bleed{ --trio-top-m: 36%; }
  .case-bleed-content{ padding-bottom: clamp(160px, 42vw, 260px); }
}


/* === Reveal on scroll === */
/* Slower, taller rise + subtle wipe-up reveal */
.reveal{
  --rise: 28px;                         /* how far it rises */
  --dur: 900ms;                         /* slower than before */
  opacity: 0;
  transform: translate3d(0, var(--rise), 0);
  clip-path: inset(16% 0 0 0);          /* starts 'masked' from bottom */
  will-change: transform, opacity, clip-path;
  transition:
    opacity   var(--dur) cubic-bezier(.22,.61,.36,1),
    transform var(--dur) cubic-bezier(.22,.61,.36,1),
    clip-path calc(var(--dur) + 200ms) cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0ms);      /* stagger set in JS */
}

.reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
  clip-path: inset(0 0 0 0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-in{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* --- Sticky pill (only within this section) --- */
.case-fab-wrap{
  position: fixed;
  left: 0; right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(10px, 2.4vw, 22px));
  display: flex; justify-content: center;
  z-index: 999;                    /* above content, under your modal */

  /* hidden until we decide to show it */
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;            /* avoid ghost clicks when hidden */
 pointer-events:none;   /* so it floats above content */
}
.case-fab{
  pointer-events:auto;
  display:flex; align-items:center; gap:.6rem;
  padding:.65rem 1rem .65rem 1.1rem;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
  font-weight:800; font-size:.95rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor:pointer;
}
/* visible while the section is on screen */
.case-fab-wrap.is-visible{
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.case-pill-stop{
  position: relative;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* hide the pill while the modal is open */
.case-fab-wrap.is-hidden{
  opacity: 0; pointer-events: none;
}
.case-fab-plus{
  display:grid; place-items:center;
  width:22px; height:22px; border-radius:999px;
  background: var(--gold, #b9975b); color:#111; font-weight:900; line-height:1;
}

/* --- Modal shell --- */
.case-modal[hidden]{ display:none; }
.case-modal{
  position: fixed; inset:0; z-index: 100000;
  display:grid; grid-template-rows: 1fr;
}

.case-backdrop{
  position:absolute; inset:0; background: rgba(0,0,0,.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.case-dialog{
  position:relative; margin:auto; width:min(1100px, 92vw);
  max-height: 90vh; background: #fff;
  border-radius: clamp(14px, 1.8vw, 22px);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  overflow: hidden; display:flex; flex-direction:column;
}
.case-modal-head{
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.4vw, 24px);
  display:flex; align-items:center; /*justify-content:space-between;*/
  background: linear-gradient(#f5f7f9, #eef2f6);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.case-modal-head h3{ margin:0; font-weight:900; }
.case-close{
  appearance:none; border:0; background:#fff; cursor:pointer;
  width:34px; height:34px; border-radius:999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12); font-size:16px;
}
.case-modal-body{ padding: clamp(12px, 2vw, 20px); overflow:auto; }

/* Gradient backdrop for the modal’s content area */
.case-modal-body--gradient{
  background: linear-gradient(180deg, #5e7f90 0%, #1e2a2e 55%, #0d0f10 100%);
  color: rgba(255,255,255,.92);
  padding: clamp(20px, 4vw, 40px);
  border-bottom-left-radius: clamp(12px, 1.6vw, 20px);
	border-bottom-right-radius: clamp(12px, 1.6vw, 20px);
}

/* Big centered hero */
.case-hero{
  display:flex; justify-content:center; align-items:center;
  margin: 0 0 clamp(18px, 3vw, 28px);
}
.case-hero img{
  width: clamp(320px, 70vw, 1120px);
  height: auto;
  display:block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
  border-radius: clamp(6px, .8vw, 10px);
}

/* Tab strip */
.case-tabs{
  display:flex; flex-wrap:wrap; gap: .5rem;
  justify-content:center; align-items:center;
  margin-bottom: clamp(12px, 2vw, 18px);
}
.case-tab{
  appearance:none; border:0; cursor:pointer;
  padding: .5rem .85rem;
  border-radius: 999px;
  font: inherit;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(6px);
  outline: none;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}
.case-tab:hover{ background: rgba(255,255,255,.20); }
.case-tab.is-active{
  background: #fff; color:#0d0f10;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* Description */
.case-panel{
  max-width: 78ch;
  margin: 0 auto;
  text-align:center;
}
.case-panel h4{
  margin: 0 0 .35rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: .02em;
	color:#fff;
}
.case-panel p{
  margin: 0;
  line-height: 1.6;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,.85);
}

/* When modal gets narrow, keep things comfy */
@media (max-width: 680px){
  .case-hero img{ width: 88vw; }
}

/* prevent page scroll when modal open */
body.case-modal-open{ overflow:hidden; }

/* ===== Float the modal title like Apple ===== */
.case-modal .case-dialog{
  position: relative;
  overflow: hidden;
}

/* Kill the white bar + turn header into a floating overlay */
.case-modal-head{
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  display: grid;
  place-items: center;
  padding-block: clamp(18px, 3.5vw, 32px);
  background: none;         /* no white strip */
  border: 0;
  box-shadow: none;
  pointer-events: none;     /* let clicks go to content, except the close button */
  z-index: 3;
}

/* Big, clean, Apple-y headline */
.case-modal-head #caseModalTitle{
  margin: 0;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: .01em;
  color: #fff;
  /*text-shadow: 0 8px 30px rgba(0,0,0,.45), 0 2px 10px rgba(0,0,0,.35);*/
  pointer-events: none;
}

/* Close button stays clickable in the corner */
.case-modal-head .case-close{
  position: absolute;
  inset-block-start: clamp(10px, 2vw, 18px);
  inset-inline-end: clamp(10px, 2vw, 18px);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  pointer-events: auto;     /* re-enable interaction */
}

/* Make room for the floating title so the hero isn’t covered */
.case-modal-body{
  padding-top: clamp(88px, 12vh, 140px);
}

/* (Optional) subtle lift for the hero image so it feels embedded */
.case-hero img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
/* MOBILE: case tabs — one line, first pill never clipped */
@media (max-width: 900px){
	.case-hero {
		margin: 0 0 clamp(38px, 3vw, 28px);
	}
	.case-modal-body {
		padding-top:80px;
	}
	.case-panel {
		margin:30px 0 auto;
	}
  .case-tabs{
    /* one line + smooth scroll */
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    /* make room so first/last pills are fully visible */
    padding-inline: 18px;
    scroll-padding-inline: 18px;
	  padding-left:140px;

    /* nuke anything that could clip the first pill */
    -webkit-mask: none !important;
    mask: none !important;
    clip-path: none !important;
  }
  .case-tabs::-webkit-scrollbar{ display:none; }

  .case-tab{
    flex: 0 0 auto;             /* don’t shrink */
    white-space: nowrap;
    padding: .5rem .9rem;       /* your current pill style */
  }
}
@media (max-width: 900px){
  .case-modal .case-tabs{
    position: relative;     /* for the fades */
  }

  /* edge fades (don't block clicks) */
  .case-modal .case-tabs::before,
  .case-modal .case-tabs::after{
    content:"";
    position:absolute;
    inset-block: 0;
    width: 32px;            /* fade width */
    pointer-events: none;   /* clicks pass through */
    z-index: 2;
    transition: opacity .18s ease;
  }
  .case-modal .case-tabs::before{
    left: 0;
    background: linear-gradient(to right, rgba(13,15,16,.95), rgba(13,15,16,0));
  }
  .case-modal .case-tabs::after{
    right: 0;
    background: linear-gradient(to left, rgba(13,15,16,.95), rgba(13,15,16,0));
  }

  /* hide fades when scrolled to an end */
  .case-modal .case-tabs.at-start::before{ opacity: 0; }
  .case-modal .case-tabs.at-end::after{ opacity: 0; }
}



/* === Slim variant for the end-of-page highlight rail === */
.wby80-highlights-slim { background: var(--wby80page-bg); padding: clamp(24px,5vw,56px) 0; }
.wby80-highlights-slim .wby80-highlights-v2-head{
  margin-bottom: clamp(16px, 3.4vw, 40px);
}

/* same rail, slimmer card specs */
.hgl-rail.is-slim{
  --card-gap: clamp(12px, 1.8vw, 22px);     /* tighter spacing */
}

/* make cards thinner & a bit narrower so more fit on screen */
.hgl-rail.is-slim .hgl-card{
  --radius: clamp(14px, 1.8vw, 22px);
  --card-w: clamp(560px, 64vw, 1040px);     /* narrower than hero highlights */
  aspect-ratio: 32 / 9;                     /* “skinny” slab */
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

/* lighter overlay and slightly smaller type */
.hgl-rail.is-slim .hgl-card::after{
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,0) 55%);
}
.hgl-rail.is-slim .hgl-copy{
  top: 70%;
  transform: translateY(-40%);
  width: min(var(--copy-w, 44ch), 40vw);    /* keep the measure tight */
}
.hgl-rail.is-slim .hgl-copy h3{
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  margin: .05rem 0 .3rem;
}
.hgl-rail.is-slim .hgl-copy p{
  font-size: clamp(.92rem, 1vw, 1.02rem);
  line-height: 1.45;
  opacity:.94;
}

/* mobile: go big, but keep height reasonable */
@media (max-width: 640px){
  .hgl-rail.is-slim .hgl-card{ --card-w: 92vw; aspect-ratio: 20 / 11; }
  .hgl-rail.is-slim .hgl-copy{ right: clamp(12px, 4vw, 24px); left: clamp(12px, 4vw, 24px); width:auto; transform:none; top:auto; bottom: clamp(14px, 3vw, 24px); }
}
/* even tighter footer rail */
.hgl-rail.is-slim.is-dense{
  --card-gap: clamp(15px, 1.8vw, 30px);               /* smaller gap */
}

/* cards: narrower width + a bit taller aspect */
.hgl-rail.is-slim.is-dense .hgl-card{
  /* narrower than slim: fits more per view */
 --card-w: clamp(320px, 26vw, 560px);  /* ≈ half of 52vw */
  aspect-ratio: 14 / 11;
  border-radius: clamp(12px, 1.6vw, 20px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* copy measure + type just a notch tighter */
.hgl-rail.is-slim.is-dense .hgl-copy{
  /*width: min(var(--copy-w, 36ch), 28vw);*/
  transform: translateY(-38%);  
}
.hgl-rail.is-slim.is-dense .hgl-copy h3{
  font-size: clamp(.98rem, 1.6vw, 1.24rem);
  margin: .05rem 0 .25rem;
	text-transform:none;
	line-height:1.5;
	letter-spacing:.15rem;
}
.hgl-rail.is-slim.is-dense .hgl-copy p{
  font-size: clamp(.9rem, .95vw, 1rem);
  line-height: 1.45;
}

/* optional: slightly lighter overlay for dense cards */
.hgl-rail.is-slim.is-dense .hgl-card::after{
  background:
    linear-gradient(90deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,0) 55%);
}

/* mobile: same behavior as slim */
@media (max-width: 640px){
  .hgl-rail.is-slim.is-dense .hgl-card{
    --card-w: 92vw;
    aspect-ratio: 18 / 12;                             /* a hair taller for readability */
  }
  .hgl-rail.is-slim.is-dense .hgl-copy{
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    width: auto; top: auto; bottom: clamp(14px, 3vw, 24px);
    transform: none;
  }
}

/*===== VIDEO SECTION ======*/
.wby80-video{
  position: relative;
  background: #0f1214;
  color: #fff;
  overflow: clip;
}
.wby80-video-frame{
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  aspect-ratio: 16/9;           /* keeps height consistent while video loads */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.wby80-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fade for text/controls legibility */
.wby80-vid-fade{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 45%);
  pointer-events:none;
}

/* Play/Pause toggle */
.wby80-vid-toggle{
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}
.wby80-vid-toggle:hover{ filter: brightness(1.15); }

/* Copy block */
.wby80-video-copy{
  width: min(1000px, 88vw);
  margin: clamp(16px, 4vw, 28px) auto clamp(28px, 7vw, 56px);
  text-align: center;
}
.wby80-video-title{
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  margin: .2rem 0 .5rem;
}
.wby80-video-lede{
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #d9dde1;
  margin: 0 auto;
  max-width: 65ch;
}

/* Full-bleed feel on wide screens */
@media (min-width: 1200px){
  .wby80-video{ padding: 4vh 0 6vh; }
}
@media (max-width: 768px){
  .wby80-video-frame{ border-radius: 14px; }
}

/* ------- Section shell ------- */
.wby80-videos{
  padding: clamp(40px, 8vw, 96px) 0;
}
.wby80-videos .videos-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Headline (echo your case section vibe) */
.videos-title{
  margin: 0 0 clamp(18px, 3vw, 60px);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 2.08;
  text-align: center;
  color: var(--gold); /* adjust if needed */
}

/* ------- Row / carousel rail ------- */
.videos-rail{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2.6vw, 20px);
}

/* Mobile = horizontal carousel with scroll-snap */
@media (max-width: 820px){
  .videos-rail{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
  }
  .videos-rail::-webkit-scrollbar{ display:none; }
}

/* ------- Cards ------- */
.video-card{
  position: relative;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  padding: 0;
  outline: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  scroll-snap-align: center;
}
.video-card:focus-visible{
  outline: 2px solid rgba(255,255,255,.65);
  outline-offset: 6px;
  border-radius: 16px;
}

.video-thumb{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.36);
  aspect-ratio: 16/9;
}
.video-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.03);
}

/* Play indicator */
.video-play{
  position: absolute;
  inset: auto 0 0 0;
  margin: auto;
  bottom: 50%;
  transform: translateY(50%);
  width: clamp(52px, 7vw, 74px);
  height: clamp(52px, 7vw, 74px);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.video-card:hover .video-play{ transform: translateY(50%) scale(1.05); }

/* Label */
.video-label{
  display: block;
  text-align: center;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  margin-top: .75rem;
}

/* default: slightly toned down, gives hover some headroom */
.video-card{
  filter: saturate(.96) contrast(.96) brightness(.98);
  transform-origin: center center;
}

/* grow + restore color on hover/focus (only on devices that support hover) */
@media (hover:hover){
  .video-card:hover,
  .video-card:focus-visible{
    transform: scale(1.04);
    filter: none;
  }
}

/* keyboard accessibility outline stays */
.video-card:focus-visible{
  outline: 2px solid rgba(255,255,255,.65);
  outline-offset: 6px;
  border-radius: 16px;
}

/* optional: tiny “tap” feedback on touch */
@media (hover:none){
  .video-card:active{ transform: scale(0.99); }
}


/* Mobile nav buttons */
.videos-nav{
  display: none;
  margin-top: 10px;
  justify-content: center;
  gap: 10px;
}
.videos-nav .vbtn{
  width: 42px; height: 42px; border-radius: 999px;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
@media (max-width: 820px){
  .videos-nav{ display: flex; }
}
/* ===== Film modal overlay (must be present) ===== */
.film-modal[hidden]{ display: none; }
.film-modal{
  position: fixed;
  inset: 0;
  z-index: 10010;           /* above sticky bars, etc. */
}
.film-backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
}

.film-dialog{
  position: relative;
  margin: 4vh auto;
  width: min(1280px, 94vw);
  background: linear-gradient(180deg, #81142f 0%, #560115 100%);
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
  color: #fff;
  overflow: hidden;
  max-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr;   /* header + body */
}

.film-head{
  /*display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 2.2vw, 22px) clamp(18px, 2.4vw, 26px);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04));*/
  /* kill the bar */
  background: none !important;
  box-shadow: none !important;

  /* center the title, keep a little breathing room */
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1.2vw, 16px) clamp(12px, 2vw, 20px) 0 !important;
}
.film-head h3{
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: .02em;
	color:#fff;
}
.film-close{
  appearance: none; border: 0;
  background: rgba(255,255,255,.85); color: #111;
  width: 40px; height: 40px; border-radius: 999px;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.film-close{
  position: absolute;
  top: clamp(8px, 1vw, 14px);
  right: clamp(8px, 1vw, 14px);
}

.film-body{
  padding: clamp(12px, 2.6vw, 24px);
  overflow: auto;
  display: grid;
  gap: clamp(12px, 2vw, 18px);
}
/* Wrapper that holds the iframe */
.film-video{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;           /* keeps shape */
  max-height: min(70vh, 720px);   /* never too tall */
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  background: #000;
}

.film-caption{
  margin: 0 auto;
  max-width: 72ch;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
}

/* Lock page scroll while open */
body.film-open{ overflow: hidden; }

/* One-at-a-time carousel on phones */
@media (max-width: 820px){
  /* Force rail to page by a full card */
  #videosRail,
  .videos-rail{
    display: grid !important;
    grid-template-columns: none !important; /* cancel desktop repeat(3,1fr) */
    grid-auto-flow: column !important;
    grid-auto-columns: 100% !important;     /* exactly one card per “page” */
    gap: 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Each card fills the page; no growth on mobile */
  #videosRail .video-card,
  .videos-rail .video-card{
    min-width: 100% !important;
    margin: 0 !important;
    scroll-snap-align: center;
    transform: none !important;             /* cancel is-active scale on mobile */
  }
}

/* Keep the subtle hover grow on non-touch devices only */
@media (hover: hover) and (pointer: fine){
  .video-card:hover{
    transform: scale(1.03);
  }
}

/* --- Cleaner, responsive play button --- */
.video-thumb{ position: relative; display:block; }

/* size scales with viewport; lighter glass + subtle ring */
.video-thumb .video-play{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  inline-size: clamp(36px, 7vw, 56px);
  block-size: clamp(36px, 7vw, 56px);
  border-radius: 999px;

  background: rgba(0,0,0,.35);              /* lighter */
  border: 1px solid rgba(255,255,255,.28);  /* soft ring */
  box-shadow: 0 8px 22px rgba(0,0,0,.25);

  /* hide the emoji text content */
  font-size: 0; line-height: 0; color: transparent;

  pointer-events: none;                      /* clicks go to the card */
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

/* triangle scales with the circle */
.video-thumb .video-play::before{
  content:"";
  display:block;
  inline-size: 72%;
  block-size: 192%;
  margin: auto;
  background: center/contain no-repeat
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='white'>\
  <path d='M18 14v20l18-10-18-10z'/>\
</svg>");
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.25));
}

/* gentle hover/focus polish (only on devices that support hover) */
@media (hover:hover){
  .video-card:hover .video-play{
    background: rgba(0,0,0,.42);
    /*transform: translate(-50%,-50%) scale(1.04);*/
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
  }
  .video-card:active .video-play{
    transform: translate(-50%,-50%) scale(.98);
  }
}

/* keyboard focus: show a clean focus ring around the circle */
.video-card:focus-visible .video-play{
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ultra-narrow phones: nudge a bit smaller */
@media (max-width: 360px){
  .video-thumb .video-play{
    inline-size: 34px; block-size: 34px;
  }
}

/* reduce motion respect */
@media (prefers-reduced-motion: reduce){
  .video-thumb .video-play{ transition: none; }
}



/* === 80th PDP Offer (white card) === */
.wby80-offer{ background: var(--wby80page-bg); padding: clamp(32px,8vw,120px) 0; }
.wby80-offer .offer-wrap{
  --side: max((100vw - var(--maxw))/2, var(--gutter));
  padding-left: var(--side);
  padding-right: var(--side);
}
.wby80-offer-title{
  margin:0;
  font-weight: 900;
  font-size: clamp(2.4rem, 8.2vw, 6rem);
  text-wrap: balance;
	color:var(--wby80page-bg);
	text-align:center;
}
/* Full-bleed white band (edge-to-edge) */
.wby80-offer.is-bleed{
  background: #fff;                          /* white to the viewport edges */
  padding: clamp(48px, 10vw, 128px) 0;
}

/* Remove the inner white card look */
.wby80-offer.is-bleed .offer-card{
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;                                /* keep the grid tight */
}

/* Optional subtle separators to blend with dark sections above/below */
.wby80-offer.is-bleed{
  box-shadow:
    inset 0 1px 0 rgba(0,0,0,.06),
    inset 0 -1px 0 rgba(0,0,0,.06);
}

/* Content still aligns to your gutter/max width */
.wby80-offer.is-bleed .offer-wrap{
  --side: max((100vw - var(--maxw))/2, var(--gutter));
  padding-left: var(--side);
  padding-right: var(--side);
}

/* Image can be a touch larger in the roomy band */
.wby80-offer.is-bleed .offer-img{
  height: clamp(280px, 40vw, 600px);
  object-position: left center;
}

/* Tablet/phone stack unchanged; center image on small screens */
@media (max-width: 980px){
  .wby80-offer.is-bleed .offer-img{ object-position: center; }
}


/* Big rounded white card */
.offer-card{
  display: grid;
  grid-template-columns: 1.2fr min(44ch, 34vw); /* image left, copy right */
  gap: clamp(20px, 4vw, 56px);
  align-items: center;

  background:#fff;
  border-radius: clamp(18px, 2.4vw, 36px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  padding: clamp(20px, 3vw, 40px);
}

/* Left: keep the long rifle crisp */
.offer-media{ position: relative; }
.offer-img{
  width: 100%;
  height: clamp(240px, 36vw, 520px);
  object-fit: contain;           /* full rifle visible */
  object-position: left center;  /* bias left for balance */
  display:block;
}

/* Right: copy stack */
.offer-title{
  margin: 0 0 .5rem;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color:#0e1113;
  text-wrap: balance;
}
.offer-sub{
  margin: 0 0 1rem;
  color:#2c3338;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  line-height: 1.55;
}
.offer-price{
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color:#0e1113;
}

/* CTA */
.offer-cta{ display:flex; gap:.75rem; align-items:center; flex-wrap:wrap; }
.offer-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .75rem 8.15rem;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 800; text-decoration:none;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.offer-btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.offer-btn:active{ transform:none; }
.offer-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(17,17,17,.4);
}
.offer-learn{
  color:#1f2930; text-decoration:none; font-weight:600;
}
.offer-learn:hover{ text-decoration:underline; }

.offer-status{ margin:.5rem 0 0; color:#1f2930; min-height:1em; }

/* Responsive stack */
@media (max-width: 980px){
  .offer-card{ grid-template-columns: 1fr; }
  .offer-img{ height: clamp(220px, 48vw, 440px); object-position: center; }
  .offer-copy{ text-align:center; }
  .offer-cta{ justify-content:center; }
}


/* Layout tweak: gallery + copy */
.offer-card.offer-card--gallery{
  grid-template-columns: 1.4fr min(44ch, 36vw);
  gap: clamp(18px, 3vw, 40px);
}

/* GALLERY */
.offer-gallery{ position: relative; }

.offer-slides{
  display: grid;
  grid-auto-flow: column;
  gap: clamp(8px, 1.2vw, 14px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  -webkit-overflow-scrolling: touch;
  border-radius: clamp(12px, 1.8vw, 18px);
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.06);
}

.offer-slide{
  scroll-snap-align: start;
  width: 100%;
  height: clamp(280px, 40vw, 560px);
  object-fit: contain;
  object-position: center;
  background: #fff;
  display: block;
}

/* arrows overlay */
.offer-gnav{
  position: absolute; inset: 0;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
  padding: 0 .25rem;
}
.gnav-btn{
  pointer-events: auto;
  appearance: none;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  width: 36px; height: 36px;
  font-size: 1.2rem; line-height: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  cursor: pointer;
}
.gnav-btn:hover{ background:#fff; }

/* === PDP gallery arrows: fix clicks + dark theme ====================== */

/* Put the arrow layer above the image and allow its children to click */
.offer-gnav{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .25rem;

  /* important: make the container “transparent” to pointer events,
     but let the buttons themselves receive them */
  pointer-events: none;
  z-index: 3;                 /* ensure above .offer-feature img */
}

/* Buttons are clickable and get a dark pill look on white */
.offer-gnav .gnav-btn{
  pointer-events: auto;       /* re-enable click on the buttons */
  position: relative;
  isolation: isolate;         /* keep pseudo-elements contained */

  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.35);
  background: rgba(20,22,24,.95);   /* dark pill on white */
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

/* make any decorative layers non-blocking just in case */
.offer-gnav .gnav-btn::before,
.offer-gnav .gnav-btn::after{ pointer-events: none; }

.offer-gnav .gnav-btn:hover{ filter: brightness(1.08); }
.offer-gnav .gnav-btn:active{ transform: translateY(0.5px); }

.offer-gnav .gnav-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0,0,0,.55);
}

/* disabled state (when at ends of the strip) */
.offer-gnav .gnav-btn[disabled],
.offer-gnav .gnav-btn[aria-disabled="true"]{
  opacity: .45;
  cursor: default;
  filter: none;
}

/* === PDP gallery arrows: click + dark styling (FINAL OVERRIDE) ===== */

/* overlay must accept pointer events and sit above the image */
.offer-gallery{ position: relative; }                 /* (already present) */
.offer-gnav{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .25rem;
  pointer-events: auto !important;                    /* <-- was none */
  z-index: 10;                                        /* ensure above .offer-feature */
}

/* dark pill arrows on white background */
.offer-gnav .gnav-btn{
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.35);
  background: rgba(18,20,22,.95) !important;          /* override white style */
  color: #fff !important;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.offer-gnav .gnav-btn:hover{ filter: brightness(1.08); }
.offer-gnav .gnav-btn:active{ transform: translateY(0.5px); }
.offer-gnav .gnav-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0,0,0,.55);
}
.offer-gnav .gnav-btn[disabled],
.offer-gnav .gnav-btn[aria-disabled="true"]{
  opacity: .45; cursor: default; filter: none;
}


/* thumbnails */
.offer-thumbs{
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  margin-top: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.thumb{
  appearance: none; border: 1px solid rgba(0,0,0,.12);
  background: #fff; padding: 0; border-radius: 10px; cursor: pointer;
  width: 72px; height: 56px; display: grid; place-items: center;
}
.thumb img{ max-width: 100%; max-height: 100%; object-fit: cover; display:block; }
.thumb.is-active{ outline: 2px solid var(--gold); border-color: var(--gold); }

/* ACCORDION (page-scoped, accessible) */
.offer-accordion{
  margin-top: clamp(12px, 2.4vw, 24px);
  border-top: 1px solid rgba(0,0,0,.08);
}
.acc-summary{
  list-style: none;
  cursor: pointer;
  padding: .9rem 0;
  font-weight: 800;
  color:#0e1113;
  position: relative;
}
.acc-summary::-webkit-details-marker{ display:none; }
.acc-summary::after{
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-weight: 700;
}
.offer-accordion[open] .acc-summary::after{ content: "−"; }
.acc-panel{
  padding: 0 0 .9rem 0;
  color:#2c3338;
  font-size: clamp(.96rem, 1.05vw, 1.06rem);
  line-height: 1.55;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.specs{ margin: 0; }
.specs > div{ display:flex; gap:14px; padding:.35rem 0; border-bottom:1px dashed rgba(0,0,0,.08); }
.specs > div:last-child{ border-bottom:0; }
.specs dt{ min-width: 140px; font-weight:700; color:#1b2126; }
.specs dd{ margin:0; color:#2c3338; }

/* Responsive stack */
@media (max-width: 980px){
  .offer-card.offer-card--gallery{ grid-template-columns: 1fr; }
  .offer-gallery{ order: 1; }
  .offer-copy{ order: 2; text-align:center; }
  .offer-cta{ justify-content:center; }
  .acc-summary::after{ right: 50%; transform: translate( calc(50% + 140px), -50%); } /* stays near right edge */
}
/* FEATURED image container */
.offer-feature{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: clamp(12px, 1.8vw, 18px);
  overflow: hidden;
}
.offer-feature img{
  width: 100%;
  height: clamp(280px, 40vw, 560px);
  object-fit: contain;
  object-position: center;
  display:block;
  transition: opacity .28s ease;
}
.offer-feature img.is-fading{ opacity: 0; }

/* arrows overlay (reuses your style) */
.offer-gnav{
  position:absolute; inset:0;
  display:flex; justify-content:space-between; align-items:center;
  pointer-events:none; padding: 0 .25rem;
}
.gnav-btn{
  pointer-events:auto; cursor:pointer;
  appearance:none; width:36px;height:36px; border-radius:999px;
  border:1px solid rgba(0,0,0,.12); background: rgba(255,255,255,.9);
  box-shadow:0 8px 18px rgba(0,0,0,.12); font-size:1.2rem; line-height:1;
}
.gnav-btn:hover{ background:#fff; }

/* thumbs row */
.offer-thumbs{
  display:grid; grid-auto-flow:column; gap:8px;
  margin-top:.6rem; overflow-x:auto; -webkit-overflow-scrolling:touch;
}
.thumb{
  appearance:none; border:1px solid rgba(0,0,0,.12);
  background:#fff; padding:0; border-radius:10px; cursor:pointer;
  width:72px; height:56px; display:grid; place-items:center;
}
.thumb img{ max-width:100%; max-height:100%; object-fit:cover; display:block; }
.thumb.is-active{ outline:2px solid var(--gold); border-color:var(--gold); }

@media (max-width: 980px){
  .offer-card.offer-card--gallery{ grid-template-columns:1fr; }
  .offer-copy{ text-align:center; }
  .offer-cta{ justify-content:center; }
}
/* --- Center the PDP offer section --------------------------------------- */

/* center the content frame inside the white band */
.wby80-offer .offer-wrap{
 /* max-width: 1280px;  or whatever your page max is */
  margin-inline: auto;
}

/* let grid children center themselves */
.offer-card{
  justify-items: center;       /* centers both the gallery and the copy column */
}

/* gallery block centered with a sane max width */
.offer-gallery{
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}

/* make sure the hero is visually centered */
.offer-feature img{ object-position: center; }

/* center the thumbs row */
.offer-thumbs{
  display: flex;               /* was grid */
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .6rem;
}

/* center the right column content */
.offer-copy{ text-align: center; }
.offer-price{ text-align: center; }
.offer-cta{ justify-content: center; }

/* keep a balanced two-column grid on desktop */
@media (min-width: 981px){
  .offer-card.offer-card--gallery{
    grid-template-columns: 1fr min(44ch, 36vw);
  }
}
/* --- PDP desktop fix: let grid children fill their columns --- */
.offer-card{
  justify-items: stretch;      /* was: center; causes skinny gallery */
}

/* keep a healthy two-column layout on desktop and ensure gallery fills */
@media (min-width: 981px){
  .offer-card.offer-card--gallery{
    grid-template-columns: 1.2fr min(44ch, 36vw);
    align-items: center;
  }
  .offer-gallery{
    justify-self: stretch;     /* span the full left column */
    width: 100%;
    max-width: none;
  }
  .offer-feature{ width: 100%; }
}

/* we still want centered presentation *inside* the right column */
.offer-copy{ text-align: center; }
.offer-price{ text-align: center; }
.offer-cta{ justify-content: center; }

/* thumbs can remain centered without affecting the grid sizing */
.offer-thumbs{
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .6rem;
}
/* ensure thumbs row stays above the overlay arrows */
.offer-thumbs { position: relative; z-index: 3; }

/* keep overlay arrows below the thumbs row so they never block it */
.offer-gnav { z-index: 2; }


/* Epilogue / 80-mark panel */
.wby80-epilogue{
  --ep-height: clamp(620px, 90vh, 1100px);
  --lift: clamp(24px, 10vh, 160px);
  position: relative;
  min-height: var(--ep-height);
  display: grid;
  place-items: center;
  overflow: clip;
  isolation: isolate;
}

/* Image only — no gradient; fill the whole box */
.wby80-epilogue::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://weatherby.com/wp-content/uploads/2025/08/WBY_80th_epilogue_bkg_v2-1920x1080-1.jpg") center 36% / cover no-repeat; /* << cover */
  z-index: -1;
  filter: none; /* no overlay/filters */
}

/* Copy */
.wby80-epilogue .epi-copy{
  /*max-width: 90ch;*/
  text-align: center;
  color: rgba(255,255,255,.92);
  transform: translateY(calc(-1 * var(--lift)));
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  padding-inline: clamp(16px, 4vw, 40px);
}


.wby-ep-line{
  margin: 0 0 .6rem;
  font-size: clamp(1.05rem, 4.2vw, 3rem);
  letter-spacing: .35em;
  text-transform: uppercase;
}

/* If you want the top to breathe a bit more on huge screens */
@media (min-width: 1440px){
  .wby80-epilogue{ --bg-width: clamp(1300px, 100vw, 1900px); }
}
@media (max-width: 980px){
	.wby-ep-line {
		letter-spacing:.3em;
	}
}

.videos-nav .vbtn,
.hgl-nav .hgl-btn,
.offer-gnav .gnav-btn{
  all: unset;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;

  /* glassy pill */
  background: var(--navpill-bg);
  color: #fff;
  border: 1px solid var(--navpill-border);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  backdrop-filter: blur(8px) saturate(1.2);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.videos-nav .vbtn:hover,
.hgl-nav .hgl-btn:hover,
.offer-gnav .gnav-btn:hover{
  background: var(--navpill-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}

/* keep their existing placement/spacing */
.hgl-nav{ gap: .5rem; }
.offer-gnav{ padding: 0 .25rem; } /* already there, just keeping it explicit */



/* ==========================================================================
   Weatherby 80th — Tidy Overrides & Shared Styles
   --------------------------------------------------------------------------
   Notes:
   - This block is appended at the end to avoid breaking cascade.
   - Adds a shared "glassy pill" look for nav buttons and raises modal z-index.
   - Keep this section last so it overrides earlier definitions.
   ========================================================================== */

/* ---- Shared nav-pill look (matches the video section) ------------------- */
:root{
  --navpill-bg: rgba(255,255,255,.12);
  --navpill-bg-hover: rgba(255,255,255,.20);
  --navpill-border: rgba(255,255,255,.20);
  --navpill-shadow: 0 12px 36px rgba(0,0,0,.25);
}

/* Apply to highlights arrows, gallery arrows, and video nav */
.hgl-btn,
.gnav-btn,
.videos-nav .vbtn{
  border: 1px solid var(--navpill-border) !important;
  background: var(--navpill-bg) !important;
  color: #fff !important;
  box-shadow: var(--navpill-shadow) !important;
  backdrop-filter: saturate(140%) blur(6px) !important;
  -webkit-backdrop-filter: saturate(140%) blur(6px) !important;
}
.hgl-btn:hover,
.gnav-btn:hover,
.videos-nav .vbtn:hover{
  background: var(--navpill-bg-hover) !important;
}

/* Ensure circular shape on small buttons */
.hgl-btn,
.videos-nav .vbtn{ width:42px; height:42px; border-radius:999px; }
.gnav-btn{ width:36px; height:36px; border-radius:999px; }

/* ---- Modal layering safety (prevents overlap from other sections) ------- */
.case-modal{ z-index: 100000 !important; }
.film-modal{ z-index: 100001 !important; }

/* ---- Accessibility: stronger focus ring on interactive pills  ----------- */
.hgl-btn:focus-visible,
.gnav-btn:focus-visible,
.videos-nav .vbtn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px rgba(17,17,17,.55), 0 0 0 5px rgba(255,255,255,.85);
}

/* ==== Button Transitions for the CTA ===================================== */
/* Unified, elegant easing for the primary CTAs */
.hero-cta .buy-btn,
.offer-btn{
  transition:
    transform 180ms cubic-bezier(.22,.61,.36,1),
    box-shadow 220ms cubic-bezier(.22,.61,.36,1),
    background-color 180ms cubic-bezier(.22,.61,.36,1),
    filter 180ms cubic-bezier(.22,.61,.36,1);
  will-change: transform, box-shadow, filter;
}

/* Hover: gentle lift + subtle brighten */
.hero-cta .buy-btn:hover,
.offer-btn:hover{
  transform: translateY(-1.5px);
  filter: brightness(1.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

/* Active: settle back down */
.hero-cta .buy-btn:active,
.offer-btn:active{
  transform: translateY(0);
  filter: brightness(.98);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

/* Crisp, accessible focus */
.hero-cta .buy-btn:focus-visible,
.offer-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 6px rgba(199,164,89,.55);
}


/* Stop the gallery column from sliding when specs open */
.offer-card.offer-card--gallery{
  align-items: flex-start;   /* if it's a flex container */
  align-items: start;        /* harmless duplicate; also covers CSS Grid */
}

/* Belt & suspenders: force each column to top-align even if a child had align-self set */
.offer-gallery,
.offer-copy{
  align-self: start;
}

