:root{
  --bg:#0b0b0b;
  --surface:#141714;
  --gold:#c9a44c;
  --gold-soft:#d4af55;
  --green:#1f3a32;
  --burgundy:#541f2d;
  --text:#f5f2ea;
  --muted:#a9a79f;

  --line:rgba(245,242,234,.075);
  --line-strong:rgba(245,242,234,.14);
  --gold-line:rgba(201,164,76,.30);

  --wrap:720px;
  --pad:20px;
  --nav-h:57px;
  --r:14px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
html:focus-within{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Manrope,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size:16px;
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;height:auto;display:block}

.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--pad)}

.sr-only{
  position:absolute;width:1px;height:1px;margin:-1px;padding:0;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

.skip{
  position:absolute;left:-9999px;top:0;z-index:60;
  background:var(--gold);color:#0b0b0b;padding:10px 16px;
  border-radius:0 0 var(--r) 0;font-weight:700;text-decoration:none;
}
.skip:focus{left:0}

:where(a,button,input):focus-visible{
  outline:2px solid var(--gold-soft);
  outline-offset:3px;
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  height:clamp(190px,54vw,240px);
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#000;
  isolation:isolate;
}
.hero__slides{position:absolute;inset:0;z-index:-2}
.hero__img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;object-position:50% 50%;
  opacity:0;
  transition:opacity .7s ease;
}
.hero__img.is-on{opacity:1}

.hero__dots{
  position:absolute;left:50%;bottom:6px;transform:translateX(-50%);
  z-index:2;display:flex;gap:2px;
}
.dot{
  width:26px;height:26px;
  display:grid;place-items:center;
  background:none;border:0;padding:0;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.dot::before{
  content:"";width:6px;height:6px;border-radius:50%;
  background:rgba(245,242,234,.40);
  transition:background-color .2s ease, transform .2s ease;
}
.dot[aria-current="true"]::before{background:var(--gold);transform:scale(1.18)}
.hero__veil{
  position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(120% 92% at 50% 38%, rgba(0,0,0,.34) 0%, rgba(0,0,0,.72) 62%, rgba(0,0,0,.9) 100%),
    linear-gradient(to bottom, rgba(11,11,11,.28) 0%, rgba(11,11,11,.06) 45%, var(--bg) 100%);
}
.hero__inner{text-align:center;padding:0 var(--pad)}
.hero__mark{margin:0;font-size:0;line-height:0}
.hero__mark img{
  width:min(76vw,430px);
  height:auto;
  margin-inline:auto;
  filter:drop-shadow(0 2px 14px rgba(0,0,0,.65));
}
.hero__sub{
  margin:12px 0 0;
  font-size:11.5px;
  font-weight:500;
  letter-spacing:.20em;
  color:rgba(245,242,234,.74);
  text-transform:uppercase;
}

/* ---------- search ---------- */
.searchbar{background:var(--bg);padding:18px 0 14px}
.search{position:relative;display:flex;align-items:center}
.search__icon{
  position:absolute;left:16px;width:18px;height:18px;pointer-events:none;
  fill:none;stroke:var(--muted);stroke-width:1.9;stroke-linecap:round;
}
.search__input{
  width:100%;
  min-height:48px;
  padding:12px 46px 12px 44px;
  font:inherit;
  font-size:16px;
  color:var(--text);
  background:color-mix(in srgb, var(--green) 26%, var(--surface));
  border:1px solid var(--line-strong);
  border-radius:999px;
  transition:border-color .18s ease, background-color .18s ease;
}
.search__input::placeholder{color:var(--muted)}
.search__input:focus{
  border-color:var(--gold-line);
  background:color-mix(in srgb, var(--green) 34%, var(--surface));
}
.search__input::-webkit-search-cancel-button{display:none}
.search__clear{
  position:absolute;right:6px;
  width:40px;height:40px;
  display:grid;place-items:center;
  background:none;border:0;border-radius:50%;
  cursor:pointer;
}
.search__clear svg{
  width:16px;height:16px;fill:none;stroke:var(--muted);
  stroke-width:1.9;stroke-linecap:round;
}

/* ---------- category nav ---------- */
.nav{
  position:sticky;top:0;z-index:20;
  background:rgba(11,11,11,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav__rail{
  display:flex;
  gap:8px;
  overflow-x:auto;
  scrollbar-width:none;
  padding-block:10px;
  scroll-padding-inline:var(--pad);
}
.nav__rail::-webkit-scrollbar{display:none}
.chip{
  flex:0 0 auto;
  min-height:37px;
  display:inline-flex;align-items:center;
  padding:0 15px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:var(--surface);
  color:var(--muted);
  font-size:13.5px;font-weight:500;
  text-decoration:none;white-space:nowrap;
  transition:color .18s ease, background-color .18s ease, border-color .18s ease;
}
.chip[aria-current="true"]{
  background:var(--gold);
  border-color:var(--gold);
  color:#0b0b0b;
  font-weight:700;
}

/* ---------- menu ---------- */
main{padding-bottom:8px}

.cat{scroll-margin-top:calc(var(--nav-h) + 14px);padding-top:40px}
.cat:first-child{padding-top:28px}

.cat__head{display:flex;align-items:center;gap:14px;margin-bottom:8px}
.cat__title{
  margin:0;
  font-size:24px;
  font-weight:700;
  letter-spacing:.005em;
  color:var(--gold);
}
.cat__rule{
  flex:1;height:1px;
  background:linear-gradient(90deg,rgba(201,164,76,.45),rgba(201,164,76,0));
}

.list{list-style:none;margin:0;padding:0}
.item{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:baseline;
  gap:18px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
}
.item:last-child{border-bottom:0}
.item__name{font-size:16px;font-weight:500;line-height:1.35}
.item__desc{
  grid-column:1/-1;
  margin:3px 0 0;
  font-size:13.5px;
  line-height:1.45;
  color:var(--muted);
}
.item__price{
  font-size:15.5px;
  font-weight:700;
  color:var(--gold);
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
.item__price--na{color:var(--muted);font-weight:500}

.empty{
  margin:56px 0;
  text-align:center;
  color:var(--text);
  font-weight:500;
}
.empty span{display:inline-block;margin-top:6px;color:var(--muted);font-weight:400;font-size:14.5px}

/* ---------- footer ---------- */
.foot{
  margin-top:46px;
  padding:34px var(--pad) 40px;
  text-align:center;
  border-top:1px solid rgba(84,31,45,.55);
  background:linear-gradient(to bottom,rgba(84,31,45,.10),transparent 70%);
}
.foot__mark{width:42px;height:auto;margin:0 auto 12px;opacity:.92}
.foot__name{
  margin:0;
  font-size:12.5px;font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold);
}
.foot__thanks{margin:8px 0 0;font-size:13.5px;color:var(--muted)}

/* ---------- back to top ---------- */
.totop{
  position:fixed;right:16px;bottom:16px;z-index:30;
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--surface);
  border:1px solid var(--gold-line);
  cursor:pointer;
  opacity:0;transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease;
}
.totop svg{width:19px;height:19px;fill:none;stroke:var(--gold);stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.totop.is-on{opacity:1;transform:none}

/* ---------- larger screens ---------- */
@media (min-width:680px){
  :root{--pad:28px}
  .hero{height:300px}
  .hero__dots{bottom:10px}
  .hero__sub{font-size:12.5px;margin-top:14px}
  .searchbar{padding:26px 0 18px}
  .nav__rail{justify-content:center;flex-wrap:wrap;overflow-x:visible}
  .cat{padding-top:54px}
  .cat__title{font-size:27px}
  .item{padding:14px 0}
  .totop{right:26px;bottom:26px}
}

@media (min-width:1024px){
  .hero{height:340px}
  .hero__mark img{width:460px}
}

@media (prefers-reduced-motion:reduce){
  html:focus-within{scroll-behavior:auto}
  *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important}
}
