@font-face{
  font-family:'ITC Serif Gothic Std Black';
  src:url('../fonts/ITCSerifGothicStdBlack.woff2') format('woff2');
  font-weight:900;
  font-style:normal;
  font-display:swap;
}

/* ============================= */
/* VARIABLES */
/* ============================= */

:root{
  --paper:#ffffff;
  --ink:#060606;
  --muted:#3c3c3c;
  --accent:#e92d4c;
  --line:#0b0b0b;
  --max:1500px;
  --header-real-h:74px;
  --brand-strip-h:clamp(56px, 8svh, 82px);
  --display:'ITC Serif Gothic Std Black','Arial Black',Impact,sans-serif;
  --body:Arial,Helvetica,sans-serif;
}

/* ============================= */
/* BASE */
/* ============================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  background:#070707;
  overflow-y:scroll;
}

body{
  margin:0;
  background:linear-gradient(
    to bottom,
    var(--paper) 0%,
    var(--paper) calc(100% - 72px),
    #070707 calc(100% - 72px),
    #070707 100%
  );
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.35;
}

img{
  max-width:100%;
}

.accent-word{
  color:var(--accent);
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#ffffff;
  border-bottom:4px solid var(--ink);
  transition:transform .28s ease,box-shadow .28s ease;
}

.site-header.hide{
  transform:translateY(-105%);
}

.nav-wrap{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  height:70px;
  padding:0 clamp(22px,4vw,68px);
  display:grid;
  grid-template-columns:120px minmax(0,1fr) 70px;
  align-items:center;
}

.logo{
  justify-self:start;
  display:inline-flex;
  width:84px;
  align-items:center;
  background:transparent;
  isolation:auto;
}

.logo img{
  width:78px;
  height:auto;
  display:block;
  mix-blend-mode:multiply;
  filter:contrast(1.15);
}

.main-nav{
  justify-self:center;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:56px;
}

.main-nav a{
  font-family:var(--display);
  font-size:15px;
  color:var(--ink);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.03em;
  transition:color .18s ease;
}

.main-nav a:hover,
.main-nav a.active{
  color:var(--accent);
}

.eye-link{
  justify-self:end;
}

.eye-link.header-instagram{
  justify-self:end;
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.eye-link.header-instagram img{
  width:34px;
  height:34px;
  display:block;
  object-fit:contain;
}

.header-instagram:hover{
  opacity:.75;
}

/* ============================= */
/* NAV DROPDOWN WORK */
/* ============================= */

.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
  height:auto;
}

.nav-dropdown-trigger{
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;

  display:inline-flex;
  align-items:center;
  height:auto;
  line-height:1;

  font-family:var(--display);
  font-size:15px;
  color:var(--ink);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.nav-dropdown-trigger:hover{
  color:var(--accent);
}

.nav-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:18px;
  background:transparent;
}

.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  transform:translateX(-50%);

  min-width:210px;
  padding:12px 0;

  background:#ffffff;
  border:2px solid var(--ink);
  box-shadow:4px 4px 0 var(--ink);

  display:flex;
  flex-direction:column;
  gap:0;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .18s ease,
    visibility .18s ease;

  z-index:80;
}

.nav-dropdown-menu a{
  display:block;
  padding:10px 16px 8px;

  font-family:var(--display);
  font-size:13px;
  line-height:1;
  text-align:left;
  white-space:nowrap;

  color:var(--ink);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.nav-dropdown-menu a:hover{
  background:var(--accent);
  color:#fff;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.nav-dropdown.force-close .nav-dropdown-menu{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.nav-dropdown-trigger::after{
  content:"";
  display:inline-block;
  width:0;
  height:0;
  margin-left:7px;
  transform:translateY(-2px);

  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid currentColor;
}

/* ============================= */
/* GENERAL SECTIONS */
/* ============================= */

.section{
  max-width:var(--max);
  margin:0 auto;
  padding:32px clamp(24px,4vw,68px);
}

/* ============================= */
/* INDEX FIRST SCREEN */
/* ============================= */

.index-screen{
  height:calc(100svh - var(--header-real-h));
  min-height:560px;
  display:grid;
  grid-template-rows:minmax(0, 1fr) var(--brand-strip-h);
  overflow:hidden;
}

.index-screen .hero{
  min-height:0;
  height:100%;
  max-height:none;

  padding-top:clamp(12px, 2.4svh, 32px);
  padding-bottom:clamp(12px, 2.4svh, 32px);

  overflow:hidden;
}

.index-screen .brand-strip{
  height:var(--brand-strip-h);
  min-height:var(--brand-strip-h);
  max-height:var(--brand-strip-h);

  position:relative;
  z-index:2;
}

.index-screen + .work-section{
  margin-top:0;
}

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

.hero{
  display:grid;
  grid-template-columns:minmax(260px,410px) minmax(520px,1fr);
  gap:clamp(18px, 2vw, 28px);
  align-items:center;
  overflow:hidden;
}

.hero-copy{
  min-width:0;
}

.intro-kicker{
  font-family:var(--display);
  color:var(--accent);
  font-size:17px;
  margin-bottom:24px !important;
}

.hero h1{
  font-family:var(--display);
  font-size:clamp(68px,9vw,126px);
  line-height:.72;
  margin:0 0 4px !important;
  text-transform:uppercase;
  letter-spacing:-.06em;
}

.hero h1 span{
  display:block;
}

.hero h1 span:first-child{
  margin-bottom:18px;
}

.hero-name-logo{
  display:block;
  width:min(100%, 410px);
  max-width:410px;
  height:auto;
  margin:0 0 18px;
}

.hero .lead{
  max-width:510px;
  font-family:var(--display);
  font-weight:900;
  font-size:30px;
  line-height:1.05;
  letter-spacing:.02em;
  text-transform:uppercase;
  margin-top:0 !important;
}

.hero .lead.lead-accent{
  color:#ef3f5f !important;
}

.hero-copy > p:not(.lead){
  max-width:500px;
}

/* ============================= */
/* WORK BUTTON */
/* ============================= */

.hero-work-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:11px 18px 9px;
  background:#fff;
  color:var(--ink);
  border:2px solid var(--ink);
  font-family:var(--display);
  font-size:15px;
  line-height:1;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing:.03em;
  box-shadow:4px 4px 0 var(--ink);
  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.hero-work-btn:hover{
  background:var(--accent);
  color:#fff;
  transform:translate(2px,2px);
  box-shadow:2px 2px 0 var(--ink);
}

/* ============================= */
/* HERO CARDS — ACCORDION SOLO DESKTOP */
/* ============================= */

.hero-cards{
  min-width:0;
  height:100%;
  min-height:0;
  max-height:none;
  display:grid;
  grid-template-columns:1.7fr 1fr 1fr 1fr;
  gap:0;
  align-items:stretch;
  overflow:hidden;
  padding:12px 0;
  background:transparent;
  border:0;
  transition:grid-template-columns .45s cubic-bezier(.22,.61,.36,1);
}

.hero-cards:hover{
  grid-template-columns:1fr 1fr 1fr 1fr;
}

.hero-cards:has(.hero-card:nth-child(1):hover){
  grid-template-columns:2.25fr .82fr .82fr .82fr;
}

.hero-cards:has(.hero-card:nth-child(2):hover){
  grid-template-columns:.82fr 2.25fr .82fr .82fr;
}

.hero-cards:has(.hero-card:nth-child(3):hover){
  grid-template-columns:.82fr .82fr 2.25fr .82fr;
}

.hero-cards:has(.hero-card:nth-child(4):hover){
  grid-template-columns:.82fr .82fr .82fr 2.25fr;
}

.hero-card{
  position:relative;
  display:block;
  height:100%;
  min-width:0;
  overflow:hidden;
  background:#000;
  text-decoration:none;
  border:0;
  border-left:1px solid var(--ink);
  transform:none;
  margin:0;
  clip-path:none;
  isolation:isolate;
}

.hero-card:first-child{
  border-left:0;
}

.hero-card::before,
.hero-card::after{
  display:none;
}

.hero-card:not(:first-child){
  border-left:1px solid var(--ink);
}

.hero-card img{
  width:100%;
  height:100%;
  max-width:none;
  display:block;
  object-fit:cover;
  object-position:center;
  transform:scale(1.02);
  filter:saturate(.96) contrast(.99);
  transition:
    transform .55s cubic-bezier(.22,.61,.36,1),
    filter .35s ease;
}

.hero-card:hover img{
  transform:scale(1.09);
  filter:saturate(1.04) contrast(1.03);
}

.hero-label{
  position:absolute;
  left:18px;
  bottom:34px;
  z-index:8;
  background:#fff;
  color:#000;
  font-family:var(--display);
  font-size:15px;
  padding:4px 8px;
  transform:none;
}

/* ============================= */
/* BRAND STRIP */
/* ============================= */

.brand-strip{
  width:100%;
  height:var(--brand-strip-h);
  background:#050505;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:0 clamp(18px, 3vw, 32px);
}

.brand-strip img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:125%;
  object-fit:contain;
}

.brand-strip-about{
  background:#fff;
}

/* ============================= */
/* WORK SECTIONS */
/* ============================= */

.section-title{
  font-family:var(--display);
  font-size:31px;
  text-align:center;
  margin:0 auto 22px;
  text-transform:uppercase;
  border-top:1px solid rgba(0,0,0,.25);
  padding-top:16px;
  letter-spacing:-.03em;
}

.section-title span{
  color:var(--accent);
}

.work-section{
  padding-top:26px;
  padding-bottom:18px;
}

.gallery{
  width:100%;
  display:grid;
  gap:10px;
  align-items:stretch;
  grid-auto-flow:dense;
}

.tile{
  position:relative;
  overflow:hidden;
  background:#111;
  cursor:pointer;
  min-height:0;
  aspect-ratio:4 / 5;
}

.tile.big{
  grid-row:span 2;
}

.tile.wide{
  grid-column:auto;
}

.tile img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
  transition:transform .45s ease,filter .45s ease;
}

.tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0);
  transition:background .35s ease;
}

.tile:hover img{
  transform:scale(1.07);
  filter:brightness(.65);
}

.tile:hover::after{
  background:rgba(0,0,0,.28);
}

.tile-copy{
  position:absolute;
  inset:0;
  z-index:2;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .25s ease,transform .25s ease;
}

.tile:hover .tile-copy{
  opacity:1;
  transform:translateY(0);
}

.tile-copy h3{
  font-family:var(--display);
  font-size:clamp(18px,2.2vw,34px);
  line-height:.9;
  margin:0 0 8px;
  text-transform:uppercase;
}

.tile-copy p{
  font-size:16px;
  max-width:330px;
  margin:0;
}

/* Licensed Work */
.licensed-grid{
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:repeat(2,1fr);
  grid-auto-rows:1fr;
  aspect-ratio:1.595 / 1;
}

.licensed-grid .tile{
  aspect-ratio:auto;
}

.licensed-grid .big{
  grid-column:1;
  grid-row:1 / span 2;
}

/* Merch & Apparel */
.merch-grid{
  grid-template-columns:repeat(2,1fr);
  grid-template-rows:1fr;
  aspect-ratio:2 / 1;
}

.merch-grid .tile{
  aspect-ratio:auto;
}

/* Poster Art */
.poster-grid{
  grid-template-columns:1fr 1fr 2fr;
  grid-template-rows:repeat(2,1fr);
  aspect-ratio:1.595 / 1;
}

.poster-grid .tile{
  aspect-ratio:auto;
}

.poster-grid .big{
  grid-column:3;
  grid-row:1 / span 2;
}

/* Packaging */
.packaging-grid{
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:1fr;
  aspect-ratio:3.205 / 1;
}

.packaging-grid .tile{
  aspect-ratio:auto;
}

/* ============================= */
/* MODAL — PROYECTOS */
/* ============================= */

.modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:62px 28px 46px;
  background:rgba(0,0,0,.85);
  overflow:auto;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.modal.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.modal-card{
  position:relative;
  width:min(1080px,92vw);
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
  opacity:0;
  transform:translateY(28px) scale(.97);
  transition:
    opacity .45s ease,
    transform .45s cubic-bezier(.22,.61,.36,1);
}

.modal.open .modal-card{
  opacity:1;
  transform:translateY(0) scale(1);
}

.modal-close{
  position:sticky;
  top:18px;
  left:100%;
  z-index:120;
  width:42px;
  height:42px;
  margin-left:auto;
  margin-right:-8px;
  margin-bottom:10px;
  border:0;
  background:transparent;
  color:#fff;
  font-family:var(--display);
  font-size:42px;
  line-height:1;
  cursor:pointer;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.modal-close:hover{
  transform:scale(1.12);
  opacity:.75;
}

.modal-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}

.modal-text{
  order:-1;
  width:75%;
  padding:0;
  color:#fff;
  text-align:center;
  background:transparent;
}

.modal-text h2{
  font-family:var(--display);
  font-size:clamp(20px,2.6vw,36px);
  line-height:.9;
  margin:0 0 8px;
  text-transform:uppercase;
  color:#fff;
}

.modal-text p{
  max-width:600px;
  margin:0 auto;
  font-size:15px;
  line-height:1.35;
  color:#fff;
  background:transparent;
}

.modal-text .store-note{
  display:none;
}

.modal-image{
  width:100%;
  min-height:0;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  background:transparent;
  overflow:visible;
}

.modal-image img{
  display:block;
  width:60%;
  max-width:900px;
  height:auto;
  max-height:none;
  object-fit:contain;
  background:transparent;
  box-shadow:none;
  opacity:0;
  transform:scale(.96);
  transition:
    opacity .5s ease .08s,
    transform .5s cubic-bezier(.22,.61,.36,1) .08s;
}

.modal.open .modal-image img{
  opacity:1;
  transform:scale(1);
}

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

.contact-page{
  min-height:calc(100vh - 120px);
}

.about-page{
  min-height:0;
  padding-top:26px;
  padding-bottom:0;
}

.about-hero{
  display:grid;
  grid-template-columns:minmax(320px, .95fr) minmax(460px, 1.15fr);
  gap:30px;
  align-items:start;
  border-bottom:0;
  padding-top:26px;
  padding-bottom:6px;
}

.about-page + .brand-strip{
  margin-top:0;
}

.photo-tape{
  position:relative;
  justify-self:end;
  align-self:start;
  width:min(100%, 470px);
  margin:10px 0 0 0;
  transform:rotate(-2deg);
}

.photo-tape img{
  width:100%;
  display:block;
  border:0;
  box-shadow:0 2px 8px rgba(0,0,0,0);
}

.about-copy{
  justify-self:start;
  max-width:680px;
}

.about-copy h1{
  font-family:var(--display);
  font-size:72px;
  line-height:.85;
  margin:0 0 28px;
  text-transform:uppercase;
}

.contact-box h1{
  font-family:var(--display);
  font-size:44px;
  margin:0 0 25px;
  text-transform:uppercase;
}

.bold-intro{
  font-family:var(--display);
  font-size:19px;
  line-height:1.08;
  text-transform:uppercase;
}

.bold-intro span,
.red{
  color:var(--accent);
}

.about-copy p{
  font-size:19px;
  max-width:620px;
}

.about-link{
  color:var(--accent);
  text-decoration:none;
}

.about-link:hover{
  color:var(--ink);
  text-decoration:underline;
}

.brand-logos{
  display:flex;
  flex-wrap:wrap;
  gap:18px 28px;
  margin-top:30px;
  font-family:var(--display);
  font-size:22px;
  align-items:center;
}

.caption{
  font-family:'Comic Sans MS',cursive;
  font-size:27px;
  text-align:center;
  background:#ede5da;
  padding:8px 18px;
  width:max-content;
  margin:-8px auto 0;
  position:relative;
}

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

.contact-page{
  display:grid;
  place-items:center;
  text-align:center;
  padding-top:60px;
}

.contact-box{
  transform:translateY(-20px);
}

.contact-eye{
  width:170px;
  margin:0 auto 28px;
}

.contact-box h1{
  font-size:68px;
  line-height:.88;
}

.contact-email{
  font-family:var(--display);
  color:var(--accent);
  font-size:24px;
  text-transform:uppercase;
}

.contact-email:hover{
  color:#000;
}

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

.site-footer{
  background:#070707;
  color:#f7f2eb;
  margin-top:40px;
  margin-bottom:0;
  border-bottom:1px solid #070707;
}

.footer-inner{
  max-width:var(--max);
  min-height:72px;
  margin:0 auto;
  padding:0 clamp(24px,4vw,68px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  font-size:12px;
}

.footer-socials{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
}

.footer-socials a{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.footer-socials a:hover{
  transform:translateY(-2px);
  opacity:.75;
}

.footer-socials img{
  width:40px;
  height:40px;
  display:block;
  object-fit:contain;
}

.footer-copy{
  margin-left:auto;
  text-align:right;
  max-width:720px;
}

/* ============================= */
/* PANTALLAS BAJAS — PORTÁTILES */
/* ============================= */

@media (max-height:760px) and (min-width:981px){
  .index-screen{
    height:calc(100svh - var(--header-real-h));
    min-height:0;
  }

  .index-screen .hero{
    padding-top:clamp(8px, 1.8svh, 18px);
    padding-bottom:clamp(8px, 1.8svh, 18px);
  }

  .hero{
    gap:22px;
  }

  .hero-name-logo{
    max-width:330px;
    margin-bottom:14px;
  }

  .hero h1{
    font-size:clamp(58px,7vw,96px);
  }

  .hero .lead{
    font-size:23px;
    line-height:1.04;
    max-width:430px;
  }

  .hero-copy > p:not(.lead){
    font-size:14px;
    line-height:1.28;
    max-width:430px;
  }

  .hero-work-btn{
    margin-top:12px;
    padding:9px 15px 8px;
    font-size:13px;
  }

  .hero-cards{
    height:100%;
    padding:0;
  }

  .brand-strip{
    height:var(--brand-strip-h);
  }

  .brand-strip img{
    max-height:100%;
  }
}

@media (max-height:650px) and (min-width:981px){
  .index-screen .hero{
    padding-top:8px;
    padding-bottom:8px;
  }

  .hero-name-logo{
    max-width:285px;
    margin-bottom:10px;
  }

  .hero .lead{
    font-size:20px;
    max-width:390px;
  }

  .hero-copy > p:not(.lead){
    font-size:13px;
    line-height:1.25;
    max-width:390px;
  }

  .hero-cards{
    height:100%;
  }

  .brand-strip{
    height:var(--brand-strip-h);
  }

  .brand-strip img{
    max-height:100%;
  }
}

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

@media (max-width:980px){
  :root{
    --brand-strip-h:70px;
  }

  .nav-wrap{
    grid-template-columns:80px 1fr;
  }

  .header-instagram,
  .eye-link.header-instagram{
    display:none !important;
  }

  .main-nav{
    gap:22px;
  }

  .index-screen{
    height:auto;
    min-height:0;
    display:flex;
    flex-direction:column;
    overflow:visible;
  }

  .index-screen .hero{
    min-height:auto;
    height:auto;
    padding-top:34px;
    padding-bottom:24px;
    overflow:visible;
  }

  .hero{
    grid-template-columns:1fr;
    gap:18px;
    min-height:auto;
    height:auto;
    max-height:none;
    padding-top:34px;
    padding-bottom:24px;
    overflow:visible;
  }

  .hero-cards,
  .index-screen .hero-cards{
    height:520px;
    min-height:0;
    max-height:none;
    overflow:hidden;
    padding:0;
    gap:4px;
    grid-template-columns:repeat(4,1fr) !important;
    transition:none !important;
  }

  .hero-cards:hover,
  .hero-cards:has(.hero-card:nth-child(1):hover),
  .hero-cards:has(.hero-card:nth-child(2):hover),
  .hero-cards:has(.hero-card:nth-child(3):hover),
  .hero-cards:has(.hero-card:nth-child(4):hover){
    grid-template-columns:repeat(4,1fr) !important;
  }

  .hero-card,
  .hero-card:first-child,
  .hero-card:nth-child(2),
  .hero-card:nth-child(3),
  .hero-card:nth-child(4){
    transform:none !important;
    margin:0 !important;
    clip-path:none !important;
  }

  .hero-card img,
  .hero-card:hover img{
    width:100%;
    height:100%;
    transform:scale(1.02) !important;
    filter:saturate(.96) contrast(.99) !important;
  }

  .hero-label{
    left:0;
    transform:none;
  }

  .index-screen .brand-strip{
    flex-basis:auto;
    height:70px;
  }

  .licensed-grid,
  .poster-grid,
  .merch-grid,
  .packaging-grid{
    aspect-ratio:auto;
    grid-template-columns:1fr 1fr;
    grid-template-rows:none;
    grid-auto-rows:auto;
  }

  .licensed-grid .tile,
  .poster-grid .tile,
  .merch-grid .tile,
  .packaging-grid .tile{
    aspect-ratio:4 / 5;
  }

  .licensed-grid .big,
  .poster-grid .big{
    grid-column:auto;
    grid-row:auto;
  }

  .about-hero{
    grid-template-columns:1fr;
    gap:34px;
    padding-top:28px;
    padding-bottom:8px;
  }

  .photo-tape{
    justify-self:center;
    width:min(100%, 520px);
    margin:0;
  }

  .about-copy{
    justify-self:center;
    max-width:680px;
  }

  .modal-content{
    grid-template-columns:1fr;
  }
}

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

@media (max-width:640px){
  .nav-wrap{
    height:auto;
    grid-template-columns:1fr;
    padding:12px 18px;
    text-align:center;
  }

  .logo{
    justify-self:center;
    width:84px;
    height:auto;
  }

  .logo img{
    width:78px;
    max-width:78px;
    height:auto;
    display:block;
  }

  .header-instagram,
  .eye-link.header-instagram{
    display:none !important;
  }

  .main-nav{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin:6px 0;
  }

  .nav-dropdown{
    width:auto;
    flex:0 0 auto;
    flex-direction:row;
    align-items:center;
    justify-content:center;
  }

  .nav-dropdown::after{
    display:none;
  }

  .nav-dropdown-trigger{
    height:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 8px);
    left:50%;
    transform:translateX(-50%);

    width:max-content;
    min-width:190px;
    margin-top:0;
    padding:10px 0;

    border:2px solid var(--ink);
    box-shadow:4px 4px 0 var(--ink);
    background:#fff;

    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;

    opacity:1;
    visibility:visible;
    pointer-events:auto;
    z-index:90;
  }

  .nav-dropdown.open .nav-dropdown-menu{
    display:flex;
  }

  .nav-dropdown.open .nav-dropdown-trigger::after{
    transform:translateY(-2px) rotate(180deg);
  }

  .nav-dropdown:hover .nav-dropdown-menu{
    display:none;
  }

  .nav-dropdown.open:hover .nav-dropdown-menu{
    display:flex;
  }

  .nav-dropdown-menu a{
    display:block;
    text-align:left;
    font-size:12px;
    padding:9px 14px 7px;
    white-space:nowrap;
  }

  .nav-dropdown-menu a:hover{
    background:var(--accent);
    color:#fff;
  }

  .section.hero{
    padding-top:28px;
    padding-bottom:24px;
  }

  .hero{
    grid-template-columns:1fr;
    gap:22px;
    overflow:visible;
  }

  .hero h1{
    font-size:68px;
  }

  .hero-name-logo{
    width:min(100%, 330px);
    max-width:330px;
    margin:0 0 18px;
  }

  .hero .lead{
    font-size:24px;
    max-width:100%;
  }

  .hero-copy > p:not(.lead){
    max-width:100%;
  }

  .hero-cards,
  .index-screen .hero-cards{
    grid-template-columns:1fr 1fr !important;
    height:auto;
    gap:4px;
    padding:0;
    overflow:visible;
    transition:none !important;
  }

  .hero-cards:hover,
  .hero-cards:has(.hero-card:nth-child(1):hover),
  .hero-cards:has(.hero-card:nth-child(2):hover),
  .hero-cards:has(.hero-card:nth-child(3):hover),
  .hero-cards:has(.hero-card:nth-child(4):hover){
    grid-template-columns:1fr 1fr !important;
  }

  .hero-card{
    height:300px;
  }

  .hero-card img,
  .hero-card:hover img{
    transform:scale(1.02) !important;
    filter:saturate(.96) contrast(.99) !important;
  }

  .index-screen .brand-strip{
    height:70px;
  }

  .brand-strip{
    padding:0 18px;
  }

  .licensed-grid,
  .merch-grid,
  .poster-grid,
  .packaging-grid{
    grid-template-columns:1fr!important;
  }

  .licensed-grid .tile,
  .poster-grid .tile,
  .merch-grid .tile,
  .packaging-grid .tile{
    aspect-ratio:4 / 5;
  }

  .about-hero{
    gap:26px;
    padding-top:24px;
    padding-bottom:8px;
  }

  .photo-tape{
    width:100%;
  }

  .about-copy h1{
    font-size:38px;
  }

  .about-copy p{
    font-size:17px;
  }

  .bold-intro{
    font-size:17px;
  }

  .brand-logos{
    font-size:18px;
    gap:14px 22px;
  }

  .contact-box h1{
    font-size:48px;
  }

  .contact-email{
    font-size:17px;
  }

  .modal{
    padding:72px 18px 36px;
  }

  .modal-card{
    width:92vw;
  }

  .modal-close{
    top:14px;
    right:auto;
    left:auto;
    margin-right:0;
    font-size:42px;
  }

  .modal-content{
    gap:18px;
  }

  .modal-text{
    width:100%;
  }

  .modal-text h2{
    font-size:34px;
  }

  .modal-text p{
    font-size:14px;
  }

  .modal-image img{
    width:100%;
    max-width:100%;
    max-height:none;
  }

  .footer-inner{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:10px;
    padding-top:16px;
    padding-bottom:16px;
  }

  .footer-socials{
    justify-content:center;
  }

  .footer-copy{
    margin-left:0;
    text-align:center;
  }
}