/* ============================================================
   TOMO 7 SUSHI — Riverside, CA
   Theme: black · dark red · white/cream · gold accents
   ============================================================ */

:root {
  /* color */
  --black:      #0c0a0a;
  --black-2:    #130f0f;
  --panel:      #1a1414;
  --panel-2:    #221919;
  --red:        #c1272d;
  --red-deep:   #8e1b1f;
  --red-bright: #e0403f;
  --cream:      #f5efe4;
  --text:       #e9e0d4;
  --muted:      #a89d8f;
  --gold:       #c9a24b;
  --gold-soft:  #d8b968;
  --line:       rgba(201, 162, 75, .22);
  --line-strong:rgba(201, 162, 75, .45);

  /* type */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body:    "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* metrics */
  --nav-h: 74px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .1px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: #fff; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 108px 0; position: relative; }
.section--tight { padding: 84px 0; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 14px;
  display: inline-block;
}
.eyebrow::before { content: "— "; color: var(--red); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: .5px;
}
.section-title .accent { color: var(--red-bright); }

.lead { color: var(--muted); font-size: 1.06rem; max-width: 62ch; }

.divider {
  display: flex; align-items: center; gap: 14px;
  margin: 22px 0 0;
}
.divider::before, .divider::after {
  content: ""; height: 1px; flex: 1; background: var(--line);
}
.divider .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.divider--center { max-width: 240px; margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: #fff;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(193,39,45,.7); background: var(--red-bright); }
.btn:active { transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--cream);
}
.btn--ghost:hover { background: rgba(201,162,75,.08); border-color: var(--gold); box-shadow: none; transform: translateY(-3px); }

.btn--gold { background: var(--gold); color: #1a1207; }
.btn--gold:hover { background: var(--gold-soft); box-shadow: 0 14px 30px -12px rgba(201,162,75,.55); }

.btn--uber { background: #06c167; color: #04241a; }
.btn--uber:hover { background: #16d67a; box-shadow: 0 14px 30px -12px rgba(6,193,103,.5); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), backdrop-filter .45s var(--ease),
              border-color .45s var(--ease), height .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 8, 8, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  height: 64px;
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 38px; width: auto; transition: height .45s var(--ease); }
.header.scrolled .nav-logo img { height: 32px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text);
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px;
  height: 1px; background: var(--red-bright);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta { margin-left: 10px; }
.nav-links .nav-cta a { color: #fff; padding: 11px 22px; }
.nav-links .nav-cta a::after { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 85% 40%, rgba(142,27,31,.20), transparent 55%),
    radial-gradient(80% 80% at 10% 10%, rgba(201,162,75,.05), transparent 60%),
    var(--black);
}
.hero-photo {
  position: absolute; z-index: 1;
  top: 0; right: 0; bottom: 0; width: 56%;
  background: url("assets/hero.jpg") center right / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 42%);
          mask-image: linear-gradient(to right, transparent, #000 42%);
  opacity: 0;
  animation: heroPhoto 1.6s var(--ease-out) .25s forwards;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,10,.85), transparent 45%);
}
@keyframes heroPhoto { to { opacity: 1; } }

.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 620px; }
.hero-logo { width: min(460px, 78%); margin-bottom: 26px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.6)); }

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 500;
}
.hero-sub {
  color: var(--muted); font-size: 1rem; letter-spacing: .04em;
  margin: 0 0 34px; max-width: 44ch;
}
.hero-sub b { color: var(--gold); font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: var(--muted); font-size: .64rem; letter-spacing: .3em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }

/* hero entrance */
.hero [data-hero] { opacity: 0; transform: translateY(24px); animation: heroUp .9s var(--ease-out) forwards; }
.hero [data-hero="1"] { animation-delay: .1s; }
.hero [data-hero="2"] { animation-delay: .24s; }
.hero [data-hero="3"] { animation-delay: .38s; }
.hero [data-hero="4"] { animation-delay: .52s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ============================================================
   AYCE BAND
   ============================================================ */
.ayce {
  background:
    linear-gradient(rgba(12,10,10,.86), rgba(12,10,10,.92)),
    url("assets/blossom.jpg") center / cover no-repeat fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ayce-head { text-align: center; margin-bottom: 46px; }
.ayce-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tier {
  position: relative;
  text-align: center;
  padding: 40px 26px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.tier:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 24px 50px -30px rgba(0,0,0,.9); }
.tier--feature { border-color: var(--red-deep); background: linear-gradient(160deg, #2a1615, var(--panel)); }
.tier--feature::before {
  content: "Premium"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; font-weight: 600;
}
.tier h3 { font-family: var(--font-body); font-weight: 500; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.tier .price { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--cream); line-height: 1; }
.tier .price span { font-size: 1.2rem; color: var(--gold); vertical-align: super; }
.tier--feature .price { color: var(--red-bright); }
.tier p { color: var(--muted); font-size: .85rem; margin: 12px 0 0; }
.ayce-note {
  text-align: center; margin-top: 34px; color: var(--muted); font-size: .86rem; letter-spacing: .04em;
}
.ayce-note b { color: var(--gold); font-weight: 500; }

/* ---------- roll specials ---------- */
.deal-pair {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 760px; margin: 8px auto 0;
}
@media (max-width: 560px) { .deal-pair { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: 8px; border: 1px solid var(--line); }
.about-photo .frame {
  position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--line-strong);
  border-radius: 8px; z-index: -1;
}
.about-stats { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.about-stats .stat .n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--red-bright); line-height: 1; }
.about-stats .stat .l { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.about p + p { margin-top: 16px; }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--black-2); }
.menu-head { text-align: center; margin-bottom: 40px; }

.menu-tabs-wrap {
  position: sticky; top: var(--nav-h); z-index: 40;
  padding: 14px 0; margin-bottom: 12px;
  background: rgba(19,15,15,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 2px 2px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 40px;
}
.menu-tabs::-webkit-scrollbar { display: none; }

/* edge fades that hint at more content */
.menu-tabs-wrap::before,
.menu-tabs-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 58px; z-index: 2;
  pointer-events: none; opacity: 0; transition: opacity .3s var(--ease);
}
.menu-tabs-wrap::before { left: 0;  background: linear-gradient(to right, rgba(19,15,15,.96) 18%, transparent); }
.menu-tabs-wrap::after  { right: 0; background: linear-gradient(to left,  rgba(19,15,15,.96) 18%, transparent); }
.menu-tabs-wrap.more-left::before  { opacity: 1; }
.menu-tabs-wrap.more-right::after  { opacity: 1; }

/* tappable scroll arrows */
.tab-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(32,24,23,.92); border: 1px solid var(--line-strong);
  color: var(--cream); cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.tab-arrow svg { width: 17px; height: 17px; }
.tab-arrow--left  { left: 0; }
.tab-arrow--right { right: 0; }
.menu-tabs-wrap.more-left  .tab-arrow--left,
.menu-tabs-wrap.more-right .tab-arrow--right { opacity: 1; pointer-events: auto; }
.tab-arrow:hover { background: var(--red); border-color: var(--red); }
.tab-arrow:active { transform: translateY(-50%) scale(.92); }
/* one-time nudge to advertise horizontal scrolling */
.tab-arrow--right.cue { animation: tabCue 1.5s var(--ease) infinite; }
@keyframes tabCue {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(4px); box-shadow: 0 0 0 6px rgba(193,39,45,0); }
  0%       { box-shadow: 0 0 0 0 rgba(193,39,45,.35); }
}
.menu-tab {
  flex: 0 0 auto; scroll-snap-align: start;
  padding: 10px 20px;
  font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 40px;
  cursor: pointer; white-space: nowrap;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.menu-tab:hover { color: var(--cream); border-color: var(--line-strong); }
.menu-tab.active { color: #fff; background: var(--red); border-color: var(--red); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panelIn .5s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu-panel-note {
  text-align: center; color: var(--muted); font-size: .9rem; margin: 0 auto 30px; max-width: 60ch;
}
.menu-panel-note b { color: var(--gold); font-weight: 500; }

.menu-subhead {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--red-bright);
  margin: 38px 0 4px; letter-spacing: .5px;
}
.menu-subhead:first-child { margin-top: 0; }
.menu-subhead small { display: block; font-family: var(--font-body); font-size: .72rem; font-weight: 300; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.menu-subhead + .menu-grid { margin-top: 18px; }

.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 48px;
}
.mi {
  display: flex; align-items: baseline; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(201,162,75,.1);
}
.mi-name { color: var(--cream); font-weight: 400; font-size: 1rem; }
.mi-name em { display: block; font-style: normal; color: var(--muted); font-size: .82rem; font-weight: 300; margin-top: 2px; line-height: 1.4; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(201,162,75,.28); transform: translateY(-4px); min-width: 20px; }
.mi-price { color: var(--gold); font-weight: 500; font-size: .98rem; white-space: nowrap; letter-spacing: .02em; }
.mi-price small { color: var(--muted); font-weight: 300; }

.menu-foot-note {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .78rem; line-height: 1.7; text-align: center;
}

/* ============================================================
   HOURS + VISIT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.hours-card, .contact-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 8px; padding: 38px 34px;
}
.hours-list { list-style: none; margin: 22px 0 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 10px; border-bottom: 1px solid rgba(201,162,75,.1);
  transition: background .3s var(--ease);
  border-radius: 4px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 400; color: var(--cream); letter-spacing: .04em; }
.hours-list .time { color: var(--muted); font-size: .92rem; text-align: right; }
.hours-list li.today { background: rgba(193,39,45,.12); }
.hours-list li.today .day { color: var(--red-bright); font-weight: 600; }
.hours-list li.today .day::after { content: " · Today"; font-size: .68rem; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; font-weight: 500; }
.open-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.open-badge .status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.open-badge.is-open .status-dot { background: #4ccf6a; animation: pulse 2s infinite; }
.open-badge.is-open .status-txt { color: #7fe39a; }
.open-badge.is-closed .status-dot { background: var(--red); }
.open-badge.is-closed .status-txt { color: var(--red-bright); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(76,207,106,.5);} 70%{box-shadow:0 0 0 8px rgba(76,207,106,0);} 100%{box-shadow:0 0 0 0 rgba(76,207,106,0);} }

.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(201,162,75,.1); }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .ic { flex: 0 0 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.contact-row .ic svg { width: 18px; height: 18px; }
.contact-row .label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-row .val { color: var(--cream); font-size: 1.02rem; }
.contact-row a.val:hover { color: var(--red-bright); }

.map-embed {
  margin-top: 22px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 240px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ============================================================
   ORDER
   ============================================================ */
.order {
  position: relative;
  background:
    linear-gradient(rgba(12,10,10,.9), rgba(12,10,10,.95)),
    url("assets/platter-dark.jpg") center / cover no-repeat fixed;
  border-top: 1px solid var(--line);
}
.order-head { text-align: center; margin-bottom: 46px; }
.order-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.order-card {
  text-align: center; padding: 48px 34px;
  background: linear-gradient(160deg, rgba(34,25,25,.92), rgba(26,20,20,.92));
  border: 1px solid var(--line); border-radius: 10px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.order-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 30px 60px -34px rgba(0,0,0,.9); }
.order-card .oc-ic {
  width: 66px; height: 66px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--red-bright);
}
.order-card .oc-ic svg { width: 28px; height: 28px; }
.order-card h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--cream); margin: 0 0 8px; }
.order-card p { color: var(--muted); font-size: .92rem; margin: 0 0 26px; }
.order-card .phone-big { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 600; margin: 0 0 26px; letter-spacing: 1px; }
.order-btns { display: flex; flex-direction: column; gap: 12px; align-items: stretch; margin-top: 4px; }
.order-btns .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080606; border-top: 1px solid var(--line); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; align-items: start; }
.footer-logo img { height: 46px; margin-bottom: 18px; }
.footer p { color: var(--muted); font-size: .9rem; max-width: 40ch; }
.footer h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; color: var(--muted); font-size: .9rem; }
.footer ul li a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(201,162,75,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: .78rem;
}
.footer-bottom .disclaimer { max-width: 70ch; line-height: 1.7; opacity: .8; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { width: 68%; -webkit-mask-image: linear-gradient(to right, transparent, #000 60%); mask-image: linear-gradient(to right, transparent, #000 60%); }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
    background: var(--black-2); border-left: 1px solid var(--line);
    padding: 40px 34px; transform: translateX(100%);
    transition: transform .5s var(--ease); box-shadow: -30px 0 60px -30px #000;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { width: 100%; font-size: .9rem; padding: 14px 4px; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin: 12px 0 0; width: 100%; }
  .nav-links .nav-cta a { justify-content: center; }
  .nav-toggle { display: block; z-index: 101; }

  .section { padding: 76px 0; }
  .hero-photo { position: absolute; width: 100%; opacity: .28; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, transparent 90%); mask-image: linear-gradient(to bottom, transparent, #000 20%, transparent 90%); }
  .hero-content { max-width: 100%; }
  .ayce-tiers { grid-template-columns: 1fr; gap: 30px; }
  .tier--feature { order: -1; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .order-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { gap: 24px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero-cta { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; flex: none; justify-content: center; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero [data-hero], .hero-photo { opacity: 1; transform: none; animation: none; }
}
