/* Archway Hospitality Group
   Design tokens recovered from the client's own deployment — these hexes and
   font stacks are not an approximation, they are what the approved build used. */

:root{
  --background:#050505;
  --surface:#0d0d0d;
  --surface-2:#141414;
  --gold:#b88728;
  --gold-bright:#d1a13a;
  --ivory:#f3efe7;
  --muted:#aaa49b;
  --border:#b8872859;
  --border-soft:#ffffff14;

  --serif:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --sans:"Manrope","Noto Sans SC","Microsoft YaHei",Arial,sans-serif;

  --shell:1220px;
  --gutter:clamp(1.25rem,4vw,2.75rem);
  --section:clamp(4.5rem,9vw,7.5rem);
  --header-h:76px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
}
body{
  margin:0;
  background:var(--background);
  color:var(--ivory);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
:focus-visible{outline:2px solid var(--gold-bright);outline-offset:3px;border-radius:2px}

/* the hidden attribute must beat any display rule that follows it */
[hidden]{display:none!important}

.skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--gold);color:#0b0b0b;padding:.7rem 1.1rem;font-weight:700;
}
.skip:focus{left:1rem;top:1rem}

.shell{width:100%;max-width:var(--shell);margin-inline:auto;padding-inline:var(--gutter)}
.section{padding-block:var(--section)}
.section--surface{background:var(--surface)}

/* ---------- type ---------- */
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;margin:0;line-height:1.08;letter-spacing:.005em}
h1{font-size:clamp(2.6rem,7.2vw,5.5rem)}
h2{font-size:clamp(2rem,4.4vw,3.35rem)}
h3{font-size:clamp(1.35rem,2.2vw,1.75rem);line-height:1.2}
p{margin:0 0 1.15rem}
p:last-child{margin-bottom:0}

.eyebrow{
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--gold);
  margin:0 0 1.15rem;
  display:flex;align-items:center;gap:.85rem;
}
.eyebrow::after{content:"";flex:0 0 44px;height:1px;background:var(--border)}
.eyebrow--center{justify-content:center}
.eyebrow--center::before{content:"";flex:0 0 44px;height:1px;background:var(--border)}

.lede{font-size:clamp(1.02rem,1.5vw,1.2rem);color:var(--muted);max-width:60ch}
.muted{color:var(--muted)}
.center{text-align:center}
.center .lede{margin-inline:auto}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  padding:.95rem 1.9rem;
  font-family:var(--sans);font-size:.76rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  border:1px solid var(--gold);
  color:var(--gold-bright);
  background:transparent;
  transition:background .28s var(--ease),color .28s var(--ease),border-color .28s var(--ease);
  text-align:center;
}
.btn:hover,.btn:focus-visible{background:var(--gold);color:#0b0b0b;border-color:var(--gold)}
.btn--solid{background:var(--gold);color:#0b0b0b}
.btn--solid:hover,.btn--solid:focus-visible{background:var(--gold-bright);border-color:var(--gold-bright)}
.btn--ghost{border-color:var(--border-soft);color:var(--ivory)}
.btn--ghost:hover,.btn--ghost:focus-visible{border-color:var(--gold);background:transparent;color:var(--gold-bright)}
.btn--sm{padding:.7rem 1.25rem;font-size:.68rem}
.btn-row{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2rem}

.textlink{
  display:inline-flex;align-items:center;gap:.55rem;
  font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold-bright);
  padding-bottom:.3rem;
  border-bottom:1px solid var(--border);
  transition:border-color .28s var(--ease),gap .28s var(--ease);
}
.textlink:hover,.textlink:focus-visible{border-color:var(--gold-bright);gap:.9rem}
.textlink svg{width:14px;height:14px;flex:none}

/* ---------- header ---------- */
.header{
  position:sticky;top:0;z-index:100;
  background:#050505f2;
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-soft);
}
.header__inner{
  min-height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
}
.brand{display:flex;align-items:center;flex:none}
.brand img{height:34px;width:auto}
.nav{display:flex;align-items:center;gap:2.1rem;margin-left:auto}
.nav a{
  font-size:.73rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--ivory);position:relative;padding-block:.35rem;
  transition:color .25s var(--ease);
}
.nav a::after{
  content:"";position:absolute;left:0;right:100%;bottom:0;height:1px;
  background:var(--gold-bright);transition:right .32s var(--ease);
}
.nav a:hover,.nav a:focus-visible,.nav a[aria-current=page]{color:var(--gold-bright)}
.nav a:hover::after,.nav a:focus-visible::after,.nav a[aria-current=page]::after{right:0}
.header .btn{flex:none}
.burger{display:none;padding:.6rem;margin-right:-.6rem}
.burger svg{width:24px;height:24px;display:block}

/* ---------- nav dropdown ---------- */
.nav__group{position:relative;display:flex;align-items:center}
.nav__toggle{
  display:flex;align-items:center;gap:.4rem;padding-block:.35rem;
  font-size:.73rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--ivory);transition:color .25s var(--ease);
}
.nav__toggle:hover,.nav__toggle[aria-expanded=true],
.nav__toggle[aria-current=page]{color:var(--gold-bright)}
.nav__caret{width:12px;height:12px;flex:none;transition:transform .28s var(--ease)}
.nav__toggle[aria-expanded=true] .nav__caret{transform:rotate(180deg)}
.nav__menu{
  position:absolute;top:100%;left:50%;transform:translateX(-50%);
  margin-top:.85rem;min-width:15.5rem;
  background:#0b0b0bfa;backdrop-filter:blur(14px);
  border:1px solid var(--border);
  padding:.4rem;
  display:grid;
}
/* the header is sticky at z-index 100; the panel must clear the page under it */
.nav__menu a{
  padding:.75rem .95rem;font-size:.72rem;letter-spacing:.14em;
  white-space:nowrap;transition:background .22s var(--ease),color .22s var(--ease);
}
.nav__menu a::after{display:none}
.nav__menu a:hover,.nav__menu a:focus-visible,.nav__menu a[aria-current=page]{
  background:var(--surface-2);color:var(--gold-bright);
}
/* "Restaurants" is the longest label on the bar; without this the nav, the
   wordmark and the Reserve button collide between 901px and about 1100px */
@media (max-width:1140px){
  .nav{gap:1.4rem}
  .nav a,.nav__toggle{font-size:.68rem;letter-spacing:.14em}
  .header .btn--sm{padding:.7rem 1rem;letter-spacing:.12em}
}

.drawer__label{
  font-family:var(--sans);font-size:.68rem;font-weight:800;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold);
  margin:1.5rem 0 .2rem;
}
.drawer a.drawer__sub{font-size:1.45rem;padding-left:1rem}

.drawer{
  position:fixed;inset:var(--header-h) 0 0;z-index:99;
  background:#050505f7;backdrop-filter:blur(18px);
  padding:2rem var(--gutter) 3rem;
  display:flex;flex-direction:column;gap:.35rem;
  overflow-y:auto;
}
/* :not(.btn) matters — .drawer a outranks .btn on specificity, so without it
   the Reserve button renders as 2rem serif and wraps across two lines */
.drawer a:not(.btn){
  font-family:var(--serif);font-size:2rem;
  padding-block:.65rem;border-bottom:1px solid var(--border-soft);
}
.drawer .btn{margin-top:1.6rem;align-self:flex-start}

@media (max-width:900px){
  .nav{display:none}
  .header>.shell>.header__inner>.btn{display:none}
  .burger{display:block}
}
@media (min-width:901px){
  .drawer{display:none!important}
}

/* ---------- gold rule under a heading ---------- */
.rule{display:block;width:76px;height:1px;background:var(--gold);margin:1.6rem 0 1.5rem;opacity:.85}
.rule--center{margin-inline:auto}

/* ---------- split hero with slideshow ---------- */
/* Copy on the left over black, photography bleeding off the right edge. Text
   sits on a solid panel rather than over the picture, so the headline is always
   legible whichever slide is showing. */
.hero--split{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:min(80vh,780px);
  background:var(--background);
  isolation:isolate;
}
.hero--split .hero__text{display:flex;align-items:center;padding-block:clamp(3.5rem,8vh,6rem)}
.hero--split .hero__col{
  width:100%;
  padding-left:max(var(--gutter),calc((100vw - var(--shell))/2 + var(--gutter)));
  padding-right:clamp(1.5rem,4vw,3.5rem);
}
.hero--split h1{font-size:clamp(2.5rem,4.6vw,4.4rem);margin:0}
.hero--split h1 span{display:block}
.hero--split h1 span+span{color:var(--gold-bright)}
.hero--split .lede{margin-bottom:0}

.hero__slides{position:relative;overflow:hidden;min-height:46vh}
.slide{position:absolute;inset:0;margin:0;opacity:0;transition:opacity 1.1s var(--ease)}
.slide.is-on{opacity:1}
.slide picture,.slide img{display:block;width:100%;height:100%;object-fit:cover}
/* a soft seam so the photograph meets the black panel rather than butting it */
.hero__slides::before{
  content:"";position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(90deg,#050505 0%,#05050500 22%);
}
.slide__dots{
  position:absolute;z-index:3;left:50%;bottom:1.4rem;transform:translateX(-50%);
  display:flex;gap:.6rem;
}
.slide__dots button{
  width:9px;height:9px;padding:0;border-radius:50%;
  background:#ffffff59;border:0;transition:background .3s var(--ease),transform .3s var(--ease);
}
.slide__dots button[aria-current=true]{background:var(--gold-bright);transform:scale(1.25)}
@media (max-width:900px){
  .hero--split{grid-template-columns:1fr;min-height:0}
  .hero--split .hero__col{padding-inline:var(--gutter)}
  .hero__slides{min-height:56vw;order:-1}
  .hero__slides::before{background:linear-gradient(0deg,#050505 0%,#05050500 42%)}
}
@media (prefers-reduced-motion:reduce){.slide{transition:none}}

/* ---------- full-bleed band ---------- */
.band{display:grid;grid-template-columns:1fr 1fr;align-items:stretch;background:var(--surface)}
.band+.band{border-top:1px solid var(--border-soft)}
.band__media{position:relative;min-height:clamp(320px,42vw,560px)}
.band__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.band__body{display:flex;align-items:center;padding-block:clamp(3rem,6vw,5.5rem)}
.band__col{
  width:100%;max-width:60ch;
  padding-right:max(var(--gutter),calc((100vw - var(--shell))/2 + var(--gutter)));
  padding-left:clamp(1.5rem,4vw,3.5rem);
}
/* flipped: media on the right, copy on the left */
.band--flip .band__media{order:2}
.band--flip .band__col{
  padding-left:max(var(--gutter),calc((100vw - var(--shell))/2 + var(--gutter)));
  padding-right:clamp(1.5rem,4vw,3.5rem);
  margin-left:auto;
}
.band__col .muted+.muted{margin-top:1rem}
.band__col .lede{margin-bottom:1.2rem}
@media (max-width:820px){
  .band{grid-template-columns:1fr}
  .band--flip .band__media{order:0}
  .band__media{min-height:58vw}
  .band__col,.band--flip .band__col{padding-inline:var(--gutter);max-width:none}
}

.factlist{margin:1.8rem 0 0;display:grid;gap:1.2rem}
.factlist dt{
  font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.35rem;
}
.factlist dd{margin:0;color:var(--muted);line-height:1.7}
.btn-row--tight{margin-top:.9rem}

/* ---------- brand cards: logo and copy one side, photograph the other ---------- */
.bcards{display:grid;gap:clamp(1.5rem,2.6vw,2.2rem)}
.bcard{
  display:grid;grid-template-columns:1fr 1fr;
  background:var(--surface);border:1px solid var(--border-soft);
  overflow:hidden;transition:border-color .3s var(--ease);
}
.bcard:hover{border-color:var(--border)}
.bcard__body{padding:clamp(1.8rem,3.4vw,3rem);display:flex;flex-direction:column;gap:1rem;justify-content:center}
.bcard__logo{width:auto;object-fit:contain;object-position:left center;margin-bottom:.4rem}
.bcard__logo--jc{height:52px}
.bcard__logo--robata{height:112px}
.bcard__body h3{font-size:clamp(1.5rem,2.4vw,2rem)}
.bcard__body p{color:var(--muted);margin:0}
.bcard__body .textlink{align-self:flex-start;margin-top:.4rem}
.bcard__media{position:relative;min-height:clamp(260px,26vw,380px)}
.bcard__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--ease)}
.bcard:hover .bcard__media img{transform:scale(1.04)}
@media (max-width:760px){
  .bcard{grid-template-columns:1fr}
  .bcard__media{order:-1;min-height:56vw}
}

/* ---------- values, with an icon and dividers ---------- */
.values{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,230px),1fr))}
.value{border-top:0;padding:0 clamp(1.2rem,2.4vw,2.2rem);text-align:center}
.value+.value{border-left:1px solid var(--border-soft)}
.value__ico{width:34px;height:34px;color:var(--gold);margin:0 auto .9rem;display:block}
.value h3{font-size:.78rem;font-family:var(--sans);font-weight:800;letter-spacing:.2em;
  text-transform:uppercase;color:var(--ivory);margin-bottom:.7rem}
.value p{color:var(--muted);margin:0;font-size:.95rem}
@media (max-width:760px){
  .value{padding-block:1.6rem}
  .value+.value{border-left:0;border-top:1px solid var(--border-soft)}
}

/* ---------- back to top ---------- */
.totop{
  position:fixed;right:clamp(1rem,2.5vw,2rem);bottom:clamp(1rem,2.5vw,2rem);z-index:90;
  width:48px;height:48px;display:grid;place-items:center;
  background:#0b0b0be6;backdrop-filter:blur(10px);
  border:1px solid var(--border);color:var(--gold-bright);
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .3s var(--ease),transform .3s var(--ease),visibility .3s,background .3s;
}
.totop.is-on{opacity:1;visibility:visible;transform:none}
.totop:hover,.totop:focus-visible{background:var(--gold);color:#0b0b0b;border-color:var(--gold)}
.totop svg{width:20px;height:20px}

/* ---------- hero ---------- */
.hero{position:relative;isolation:isolate;overflow:hidden}
.hero__media{position:absolute;inset:0;z-index:-2}
.hero__media img{width:100%;height:100%;object-fit:cover;opacity:.62}
.hero::after{
  content:"";position:absolute;inset:0;z-index:-1;
  /* keep the left column dark enough for the headline while the room stays
     visible on the right — a flat overlay hid the photograph completely */
  background:
    linear-gradient(180deg,#050505cc 0%,#05050566 45%,#050505 100%),
    linear-gradient(90deg,#050505e6 0%,#050505b3 42%,#05050533 100%);
}
.hero__inner{
  padding-block:clamp(5rem,15vh,9rem);
  max-width:52rem;
}
.hero h1{margin-bottom:1.5rem}
.hero h1 span{display:block}
.hero h1 span+span{color:var(--gold-bright)}
.hero--page .hero__inner{padding-block:clamp(3.5rem,9vh,5.5rem)}
.hero--page h1{font-size:clamp(2.3rem,5.6vw,4.2rem)}
/* a page hero already carries its own bottom padding; stacking a full section
   gap on top of it left a dead band of empty black */
.hero--page+.section{padding-top:clamp(2.75rem,5.5vw,4.25rem)}

/* ---------- restaurant page hero ---------- */
.hero--rest .hero__inner{max-width:56rem}
.hero--rest .hero__media img{opacity:.56}
/* A hero whose source is ALREADY a night scene does not need dimming — the
   standard treatment turned the Robata rendering into an unreadable murk.
   Keep the left column dark for the headline, let the room show on the right. */
.hero--darksrc .hero__media img{opacity:.95;object-position:62% 52%}
.hero--darksrc::after{
  background:
    linear-gradient(180deg,#05050599 0%,#05050526 45%,#050505 100%),
    linear-gradient(90deg,#050505f2 0%,#050505c4 44%,#0505051a 100%);
}
/* each mark keeps its own proportions — see .profile__logo */
.rhero__logo{width:auto;object-fit:contain;object-position:left center;margin-bottom:1.6rem}
.rhero__logo--jc{height:62px}
.rhero__logo--robata{height:150px}
@media (max-width:600px){
  .rhero__logo--jc{height:48px}
  .rhero__logo--robata{height:112px}
}

/* ---------- menu cards (restaurant pages) ---------- */
/* Two columns, not the shared grid--2: at a 320px minimum, four menu cards
   auto-fit into three columns and leave one orphan on its own row. */
.grid--menus{grid-template-columns:repeat(auto-fit,minmax(min(100%,430px),1fr))}
/* Robata has a single menu; left to itself it stretches the full 1220px */
.grid--menus--one{max-width:640px}
.mcard{
  background:var(--background);
  border:1px solid var(--border-soft);
  padding:clamp(1.5rem,2.8vw,2.2rem);
  display:flex;flex-direction:column;gap:.9rem;
  transition:border-color .3s var(--ease),transform .3s var(--ease);
}
.mcard:hover,.mcard:focus-visible{border-color:var(--gold);transform:translateY(-3px)}
.mcard__head{display:flex;flex-wrap:wrap;gap:.6rem 1.2rem;justify-content:space-between;align-items:baseline}
.mcard__head h3{font-size:clamp(1.35rem,2.4vw,1.85rem)}
.mcard__price{
  font-family:var(--sans);font-size:.72rem;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gold-bright);flex:none;
  font-variant-numeric:lining-nums tabular-nums;
}
.mcard p{color:var(--muted);margin:0;font-size:.97rem}
.mcard__meta{
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);
  font-variant-numeric:lining-nums tabular-nums;
}
.mcard .textlink{margin-top:auto;align-self:flex-start}

/* ---------- gallery ---------- */
.gallery{display:grid;gap:clamp(1rem,2vw,1.6rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,290px),1fr))}
.shot{margin:0}
.shot img{width:100%;aspect-ratio:4/3;object-fit:cover;border:1px solid var(--border-soft)}
.shot figcaption{margin-top:.75rem;color:var(--muted);font-size:.87rem}

/* ---------- split ---------- */
.split{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,320px),1fr));
  gap:clamp(2.2rem,5vw,4.5rem);
  align-items:center;
}
/* z-index:0 makes this element its own stacking context, so the offset frame at
   z-index:-1 sits behind the photo but still in FRONT of the section background.
   Without it the frame drops behind the section and only a stray edge shows. */
.split__media{position:relative;z-index:0}
.split__media img{width:100%;border:1px solid var(--border-soft)}
.split__media::after{
  content:"";position:absolute;inset:14px -14px -14px 14px;z-index:-1;
  border:1px solid var(--border);
}
@media (max-width:700px){.split__media::after{display:none}}

/* ---------- cards ---------- */
.grid{display:grid;gap:clamp(1.4rem,2.6vw,2.1rem)}
.grid--2{grid-template-columns:repeat(auto-fit,minmax(min(100%,320px),1fr))}
.grid--3{grid-template-columns:repeat(auto-fit,minmax(min(100%,270px),1fr))}
.grid--4{grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr))}

.card{
  background:var(--surface);
  border:1px solid var(--border-soft);
  display:flex;flex-direction:column;
  transition:border-color .3s var(--ease),transform .3s var(--ease);
}
.card:hover{border-color:var(--border);transform:translateY(-3px)}
.card__media{aspect-ratio:4/3;overflow:hidden}
.card__media img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.card:hover .card__media img{transform:scale(1.04)}
.card__body{padding:clamp(1.5rem,2.6vw,2.1rem);display:flex;flex-direction:column;flex:1;gap:1rem}
.card__body h3{font-size:clamp(1.5rem,2.6vw,2rem)}
.card__body p{color:var(--muted);margin:0}
.card__body .textlink,.card__body .btn-row{margin-top:auto}
/* Sized per mark, not per slot: J.C. Hwang's is a wide wordmark and Robata is a
   square lockup, so one shared height renders Robata's type unreadably small. */
.profile__logo{width:auto;object-fit:contain;object-position:left center;margin-bottom:1.1rem}
.profile__logo--jc{height:56px}
.profile__logo--robata{height:132px}

.value{border-top:1px solid var(--border);padding-top:1.4rem}
.value h3{font-size:.78rem;font-family:var(--sans);font-weight:800;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold);margin-bottom:.7rem}
.value p{color:var(--muted);margin:0;font-size:.96rem}

.pillar{display:flex;gap:1.4rem;align-items:flex-start}
.pillar__n{
  font-family:var(--serif);font-size:2.4rem;line-height:1;color:var(--gold);
  opacity:.7;flex:none;min-width:2.2rem;
  font-variant-numeric:lining-nums tabular-nums;
}
.pillar h3{margin-bottom:.55rem}
.pillar p{color:var(--muted);margin:0;font-size:.97rem}

.quote{
  border-left:2px solid var(--gold);
  padding:clamp(1.4rem,3vw,2.2rem) clamp(1.5rem,4vw,3rem);
  background:var(--surface);
}
.quote p{
  font-family:var(--serif);
  font-size:clamp(1.35rem,2.8vw,2.05rem);
  line-height:1.34;color:var(--ivory);margin:0;
}

.statement{background:var(--surface);border:1px solid var(--border-soft);padding:clamp(1.7rem,3.4vw,2.6rem)}
.statement p{color:var(--muted);margin:1rem 0 0}

/* ---------- restaurant profile ---------- */
.profile{display:grid;gap:clamp(1.8rem,4vw,3.5rem);align-items:center;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,330px),1fr))}
.profile+.profile{margin-top:clamp(3rem,6vw,5rem)}
.profile .split__media img{width:100%;border:1px solid var(--border-soft)}
.profile__points{list-style:none;margin:1.6rem 0 0;padding:0;display:grid;gap:.9rem}
.profile__points li{display:flex;gap:.85rem;align-items:baseline;color:var(--muted);font-size:.97rem}
.profile__points b{color:var(--ivory);font-weight:700;flex:none}
.profile__points span::before{content:"";display:inline-block;width:6px;height:6px;
  margin-right:.85rem;background:var(--gold);transform:rotate(45deg)}

/* ---------- menu ---------- */
/* The switcher follows you down the page. Before this you had to scroll all the
   way back to the top to move from breakfast to lunch. */
.menubar{
  position:sticky;top:var(--header-h);z-index:80;
  background:#050505f2;backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-soft);
  padding-block:.85rem;
  margin-bottom:clamp(2rem,4vw,3rem);
}
.menubar__inner{display:flex;flex-wrap:wrap;gap:.7rem 1.4rem;align-items:center;justify-content:center}
@media (max-width:700px){
  .menubar{padding-block:.6rem}
  .menubar__inner{gap:.5rem}
  .menubar .tabs--menu{gap:.4rem}
  .menubar .tab{padding:.55rem .85rem;font-size:.64rem;letter-spacing:.1em}
}

.tabs{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center}
.tabs--brand{gap:0;border:1px solid var(--border);padding:.35rem;width:max-content;max-width:100%;margin-inline:auto}
.tab{
  padding:.8rem 1.5rem;
  font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);border:1px solid transparent;
  transition:color .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease);
  white-space:nowrap;
}
.tab:hover{color:var(--ivory)}
.tabs--brand .tab[aria-selected=true]{background:var(--gold);color:#0b0b0b}
.tabs--menu .tab{border-color:var(--border-soft)}
.tabs--menu .tab[aria-selected=true]{border-color:var(--gold);color:var(--gold-bright)}

.menu-head{
  display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:space-between;align-items:flex-end;
  padding-bottom:1.6rem;border-bottom:1px solid var(--border);margin-bottom:2.6rem;
}
.menu-head h2{margin-bottom:.5rem}
.menu-head p{margin:0;color:var(--muted)}
.menu-price{text-align:right}
.menu-price strong{
  display:block;font-family:var(--sans);font-size:1.02rem;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;color:var(--gold-bright);
  /* Cormorant defaults to old-style figures; prices must sit on one baseline */
  font-variant-numeric:lining-nums tabular-nums;
}
.menu-price span{font-size:.8rem;color:var(--muted);letter-spacing:.06em}
@media (max-width:640px){.menu-price{text-align:left}}

.msec{border-bottom:1px solid var(--border-soft)}
.msec__toggle{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.35rem 0;text-align:left;
}
.msec__toggle h3{font-size:clamp(1.25rem,2vw,1.6rem)}
.msec__label{
  display:block;font-family:var(--sans);font-size:.68rem;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-top:.45rem;
}
.msec__chev{flex:none;width:22px;height:22px;color:var(--gold);transition:transform .32s var(--ease)}
.msec__toggle[aria-expanded=true] .msec__chev{transform:rotate(180deg)}
.msec__list{
  list-style:none;margin:0;padding:0 0 2rem;
  display:grid;gap:1.05rem;
  grid-template-columns:repeat(auto-fill,minmax(min(100%,300px),1fr));
}
.mitem__name{margin:0;font-size:1.02rem;line-height:1.4}
.mitem__zh{
  font-family:var(--sans);color:var(--muted);font-size:.9rem;
  margin-left:.55rem;white-space:nowrap;
}
.mitem__note{margin:.25rem 0 0;color:var(--muted);font-size:.9rem;line-height:1.5}
/* ---------- five-day board ---------- */
/* Monday to Friday side by side. The menu section gets a wider shell than the
   rest of the site because five columns of dish names need the room. */
.shell--wide{max-width:1560px}
.daygrid{
  display:grid;gap:1px;
  background:var(--border-soft);
  border:1px solid var(--border-soft);
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.day{background:var(--background);padding:1.4rem 1.15rem 1.6rem;min-width:0}
.day__head{padding-bottom:.9rem;margin-bottom:1.1rem;border-bottom:1px solid var(--border)}
.day__head h3{font-size:clamp(1.15rem,1.5vw,1.45rem)}
.day__label{
  display:block;font-family:var(--sans);font-size:.62rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-top:.45rem;
}
.day__list{list-style:none;margin:0;padding:0;display:grid;gap:.85rem}
.day__list .mitem__name{font-size:.93rem;line-height:1.35}
.day__list .mitem__zh{display:block;margin-left:0;margin-top:.15rem;font-size:.82rem;white-space:normal}
.day__list .mitem__note{font-size:.82rem}
@media (max-width:1200px){.daygrid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:820px){.daygrid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:560px){.daygrid{grid-template-columns:1fr}}

.menu-intro{
  max-width:74ch;color:var(--muted);
  margin:0 0 2.4rem;padding-bottom:2rem;
  border-bottom:1px solid var(--border-soft);
}
/* a few plates at the top of a menu, so the page is not a wall of type */
.mstrip{
  display:grid;gap:clamp(.9rem,1.8vw,1.4rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr));
  margin:0 0 clamp(2.2rem,4vw,3rem);
}
.mstrip .shot img{aspect-ratio:16/10}

.msec--story{border-top:1px solid var(--border);margin-top:2.4rem}
.msec__story{padding:0 0 2.4rem;max-width:78ch}
.msec__story p{color:var(--muted)}
.msec__story h4{
  font-family:var(--sans);font-size:.72rem;font-weight:800;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold);margin:2rem 0 .9rem;
}
.bowls{list-style:none;margin:1.2rem 0 0;padding:0;display:grid;gap:1.5rem;counter-reset:bowl}
.bowl{counter-increment:bowl}
.bowl__name{margin:0;font-size:1.05rem;display:flex;flex-wrap:wrap;align-items:baseline;gap:.1rem}
.bowl__name::before{
  content:counter(bowl) ". ";
  color:var(--gold);font-family:var(--serif);font-size:1.1rem;margin-right:.5rem;
  font-variant-numeric:lining-nums tabular-nums;
}
.bowl__roman{color:var(--muted);font-size:.87rem;font-style:italic;margin-left:.55rem}
.bowl__text{margin:.35rem 0 0;color:var(--muted);font-size:.94rem;line-height:1.6}

.menu-footnote{
  margin-top:2.6rem;padding-top:1.5rem;border-top:1px solid var(--border-soft);
  color:var(--muted);font-size:.87rem;
}

/* ---------- careers ---------- */
.roles{list-style:none;margin:0;padding:0;display:grid;gap:0;border-top:1px solid var(--border-soft)}
.roles li{border-bottom:1px solid var(--border-soft)}
.roles a{
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  padding:1.5rem .25rem;transition:padding-inline .3s var(--ease),background .3s var(--ease);
}
.roles a:hover,.roles a:focus-visible{background:var(--surface);padding-inline:1.25rem}
.roles h3{font-size:clamp(1.3rem,2.2vw,1.7rem)}
.roles span{
  flex:none;font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold-bright);display:flex;align-items:center;gap:.5rem;
}
.roles svg{width:14px;height:14px}

.role-group+.role-group{margin-top:clamp(2.2rem,4vw,3.2rem)}
.role-group h2{font-size:clamp(1.5rem,2.6vw,2rem);margin-bottom:1.3rem}
.role-group ul{list-style:none;margin:0;padding:0;display:grid;gap:.95rem}
.role-group li{display:flex;gap:.95rem;color:var(--muted);line-height:1.65}
.role-group li::before{
  content:"";flex:none;width:6px;height:6px;margin-top:.62rem;
  background:var(--gold);transform:rotate(45deg);
}

/* ---------- forms ---------- */
.form{display:grid;gap:1.15rem}
.field{display:grid;gap:.5rem}
.field--row{grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));gap:1.15rem}
label{
  font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);
}
input,select,textarea{
  width:100%;
  background:var(--surface-2);
  border:1px solid var(--border-soft);
  color:var(--ivory);
  font-family:var(--sans);font-size:.98rem;
  padding:.85rem 1rem;
  border-radius:0;
  transition:border-color .25s var(--ease),background .25s var(--ease);
}
textarea{min-height:150px;resize:vertical}
input:focus,select:focus,textarea:focus{border-color:var(--gold);background:var(--surface)}
input::placeholder,textarea::placeholder{color:#6f6a63}
select{appearance:none;background-image:linear-gradient(45deg,transparent 50%,var(--gold) 50%),
  linear-gradient(135deg,var(--gold) 50%,transparent 50%);
  background-position:calc(100% - 20px) 51%,calc(100% - 14px) 51%;
  background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-right:2.6rem}
select option{background:var(--surface-2);color:var(--ivory)}

.consent{display:flex;gap:.8rem;align-items:flex-start}
.consent input{width:18px;height:18px;flex:none;margin-top:.28rem;accent-color:var(--gold)}
.consent label{
  text-transform:none;letter-spacing:0;font-size:.92rem;font-weight:400;
  color:var(--muted);line-height:1.6;
}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.form-note{margin:0;font-size:.9rem;padding:.9rem 1.1rem;border:1px solid var(--border-soft)}
.form-note--err{border-color:#7d3030;background:#2a0f0f;color:#ffbdbd}
.form-note--ok{border-color:var(--gold);background:#1a1305;color:var(--gold-bright)}
.err{color:#ff9a9a;font-size:.85rem;margin:0}
input[aria-invalid=true],select[aria-invalid=true],textarea[aria-invalid=true]{border-color:#a34a4a}

.contact-grid{display:grid;gap:clamp(2rem,5vw,4rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr))}
.contact-info dl{margin:0;display:grid;gap:1.4rem}
.contact-info dt{
  font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.4rem;
}
.contact-info dd{margin:0;color:var(--muted);line-height:1.7}
.contact-info a:hover{color:var(--gold-bright)}

/* ---------- footer ---------- */
.footer{background:var(--surface);border-top:1px solid var(--border-soft);padding-block:clamp(3rem,6vw,4.5rem)}
.footer__top{display:grid;gap:2.5rem;grid-template-columns:repeat(auto-fit,minmax(min(100%,230px),1fr))}
.footer img{height:32px;width:auto;margin-bottom:1.1rem}
.footer h2{
  font-family:var(--sans);font-size:.68rem;font-weight:800;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem;
}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:.7rem}
.footer a{color:var(--muted);font-size:.94rem;transition:color .25s var(--ease)}
.footer a:hover,.footer a:focus-visible{color:var(--gold-bright)}
.footer p{color:var(--muted);font-size:.94rem}
.footer__bottom{
  margin-top:clamp(2.5rem,5vw,3.5rem);padding-top:1.6rem;
  border-top:1px solid var(--border-soft);
  display:flex;flex-wrap:wrap;gap:.8rem;justify-content:space-between;
  color:var(--muted);font-size:.85rem;
}
.footer__bottom p{margin:0;font-size:.85rem}

/* ---------- reveal ---------- */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none}}

/* the menu panels sit under a sticky bar that already provides the top gap */
.section--flush{padding-top:0}
/* anchors and tab switches must clear both the header and the sticky menubar */
:root{--sticky-h:calc(var(--header-h) + 64px)}
.msec,.day{scroll-margin-top:var(--sticky-h)}

/* line art: show the whole drawing rather than a crop of it */
.band__media--contain{background:var(--background)}
.band__media--contain img{object-fit:contain;padding:clamp(1.5rem,4vw,3rem)}

/* ---------- quote over a photograph ---------- */
.quoteband{position:relative;isolation:isolate;padding-block:clamp(4rem,9vw,7rem);overflow:hidden}
.quoteband__media{position:absolute;inset:0;z-index:-2}
.quoteband__media img{width:100%;height:100%;object-fit:cover;opacity:.5}
.quoteband::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(90deg,#050505f2 0%,#050505d9 55%,#05050599 100%);
}
.quote--over{background:transparent;border-left-width:3px}
.quote--over p:last-child{max-width:46ch}

.form-note--info{border-color:var(--border);background:#140f04;color:var(--muted)}
.form-note--info a{color:var(--gold-bright);border-bottom:1px solid var(--border)}
input[type=file]{padding:.7rem;font-size:.9rem;color:var(--muted)}
input[type=file]::file-selector-button{
  font:inherit;font-size:.68rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  background:transparent;border:1px solid var(--gold);color:var(--gold-bright);
  padding:.5rem .9rem;margin-right:.9rem;cursor:pointer;
}
