/* =========================
   RIGHTSIDE Landing Page
   Bold fast-food campaign style
   ========================= */

:root{
  --red: #D6001C;
  --red-deep: #B90018;
  --black: #0B0B0C;
  --white: #FFFFFF;
  --ink: #111111;
  --muted: rgba(17,17,17,.70);

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 14px 40px rgba(0,0,0,.20);
  --shadow-hard: 0 18px 60px rgba(0,0,0,.35);

  --container: 1160px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;

  --font-head: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --ease: cubic-bezier(.2,.8,.2,1);
}

/* Reset-ish */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
button{ font: inherit; }
:focus-visible{
  outline: 3px solid rgba(255,255,255,.85);
  outline-offset: 3px;
}

/* Containers */
.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}
/* =========================
   ABOUT (campaign-style like reference)
   ========================= */
.about-campaign{
  position: relative;
  overflow: hidden;
  background: #f3f3f3; /* brighter neutral (you can change) */
  color: #111;
  padding: clamp(60px, 8vh, 90px) 0 clamp(48px, 7vh, 70px);
}

/* subtle “poster grain” */
.about-campaign::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .10;
  mix-blend-mode: multiply;
}

/* line sits above the title */
.about-campaign::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top: 16px;               /* now above the title area */
  height:1px;
  background: rgba(17,17,17,.22);
  pointer-events:none;
}


.about-campaign-inner{
  position: relative;
}

/* Huge headline */
.about-campaign-title{
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .88; /* was .82 */
  font-size: clamp(64px, 9vw, 160px);
  color: rgba(17,17,17,.85);
  user-select: none;
}

/* Burger centered with strong shadow */
.about-campaign-burgerWrap{
  position: relative;
  display: grid;
  place-items: center;
  margin-top: clamp(6px, 2vh, 16px);
  margin-bottom: clamp(22px, 4vh, 36px);
  min-height: clamp(360px, 44vh, 520px); /* bigger stage */
}

.about-campaign-burger{
  width: min(1200px, 96%);   /* bigger */
  max-height: 620px;         /* bigger */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 54px 44px rgba(0,0,0,.42));
  transform: translateY(-8px) scale(1.08);
  transition: transform .35s var(--ease), filter .35s var(--ease);
  pointer-events: none;      /* not clickable */
}
.about-campaign-burgerWrap:hover .about-campaign-burger{
  transform: translateY(-12px) scale(1.14);
  filter: drop-shadow(0 70px 56px rgba(0,0,0,.50));
}
.about-campaign-burgerWrap{
  cursor: default;
}

/* Bottom row (2 text cols + button at right) */
.about-campaign-bottom{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr auto;
  gap: clamp(16px, 2.4vw, 26px);
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,17,.22);
}

.about-campaign-copy{
  margin: 0;
  font-family: var(--font-head);     /* same as title */
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 600;                  /* not as bold as title */
  font-size: 16px;                   /* 2–3 sizes bigger than current */
  line-height: 1.35;
  color: rgba(17,17,17,.72);
  max-width: 56ch;
}


/* Outlined CTA box on the right */
.about-campaign-cta{
  align-self: center;
  justify-self: end;
  text-decoration: none;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;

  padding: 18px 26px;
  border: 1px solid rgba(17,17,17,.55);
  color: rgba(17,17,17,.92);
  background: transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.about-campaign-cta:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.05);
  border-color: rgba(17,17,17,.75);
}

/* Responsive */
@media (max-width: 768px){
  .about-campaign::before{
    top: 56px;
  }

  .about-campaign-title{
    font-size: clamp(48px, 12vw, 92px);
    line-height: .9;
  }

  .about-campaign-burger{
    width: min(520px, 96%);
    transform: translateY(0);
  }

  .about-campaign-bottom{
    grid-template-columns: 1fr;
  }

  .about-campaign-cta{
    justify-self: start;
    width: fit-content;
  }
    .about-campaign-burgerWrap{
    min-height: clamp(300px, 40vh, 420px);
  }
  .about-campaign-burger{
    width: min(720px, 98%);
    max-height: 520px;
    transform: scale(1.06);
  }
}
/* =========================
   STORY SLAB (Veganburg-style)
   ========================= */
.story-slab{
  position: relative;
  overflow: hidden;
  background: #d6272e;   /* RIGHTSIDE red */
  color: #fff;
}
.story-slab .container{
  max-width: none !important;     /* stop the centered max-width look */
  margin: 0 !important;           /* remove auto-centering */
  padding-left: 10px !important;  /* tiny left padding */
  padding-right: 24px !important;
}
/* top strip with dot + label */
.story-top{
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.06);
}
.story-top-inner{
  display:flex;
  align-items:center;
  gap: 10px;
}
.story-dot{
  background: rgba(255,255,255,.75);
}
.story-label{
  font-family: var(--font-body); /* same as header/nav */
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 13px;             /* bigger */
  color: rgba(255,255,255,.85);
}
/* main slab area */
.story-main{
  padding: clamp(56px, 7vh, 86px) 0 clamp(90px, 12vh, 150px); /* more bottom space */
  min-height: 760px; /* ensures floats have room */
}
.story-grid{
  width: 100%;
  margin: 0 !important;
  justify-content: flex-start;
  padding-left: 0 !important;  
    padding-right: min(560px, 40vw) !important;   /* kill any left padding */
}
/* huge headline */
.story-title{
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92 !important;
  font-size: clamp(56px, 6.3vw, 104px) !important;

  /* Wider text block = fewer lines */
 max-width: 22ch !important;  /* key change: wider */
  padding-right: 0;   
  color: rgba(255,255,255,.92);
}
/* bottom text columns */
.story-bottom{
  margin-top: clamp(28px, 4vh, 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4.2vw, 60px);
  row-gap: 18px;
  max-width: 920px;     /* wider = less wrapping */
  padding-right: 0;     /* remove old padding-right reserve */
}
.story-title,
.story-bottom{
  margin-top: clamp(64px, 10vh, 120px) !important; /* push down */
  max-width: 1100px !important;                   /* less cramp */
  column-gap: clamp(40px, 5vw, 80px) !important;
}
.story-bottom p{
  font-size: clamp(16px, 1.15vw, 20px) !important;  /* bigger */
  line-height: 1.35 !important;
  opacity: 0.95;
}
.story-copy{
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
}

/* floating images big on right */
.story-floats{
  position: absolute;
  right: -8% !important;                /* push further right */
  top: -10px;
  width: min(1220px, 74vw) !important;   
  height: min(1020px, 92vh) !important;
  pointer-events: none;
}

.story-float{
  position: absolute;
  height: auto;
  object-fit: contain;

  /* not clickable but hoverable if pointer events enabled per-image */
  pointer-events: auto;
  cursor: default;

  filter: drop-shadow(0 50px 40px rgba(0,0,0,.35));
  transform: translateX(-70px) scale(.98);
  opacity: 0;

  transition:
    transform .55s var(--ease),
    opacity .55s var(--ease),
    filter .35s var(--ease);
}

/* image positions (tuned to look like veganburg overlap) */
.story-float-1{
  width: min(460px, 34vw);     /* smaller */
  top: 22px;                   /* closer to top */
  left: 58%;                   /* pushes it to top-right area */
  transform: translateX(-70px) rotate(10deg) scale(.98); /* rotate */
}
.story-float-1.is-revealed{
  transform: translateX(0) rotate(10deg) scale(1);
}
.story-float-2{
  width: min(720px, 52vw);
  top: 360px;                  /* lower so it doesn't clash with title */
  left: 28%;                   /* keeps it right, but not covering text too much */
  transform: translateX(-70px) rotate(-6deg) scale(.98);
}
.story-float-2.is-revealed{
  transform: translateX(0) rotate(-6deg) scale(1);
}
/* reveal state (fade in + slide from left) */
.story-float.is-revealed{
  opacity: 1;
  transform: translateX(0) scale(1);
}

.story-float:hover{
  filter: drop-shadow(0 70px 55px rgba(0,0,0,.45));
}
.story-float-1:hover{
  transform: translateX(0) rotate(10deg) scale(1.05);
}
.story-float-2:hover{
  transform: translateX(0) rotate(-6deg) scale(1.04);

}
@media (max-width: 768px){
  .story-title{
    max-width: 100%;
    font-size: clamp(42px, 9vw, 68px);
  }

  .story-bottom{
    grid-template-columns: 1fr;
    max-width: 620px;
    row-gap: 16px;
  }

  .story-floats{
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 420px;
    margin-top: 18px;
  }

  .story-float-1{
    width: 70%;
    top: 0;
    left: 28%;
  }

  .story-float-2{
    width: 90%;
    top: 210px;
    left: 0%;
  }
}


@media (max-width: 480px){
  .story-floats{ height: 320px; }
  .story-float-1{ width: 78%; left: 14%; }
  .story-float-2{ width: 92%; left: 2%; top: 150px; }
}@media (max-width: 768px){
  .story-grid{
    padding-right: 0;
  }
  .story-slab .container{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}


/* Sections */
.section{
  position: relative;
  padding: clamp(56px, 6vw, 92px) 0;
}

.section-red{ background: var(--red); color: var(--white); }
.section-black{ background: var(--black); color: var(--white); }
.section-white{ background: var(--white); color: var(--ink); }

.section-head{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.section-head--split{
  display:flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 1024px){
  .section-head--split{
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-title{
  margin:0;
  font-family: var(--font-head);
  letter-spacing: .02em;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .92;
  text-transform: uppercase;
}
.section-desc{
  margin:0;
  max-width: 64ch;
  color: currentColor;
  opacity: .92;
}

/* Checker bands (divider like the reference separators) */
.checker-band{
  height: 30px;
  width: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.98) 0 18px,
      rgba(255,255,255,.98) 18px 36px,
      rgba(0,0,0,.92) 36px 54px,
      rgba(0,0,0,.92) 54px 72px
    );
  opacity: .95;
}
.section-white .checker-band{
  background:
    repeating-linear-gradient(
      90deg,
      rgba(214,0,28,.98) 0 18px,
      rgba(214,0,28,.98) 18px 36px,
      rgba(17,17,17,.95) 36px 54px,
      rgba(17,17,17,.95) 54px 72px
    );
}
.checker-band--thin{ height: 18px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  user-select:none;
  cursor:pointer;
  white-space: nowrap;
}
.btn:active{ transform: scale(.98); }

.btn-solid{
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.btn-solid:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hard); }

.btn-ghost{
  background: transparent;
  color: currentColor;
  border-color: rgba(255,255,255,.40);
}
.section-white .btn-ghost{
  border-color: rgba(17,17,17,.25);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.70);
}
.section-white .btn-ghost:hover{
  border-color: rgba(17,17,17,.45);
}

.btn-sm{ padding: 10px 14px; font-weight: 700; }

/* Pills / tags */
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.40);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.tag-invert{
  background: rgba(0,0,0,.25);
  border-color: rgba(0,0,0,.35);
}

/* Header – brighter + logo centered */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(245,245,245,.92);   /* brighter than the dark gray */
  border-bottom: 1px solid rgba(17,17,17,.10);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

/* Center the brand perfectly */
.brand{
  justify-self: center;
}

/* Bigger logo + remove the heavy shadow so it stays crisp on light bg */
.brand-logo{
  width: 66px;   /* was 56px */
  height: 66px;
  object-fit: contain;
  filter: none;
}

/* Nav now on left and darker text */
.nav{
  display:none;
  gap: 16px;
  justify-self: start;
}
.nav-link{
  color: rgba(17,17,17,.82);
}
.nav-link::after{
  background: rgba(17,17,17,.90);
}

/* Actions on right */
.header-actions{
  display:none;
  gap: 10px;
  justify-self: end;
}

/* Desktop header layout only >=768px */
@media (min-width: 768px){
  .header-inner{
    display:grid;
    grid-template-columns: 1fr auto 1fr; /* nav | logo | actions */
    align-items:center;
    gap: 14px;
    padding: 12px 0;
  }
  .brand{ justify-self: center; }
  .nav{ justify-self: start; }
  .header-actions{ justify-self: end; }
}
.brand-logo{
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: none;
}

@media (min-width: 768px){
  .brand-logo{
    width: 66px;
    height: 66px;
  }
}

.nav-toggle{
  display:inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,.12);
  background: rgba(0,0,0,.04);
  cursor:pointer;
}
.nav-toggle span{
  width: 22px;
  height: 2px;
  background: rgba(17,17,17,.80);
  border-radius: 999px;
}
@media (min-width: 768px){
  .nav-toggle{ display:none; }
}



@media (min-width: 768px){
  .nav{ display:flex; }
  .header-actions{ display:flex; }
  .nav-toggle{ display:none; }
}

/* Mobile drawer */
.mobile-nav{
  display:none;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(17,17,17,.10);
}
.mobile-nav.is-open{ display:block; }

.mobile-nav-inner{
  padding: 12px 0 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-link{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(0,0,0,.03);
  color: rgba(17,17,17,.92);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  font-size: 13px;
}

.mobile-ctas{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.mobile-ctas .btn{
  width: 100%;
}
/* Floating CTA */
.float-cta{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-head);
  letter-spacing: .05em;
  box-shadow: var(--shadow-hard);
  border: 1px solid rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.float-cta:hover{ transform: translateY(-3px); }

@media (min-width: 768px){
  .mobile-nav{ display:none !important; }
}

/* =========================
   HERO SLIDESHOW
   ========================= */

.hero{
  padding: 0;                 /* slideshow handles spacing */
  overflow: hidden;
}

.hero-slider{
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  width: 100%;
  touch-action: pan-y;        /* allow vertical scroll, we detect horizontal swipe */
  user-select: none;
  cursor: grab;
}

.hero-slider:active{
  cursor: grabbing;
}

.hero-slide{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(70px, 10vh, 110px) 0 clamp(54px, 8vh, 86px);
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  /* black overlay but not too black */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.20) 100%
  );
}

.hero-slide.is-active{
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-center{
  position: relative;
  z-index: 2;
  text-align: center;           /* center align text */
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 980px;
}

.hero-center .kicker{
  margin: 0;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  opacity: .95;
  font-size: 12px;
}

.hero-center .headline{
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(56px, 7.2vw, 104px);
  line-height: .90;                 /* ✅ more height between stacked words */
  letter-spacing: .02em;
  text-transform: uppercase;

  /* ✅ shadow ONLY on the big headline words */
  text-shadow:
    0 10px 26px rgba(0,0,0,.35),
    0 2px 0 rgba(0,0,0,.18);
}

.hero-center .subhead{
  margin: 0;
  max-width: 62ch;
  opacity: .95;
  text-shadow: none;                /* ✅ no shadow on sub text */
}

.hero-center .hero-ctas{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

/* Mobile: keep everything centered + adjust sizing */
@media (max-width: 480px){
  .hero-slider{
    min-height: 78vh;
  }
 .hero-center .headline{
    font-size: clamp(44px, 12vw, 64px);
    line-height: .92; /* was .86 */
  }
  .hero-center .subhead{
    max-width: 34ch;
  }
}

/* Filters */
.filters{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.chip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.20);
  background: rgba(17,17,17,.04);
  cursor:pointer;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.chip:hover{ transform: translateY(-2px); }
.chip.is-active{
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Cards */
.cards-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 480px){
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  .cards-grid{ grid-template-columns: repeat(4, 1fr); }
}

.card{
  border-radius: var(--radius-md);
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  overflow:hidden;
  transform: translateY(0);
  transition: transform .20s var(--ease), box-shadow .20s var(--ease);
  display:flex;
  flex-direction: column;
  min-height: 320px;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}
.card-media{
  background: radial-gradient(circle at 30% 20%, rgba(214,0,28,.12), transparent 55%);
  padding: 18px 18px 0;
}
.card-media img{
  width: 100%;
  height: 180px;
  object-fit: contain;
  transform: scale(1);
  transition: transform .22s var(--ease);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.25));
}
.card:hover .card-media img{ transform: scale(1.05); }

.card-body{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top:auto;
}
.card-title{
  margin:0;
  font-family: var(--font-head);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 22px;
  line-height: .95;
}
.card-text{
  margin:0;
  color: rgba(17,17,17,.72);
}
.card-cta{
  margin-top:auto;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--red);
}


/* Mosaic */
.mosaic{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px){
  .mosaic{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  .mosaic{ grid-template-columns: repeat(4, 1fr); }
}

.tile{
  border-radius: var(--radius-md);
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  overflow:hidden;
  position: relative;
  min-height: 220px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .20s var(--ease), box-shadow .20s var(--ease);
}
.tile:hover{ transform: translateY(-6px); box-shadow: 0 18px 46px rgba(0,0,0,.18); }
.tile-media{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
  padding: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(214,0,28,.10), transparent 55%);
}
.tile-media img{
  width: 100%;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.22));
  transform: scale(1);
  transition: transform .22s var(--ease);
}
.tile:hover .tile-media img{ transform: scale(1.05); }

.tile-label{
  position: relative;
  padding: 14px 16px;
  font-family: var(--font-head);
  letter-spacing: .02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.05));
}

.tile-big{
  min-height: 280px;
}
@media (min-width: 1024px){
  .tile-big{ grid-column: span 2; grid-row: span 2; min-height: 100%; }
}
.tile-overlay{
  position: relative;
  z-index: 2;
  padding: 18px;
  color: var(--white);
  display:flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.80));
}
.tile-kicker{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  opacity: .95;
}
.tile-title{
  font-family: var(--font-head);
  letter-spacing: .03em;
  font-size: 44px;
  line-height: .9;
  text-transform: uppercase;
}
.tile-cta{
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Social grid */
.social-grid{
  display:grid;
  gap: 18px;
  margin-top: 18px;
}
@media (min-width: 1024px){
  .social-grid{ grid-template-columns: 1.25fr .75fr; align-items: start; }
}

.poster-wall{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px){
  .poster-wall{ grid-template-columns: repeat(3, 1fr); }
}
.poster{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.14);
  border-radius: 16px;
  overflow:hidden;
  padding: 0;
  cursor:pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .20s var(--ease), box-shadow .20s var(--ease);
}
.poster img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transform: scale(1);
  transition: transform .20s var(--ease);
}
.poster:hover{
  transform: translateY(-6px) rotate(-.6deg);
  box-shadow: 0 18px 52px rgba(0,0,0,.35);
}
.poster:hover img{ transform: scale(1.04); }

.video-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.video-head{
  padding: 18px 18px 6px;
}
.video-title{
  margin: 10px 0 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 34px;
  line-height: .92;
}
.video-sub{ margin: 8px 0 0; opacity: .92; }
.video-wrap{
  position: relative;
  aspect-ratio: 9/16;
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.video-overlay{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
  gap: 12px;
  background: radial-gradient(circle at 50% 45%, rgba(214,0,28,.10), rgba(0,0,0,.65));
  border: 0;
  color: var(--white);
  cursor:pointer;
  transition: opacity .18s var(--ease);
}
.video-overlay.is-hidden{ opacity: 0; pointer-events:none; }
.play-icon{
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: var(--white);
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.play-icon::after{
  content:"";
  position:absolute;
  left: 28px;
  top: 20px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 13px 0 13px 18px;
  border-color: transparent transparent transparent var(--black);
}
.play-text{
  font-family: var(--font-head);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 14px;
}
.video-actions{
  padding: 16px 18px 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Locations */
.locations-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 768px){
  .locations-grid{ grid-template-columns: repeat(3, 1fr); }
}
.loc-card{
  border-radius: var(--radius-md);
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  padding: 16px;
  transition: transform .20s var(--ease), box-shadow .20s var(--ease);
}
.loc-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}
.loc-title{
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 22px;
  line-height: .95;
}
.loc-meta{
  margin: 8px 0 0;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(17,17,17,.60);
}
.loc-text{
  margin: 10px 0 0;
  color: rgba(17,17,17,.75);
}
.loc-actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hiring-banner{
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(0,0,0,.04);
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}
.hiring-banner img{
  width: 100%;
  height: auto;
  display:block;
}

/* Final CTA */
.final-cta{
  display:flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.final-title{
  margin:0;
  font-family: var(--font-head);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(44px, 6vw, 92px);
  line-height: .90; /* was .82 */
}
.final-sub{
  margin:0;
  opacity: .92;
  max-width: 62ch;
}
.final-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.footer-mini{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 10px;
  opacity: .86;
}
.footer-mini a{ text-decoration: underline; text-underline-offset: 3px; }
.dot{ opacity: .6; }

/* Reveal system */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Filtering states */
.card.is-hidden{
  display:none;
}

/* Lightbox */
.lightbox[hidden]{
  display: none !important;
}

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  display:grid;
  place-items:center;
}
.lightbox-backdrop{
  position:absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.lightbox-dialog{
  position: relative;
  width: min(920px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(11,11,12,.92);
  box-shadow: 0 22px 80px rgba(0,0,0,.50);
}
.lightbox-img{
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  display:block;
  background: rgba(0,0,0,.35);
}
.lightbox-close{
  position:absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .reveal{ transition: none !important; transform:none !important; opacity: 1 !important; }
  .btn, .card, .tile, .poster, .float-cta{ transition:none !important; }
  .pimg{ transition:none !important; transform:none !important; }
}
/* ===== Rightside Menu (2 rails) ===== */
.rs-menu{
  background:#efe7dc;
  padding: 28px 10px 34px;
  position: relative;
  overflow: visible; /* IMPORTANT: don’t clip titles */
}

.rs-menu__top{
  max-width: 1400px;
  margin: 0 auto 10px;
  padding: 0 10px;
}

.rs-menu__kicker{
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.95;
}

.rs-dot{
  width:10px;height:10px;border-radius:999px;
  background:#111;
  display:inline-block;
}

.rs-menu__hint{
  margin-top: 10px;
  font-size: 12px;
  opacity: .75;
}

.rs-menu__rowTitle{
  max-width: 1400px;
  margin: 10px auto 10px;
  padding: 0 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 14px;
}

.rs-menu__gap{
  height: 26px; /* space between 2 slideshows */
}

/* Horizontal rail (scroll-snap) */
.rs-rail{
  overflow: hidden !important;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* allow normal vertical scroll on page */
}
.rs-rail:active{ cursor: grabbing; }

.rs-track{
  display: flex;
  gap: 0px; /* keep your current look; set 16px if you want spacing */
  will-change: transform;
}

/* Each card = one column */
.rs-card{
  scroll-snap-align: start;
  width: min(520px, 88vw);
  min-height: 560px;
  background: transparent;
  border-right: 1px solid rgba(0,0,0,.22);
  padding: 22px 22px 18px;
  display:flex;
  flex-direction: column;
}

/* Title (avoid “cut”) */
.rs-card__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: .92;
  word-break: keep-all;
  overflow: visible;
}

/* Meta line */
.rs-card__meta{
  margin-top: 10px;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.rs-price{
  color:#c61b1b;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.rs-tag{
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .10em;
  opacity:.75;
  white-space: nowrap;
}

.rs-rule{
  height: 1px;
  background: rgba(0,0,0,.25);
  margin: 12px 0 14px;
}

/* Image area (prevents text overlay on image) */
.rs-card__imageWrap{
  flex: 1;
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 8px;
  min-height: 320px;
}

.rs-card__imageWrap img{
  max-width: 92%;
  max-height: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.25));
  transform: translateZ(0);
}

/* Description sits at bottom, never on top of image */
.rs-card__desc{
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  opacity: .78;
  max-width: 52ch;
}

/* CTA */
.rs-menu__cta{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}
.rs-menu__btn{
  border: none;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor:pointer;
}

/* ===== Modal ===== */
.rs-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.rs-modal.is-open{ display:block; }

.rs-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

.rs-modal__dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 720px);
  max-height: 88vh;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.rs-modal__dialog img{
  width: 100%;
  height: auto;
  display:block;
}

.rs-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}

/* Responsive tweaks */
@media (max-width: 900px){
  .rs-card{ min-height: 520px; }
  .rs-card__imageWrap{ min-height: 280px; }
  .rs-card__imageWrap img{ max-height: 300px; }
  .rs-price, .rs-tag{ font-size: 10px; }
}
/* ================================
   Veganburg-style stacking section
   (NO extra JS)
================================ */
.rs-accolades{
  /* Veganburg-ish dark brown/black */
  background:
    radial-gradient(1200px 700px at 60% 20%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(900px 600px at 10% 80%, rgba(255,255,255,.04), transparent 55%),
    #0b0a09;
  color: #f3efe7;
}

.rs-accolades__top{
  border-top: 1px solid rgba(243,239,231,.18);
  border-bottom: 1px solid rgba(243,239,231,.18);
  padding: 18px 0;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.rs-accolades__topline{
  display:flex;
  align-items:center;
  gap: 12px;
  font-family: var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .95;
}

.rs-accolades__dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f3efe7;
  opacity: .9;
}

.rs-accolades__grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(20px, 5vw, 60px);
  align-items:start;
}

/* Left meta column */
.rs-accolades__meta{
  position: sticky;
  top: 120px;
  align-self: start;
  display:flex;
  flex-direction: column;
  gap: 42px;
}

.rs-accolades__metaItem .k{
  font-family: var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

.rs-accolades__metaItem .v{
  margin-top: 8px;
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .72;
}

/* Right stacking */
.rs-accolades__stack{
  position: relative;
}

/* Each item provides scroll runway */
.rs-accolades__item{
  min-height: 92vh;
  position: relative;
}

/* The “card” is sticky */
.rs-accolades__card{
  position: sticky;
  top: 150px;
  padding: 8px 0 26px;
}

/* Big veganburg-like type */
.rs-accolades__quote{
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95; /* was .88 */
  font-size: clamp(44px, 6.3vw, 108px);
  color: rgba(243,239,231,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.3);
}

/* small supporting line */
.rs-accolades__sub{
  margin: 18px 0 0;
  max-width: 70ch;
  font-size: 14px;
  letter-spacing: .02em;
  opacity: .75;
}

/* Make earlier quotes look “behind” when you scroll */
.rs-accolades__item:not(:last-child) .rs-accolades__quote{
  /* slight dim so stacking feels real */
  opacity: .85;
}

/* Responsive */
@media (max-width: 980px){
  .rs-accolades__grid{
    grid-template-columns: 1fr;
  }
  .rs-accolades__meta{
    position: relative;
    top: auto;
    gap: 18px;
    padding-bottom: 10px;
  }
  .rs-accolades__metaItem{
    display:grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: baseline;
  }
  .rs-accolades__metaItem .v{
    margin-top: 0;
  }
  .rs-accolades__card{
    top: 110px;
  }
  .rs-accolades__item{
    min-height: 80vh;
  }
}

@media (max-width: 520px){
  .rs-accolades__card{
    top: 96px;
  }
  .rs-accolades__item{
    min-height: 74vh;
  }
  .rs-accolades__sub{
    font-size: 13px;
  }
}
/* =========================
   CAREERS (inside FIND RIGHTSIDE) — unified background + black typography
   ========================= */

.careers-slab{
  margin-top: 26px;                 /* small separation from outlet cards */
  padding-top: clamp(18px, 2.2vw, 28px);
  padding-bottom: clamp(18px, 2.2vw, 28px);

  /* IMPORTANT: no separate background/borders now */
  background: transparent;
  border: 0;
}

.careers-kicker{
  margin: 0 0 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(17,17,17,.70);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.careers-kicker::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,17,17,.55);
}

.careers-top{
  display: grid;
  gap: clamp(18px, 4vw, 42px);
  align-items: end;
}

@media (min-width: 1024px){
  .careers-top{
    grid-template-columns: 1.1fr .9fr;
  }
}

/* BLACK headline (not green) */
.careers-title{
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95; /* was .88 */
  font-size: clamp(44px, 6.6vw, 112px);
  color: #111;
}


.careers-media{
  margin: 0;
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.45); /* soft contrast */
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  overflow: hidden;
}

.careers-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 640px){
  .careers-media{ aspect-ratio: 4 / 5; }
}
@media (max-width: 639px){
  .careers-media{ aspect-ratio: 16 / 10; }
}

.careers-bottom{
  margin-top: clamp(18px, 3vw, 30px);
  display: grid;
  gap: 18px;
  align-items: center;
}

@media (min-width: 1024px){
  .careers-bottom{
    grid-template-columns: 1fr 1fr auto;
    gap: clamp(18px, 4vw, 54px);
  }
}

.careers-copy{
  margin: 0;
  max-width: 58ch;
  color: rgba(17,17,17,.72); /* black-ish */
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 14px;
}

/* BLACK button */
.careers-cta{
  justify-self: start;
  padding: 18px 28px;
  border: 1.5px solid rgba(17,17,17,.55);
  color: #111;
  background: transparent;
  text-decoration: none;

  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;

  transition: transform .18s var(--ease), background .18s var(--ease);
}

@media (min-width: 1024px){
  .careers-cta{ justify-self: end; }
}

.careers-cta:hover{
  transform: translateY(-2px);
  background: rgba(17,17,17,.06);
}


/* =========================
   HYPE WALL (FULL WIDTH) + COVERFLOW
   ========================= */

.social-bleed{
  width: 100%;
  padding: clamp(18px, 3vw, 36px) 0 clamp(40px, 5vw, 80px);
}

.hype-carousel-shell{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  background: #fff;
  border-radius: 34px;
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.hype-carousel-top{
  margin-bottom: 16px;
}

.hype-kicker{
  display: inline-flex;
  font-size: 14px;        /* bigger */
  letter-spacing: .22em;
  font-weight: 900;
  color: #D6001C;
  margin-bottom: 10px;

  opacity: 0;
  transform: translateY(10px);
  animation: hypeKickerIn 900ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: 140ms;
}

@keyframes hypeKickerIn{
  to { opacity: 1; transform: translateY(0); }
}


.hype-carousel-title{
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.02;
  margin: 0 0 8px;
}

.hype-carousel-sub{
  margin: 0;
  max-width: 62ch;
  opacity: .75;
}

.coverflow-viewport{
  position: relative;
  overflow: hidden;
  padding: 18px 10px 8px;
}

.coverflow-track{
  position: relative;
  height: clamp(260px, 32vw, 420px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  user-select: none;
  touch-action: pan-y;
}

/* --- COVERFLOW (smooth drag + snap) --- */

.coverflow-track{
  position: relative;
  height: clamp(260px, 32vw, 420px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  user-select: none;
  touch-action: pan-y;
  --drag-x: 0px;
}

.coverflow-track.is-dragging .cf-card{
  transition: none !important;
}

.cf-card{
  position: absolute;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: grab;

  /* keep it big like reference */
  width: clamp(160px, 18vw, 270px);
  aspect-ratio: 3 / 4;

  /* SHARP edges (no radius) */
  border-radius: 0;
  overflow: hidden;

  box-shadow: 0 18px 40px rgba(0,0,0,.18);

  /* unified transform using vars */
  transform:
    translateX(calc(var(--base-x, 0px) + var(--drag-x, 0px)))
    scale(var(--scale, 1))
    rotateY(var(--ry, 0deg));
  opacity: var(--op, 1);
  filter: var(--fx, none);
  z-index: var(--z, 1);

  /* smoother */
  transition:
    transform 650ms cubic-bezier(.16, 1, .3, 1),
    opacity 650ms cubic-bezier(.16, 1, .3, 1),
    filter 650ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform, opacity;
}

.cf-card:active{ cursor: grabbing; }

/* ORIGINAL image size (no crop) */
.cf-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;       /* was cover */
  background: transparent;   /* keep poster clean */
  display: block;
  border-radius: 0;          /* sharp */
}

/* states (set only variables) */
.cf-card.is-active{
  --base-x: 0px;
  --scale: 1.12;
  --ry: 0deg;
  --z: 5;
  --op: 1;
  --fx: none;
}

.cf-card.is-left-1{
  --base-x: -280px;
  --scale: .92;
  --ry: 18deg;
  --z: 4;
  --op: .55;
  --fx: saturate(.92);
}

.cf-card.is-right-1{
  --base-x: 280px;
  --scale: .92;
  --ry: -18deg;
  --z: 4;
  --op: .55;
  --fx: saturate(.92);
}

.cf-card.is-left-2{
  --base-x: -520px;
  --scale: .78;
  --ry: 26deg;
  --z: 3;
  --op: .28;
  --fx: saturate(.85);
}

.cf-card.is-right-2{
  --base-x: 520px;
  --scale: .78;
  --ry: -26deg;
  --z: 3;
  --op: .28;
  --fx: saturate(.85);
}




.coverflow-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  padding-top: 14px;
}

.coverflow-dots button{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}

.coverflow-dots button.is-active{
  width: 22px;
  background: rgba(0,0,0,.55);
}

/* tablet */
@media (max-width: 900px){
  .cf-card.is-left-1{ transform: translateX(-220px) scale(.92) rotateY(14deg); }
  .cf-card.is-right-1{ transform: translateX(220px) scale(.92) rotateY(-14deg); }
  .cf-card.is-left-2{ transform: translateX(-400px) scale(.78) rotateY(20deg); }
  .cf-card.is-right-2{ transform: translateX(400px) scale(.78) rotateY(-20deg); }
}

/* mobile */
@media (max-width: 520px){
  .hype-carousel-shell{ width: calc(100% - 26px); border-radius: 26px; }
  .cf-card.is-left-1, .cf-card.is-right-1{
    transform: translateX(0) scale(.88);
    opacity: .22;
    z-index: 2;
  }
  .cf-card.is-left-2, .cf-card.is-right-2{
    transform: translateX(0) scale(.80);
    opacity: 0;
  }
}
/* ================================
   HYPE WALL — final polish
================================ */

/* Center the whole carousel header area */
.hype-carousel-top{
  text-align: center;
  margin-bottom: 18px;
}

/* Bigger + centered kicker */
.hype-kicker{
  font-size: 16px;           /* bigger */
  letter-spacing: .22em;
  font-weight: 900;
  margin: 0 auto 10px;
}

/* extra description text */
.hype-carousel-more{
  margin-top: 10px;
  opacity: .75;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Remove “white space on top” look:
   Most of your posters have different internal padding/aspect.
   This forces the image to fill the card (cropping edges slightly instead of showing blank space). */
.cf-card{
  border-radius: 0 !important;
  overflow: hidden;          /* needed for clean crop */
  background: transparent;
}

/* IMPORTANT: fill card (no letterbox/blank areas) */


/* Prevent stuck dragging (browser selection/drag) */
.coverflow-viewport,
.coverflow-track,
.cf-card,
.cf-card *{
  user-select: none;
  -webkit-user-select: none;
}
/* =========================
   HYPE WALL OVERRIDES (Final)
   ========================= */

/* Wallpaper background + soft black overlay */
.social-bleed{
  position: relative;
  width: 100%;
  padding: clamp(28px, 4vw, 70px) 0 clamp(40px, 5vw, 90px);
  background: url("img/herowall.jpg") center/cover no-repeat;
  overflow: hidden;
}
.social-bleed::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.22);  /* ✅ reduced opacity overlay */
  pointer-events:none;
}
.social-bleed > *{
  position: relative;
  z-index: 1;
}

/* Remove the white “box” look entirely */
.hype-carousel-shell{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Make carousel area full width */
.coverflow-viewport{
  width: 100%;
  margin: 0;
  padding: 22px 0 10px;
  overflow: hidden;
}

/* Give the track more height so cards can be larger */
.coverflow-track{
  height: clamp(320px, 38vw, 520px);
}

/* Cards: slightly rounded + larger */
.cf-card{
  width: clamp(190px, 22vw, 320px);  /* ✅ enlarge */
  aspect-ratio: 3 / 4;
  border-radius: 2px;                /* ✅ tiny radius */
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

/* Fill the card to avoid “white space top” from posters */
.cf-card img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;                  /* ✅ removes top gaps */
  object-position: center;
  border-radius: 2px;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
/* HYPE WALL — center all texts */
.social-bleed{
  text-align: center;
}

.social-bleed .hype-carousel-top,
.social-bleed .video-head,
.social-bleed .video-title,
.social-bleed .video-sub,
.social-bleed .hype-carousel-sub,
.social-bleed .hype-carousel-more{
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* If you still have the old 2-column grid here, force it to one centered column */
.social-bleed .social-grid{
  grid-template-columns: 1fr !important;
  justify-items: center !important;
}

/* Make the left paragraph not stick to a narrow column */
.social-bleed .video-card{
  width: min(980px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Center the “Poster drops…” / intro text if it’s using this class */
.social-bleed .video-sub{
  max-width: 70ch;
}
/* =========================================
   PATCH — HYPE WALL alignment + dark grey bands
   Paste at END of styles.css
========================================= */

/* 1) Make the WHOLE Hype Wall section NOT red (top band + bottom band) */
#social.section-red{
  background: #2e2f33 !important; /* dark grey (not too dark) */
  color: #fff;
}

/* 2) Center the top header content (THE HYPE WALL + desc + buttons) */
#social .section-head{
  text-align: center !important;
  align-items: center !important;
}

#social .section-head--split{
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Make both columns centered */
#social .section-head--split > div{
  text-align: center !important;
}

/* Center the description width */
#social .section-desc{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Center the CTA buttons row */
#social .mini-ctas{
  justify-content: center !important;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* On desktop, keep it stacked + centered (prevents left-leaning header) */
@media (min-width: 1024px){
  #social .section-head--split{
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* 3) Ensure the INNER wallpaper texts are centered too (safety override) */
.social-bleed.hype-wall .hype-carousel-top{
  text-align: center !important;
}
.social-bleed.hype-wall .hype-carousel-sub,
.social-bleed.hype-wall .hype-carousel-more{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================================
   PATCH — HERO headline spacing + shadow
========================================= */
.hero-center .headline{
  line-height: .92 !important; /* more vertical breathing room */
  text-shadow: 0 24px 70px rgba(0,0,0,.55) !important; /* shadow ONLY on big words */
}


/* =========================
   SHAZWAN AMENDMENTS
   Fun font polish + transparent header + full desktop hero
   ========================= */

/* Make the overall type feel rounder/friendlier while keeping the hero's bold poster energy */
body{
  font-family: var(--font-body);
}

.nav-link,
.mobile-link,
.btn,
.float-cta,
.rs-menu__btn,
.about-campaign-cta,
.careers-cta,
.rs-card__title,
.rs-menu__rowTitle,
.rs-menu__kicker,
.hype-kicker,
.loc-title{
  font-family: var(--font-head);
  letter-spacing: .045em;
}

/* Transparent header at the top; white header after scroll */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background .28s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease),
    backdrop-filter .28s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open{
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(17,17,17,.10);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Keep nav readable on transparent hero */
.site-header:not(.is-scrolled):not(.is-open) .nav-link{
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-link::after{
  background: rgba(255,255,255,.92);
}

.site-header:not(.is-scrolled):not(.is-open) .header-actions .btn-solid{
  background: rgba(255,255,255,.88);
  color: var(--black);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle span{
  background: rgba(255,255,255,.92);
}

/* Desktop hero fills the viewport behind the transparent header */
@media (min-width: 1024px){
  .hero-slider{
    min-height: 100vh;
  }

  .hero-slide{
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero-center .headline{
    font-size: clamp(76px, 7.8vw, 132px);
    line-height: .88;
  }

  .hero-center .subhead{
    font-size: clamp(17px, 1.1vw, 21px);
    max-width: 58ch;
  }
}

/* Slightly stronger playful copy treatment */
.hero-center .kicker,
.section-desc,
.rs-card__desc,
.about-campaign-copy,
.story-copy,
.rs-accolades__sub,
.careers-copy,
.final-sub{
  font-weight: 800;
}

/* Mobile drawer should still have a solid background when opened */
.mobile-nav{
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
}
