:root{
  --ink:#11110f;
  --paper:#f3f0e8;
  --paper-2:#ebe6da;
  --muted:#8f8b82;
  --gold:#d2a95b;
  --line:rgba(255,255,255,.14);
  --max:1500px;
  --shadow:0 30px 90px rgba(0,0,0,.28);
}


*{
  box-sizing:border-box;
}


html{
  scroll-behavior:smooth;
  background:var(--paper);
}


body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'DM Sans',sans-serif;
  -webkit-font-smoothing:antialiased;
}


body.modal-open{
  overflow:hidden;
}


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


a{
  color:inherit;
  text-decoration:none;
}


button{
  font:inherit;
}


::selection{
  background:var(--gold);
  color:#111;
}



/* ======================================
   HEADER
   ====================================== */

.site-header{
  position:fixed;
  z-index:50;
  top:0;
  left:0;
  right:0;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:20px 4vw 34px;

  color:#fff;

  background:
    linear-gradient(
      180deg,
      rgba(8,8,7,.72) 0%,
      rgba(8,8,7,.28) 58%,
      transparent 100%
    );
}


.brand{
  display:flex;
  align-items:center;
  gap:13px;
}


.brand span{
  font-family:Manrope,sans-serif;
  font-weight:800;
  font-size:1.2rem;
  letter-spacing:-.06em;

  border:1px solid currentColor;
  padding:5px 7px 4px;
}


.brand small{
  font-weight:600;
  letter-spacing:.045em;
  font-size:.82rem;
}


.site-nav{
  display:flex;
  align-items:center;
  gap:28px;

  font-size:.88rem;
  font-weight:500;
}


.site-nav a{
  position:relative;
  opacity:.9;
  transition:opacity .25s ease;
}


.site-nav a:hover{
  opacity:1;
}


.site-nav a:not(.nav-cta)::after{
  content:"";

  position:absolute;
  left:0;
  right:100%;
  bottom:-5px;

  height:1px;
  background:currentColor;

  transition:right .25s ease;
}


.site-nav a:not(.nav-cta):hover::after{
  right:0;
}


.nav-cta{
  border:1px solid currentColor;
  padding:10px 15px;
}


.menu-toggle{
  display:none;
  background:none;
  border:0;
  color:inherit;
  cursor:pointer;
}



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

.hero{
  position:relative;

  min-height:100svh;

  display:flex;
  align-items:flex-end;

  padding:0 6vw 9vh;

  overflow:hidden;

  color:#fff;
  background:#090908;
}


.hero-media{
  position:absolute;
  inset:0;

  background:
    url('images/CAR.jpg')
    center center / cover
    no-repeat;

  transform:scale(1.035);

  animation:heroDrift 14s ease-out both;
}


@keyframes heroDrift{

  from{
    transform:scale(1.09);
  }

  to{
    transform:scale(1.035);
  }

}


.hero-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.84) 0%,
      rgba(0,0,0,.54) 40%,
      rgba(0,0,0,.13) 76%
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,.68),
      transparent 58%
    );
}


.hero-copy{
  position:relative;
  z-index:2;

  width:min(820px,92%);
}


.eyebrow{
  margin:0 0 12px;

  text-transform:uppercase;
  letter-spacing:.2em;

  font-size:.72rem;
  font-weight:600;
}


.hero h1,
.section h2{
  font-family:Manrope,sans-serif;

  letter-spacing:-.055em;
  line-height:.94;

  margin:.2em 0;
}


.hero h1{
  font-size:clamp(3.5rem,6.4vw,7rem);
  max-width:800px;
}


.hero h1 em{
  color:var(--gold);
  font-style:normal;
}


.lede{
  max-width:590px;

  margin-top:28px;

  font-size:clamp(1.08rem,1.7vw,1.45rem);
  line-height:1.55;

  color:#eee9df;
}


.hero-actions{
  display:flex;
  gap:12px;

  margin-top:34px;
}


.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:54px;

  padding:0 24px;

  border:1px solid rgba(255,255,255,.45);

  font-weight:600;
  font-size:.92rem;

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}


.button:hover{
  transform:translateY(-2px);
}


.button.primary{
  background:var(--gold);
  border-color:var(--gold);
  color:#111;
}


.button.primary:hover{
  background:#dfbb72;
  border-color:#dfbb72;
}


.button.ghost{
  color:#fff;

  background:rgba(255,255,255,.03);

  backdrop-filter:blur(8px);
}


.button.ghost:hover{
  background:rgba(255,255,255,.09);
}


.scroll-cue{
  position:absolute;
  z-index:2;

  right:4vw;
  bottom:4vh;

  font-size:.68rem;

  text-transform:uppercase;
  letter-spacing:.2em;

  color:rgba(255,255,255,.7);
}



/* ======================================
   GLOBAL SECTION STYLES
   ====================================== */

.section{
  padding:120px 6vw;
}


.dark{
  background:#11110f;
  color:#f6f3eb;
}


.section-label{
  margin-bottom:44px;

  font-size:.72rem;

  text-transform:uppercase;
  letter-spacing:.2em;

  color:var(--muted);
}


.section h2{
  font-size:clamp(2.8rem,5vw,5.8rem);
}


.section-heading{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:7vw;

  align-items:end;

  max-width:var(--max);

  margin:0 auto 58px;
}


.section-heading h2{
  margin-bottom:0;
}


.intro-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:8vw;

  max-width:var(--max);

  margin:auto;
}


.intro-grid p,
.section-heading>p,
.tv-copy>p,
.television-intro p,
.about-columns p{
  font-size:1.08rem;
  line-height:1.78;

  color:#5c5953;
}


.dark .section-heading>p,
.dark .tv-copy>p,
.dark .television-intro p,
.dark .about-columns p{
  color:#b9b5ab;
}



/* ======================================
   REEL
   ====================================== */

.reel{
  position:relative;

  padding:
    88px 4vw
    120px;

  overflow:hidden;
}


.reel::before{
  content:"";

  position:absolute;

  top:0;
  left:4vw;
  right:4vw;

  height:1px;

  background:rgba(255,255,255,.12);
}


.reel .section-heading{
  grid-template-columns:1fr .55fr;
  gap:6vw;

  margin-bottom:42px;
}


.reel .section-heading h2{
  max-width:780px;

  font-size:clamp(3rem,5.8vw,6.4rem);
}


.reel .section-heading>p{
  max-width:430px;
  justify-self:end;
}


.video-frame{
  width:100%;
  max-width:1600px;

  margin:0 auto;

  aspect-ratio:16/9;

  background:#000;

  box-shadow:
    0 40px 110px
    rgba(0,0,0,.44);
}


.video-frame iframe{
  width:100%;
  height:100%;

  border:0;
}



/* ======================================
   SELECTED WORK
   ====================================== */

.work{
  padding-top:135px;
  background:var(--paper);
}


.featured-work-grid{
  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:14px;

  max-width:var(--max);

  margin:auto;
}


.project-card{
  position:relative;

  min-height:clamp(
    430px,
    38vw,
    620px
  );

  overflow:hidden;

  cursor:pointer;

  background:#222;

  isolation:isolate;
}


.project-card::after{
  content:"";

  position:absolute;
  inset:0;

  border:1px solid
    rgba(255,255,255,.08);

  z-index:3;

  pointer-events:none;
}


.project-card img{
  transition:
    transform .8s
    cubic-bezier(.2,.7,.2,1),
    filter .5s ease;
}


.project-card:hover img{
  transform:scale(1.035);
  filter:brightness(.82);
}


.project-card:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}


.card-shade{
  position:absolute;
  inset:0;

  z-index:1;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.04) 0%,
      rgba(0,0,0,.04) 42%,
      rgba(0,0,0,.82) 100%
    );
}


.card-copy{
  position:absolute;
  z-index:2;

  left:0;
  right:0;
  bottom:0;

  padding:32px;

  color:#fff;
}


.card-copy>span:first-child{
  font-size:.68rem;

  text-transform:uppercase;
  letter-spacing:.18em;

  color:#f0d59e;
}


.card-copy h3{
  margin:9px 0 9px;

  font:
    700 clamp(2rem,3vw,3.4rem)/.98
    Manrope,sans-serif;

  letter-spacing:-.045em;
}


.card-copy p{
  max-width:460px;

  margin:0;

  font-size:.96rem;
  line-height:1.55;

  color:
    rgba(255,255,255,.82);
}


.watch-label{
  display:inline-block;

  margin-top:17px;

  font-size:.7rem !important;

  text-transform:uppercase;
  letter-spacing:.16em !important;

  color:#f0d59e !important;
}



/* PLAY BUTTON */

.play-icon{
  position:absolute;
  z-index:4;

  left:50%;
  top:50%;

  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:
    1px solid
    rgba(255,255,255,.68);

  border-radius:50%;

  background:
    rgba(10,10,9,.25);

  backdrop-filter:blur(7px);

  transform:
    translate(-50%,-50%);

  opacity:0;

  transition:
    opacity .3s ease,
    transform .3s ease,
    background .3s ease;
}


.play-icon span{
  width:0;
  height:0;

  border-top:
    8px solid transparent;

  border-bottom:
    8px solid transparent;

  border-left:
    13px solid #fff;

  margin-left:4px;
}


.video-project:hover .play-icon{
  opacity:1;

  transform:
    translate(-50%,-50%)
    scale(1.05);

  background:
    rgba(10,10,9,.46);
}



/* ======================================
   TELEVISION
   ====================================== */

.television{
  padding-top:135px;
  padding-bottom:135px;
}


.television-copy-wide{
  max-width:1250px;
  margin:auto;
}


.television-copy-wide h2{
  max-width:900px;
}


.television-intro{
  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:6vw;

  max-width:1050px;

  margin-top:32px;
}


.credit-cloud{
  display:flex;
  flex-wrap:wrap;

  gap:10px;

  margin-top:38px;
}


.credit-cloud span{
  padding:10px 13px;

  border:1px solid var(--line);

  font-size:.82rem;

  color:#d6d1c7;

  transition:
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}


.credit-cloud span:hover{
  color:#fff;

  border-color:
    rgba(255,255,255,.35);

  transform:translateY(-1px);
}



/* ======================================
   WHY CAF
   ====================================== */

.intro{
  position:relative;

  padding-top:135px;
  padding-bottom:135px;
}


.intro::before{
  content:"";

  position:absolute;

  top:0;
  left:6vw;
  right:6vw;

  height:1px;

  background:
    rgba(17,17,15,.16);
}



/* ======================================
   BEHIND THE STORY
   ====================================== */

.story{
  background:var(--paper-2);
}


.photo-mosaic{
  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  grid-auto-rows:300px;

  gap:10px;

  max-width:var(--max);

  margin:auto;
}


.photo-mosaic figure{
  position:relative;

  margin:0;

  overflow:hidden;

  background:#d0cabf;
}


.photo-mosaic .wide{
  grid-column:span 2;
}


.photo-mosaic .tall{
  grid-row:span 2;
}


.photo-mosaic img{
  transition:
    transform .8s
    cubic-bezier(.2,.7,.2,1);
}


.photo-mosaic figure:hover img{
  transform:scale(1.035);
}


.photo-mosaic figcaption{
  position:absolute;

  left:0;
  right:0;
  bottom:0;

  padding:
    48px 18px 16px;

  color:#fff;

  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,.72)
    );

  font-size:.82rem;
}



/* ======================================
   ABOUT
   ====================================== */

.about{
  padding-top:0;
  padding-bottom:0;
}


.about-panel{
  padding:8vw 7vw;

  background:var(--gold);
}


.about-panel .eyebrow{
  color:rgba(17,17,15,.62);
}


.about-columns{
  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:6vw;

  margin-top:28px;
}


.about-columns p{
  color:#27231d;
}



/* ======================================
   CONTACT
   ====================================== */

.contact{
  padding-top:150px;
  padding-bottom:150px;

  text-align:center;
}


.contact h2{
  max-width:1000px;

  margin:.3em auto;
}


.contact-copy{
  font-size:1.08rem;
  line-height:1.7;

  color:#b9b5ab;
}


.large-button{
  min-width:190px;

  margin-top:28px;

  font-size:1rem;
}



/* ======================================
   FOOTER
   ====================================== */

footer{
  display:flex;

  justify-content:space-between;

  gap:30px;

  padding:30px 6vw;

  background:#090908;

  color:#858179;

  font-size:.76rem;
}



/* ======================================
   VIDEO MODAL
   ====================================== */

.modal{
  position:fixed;

  z-index:100;

  inset:0;

  display:none;

  align-items:center;
  justify-content:center;

  padding:5vw;
}


.modal.open{
  display:flex;
}


.modal-backdrop{
  position:absolute;

  inset:0;

  background:
    rgba(0,0,0,.94);

  backdrop-filter:blur(8px);

  cursor:pointer;
}


.modal-shell{
  position:relative;

  z-index:2;

  width:min(
    1400px,
    94vw
  );

  color:#fff;
}


.modal-eyebrow{
  margin:0 0 5px;

  font-size:.68rem;

  text-transform:uppercase;
  letter-spacing:.18em;

  color:var(--gold);
}


.modal-title{
  margin:
    0 0 22px;

  padding-right:110px;

  font:
    700 clamp(
      1.6rem,
      3vw,
      2.8rem
    )/1
    Manrope,sans-serif;

  letter-spacing:-.04em;
}


.modal-video-frame{
  position:relative;

  width:100%;

  aspect-ratio:16/9;

  background:#000;

  box-shadow:
    0 35px 100px
    rgba(0,0,0,.6);
}


.modal-youtube{
  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  border:0;
}


.modal-close{
  position:absolute;

  right:0;
  top:0;

  padding:
    8px 0 8px 20px;

  border:0;

  background:none;

  color:#fff;

  cursor:pointer;

  font-size:.78rem;

  text-transform:uppercase;
  letter-spacing:.13em;

  opacity:.75;
}


.modal-close:hover{
  opacity:1;
}



/* ======================================
   ENTRANCE ANIMATION
   ====================================== */

.reveal{
  animation:
    rise .9s ease both;
}


@keyframes rise{

  from{
    opacity:0;
    transform:
      translateY(22px);
  }

  to{
    opacity:1;
    transform:none;
  }

}



/* ======================================
   TABLET / MOBILE
   ====================================== */

@media(max-width:820px){


  .site-header{
    padding:
      18px 20px
      28px;
  }


  .brand small{
    display:none;
  }


  .menu-toggle{
    display:block;
  }


  .site-nav{
    position:absolute;

    top:62px;
    left:15px;
    right:15px;

    display:none;

    flex-direction:column;
    align-items:flex-start;

    padding:28px;

    gap:20px;

    background:#111;

    box-shadow:
      0 20px 40px
      rgba(0,0,0,.25);
  }


  .site-nav.open{
    display:flex;
  }


  .nav-cta{
    border:0;

    border-bottom:
      1px solid
      currentColor;

    padding:
      0 0 4px;
  }


  .hero{
    padding:
      0 22px
      11vh;
  }


  .hero-media{
    background-position:
      58% center;
  }


  .hero-copy{
    width:100%;
  }


  .hero h1{
    max-width:100%;

    font-size:
      clamp(
        3.2rem,
        14vw,
        5rem
      );
  }


  .lede{
    font-size:1.02rem;
  }


  .hero-actions{
    flex-direction:column;

    align-items:flex-start;
  }


  .hero-actions .button{
    width:100%;
    max-width:260px;
  }


  .scroll-cue{
    display:none;
  }


  .section{
    padding:
      82px 22px;
  }


  .section-heading,
  .intro-grid,
  .television-intro,
  .about-columns{
    grid-template-columns:1fr;
  }


  .section-heading{
    gap:20px;

    margin-bottom:40px;
  }


  .reel{
    padding:
      72px 22px
      82px;
  }


  .reel .section-heading{
    grid-template-columns:1fr;

    gap:14px;

    margin-bottom:30px;
  }


  .reel .section-heading>p{
    max-width:100%;

    justify-self:start;
  }


  .work{
    padding-top:90px;
  }


  .featured-work-grid{
    grid-template-columns:1fr;
  }


  .featured-work-grid
  .project-card{
    min-height:520px;
  }


  .card-copy{
    padding:24px;
  }


  .play-icon{
    width:62px;
    height:62px;

    opacity:.88;
  }


  .television{
    padding-top:90px;
    padding-bottom:90px;
  }


  .intro{
    padding-top:85px;
    padding-bottom:85px;
  }


  .photo-mosaic{
    grid-template-columns:
      1fr 1fr;

    grid-auto-rows:220px;
  }


  .photo-mosaic .wide{
    grid-column:span 2;
  }


  .photo-mosaic .tall{
    grid-row:span 1;
  }


  .about{
    padding:0;
  }


  .about-panel{
    padding:
      85px 22px;
  }


  .contact{
    padding-top:110px;
    padding-bottom:110px;
  }


  footer{
    flex-direction:column;
  }


  .modal{
    padding:22px;
  }


  .modal-shell{
    width:100%;
  }


  .modal-title{
    padding-right:80px;
  }

}



/* ======================================
   SMALL MOBILE
   ====================================== */

@media(max-width:560px){


  .hero h1{
    font-size:
      clamp(
        3rem,
        17vw,
        4.4rem
      );
  }


  .section h2{
    font-size:
      clamp(
        2.6rem,
        12vw,
        4rem
      );
  }


  .featured-work-grid
  .project-card{
    min-height:460px;
  }


  .photo-mosaic{
    grid-template-columns:1fr;

    grid-auto-rows:320px;
  }


  .photo-mosaic .wide{
    grid-column:span 1;
  }


  .photo-mosaic .tall{
    grid-row:span 1;
  }


  .credit-cloud span{
    font-size:.78rem;
  }

}

/* ======================================
   CAF — TELEVISION EXPERIENCE
   ====================================== */

.television{
  position:relative;
  padding:140px 6vw;
  overflow:hidden;
  background:#0b0b0a;
}

.television::before{
  content:"TELEVISION";
  position:absolute;
  top:45px;
  right:-20px;

  font:800 clamp(7rem,16vw,16rem)/.8 Manrope,sans-serif;
  letter-spacing:-.08em;

  color:rgba(255,255,255,.018);

  pointer-events:none;
  white-space:nowrap;
}

.tv-header{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:1.25fr .65fr;
  gap:8vw;
  align-items:end;

  max-width:var(--max);
  margin:0 auto 72px;
}

.tv-header h2{
  max-width:950px;
  margin-bottom:0;
}

.tv-header h2 em{
  color:var(--gold);
  font-style:normal;
}

.tv-intro{
  max-width:480px;
  justify-self:end;
}

.tv-intro p{
  margin:0;

  color:#b9b5ab;
  font-size:1.08rem;
  line-height:1.7;
}

.tv-intro .tv-role{
  margin-top:22px;

  color:#77736b;

  font-size:.7rem;
  line-height:1.6;

  text-transform:uppercase;
  letter-spacing:.14em;
}


/* CREDIT BOARD */

.tv-credit-board{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  max-width:var(--max);
  margin:auto;

  border-top:1px solid rgba(255,255,255,.14);
  border-left:1px solid rgba(255,255,255,.14);
}

.tv-credit{
  position:relative;

  min-height:330px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:28px;

  border-right:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);

  overflow:hidden;

  transition:
    background .3s ease,
    transform .3s ease;
}

.tv-credit:hover{
  background:rgba(255,255,255,.035);
}

.tv-credit::after{
  content:"";

  position:absolute;
  left:28px;
  right:28px;
  bottom:64px;

  height:1px;

  background:rgba(255,255,255,.08);
}

.tv-network{
  font-size:.68rem;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:.2em;

  color:var(--gold);
}

.tv-credit strong{
  display:block;

  max-width:290px;

  font:800 clamp(1.8rem,2.6vw,3.3rem)/.9 Manrope,sans-serif;
  letter-spacing:-.055em;

  color:#f6f3eb;
}

.tv-credit small{
  position:relative;
  z-index:2;

  font-size:.67rem;

  text-transform:uppercase;
  letter-spacing:.13em;

  color:#77736b;
}


/* Make the two cornerstone credits bigger */

.tv-credit.featured{
  grid-column:span 2;
  min-height:400px;
}

.tv-credit.featured strong{
  max-width:500px;

  font-size:clamp(3rem,5vw,6rem);
}

.dwts-title{
  line-height:.78 !important;
}

.dwts-title i{
  display:block;

  margin:.15em 0 .08em;

  font-family:Georgia,serif;
  font-size:.34em;
  font-weight:400;
  font-style:italic;

  letter-spacing:0;
}


/* FOOTER STATEMENT */

.tv-footer{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:40px;

  max-width:var(--max);

  margin:58px auto 0;
  padding-top:28px;

  border-top:1px solid rgba(255,255,255,.14);
}

.tv-footer p{
  margin:0;

  color:#77736b;

  font-size:.82rem;
}

.tv-footer strong{
  font:600 clamp(1.15rem,2vw,1.8rem)/1.3 Manrope,sans-serif;

  letter-spacing:-.03em;

  color:#d6d1c7;
}


/* MOBILE */

@media(max-width:1000px){

  .tv-credit-board{
    grid-template-columns:repeat(2,1fr);
  }

  .tv-credit.featured{
    grid-column:span 1;
  }

  .tv-credit.featured strong{
    font-size:clamp(2.3rem,6vw,4rem);
  }
}


@media(max-width:820px){

  .television{
    padding:95px 22px;
  }

  .tv-header{
    grid-template-columns:1fr;
    gap:24px;

    margin-bottom:45px;
  }

  .tv-intro{
    justify-self:start;
  }

  .tv-credit{
    min-height:280px;
    padding:22px;
  }

  .tv-credit.featured{
    min-height:320px;
  }

  .tv-footer{
    flex-direction:column;
    gap:14px;

    margin-top:42px;
  }
}


@media(max-width:560px){

  .tv-credit-board{
    grid-template-columns:1fr;
  }

  .tv-credit,
  .tv-credit.featured{
    min-height:250px;
  }

  .tv-credit strong,
  .tv-credit.featured strong{
    font-size:clamp(2.5rem,12vw,4rem);
  }
}

/* ======================================
   TELEVISION + DIGITAL EXPERIENCE V2
   ====================================== */

.experience{
  position:relative;
  padding:135px 6vw 145px;
  background:#0a0a09;
  overflow:hidden;
}

.experience::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(210,169,91,.08),
      transparent 30%
    );
  pointer-events:none;
}

.experience-head{
  position:relative;
  z-index:2;
  max-width:1500px;
  margin:0 auto 66px;
}

.experience-head h2{
  max-width:1050px;
  margin:.15em 0 .28em;
  font-size:clamp(3.4rem,6.5vw,7rem);
}

.experience-head h2 em{
  color:var(--gold);
  font-style:normal;
}

.experience-intro{
  max-width:720px;
  margin:22px 0 0;
  color:#aaa69d;
  font-size:1.08rem;
  line-height:1.7;
}


/* FLAGSHIP */

.flagship-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  max-width:1500px;
  margin:auto;
  border-top:1px solid rgba(255,255,255,.15);
  border-left:1px solid rgba(255,255,255,.15);
}

.flagship-credit{
  min-height:480px;
  padding:30px 34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-right:1px solid rgba(255,255,255,.15);
  border-bottom:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.015);
  transition:background .3s ease;
}

.flagship-credit:hover{
  background:rgba(255,255,255,.035);
}

.credit-kicker{
  color:#8c887f;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.17em;
}

.flagship-logo{
  width:100%;
  height:270px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
}

.flagship-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.big-brother-logo img{
  max-width:620px;
}

.dwts-logo img{
  max-width:560px;
}

.credit-footer{
  display:flex;
  justify-content:space-between;
  gap:25px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#817d74;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.credit-footer span:first-child{
  color:#e5e1d7;
}


/* MAIN GRID */

.experience-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1500px;
  margin:18px auto 0;
  gap:18px;
}

.experience-card{
  position:relative;
  min-height:390px;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  background:#11110f;
  border:1px solid rgba(255,255,255,.13);
  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease;
}

.experience-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.28);
  background:#151513;
}

.platform-logo{
  height:72px;
  display:flex;
  align-items:flex-start;
}

.platform-logo img{
  width:auto;
  max-width:175px;
  height:100%;
  object-fit:contain;
  object-position:left center;
}

.netflix-logo{
  height:58px;
}

.netflix-logo img{
  max-width:190px;
}

.max-logo{
  height:60px;
}

.max-logo img{
  max-width:200px;
}

.youtube-logo{
  height:58px;
}

.youtube-logo img{
  max-width:205px;
}


.show-art{
  height:175px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:18px 0 24px;
}

.show-art img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.perfect-match-logo img{
  max-width:250px;
}

.bbq-logo img{
  max-width:320px;
}

.codie-logo img{
  max-width:340px;
}

.mafs-logo img{
  max-width:330px;
}

.life-logo{
  height:205px;
}

.life-logo img{
  max-width:300px;
}

.experience-meta{
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
}

.experience-meta strong{
  display:block;
  color:#f3efe6;
  font-family:Manrope,sans-serif;
  font-size:1rem;
}

.experience-meta span{
  display:block;
  margin-top:6px;
  color:#77736b;
  font-size:.69rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}


/* BBQ EMMY */

.emmy-badge{
  position:absolute;
  top:24px;
  right:24px;
  padding:8px 11px;
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:.62rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.15em;
}


/* PEACOCK */

.platform-wordmark{
  font-family:Manrope,sans-serif;
  font-weight:800;
  font-size:1.85rem;
  color:#f7f5ee;
  letter-spacing:-.04em;
}

.peacock-dots{
  display:inline-flex;
  gap:3px;
  margin-left:4px;
}

.peacock-dots i{
  display:block;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#fff;
}

.peacock-dots i:nth-child(1){background:#f8e71c}
.peacock-dots i:nth-child(2){background:#f5a623}
.peacock-dots i:nth-child(3){background:#e94b35}
.peacock-dots i:nth-child(4){background:#d002b3}
.peacock-dots i:nth-child(5){background:#4a52d8}
.peacock-dots i:nth-child(6){background:#50bde8}


/* DOCUMENTARY */

.genre-label{
  color:#8b877e;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.17em;
}


/* PLATFORM RANGE */

.range-card{
  background:#0e0e0d;
}

.range-eyebrow{
  margin:0;
  color:#89857c;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.17em;
}

.range-logos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 30px;
  align-items:center;
  margin:auto 0;
}

.range-logos img{
  width:100%;
  max-height:68px;
  object-fit:contain;
}

.range-logos img:nth-child(3){
  filter:none;
}


/* CLOSE */

.experience-close{
  position:relative;
  z-index:2;
  max-width:1500px;
  margin:54px auto 0;
  padding-top:26px;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:40px;
  border-top:1px solid rgba(255,255,255,.14);
}

.experience-close span{
  color:#77736b;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.experience-close strong{
  color:#d9d5cb;
  font:600 clamp(1.1rem,2vw,1.6rem)/1.4 Manrope,sans-serif;
  letter-spacing:-.025em;
}


/* RESPONSIVE */

@media(max-width:1050px){

  .experience-grid{
    grid-template-columns:1fr 1fr;
  }

}


@media(max-width:820px){

  .experience{
    padding:95px 22px;
  }

  .flagship-grid{
    grid-template-columns:1fr;
  }

  .flagship-credit{
    min-height:380px;
  }

  .flagship-logo{
    height:220px;
  }

  .experience-grid{
    grid-template-columns:1fr;
  }

  .experience-card{
    min-height:360px;
  }

  .experience-close{
    flex-direction:column;
    gap:12px;
  }

}


@media(max-width:560px){

  .experience-head h2{
    font-size:clamp(3rem,14vw,4.7rem);
  }

  .flagship-credit{
    padding:24px;
  }

  .credit-footer{
    flex-direction:column;
    gap:6px;
  }

}

/* ======================================
   CAF — TELEVISION + DIGITAL EXPERIENCE
   ====================================== */

.experience{
  position:relative;
  padding:135px 6vw 145px;
  background:#090908;
  overflow:hidden;
}

.experience::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at 72% 5%,
      rgba(210,169,91,.08),
      transparent 32%
    );
  pointer-events:none;
}

.experience-head{
  position:relative;
  z-index:2;
  max-width:1500px;
  margin:0 auto 65px;
}

.experience-head h2{
  max-width:1050px;
  margin:.15em 0 .28em;
  font-size:clamp(3.3rem,6vw,6.8rem);
}

.experience-head h2 em{
  color:var(--gold);
  font-style:normal;
}

.experience-intro{
  max-width:760px;
  margin:22px 0 0;
  color:#aaa69d;
  font-size:1.08rem;
  line-height:1.7;
}


/* ======================================
   FLAGSHIP ROW
   ====================================== */

.flagship-grid{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:1fr 1fr;

  max-width:1500px;
  margin:auto;

  border-top:1px solid rgba(255,255,255,.14);
  border-left:1px solid rgba(255,255,255,.14);
}

.flagship-credit{
  min-height:500px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:30px 34px;

  border-right:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);

  background:rgba(255,255,255,.012);

  transition:background .3s ease;
}

.flagship-credit:hover{
  background:rgba(255,255,255,.035);
}


/* NETWORK ROW */

.network-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.network-row>span{
  color:#77736b;

  font-size:.66rem;
  text-transform:uppercase;
  letter-spacing:.14em;
}


/* CBS / ABC */

.network-mark{
  width:auto;
  height:54px;
  object-fit:contain;
}

.cbs-mark{
  height:52px;
}

.abc-mark{
  height:58px;
}


/* FLAGSHIP SHOW */

.flagship-show-logo{
  width:100%;
  height:285px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:25px;
}

.flagship-show-logo img{
  width:100%;
  height:100%;
  max-width:610px;

  object-fit:contain;
}

.dwts-show img{
  max-width:540px;
}


/* FLAGSHIP ROLE */

.credit-footer{
  padding-top:20px;

  border-top:1px solid rgba(255,255,255,.1);
}

.credit-footer strong{
  display:block;

  color:#f3efe6;

  font:600 1rem Manrope,sans-serif;
}

.credit-footer span{
  display:block;

  margin-top:6px;

  color:var(--gold);

  font-size:.69rem;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:.14em;
}



/* ======================================
   MAIN EXPERIENCE GRID
   ====================================== */

.experience-grid{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:18px;

  max-width:1500px;
  margin:18px auto 0;
}

.experience-card{
  position:relative;

  min-height:410px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:28px;

  overflow:hidden;

  background:#11110f;

  border:1px solid rgba(255,255,255,.13);

  transition:
    transform .3s ease,
    background .3s ease,
    border-color .3s ease;
}

.experience-card:hover{
  transform:translateY(-3px);

  background:#151513;

  border-color:rgba(255,255,255,.28);
}


/* PLATFORM LOGOS */

.platform-logo{
  width:auto;
  height:58px;

  object-fit:contain;
  object-position:left center;
}

.netflix-logo{
  max-width:190px;
}

.max-logo{
  max-width:180px;
}

.tlc-logo{
  height:58px;
  max-width:150px;
}


/* YOUTUBE TO WHITE */

.youtube-logo{
  max-width:190px;

  filter:
    grayscale(1)
    brightness(0)
    invert(1);
}


/* SHOW ART */

.show-art{
  height:190px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:18px 0 25px;
}

.show-art img{
  width:100%;
  height:100%;

  object-fit:contain;
}

.perfect-match-logo img{
  max-width:265px;
}

.bbq-logo img{
  max-width:330px;
}

.mafs-logo img{
  max-width:320px;
}

.life-logo img{
  max-width:280px;
}


/* CODIE TRANSPARENT MARK */

.codie-logo img{
  max-width:350px;

  object-fit:contain;
}


/* META */

.experience-meta{
  padding-top:18px;

  border-top:1px solid rgba(255,255,255,.1);
}

.experience-meta strong{
  display:block;

  color:#f3efe6;

  font:600 1rem Manrope,sans-serif;
}

.experience-meta .role{
  display:block;

  margin-top:7px;

  color:var(--gold);

  font-size:.69rem;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:.14em;
}


/* ======================================
   EMMY BADGE
   ====================================== */

.emmy-badge{
  position:absolute;

  top:24px;
  right:24px;

  padding:8px 11px;

  border:1px solid var(--gold);

  color:var(--gold);

  font-size:.61rem;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:.15em;
}


/* ======================================
   PEACOCK WORDMARK
   ====================================== */

.peacock-mark{
  display:flex;
  align-items:center;
  gap:8px;

  color:#fff;

  font:800 1.75rem Manrope,sans-serif;
  letter-spacing:-.05em;
}

.peacock-dots{
  display:flex;
  gap:3px;
}

.peacock-dots i{
  width:5px;
  height:5px;

  display:block;

  border-radius:50%;
}

.peacock-dots i:nth-child(1){background:#f7e61b}
.peacock-dots i:nth-child(2){background:#f5a623}
.peacock-dots i:nth-child(3){background:#ed4937}
.peacock-dots i:nth-child(4){background:#d62bb6}
.peacock-dots i:nth-child(5){background:#4f58d9}
.peacock-dots i:nth-child(6){background:#50bee9}


/* ======================================
   PLATFORM RANGE
   ====================================== */

.platform-range-card{
  background:#0d0d0c;
}

.range-eyebrow{
  margin:0;

  color:#89857c;

  font-size:.67rem;

  text-transform:uppercase;
  letter-spacing:.16em;
}

.range-logos{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:32px;

  align-items:center;

  margin:auto 0;
}

.range-logos img{
  width:100%;
  height:72px;

  object-fit:contain;
}


/* ======================================
   EXPERIENCE CLOSE
   ====================================== */

.experience-close{
  position:relative;
  z-index:2;

  max-width:1500px;

  display:flex;
  justify-content:space-between;
  align-items:baseline;

  gap:40px;

  margin:54px auto 0;
  padding-top:26px;

  border-top:1px solid rgba(255,255,255,.14);
}

.experience-close span{
  color:#77736b;

  font-size:.68rem;

  text-transform:uppercase;
  letter-spacing:.14em;
}

.experience-close strong{
  color:#d9d5cb;

  font:
    600 clamp(1.1rem,2vw,1.6rem)/1.4
    Manrope,sans-serif;

  letter-spacing:-.025em;
}


/* ======================================
   RESPONSIVE
   ====================================== */

@media(max-width:1050px){

  .experience-grid{
    grid-template-columns:1fr 1fr;
  }

}


@media(max-width:820px){

  .experience{
    padding:95px 22px;
  }

  .flagship-grid{
    grid-template-columns:1fr;
  }

  .flagship-credit{
    min-height:400px;
  }

  .flagship-show-logo{
    height:230px;
  }

  .experience-grid{
    grid-template-columns:1fr;
  }

  .experience-card{
    min-height:370px;
  }

  .experience-close{
    flex-direction:column;

    gap:12px;
  }

}


@media(max-width:560px){

  .experience-head h2{
    font-size:clamp(3rem,14vw,4.7rem);
  }

  .flagship-credit{
    padding:24px;
  }

  .network-row{
    align-items:flex-start;
  }

}

/* ================================
   SELECTED WORK — EDITORIAL GRID
   ================================ */

.selected-work{
  background:#090908;
  color:#fff;
  padding:120px 6vw 140px;
}

.work-heading{
  max-width:1500px;
  margin:0 auto 55px;
}

.work-heading h2{
  max-width:850px;
  margin:.2em 0 0;
}

.work-heading h2 em{
  color:#c9f31d;
  font-style:normal;
}

.work-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:72px 18px;
  max-width:1500px;
  margin:auto;
}

.work-project{
  min-width:0;
}

.work-image{
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:16/10;
  background:#151515;
}

.work-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .65s cubic-bezier(.2,.7,.2,1);
}

.work-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.28) 52%,
      rgba(0,0,0,.06) 100%
    );
}

.work-image:hover img{
  transform:scale(1.035);
}

.work-number{
  position:absolute;
  z-index:3;
  top:16px;
  right:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  width:28px;
  height:28px;

  background:#c9f31d;
  color:#090908;

  font-size:.65rem;
  font-weight:800;
}

.work-overlay{
  position:absolute;
  z-index:3;
  left:28px;
  right:28px;
  bottom:28px;
}

.work-category{
  color:#c9f31d;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.work-overlay h3{
  margin:10px 0 22px;

  color:#fff;
  font:700 clamp(2rem,3.3vw,3.5rem)/.95 Manrope,sans-serif;
  letter-spacing:-.055em;
}

.work-play{
  display:flex;
  align-items:center;
  gap:12px;

  color:#fff;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.work-play b{
  display:flex;
  align-items:center;
  justify-content:center;

  width:34px;
  height:34px;

  border-radius:50%;
  background:#c9f31d;
  color:#090908;

  font-size:.65rem;
  padding-left:2px;

  transition:transform .25s ease;
}

.work-image:hover .work-play b{
  transform:scale(1.12);
}


/* INFORMATION BELOW IMAGE */

.work-info{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:35px;

  margin-top:12px;
  padding-top:18px;

  border-top:1px solid rgba(255,255,255,.22);
}

.work-info h4{
  margin:0 0 10px;

  color:#f4f1e9;
  font:500 1.25rem Manrope,sans-serif;
  letter-spacing:-.025em;
}

.work-info span{
  color:#77736b;
  font-size:.72rem;
}

.work-info p{
  max-width:390px;
  margin:0;

  color:#918d84;
  font-size:.78rem;
  line-height:1.6;
}


/* MOBILE */

@media(max-width:820px){

  .selected-work{
    padding:90px 22px 105px;
  }

  .work-grid{
    grid-template-columns:1fr;
    gap:58px;
  }

  .work-image{
    aspect-ratio:16/11;
  }

  .work-overlay{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .work-info{
    grid-template-columns:1fr;
    gap:12px;
  }

  .work-info p{
    max-width:none;
  }

}

@media(max-width:500px){

  .work-overlay h3{
    font-size:2rem;
  }

  .work-category{
    font-size:.57rem;
  }

}

/* BBQ HIGH — CENTER ART + EMMY BADGE BOTTOM RIGHT */

.bbq-card .show-art{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bbq-card .bbq-logo img{
  display:block;
  width:auto;
  max-width:330px;
  height:100%;
  margin:0 auto;
  object-fit:contain;
  object-position:center center;
}

/* Emmy badge */
.bbq-card .emmy-badge{
  top:auto;
  left:auto;
  right:24px;
  bottom:24px;
  z-index:5;

  background:#11110f;
  border:1px solid var(--gold);
  color:var(--gold);
}

/* Leave space for the badge beside the Producer info */
.bbq-card .experience-meta{
  padding-right:155px;
}

/* YouTube — preserve original red + white logo */
.youtube-logo{
  filter:none !important;
}

/* BBQ HIGH — optical centering */

.bbq-card .bbq-logo img{
  position:relative;
  left:15%;
  margin:0 auto;
  width:auto;
  max-width:330px;
  height:100%;
  object-fit:contain;
}

/* MAFS — keep genre on one line and right aligned */
.mafs-card .genre,
.mafs-card .experience-genre{
  white-space:nowrap;
  width:auto;
  max-width:none;
  text-align:right;
  justify-self:end;
}

/* ==========================================
   CAF HEADER LOGO — FINAL
   ========================================== */

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
}


/* fixed white circle */

.caf-logo-circle{
  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex:0 0 48px;

  overflow:hidden;

  background:#fff;
  border-radius:50%;
}


/* zoom ONLY the CAF artwork */

.caf-logo-circle .caf-logo{
  display:block;

  width:48px;
  height:48px;

  object-fit:cover;
  object-position:center;

  padding:0;
  margin:0;

  border:0;
  border-radius:0;
  background:transparent;

  transform:translate(2px, 1px) scale(1.35);
  transform-origin:center;
}


/* company name */

.brand small{
  margin:0;

  color:#fff;

  font-size:.82rem;
  font-weight:600;
  line-height:1;

  letter-spacing:.045em;
  white-space:nowrap;
}


/* MOBILE */

@media(max-width:820px){

  .brand{
    gap:10px;
  }

  .caf-logo-circle{
    width:42px;
    height:42px;
    flex-basis:42px;
  }

  .caf-logo-circle .caf-logo{
    width:42px;
    height:42px;
    transform:scale(1.35);
  }

  .brand small{
    display:none;
  }

}

/* ==========================================
   WHY CAF — FULL BLEED VIDEO BACKGROUND
   ========================================== */

.intro-video{
  position:relative;

  min-height:720px;

  display:flex;
  align-items:center;

  padding:120px 6vw;

  overflow:hidden;

  background:#090908;
  color:#fff;
}


/* VIDEO FILLS THE ENTIRE SECTION */

.intro-video-bg{
  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:100%;

  z-index:0;

  object-fit:cover;
  object-position:center center;

  pointer-events:none;
}


/* DARKEN VIDEO FOR COPY */

.intro-video-overlay{
  position:absolute;
  inset:0;

  z-index:1;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.50) 45%,
      rgba(0,0,0,.28) 100%
    );

  pointer-events:none;
}


/* ALL COPY SITS ABOVE VIDEO */

.intro-content{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1500px;

  margin:0 auto;
}


/* WHY CAF LABEL */

.intro-video .section-label{
  margin-bottom:44px;

  color:rgba(255,255,255,.72);
}


/* TWO-COLUMN COPY */

.intro-video .intro-grid{
  display:grid;

  grid-template-columns:1.15fr .85fr;

  gap:8vw;

  align-items:end;

  max-width:1500px;

  margin:0;
}


/* HEADLINE */

.intro-video .intro-grid h2{
  max-width:760px;

  margin:0;

  color:#fff;

  font-size:clamp(3.2rem,5.5vw,6.2rem);
}


/* BODY COPY */

.intro-video .intro-grid p{
  max-width:520px;

  color:rgba(255,255,255,.88);

  font-size:1.08rem;
  line-height:1.7;
}

.intro-video .intro-grid p:first-child{
  margin-top:0;
}

.intro-video .intro-grid p:last-child{
  margin-bottom:0;

  color:#fff;
  font-weight:600;
}


/* MOBILE */

@media(max-width:820px){

  .intro-video{
    min-height:720px;

    padding:90px 22px;
  }

  .intro-video .intro-grid{
    grid-template-columns:1fr;

    gap:34px;
  }

  .intro-video-bg{
    object-position:center center;
  }

  .intro-video-overlay{
    background:rgba(0,0,0,.58);
  }

}

/* WHY CAF — body copy readability panel */

.intro-video .intro-grid > div{
  background:rgba(8, 8, 7, 0.68);

  padding:32px 36px;

  max-width:580px;

  border:1px solid rgba(255,255,255,0.10);

  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}

/* Selected Work modal triggers */

button.work-image{
  width:100%;
  padding:0;
  border:0;

  color:inherit;
  font:inherit;
  text-align:left;

  cursor:pointer;
}
/* ==========================================
   VIDEO MODAL — SIZE + CLOSE BUTTON
   ========================================== */

.video-modal .modal-shell{
  width:min(1050px, 86vw);
}

.video-modal .modal-video-frame{
  width:100%;
  aspect-ratio:16 / 9;
}


/* CLOSE / EXIT BUTTON */

.video-modal .modal-close{
  position:absolute;

  top:-12px;
  right:-12px;

  z-index:10;

  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  border:1px solid rgba(255,255,255,.3);
  border-radius:50%;

  background:#111;
  color:#fff;

  font-size:0;

  cursor:pointer;
}

.video-modal .modal-close::after{
  content:"×";

  font-size:28px;
  font-weight:300;
  line-height:1;
}

.video-modal .modal-close:hover{
  background:#fff;
  color:#111;
}


/* MOBILE */

@media(max-width:820px){

  .video-modal .modal-shell{
    width:92vw;
  }

  .video-modal .modal-close{
    top:-14px;
    right:0;
  }

}

/* ==========================================
   BEHIND THE STORY — EDITORIAL COLLAGE
   ========================================== */

.story-collage{
  position:relative;

  height:100vh;
  min-height:820px;
  max-height:1100px;

  overflow:hidden;

  background:#090908;
  color:#fff;
}


/* ==========================================
   BEHIND THE STORY — PRODUCTION WALL
   ========================================== */

.story-wall{
  position:relative;

  height:1000px;
  min-height:850px;

  overflow:hidden;

  background:#0a0a09;
  color:#fff;

  isolation:isolate;
}


/* ==========================================
   BEHIND THE STORY — FINAL 2 / 3 / 3 COLLAGE
   ========================================== */

.story-collage{
  position:relative;
  min-height:960px;
  overflow:hidden;
  background:#090908;
  color:#fff;
}


/* ==========================================
   GRID
   ========================================== */

.story-grid{
  display:grid;

  grid-template-columns:repeat(6, 1fr);

  grid-template-rows:
    390px
    285px
    285px;

  gap:3px;

  min-height:960px;

  background:#090908;
}


.story-photo{
  position:relative;
  overflow:hidden;
  background:#111;
}


.story-photo img{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;

  filter:
    saturate(.92)
    contrast(1.03);
}


/* ==========================================
   TOP ROW

   DWTS | NIGHT SHOOT
   ========================================== */


/* DWTS */

.story-dwts{
  grid-column:1 / 4;
  grid-row:1;
}


.story-dwts img{
  width:100%;
  height:100%;

  object-fit:cover;

  /*
    Favor the upper portion of the original
    so your head remains inside the frame.
  */

  object-position:center 20%;
}


/* NIGHT SHOOT */

.story-night{
  grid-column:4 / 7;
  grid-row:1;
}


.story-night img{
  /*
    Preserve you in the cowboy hat.
  */

  object-position:40% center;
}


/* ==========================================
   MIDDLE ROW

   NYLE | JAMAICA | VIDEO VILLAGE
   ========================================== */


/* NYLE */

.story-nyle{
  grid-column:1 / 3;
  grid-row:2;
}


.story-nyle img{
  width:100%;
  height:100%;

  object-fit:cover;

  /*
    Preserve the edge of the original image
    where you're kneeling, then mirror
    the displayed image horizontally.
  */

  object-position:left center;

  transform:scaleX(-1);

  filter:
    saturate(.74)
    contrast(1.04)
    brightness(.88);
}


/* JAMAICA */

.story-jamaica{
  grid-column:3 / 5;
  grid-row:2;
}


.story-jamaica img{
  object-position:center center;
}


/* VIDEO VILLAGE */

.story-village{
  grid-column:5 / 7;
  grid-row:2;
}


.story-village img{
  /*
    Tighter framing to reduce the
    dead space at the top.
  */

  object-fit:cover;

  object-position:center 72%;

  transform:scale(1.18);
}


/* ==========================================
   BOTTOM ROW

   MONSTER GARAGE | LADIES | HORSES
   ========================================== */


/* MONSTER GARAGE */

.story-monster{
  grid-column:1 / 3;
  grid-row:3;
}


.story-monster img{
  object-fit:cover;
  object-position:center center;
}


/* DIRECTING THE LADIES */

.story-ladies{
  grid-column:3 / 5;
  grid-row:3;

  background:#151514;
}


.story-ladies img{
  width:100%;
  height:100%;

  /* Fill the frame instead of showing the entire original */
  object-fit:cover;

  /* Favor the people and reduce ceiling */
  object-position:center 70%;

  /* Slight zoom */
  transform:scale(1.12);
}


/* HORSES */

.story-horses{
  grid-column:5 / 7;
  grid-row:3;
}


.story-horses img{
  width:100%;
  height:100%;

  object-fit:cover;

  /*
    Keep the tighter framing,
    reduce sky, and sacrifice the
    LEFT side before losing you.
  */

  object-position:88% 55%;

  transform:scale(1.10);
}


/* ==========================================
   SHADE

   Concentrated around the copy area.
   ========================================== */

.story-shade{
  position:absolute;

  inset:0;

  z-index:2;

  pointer-events:none;

  background:
    radial-gradient(
      ellipse at 13% 31%,
      rgba(5,5,4,.95) 0%,
      rgba(5,5,4,.86) 18%,
      rgba(5,5,4,.62) 34%,
      rgba(5,5,4,.18) 49%,
      transparent 62%
    );
}


/* ==========================================
   COPY

   Anchored left, but lowered into
   roughly the upper third.
   ========================================== */

.story-copy{
  position:absolute;

  z-index:3;

  top:155px;
  left:4vw;

  width:min(560px, 39vw);
}


.story-copy .eyebrow{
  margin:0 0 18px;

  color:rgba(255,255,255,.72);
}


.story-copy h2{
  margin:0;

  font-family:Manrope,sans-serif;

  font-size:
    clamp(4rem, 6.4vw, 7.5rem);

  font-weight:700;

  line-height:.88;

  letter-spacing:-.065em;

  color:#fff;
}


.story-environments{
  max-width:510px;

  margin:28px 0 0;

  font-size:
    clamp(1rem, 1.15vw, 1.18rem);

  line-height:1.55;

  color:rgba(255,255,255,.82);
}


.story-message{
  max-width:510px;

  margin:14px 0 0;

  font-size:
    clamp(1rem, 1.15vw, 1.18rem);

  line-height:1.55;

  font-weight:600;

  color:#fff;
}


/* ==========================================
   MOBILE
   ========================================== */

@media(max-width:820px){

  .story-collage{
    min-height:auto;
  }


  .story-grid{
    grid-template-columns:
      repeat(2, 1fr);

    grid-template-rows:
      300px
      220px
      220px
      220px;

    min-height:auto;
  }


  /* TOP */

  .story-dwts{
    grid-column:1;
    grid-row:1;
  }


  .story-night{
    grid-column:2;
    grid-row:1;
  }


  /* MIDDLE */

  .story-nyle{
    grid-column:1;
    grid-row:2;
  }


  .story-jamaica{
    grid-column:2;
    grid-row:2;
  }


  .story-village{
    grid-column:1 / 3;
    grid-row:3;
  }


  /* BOTTOM */

  .story-monster{
    grid-column:1;
    grid-row:4;
  }


  .story-ladies{
    grid-column:2;
    grid-row:4;
  }


  /*
    Hide horses on smaller screens
    rather than crushing another photo
    into the layout.
  */

  .story-horses{
    display:none;
  }


  /* COPY */

  .story-copy{
    top:70px;
    left:22px;
    right:22px;

    width:auto;
  }


  .story-copy h2{
    font-size:
      clamp(3.4rem, 15vw, 5rem);
  }


  .story-environments,
  .story-message{
    max-width:380px;
  }


  /* MOBILE SHADE */

  .story-shade{
    background:
      linear-gradient(
        180deg,
        rgba(5,5,4,.94) 0%,
        rgba(5,5,4,.76) 24%,
        rgba(5,5,4,.18) 47%,
        transparent 70%
      );
  }

}
