:root{
  --ink:#11100e;
  --paper:#f2eadb;
  --red:#7a1f1f;
  --line:#2b2925;
  --muted:#8b8377;
  --max:1400px;

  --pad:clamp(18px,3vw,42px);

  --display:
    "Arial Narrow",
    "Helvetica Neue Condensed",
    Impact,
    Arial,
    sans-serif;

  --display-mobile:
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--ink);
  color:var(--paper);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

body.drawer-open{
  overflow:hidden;
}

button,
a{
  font:inherit;
  color:inherit;
}

a{
  text-decoration:none;
}

button{
  cursor:pointer;
}

.wrap{
  width:min(
    var(--max),
    calc(100% - (var(--pad) * 2))
  );
  margin:auto;
}

.skip{
  position:fixed;
  left:12px;
  top:-80px;
  z-index:100;

  background:var(--paper);
  color:var(--ink);

  padding:10px 14px;
}

.skip:focus{
  top:12px;
}

.eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.display{
  font-family:var(--display);
  font-stretch:condensed;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-.055em;
}

.bare{
  background:none;
  border:0;
  padding:8px;
}


/* ========================================
   EDITORIAL ACTION LINKS
   no arrows
======================================== */

.action-link,
.hero-order,
.orderlink,
.visit-links a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:14px;
}

.action-link::after,
.hero-order::after,
.orderlink::after,
.visit-links a::after{
  content:"";

  display:block;

  width:28px;
  height:1px;

  flex:0 0 auto;

  background:currentColor;

  transition:
    width .25s ease,
    opacity .25s ease;
}

.action-link:hover::after,
.hero-order:hover::after,
.orderlink:hover::after,
.visit-links a:hover::after{
  width:44px;
}

.action-link:focus-visible,
.hero-order:focus-visible,
.orderlink:focus-visible,
.visit-links a:focus-visible{
  outline:2px solid currentColor;
  outline-offset:6px;
}


/* ========================================
   NAV
======================================== */

.nav{
  position:fixed;
  z-index:50;

  top:0;
  left:0;
  right:0;

  height:76px;

  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;

  padding:0 var(--pad);

  border-bottom:
    1px solid rgba(242,234,219,.18);

  color:white;

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

.nav--solid{
  background:rgba(17,16,14,.93);
  backdrop-filter:blur(10px);
}

.nav--hidden{
  transform:translateY(-100%);
}

.brand{
  display:flex;
  align-items:center;
  width:max-content;
  height:100%;
}

.brand img{
  display:block;
  width:auto;
  height:62px;
  max-width:280px;
  object-fit:contain;
}

.navlinks{
  display:flex;
  gap:24px;

  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}

.navlinks a{
  position:relative;
}

.navlinks a::after{
  content:"";

  position:absolute;

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

  height:1px;

  background:currentColor;

  transition:right .25s ease;
}

.navlinks a:hover::after{
  right:0;
}

.navright{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:16px;
}

.orderlink{
  border:0;
  border-left:1px solid currentColor;

  background:none;

  padding:8px 0 8px 16px;

  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
}

.lang{
  width:38px;
  height:38px;

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

  padding:0;

  border:1px solid rgba(242,234,219,.28);
  border-radius:50%;

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

  font-size:20px;
  line-height:1;

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

.lang:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(242,234,219,.65);
  transform:translateY(-1px);
}

.lang:focus-visible{
  outline:2px solid var(--paper);
  outline-offset:3px;
}

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

.hero{
  min-height:100svh;

  padding:
    105px
    0
    34px;

  display:grid;
  align-items:center;

  position:relative;
}

.hero-grid{
  display:grid;

  grid-template-columns:
    minmax(0,1.05fr)
    minmax(0,.95fr);

  gap:clamp(30px,4vw,70px);

  align-items:center;

  min-height:
    calc(100svh - 140px);
}

.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;

  padding-right:1vw;
}

.hero h1{
  font-size:
    clamp(76px,9.2vw,148px);

  line-height:.80;

  margin:18px 0 0;

  max-width:900px;
}

.hero h1 > span{
  display:block;

  text-wrap:balance;

  overflow-wrap:normal;
  word-break:normal;
}

.hero h1 .outline{
  margin-top:.09em;

  color:transparent;

  -webkit-text-stroke:
    1.6px var(--paper);
}

.hero-meta{
  display:flex;
  justify-content:flex-start;

  margin-top:42px;

  border-top:
    1px solid rgba(242,234,219,.35);

  padding-top:17px;

  font-size:13px;
}

.hero-order{
  padding:7px 0;

  color:var(--paper);

  font-size:12px;
  font-weight:900;
  letter-spacing:.07em;
}


/* ========================================
   MEDIA
======================================== */

.media{
  position:relative;

  overflow:hidden;

  background:#151311;
}

.media img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:
    transform .9s cubic-bezier(.2,.8,.2,1);
}

.media:hover img{
  transform:scale(1.018);
}


/* HERO IMAGE — SHOW THE WHOLE PHOTO */

.hero-media{
  width:100%;

  margin:0;

  aspect-ratio:4 / 3;

  min-height:0;

  align-self:center;

  background:#090909;

  border:
    1px solid rgba(242,234,219,.12);
}

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

  width:100%;
  height:100%;

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

  filter:
    saturate(.95)
    contrast(1.02);
}

.hero-media::after{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  box-shadow:
    inset 0 0 70px rgba(0,0,0,.20);
}


/* ========================================
   TICKER
======================================== */

.ticker{
  border-block:
    1px solid var(--line);

  background:var(--red);
  color:white;

  overflow:hidden;
}

.ticker-track{
  display:flex;

  gap:42px;

  width:max-content;

  padding:9px 0;

  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;

  animation:
    ticker 18s linear infinite;
}

@keyframes ticker{
  to{
    transform:translateX(-50%);
  }
}


/* ========================================
   MANIFESTO
======================================== */

.manifesto{
  background:var(--paper);
  color:var(--ink);

  padding:
    120px
    0
    100px;
}

.manifesto-grid{
  display:grid;

  grid-template-columns:
    .35fr
    1.65fr;

  gap:50px;
}

.manifesto h2{
  font-size:
    clamp(62px,8.5vw,132px);

  line-height:.82;

  margin:0;
}

.manifesto h2 > span,
.manifesto h2 > strong{
  display:block;

  text-wrap:balance;
}

.manifesto h2 > strong{
  margin-top:.13em;

  color:var(--red);
}

.manifesto p{
  font-size:
    clamp(21px,2.3vw,34px);

  line-height:1.28;

  max-width:900px;

  margin:
    50px
    0
    0
    auto;

  white-space:pre-line;
}


/* ========================================
   FEATURED
======================================== */

.featured{
  padding:
    120px
    0
    130px;

  background:var(--ink);
  color:var(--paper);
}

.featured-head{
  display:grid;

  grid-template-columns:
    1.25fr
    .75fr;

  gap:60px;

  align-items:end;

  margin-bottom:90px;
}

.featured-head h2{
  font-size:
    clamp(72px,8.5vw,132px);

  line-height:.80;

  margin:14px 0 0;
}

.featured-head h2 span{
  color:var(--red);
}

.featured-head p{
  max-width:420px;

  margin:
    0
    0
    8px
    auto;

  color:#aaa197;

  font-size:17px;
  line-height:1.6;
}

.featured-grid{
  display:flex;
  flex-direction:column;

  gap:120px;
}

.featured-item{
  display:grid;

  grid-template-columns:
    1.35fr
    .65fr;

  gap:
    clamp(35px,6vw,90px);

  align-items:center;
}

.featured-item--reverse{
  grid-template-columns:
    .65fr
    1.35fr;
}

.featured-item--reverse
.featured-image{
  order:2;
}

.featured-item--reverse
.featured-copy{
  order:1;
}

.featured-image{
  position:relative;

  aspect-ratio:16 / 10;

  overflow:hidden;

  background:#1a1815;
}

.featured-image img{
  width:100%;
  height:100%;

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

  display:block;

  filter:
    saturate(.95)
    contrast(1.02);

  transition:
    transform .8s
    cubic-bezier(.2,.8,.2,1);
}

.featured-item:hover
.featured-image img{
  transform:scale(1.02);
}

.featured-copy{
  max-width:460px;
}

.featured-number{
  display:block;

  margin-bottom:20px;

  color:var(--red);

  font-family:Georgia,serif;
  font-style:italic;
  font-size:28px;
}

.featured-copy h3{
  font-size:
    clamp(58px,6.2vw,96px);

  line-height:.84;

  margin:0 0 26px;

  text-wrap:balance;
}

.featured-copy p{
  margin:0;

  color:#aaa197;

  font-size:16px;
  line-height:1.6;

  max-width:360px;
}


/* ========================================
   MENU
======================================== */

.menu{
  background:var(--paper);
  color:var(--ink);

  padding:110px 0;
}

.menu-head{
  display:flex;

  justify-content:space-between;
  align-items:end;

  gap:30px;

  border-bottom:
    2px solid var(--ink);

  padding-bottom:20px;
}

.menu h2{
  font-size:
    clamp(76px,10vw,150px);

  line-height:.78;

  margin:0;
}

.menu-tabs{
  display:flex;
  flex-wrap:wrap;

  gap:6px;

  margin:
    24px
    0
    50px;
}

.menu-tabs button{
  border:
    1px solid #9b9183;

  background:transparent;

  border-radius:0;

  padding:
    9px
    13px;

  text-transform:uppercase;

  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
}

.menu-tabs button:hover,
.menu-tabs button:focus-visible{
  border-color:var(--ink);
}

.menu-tabs button.active{
  background:var(--ink);
  color:var(--paper);
}

.menu-list{
  display:grid;

  grid-template-columns:
    1fr
    1fr;

  gap:
    0
    60px;
}

.menu-category-note{
  grid-column:1 / -1;

  margin:
    0
    0
    28px;

  padding:
    16px
    18px;

  border-left:
    3px solid var(--red);

  background:
    rgba(122,31,31,.07);

  color:#5f574e;

  font-size:13px;
  font-weight:700;
  line-height:1.6;

  letter-spacing:.02em;
}

.menu-row{
  display:grid;

  grid-template-columns:
    1fr
    auto;

  gap:20px;

  padding:18px 0;

  border-bottom:
    1px solid #bdb2a3;
}

.menu-row strong{
  font-size:18px;
}

.menu-row small{
  display:block;

  color:#71685d;

  margin-top:5px;

  line-height:1.45;
}

.menu-row b{
  color:var(--red);

  white-space:nowrap;
}


/* ========================================
   ORDER
======================================== */

.order-section{
  min-height:78vh;

  padding:90px 0;

  display:grid;
  align-items:center;
}

.order-grid{
  display:grid;

  grid-template-columns:
    1.4fr
    .6fr;

  gap:60px;

  align-items:end;
}

.order-section h2{
  font-size:
    clamp(85px,12vw,190px);

  line-height:.76;

  margin:0;
}

.order-section h2 span{
  color:var(--red);
}

.order-actions{
  border-top:
    1px solid var(--line);
}

.order-actions button,
.order-actions a{
  width:100%;

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

  border:0;

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

  background:none;
  color:var(--paper);

  padding:
    20px
    0;

  font-size:18px;
  font-weight:700;

  text-align:left;

  transition:
    color .2s ease;
}

/* line instead of arrow */
.order-actions button::after,
.order-actions a::after{
  content:"";

  width:32px;
  height:1px;

  background:currentColor;

  transition:
    width .25s ease;
}

.order-actions button:hover,
.order-actions a:hover{
  color:var(--red);
}

.order-actions button:hover::after,
.order-actions a:hover::after{
  width:48px;
}


/* ========================================
   VISIT
======================================== */

.visit{
  background:var(--red);
  color:white;

  padding:110px 0;
}

.visit-grid{
  display:grid;

  grid-template-columns:
    minmax(0,.9fr)
    minmax(500px,1.1fr);

  gap:
    clamp(50px,7vw,110px);

  align-items:center;
}

.visit h2{
  font-size:
    clamp(72px,8.7vw,132px);

  line-height:.80;

  margin:
    10px
    0
    30px;
}

.visit p{
  font-size:18px;
  line-height:1.55;
}

.visit-links{
  display:flex;

  gap:30px;

  margin-top:38px;

  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
}

.visit-links a{
  border:0;

  padding-bottom:3px;
}


/* ========================================
   GOOGLE MAP
======================================== */

.map-card{
  width:100%;

  align-self:center;

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

  overflow:hidden;

  background:var(--ink);
}

.map-embed{
  position:relative;

  width:100%;

  aspect-ratio:16 / 10;

  overflow:hidden;

  background:var(--ink);
}

.map-embed iframe{
  position:absolute;
  inset:0;

  width:100%!important;
  height:100%!important;

  display:block;

  border:0;

  filter:
    grayscale(.85)
    saturate(.45)
    contrast(1.08)
    brightness(.82);

  transition:
    filter .45s ease;
}

.map-card:hover
.map-embed iframe{
  filter:
    grayscale(.15)
    saturate(.85)
    contrast(1.03)
    brightness(.92);
}

.map-footer{
  min-height:58px;

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

  gap:20px;

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

  padding:
    0
    20px;

  color:white;

  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;

  transition:
    background .25s ease,
    color .25s ease;
}

.map-footer::after{
  content:"";

  width:30px;
  height:1px;

  flex:0 0 auto;

  background:currentColor;

  transition:
    width .25s ease;
}

.map-footer:hover{
  background:var(--paper);
  color:var(--ink);
}

.map-footer:hover::after{
  width:46px;
}


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

.footer{
  padding:24px 0;

  font-size:11px;

  color:#77716a;

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

.footer .wrap{
  display:flex;
  justify-content:space-between;
}


/* ========================================
   DRAWER
======================================== */

.drawer-bg{
  position:fixed;
  inset:0;

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

  opacity:0;

  pointer-events:none;

  transition:.25s;

  z-index:70;
}

.drawer{
  position:fixed;

  right:0;
  top:0;

  height:100%;

  width:min(440px,100%);

  background:var(--paper);
  color:var(--ink);

  z-index:71;

  transform:
    translateX(100%);

  transition:
    transform .35s
    cubic-bezier(.2,.8,.2,1);

  padding:24px;

  display:flex;
  flex-direction:column;
}

.drawer.open{
  transform:none;
}

.drawer-bg.open{
  opacity:1;
  pointer-events:auto;
}

.drawer h3{
  font-size:64px;
  line-height:.82;

  margin:
    80px
    0
    30px;
}

.drawer .choice{
  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:20px;

  border:0;
  border-top:
    1px solid #a89e90;

  background:none;

  padding:18px 0;

  font-size:19px;
  font-weight:800;

  transition:
    color .2s ease;
}

.drawer .choice::after{
  content:"";

  width:28px;
  height:1px;

  flex:0 0 auto;

  background:currentColor;

  transition:
    width .25s ease;
}

.drawer .choice:hover{
  color:var(--red);
}

.drawer .choice:hover::after{
  width:42px;
}

.close{
  margin-left:auto;

  border:0;

  background:none;

  font-size:30px;
}


/* ========================================
   REVEALS
======================================== */

.reveal{
  opacity:0;

  transform:
    translateY(22px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.in{
  opacity:1;

  transform:none;
}


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

@media(max-width:850px){

  /*
   * IMPORTANT:
   * Wider display type on smaller screens.
   * This removes the "squeezed / shrinked" look.
   */

  .display{
    font-family:
      var(--display-mobile);

    font-stretch:normal;

    letter-spacing:-.035em;
  }


  .nav{
    grid-template-columns:
      1fr
      auto;
  }

  .navlinks{
    display:none;
  }

  .navright .orderlink{
    display:none;
  }


  /* HERO */

  .hero{
    min-height:auto;

    padding:
      92px
      0
      55px;
  }

  .hero-grid{
    grid-template-columns:1fr;

    gap:42px;

    min-height:auto;
  }

  .hero-copy{
    padding:0;
  }

  .hero h1{
    font-size:
      clamp(48px,10.5vw,78px);

    line-height:.91;

    max-width:14ch;

    letter-spacing:-.045em;
  }

  .hero h1 .outline{
    -webkit-text-stroke:
      1.2px var(--paper);
  }

  .hero-meta{
    margin-top:28px;
  }

  .hero-media{
    width:100%;

    aspect-ratio:4 / 3;

    min-height:0;

    margin:0;
  }

  .hero-media img{
    object-fit:contain;
  }


  /* MANIFESTO */

  .manifesto{
    padding:
      90px
      0;
  }

  .manifesto-grid{
    grid-template-columns:1fr;

    gap:35px;
  }

  .manifesto h2{
    font-size:
      clamp(46px,9.5vw,72px);

    line-height:.94;

    letter-spacing:-.04em;
  }

  .manifesto p{
    margin-top:42px;

    font-size:
      clamp(19px,3vw,25px);
  }


  /* FEATURED */

  .featured{
    padding:
      90px
      0
      100px;
  }

  .featured-head{
    grid-template-columns:1fr;

    gap:30px;

    margin-bottom:65px;
  }

  .featured-head h2{
    font-size:
      clamp(48px,10vw,74px);

    line-height:.92;
  }

  .featured-head p{
    margin:0;
  }

  .featured-item,
  .featured-item--reverse{
    grid-template-columns:1fr;

    gap:30px;
  }

  .featured-item--reverse
  .featured-image,
  .featured-item--reverse
  .featured-copy{
    order:initial;
  }

  .featured-image{
    aspect-ratio:4 / 3;
  }

  .featured-grid{
    gap:80px;
  }

  .featured-copy h3{
    font-size:
      clamp(44px,9vw,66px);

    line-height:.94;
  }


  /* MENU */

  .menu-list{
    grid-template-columns:1fr;
  }

  .menu h2{
    font-size:
      clamp(68px,16vw,110px);
  }


  /* ORDER */

  .order-section{
    min-height:auto;
  }

  .order-grid{
    grid-template-columns:1fr;

    gap:60px;
  }

  .order-section h2{
    font-size:
      clamp(64px,15vw,105px);

    line-height:.88;
  }


  /* VISIT */

  .visit-grid{
    grid-template-columns:1fr;

    gap:55px;
  }

  .visit h2{
    font-size:
      clamp(62px,14vw,100px);

    line-height:.88;
  }

  .map-embed{
    aspect-ratio:16 / 10;
  }

}


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

@media(max-width:520px){

  .wrap{
    width:
      calc(100% - 36px);
  }

  .eyebrow{
    font-size:10px;
  }
  
  .nav{
    height:68px;
  }

  .brand img{
    height:57px;
    max-width:220px;
  }

  /* HERO */

  .hero{
    padding-top:84px;
  }

  .hero h1{
    font-size:
      clamp(42px,11.2vw,56px);

    line-height:.94;

    max-width:none;

    letter-spacing:-.04em;
  }

  .hero h1 > span{
    max-width:100%;
  }

  .hero-media{
    aspect-ratio:4 / 3;
  }

  .hero-order{
    font-size:11px;
  }


  /* MANIFESTO */

  .manifesto{
    padding:
      72px
      0;
  }

  .manifesto h2{
    font-size:
      clamp(39px,10.3vw,52px);

    line-height:.96;

    letter-spacing:-.035em;
  }

  .manifesto p{
    margin-top:34px;

    font-size:19px;
    line-height:1.38;
  }


  /* FEATURED */

  .featured{
    padding:
      72px
      0
      82px;
  }

  .featured-head{
    margin-bottom:52px;
  }

  .featured-head h2{
    font-size:
      clamp(42px,11vw,57px);

    line-height:.94;
  }

  .featured-copy h3{
    font-size:
      clamp(39px,10.3vw,52px);

    line-height:.95;
  }

  .featured-grid{
    gap:65px;
  }


  /* MENU */

  .menu{
    padding:
      80px
      0;
  }

  .menu-head{
    display:block;
  }

  .menu-head .eyebrow{
    display:block;

    margin-top:16px;
  }

  .menu h2{
    font-size:
      clamp(68px,20vw,95px);
  }

  .menu-category-note{
    margin-bottom:20px;

    padding:14px;

    font-size:12px;
  }


  /* ORDER */

  .order-section{
    padding:
      75px
      0;
  }

  .order-section h2{
    font-size:
      clamp(58px,16vw,82px);

    line-height:.88;
  }

  .order-actions button,
  .order-actions a{
    font-size:16px;
  }


  /* VISIT */

  .visit{
    padding:
      75px
      0;
  }

  .visit h2{
    font-size:
      clamp(56px,15vw,76px);

    line-height:.90;
  }

  .visit-links{
    flex-direction:column;
    align-items:flex-start;

    gap:18px;
  }

  .map-embed{
    aspect-ratio:4 / 3;
  }

  .map-footer{
    min-height:54px;

    padding:
      0
      14px;

    font-size:9px;
  }


  /* DRAWER */

  .drawer h3{
    font-family:
      var(--display-mobile);

    font-size:50px;

    line-height:.92;

    letter-spacing:-.035em;
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media(
  prefers-reduced-motion:reduce
){

  *{
    animation:none!important;
    scroll-behavior:auto!important;
    transition:none!important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }

  .media:hover img,
  .featured-item:hover
  .featured-image img{
    transform:none;
  }

}