:root {
  --purple: #2d0055;
  --purple-2: #3a006c;
  --purple-dark: #1b0036;
  --orange: #ff4b12;
  --orange-soft: #ff6a28;
  --ink: #261a2d;
  --cream: #f7f3ee;
  --paper: #fffefb;
  --white: #ffffff;
  --line: rgba(45, 0, 85, .16);
  --condensed: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --script: "Yellowtail", cursive;
  --shell: min(1380px, calc(100% - 72px));
  --shadow: 0 28px 80px rgba(35, 0, 67, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 132px 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 12px 18px; transform: translateY(-150%); background: var(--white); color: var(--purple); }
.skip-link:focus { transform: translateY(0); }

.announcement { height: 34px; overflow: hidden; background: var(--purple); color: var(--white); }
.announcement__track { min-width: max-content; height: 34px; display: flex; align-items: center; justify-content: center; gap: 22px; padding: 0 24px; font-family: var(--condensed); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.announcement__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 254, 251, .93); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: .3s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 32px rgba(45,0,85,.06); }
.header-inner { height: 94px; display: grid; grid-template-columns: 250px 1fr 250px; align-items: center; }
.brand { width: 174px; height: 70px; display: flex; align-items: center; overflow: visible; }
.brand img { width: 174px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a { position: relative; padding: 8px 0; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; bottom: 1px; left: 0; width: 100%; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--orange); transition: transform .28s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-order { justify-self: end; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 24px; border: 0; border-radius: 4px; font-family: var(--condensed); font-size: 16px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button span { font: 400 18px/1 var(--body); }
.button--orange { background: var(--orange); color: var(--white); }
.button--orange:hover { background: var(--purple); }
.button--purple { background: var(--purple); color: var(--white); }
.button--purple:hover { background: var(--orange); }
.button--white { background: var(--white); color: var(--purple); }
.button--white:hover { background: var(--orange); color: var(--white); }
.menu-toggle { position: relative; z-index: 1002; display: none; width: 56px; height: 56px; flex: 0 0 56px; padding: 0; border: 2px solid var(--purple); border-radius: 3px; background: var(--purple); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); align-items: center; justify-content: center; flex-direction: column; gap: 6px; overflow: visible; }
.menu-toggle::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.menu-toggle span { position: relative; z-index: 1; width: 25px; height: 2px; flex: 0 0 2px; border-radius: 2px; background: var(--white); transition: transform .3s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: calc(100svh - 128px); padding: 50px 0 26px; overflow: hidden; background: var(--paper); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none; background-image: radial-gradient(var(--purple) .7px, transparent .7px); background-size: 16px 16px; mask-image: linear-gradient(90deg, transparent 0, #000 15%, transparent 55%); }
.hero__shell { min-height: 640px; display: grid; grid-template-columns: minmax(460px, .92fr) minmax(520px, 1.08fr); align-items: center; gap: clamp(20px, 5vw, 90px); }
.hero__content { position: relative; z-index: 3; padding: 15px 0 30px; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; color: var(--purple); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero__eyebrow b { width: 44px; height: 2px; background: var(--orange); }
.hero-copy { display: none; }
.hero-copy.is-active { display: block; animation: copyIn .8s cubic-bezier(.2,.8,.2,1) both; }
@keyframes copyIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero__kicker { margin: 0 0 2px; color: var(--purple); font-family: var(--condensed); font-size: clamp(22px, 2vw, 30px); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(84px, 8vw, 136px); font-weight: 900; letter-spacing: -.055em; line-height: .72; text-transform: uppercase; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero h1 span { display: inline-block; margin-top: .17em; font-size: .64em; letter-spacing: -.035em; }
.hero__lead { max-width: 610px; margin: 32px 0 0; padding-left: 22px; border-left: 3px solid var(--orange); font-size: 16px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 15px; padding: 9px 0; border-bottom: 2px solid currentColor; color: var(--purple); font-family: var(--condensed); font-size: 16px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.text-link span { color: var(--orange); }
.hero__pager { display: flex; gap: 30px; margin-top: 48px; }
.hero__pager button { position: relative; min-width: 160px; padding: 13px 0 0; border: 0; border-top: 2px solid var(--line); background: transparent; color: rgba(45,0,85,.4); text-align: left; cursor: pointer; font-family: var(--condensed); font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: .3s ease; }
.hero__pager button::before { content: ""; position: absolute; top: -2px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .3s ease; }
.hero__pager button.is-active { color: var(--purple); }
.hero__pager button.is-active::before { width: 100%; }
.hero__pager span { margin-right: 7px; color: var(--orange); }
.hero__visual { position: relative; z-index: 2; min-height: 640px; }
.hero__orange-disc { position: absolute; width: 520px; height: 520px; top: 50%; left: 50%; border-radius: 50%; transform: translate(-45%, -51%); background: var(--orange); }
.hero__orange-disc::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.45); border-radius: inherit; }
.hero-image { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: translateY(20px) scale(.96); transition: opacity .65s ease, transform .8s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.hero-image.is-active { opacity: 1; transform: none; }
.hero-image img { width: auto; max-width: min(88%, 520px); height: 600px; border: 11px solid var(--white); object-fit: contain; background: var(--white); box-shadow: 0 38px 70px rgba(31,0,58,.2); }
.hero-image--fish { inset: 0; }
.hero-image--fish img { object-position: center; transform: rotate(-2.3deg); }
.hero-image--empanada { inset: 0; }
.hero-image--empanada img { object-position: center; transform: rotate(2.3deg); }
.price-badge { position: absolute; z-index: 5; top: 25px; right: 5px; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 5px solid var(--white); border-radius: 50%; transform: rotate(7deg); background: var(--purple); color: var(--white); box-shadow: var(--shadow); }
.price-badge::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.75); border-radius: inherit; }
.price-badge small, .price-badge strong { position: relative; z-index: 1; }
.price-badge small { max-width: 95px; text-align: center; font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-badge strong { font-family: var(--condensed); font-size: 54px; font-weight: 900; line-height: 1; }
.ingredient-chip { position: absolute; z-index: 5; padding: 12px 16px; border: 2px solid var(--purple); background: var(--white); color: var(--purple); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; box-shadow: 7px 7px 0 var(--purple); }
.ingredient-chip--one { bottom: 82px; left: 2px; transform: rotate(-4deg); }
.ingredient-chip--two { right: 20px; bottom: 40px; transform: rotate(4deg); }
.hero__scribble { position: absolute; z-index: 6; right: 5%; bottom: 4%; color: var(--white); font-family: var(--script); font-size: 32px; transform: rotate(-8deg); }
.hero__outline { position: absolute; border: 2px solid rgba(45,0,85,.12); border-radius: 50%; pointer-events: none; }
.hero__outline--one { width: 550px; height: 550px; top: 30px; right: -330px; }
.hero__outline--two { width: 760px; height: 760px; bottom: -610px; left: -190px; }
.hero__micro { position: absolute; top: 46%; z-index: 2; color: rgba(45,0,85,.45); font-family: var(--condensed); font-size: 10px; font-weight: 800; letter-spacing: .22em; writing-mode: vertical-rl; }
.hero__micro--left { left: 14px; transform: rotate(180deg); }
.hero__micro--right { right: 14px; }
.hero__bottom { position: relative; z-index: 4; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; padding-top: 12px; }
.hero__promise { display: flex; align-items: center; gap: 12px; }
.promise-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); }
.hero__promise p, .hero__social { margin: 0; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .1em; }
.hero__promise strong { color: var(--purple); }
.hero__signature { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: 24px; font-style: italic; font-weight: 800; text-transform: uppercase; }
.hero__signature span { color: var(--orange); }
.hero__social { justify-self: end; display: flex; align-items: center; gap: 18px; }
.hero__social a { color: var(--purple); font-weight: 700; }

.flavour-strip { overflow: hidden; transform: rotate(-1.25deg) scale(1.02); background: var(--purple); color: var(--white); box-shadow: 0 15px 40px rgba(45,0,85,.18); }
.flavour-strip__track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 22px 0; animation: marquee 26s linear infinite; font-family: var(--condensed); font-size: clamp(34px, 4vw, 62px); font-weight: 900; letter-spacing: .02em; line-height: .8; }
.flavour-strip__track b { color: var(--orange); }
.flavour-strip__track i { color: var(--orange); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.eyebrow { margin: 0 0 16px; color: var(--orange); font-family: var(--condensed); font-size: 14px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading h2, .brand-story h2, .specials h2 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(62px, 7vw, 104px); font-weight: 900; letter-spacing: -.045em; line-height: .8; text-transform: uppercase; }
.section-heading h2 span, .specials h2 span { color: var(--orange); }
.section-heading > p { max-width: 510px; margin: 0 0 5px; color: #5c5063; font-size: 16px; line-height: 1.75; }
.menu-section { background: var(--cream); }
.menu-filter { display: flex; gap: 10px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.menu-filter button { flex: 0 0 auto; padding: 11px 17px; border: 1px solid var(--line); border-radius: 30px; background: transparent; color: var(--purple); cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.menu-filter button.is-active { border-color: var(--purple); background: var(--purple); color: var(--white); }
.food-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.food-card { position: relative; min-height: 575px; display: flex; flex-direction: column; padding: 14px 14px 22px; overflow: hidden; background: var(--white); border: 1px solid rgba(45,0,85,.08); transition: transform .35s ease, box-shadow .35s ease; }
.food-card:hover { z-index: 2; transform: translateY(-10px) rotate(-.5deg); box-shadow: var(--shadow); }
.food-card__image { position: relative; height: 300px; overflow: hidden; background: var(--white); }
.food-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s ease; }
.food-card:hover .food-card__image img { transform: scale(.985); }
.food-card__image--empanada img { object-position: center 45%; }
.food-card__flag { position: absolute; top: 13px; left: 13px; padding: 9px 11px; background: var(--purple); color: var(--white); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.food-card__flag--orange { background: var(--orange); }
.food-card__body { display: grid; grid-template-columns: 1fr auto; gap: 15px; align-items: start; margin-top: 22px; padding: 0 7px; }
.food-card__body p { margin: 0 0 7px; color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.food-card__body h3 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: 28px; font-weight: 800; line-height: .95; text-transform: uppercase; }
.food-card__body strong { color: var(--purple); font-family: var(--condensed); font-size: 38px; font-weight: 900; line-height: .9; }
.food-card__description { margin: 16px 7px 22px; color: #6b5e70; font-size: 13px; line-height: 1.6; }
.food-card > a { display: flex; justify-content: space-between; margin: auto 7px 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--purple); font-family: var(--condensed); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.food-card > a span { color: var(--orange); }
.food-card--purple { background: var(--purple); color: var(--white); }
.food-card--orange { background: var(--orange); color: var(--white); }
.food-card--purple .food-card__description, .food-card--orange .food-card__description { color: rgba(255,255,255,.75); }
.food-card--purple > a, .food-card--orange > a { border-color: rgba(255,255,255,.25); color: var(--white); }
.food-card__body--light p, .food-card__body--light h3, .food-card__body--light strong { color: var(--white); }
.food-card__word-art { height: 300px; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--condensed); font-size: clamp(65px, 6vw, 100px); font-weight: 900; letter-spacing: -.06em; transform: rotate(-8deg); text-shadow: 8px 8px 0 var(--orange); }
.food-card__word-art::before, .food-card__word-art::after { content: ""; position: absolute; width: 74%; height: 3px; background: var(--orange); }
.food-card__word-art::before { transform: translateY(-75px); }
.food-card__word-art::after { transform: translateY(75px); }
.food-card__stamp { width: 190px; height: 190px; display: grid; place-items: center; align-self: center; margin: 54px auto 56px; border: 4px solid var(--white); border-radius: 50%; color: var(--white); font-family: var(--condensed); font-size: 42px; font-weight: 900; line-height: .78; text-align: center; transform: rotate(8deg); box-shadow: 0 0 0 10px rgba(255,255,255,.18); }
.menu-cta { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; padding: 28px 0 0; border-top: 1px solid var(--line); }
.menu-cta p { display: flex; align-items: center; gap: 15px; margin: 0; color: var(--purple); font-family: var(--condensed); font-size: 18px; font-weight: 800; text-transform: uppercase; }
.menu-cta p span { color: var(--orange); font-size: 48px; font-weight: 900; line-height: 1; }

.brand-story { position: relative; overflow: hidden; background: var(--purple); color: var(--white); }
.brand-story::before { content: "FUZE"; position: absolute; left: -60px; bottom: -120px; color: rgba(255,255,255,.035); font-family: var(--condensed); font-size: 410px; font-weight: 900; line-height: 1; }
.brand-story__arc { position: absolute; width: 720px; height: 720px; top: -510px; right: -100px; border: 70px solid var(--orange); border-radius: 50%; opacity: .95; }
.brand-story__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.brand-story h2 { color: var(--white); }
.brand-story h2 span { display: inline-block; color: var(--orange); font-size: .65em; margin-top: .17em; }
.brand-story__lead > p:not(.eyebrow) { max-width: 570px; margin: 35px 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.8; }
.brand-story__tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.story-tile { position: relative; min-height: 290px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.story-tile > span { position: absolute; top: 25px; right: 25px; font-family: var(--condensed); font-size: 14px; font-weight: 800; }
.story-tile h3 { margin: 0; font-family: var(--condensed); font-size: 52px; font-weight: 900; line-height: .78; text-transform: uppercase; }
.story-tile p { max-width: 220px; margin: 23px 0 0; font-size: 13px; line-height: 1.6; }
.story-tile--orange { background: var(--orange); }
.story-tile--orange::before { content: "✦"; position: absolute; top: 18px; left: 25px; font-size: 38px; }
.story-tile--white { transform: translateY(50px); background: var(--white); color: var(--purple); }
.story-tile--outline { grid-column: 1 / -1; min-height: 210px; margin-top: 50px; border: 1px solid rgba(255,255,255,.28); }
.story-tile--outline h3 { color: var(--orange); }

.specials { position: relative; overflow: hidden; background: var(--paper); }
.specials::after { content: "SPECIAL"; position: absolute; right: -90px; bottom: -105px; color: rgba(45,0,85,.035); font-family: var(--condensed); font-size: 260px; font-weight: 900; }
.specials__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(60px, 8vw, 135px); align-items: center; }
.specials__poster { position: relative; max-width: 570px; padding: 15px; transform: rotate(-2.5deg); background: var(--white); box-shadow: var(--shadow); }
.specials__poster::after { content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: -1; border: 2px solid var(--orange); }
.specials__poster-label { position: absolute; right: -18px; bottom: 35px; padding: 12px 16px; background: var(--purple); color: var(--white); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.specials h2 { font-size: clamp(66px, 7vw, 108px); }
.specials__script { margin: 15px 0 20px; color: var(--orange); font-family: var(--script); font-size: clamp(34px, 4vw, 60px); line-height: 1; transform: rotate(-2deg); }
.specials__description { max-width: 650px; color: #625468; font-size: 16px; line-height: 1.8; }
.specials__price { display: flex; align-items: flex-end; gap: 12px; margin: 35px 0 30px; color: var(--purple); }
.specials__price small { align-self: center; font-family: var(--condensed); font-size: 25px; font-weight: 800; text-transform: uppercase; }
.specials__price strong { font-family: var(--condensed); font-size: 112px; font-weight: 900; letter-spacing: -.07em; line-height: .7; }
.specials__price span { color: var(--orange); font-family: var(--condensed); font-size: 18px; font-weight: 800; }
.specials__actions { display: flex; align-items: center; gap: 34px; }

.latest-specials { position: relative; overflow: hidden; background: var(--cream); }
.latest-specials__word { position: absolute; right: -65px; top: 32px; color: rgba(45,0,85,.035); font-family: var(--condensed); font-size: clamp(180px, 22vw, 360px); font-weight: 900; line-height: .75; }
.latest-specials__heading { position: relative; z-index: 2; }
.specials-gallery { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.special-card { min-height: 515px; display: grid; grid-template-columns: minmax(220px, .9fr) 1.1fr; overflow: hidden; border: 1px solid rgba(45,0,85,.1); background: var(--white); box-shadow: 0 20px 55px rgba(45,0,85,.07); transition: transform .35s ease, box-shadow .35s ease; }
.special-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: var(--shadow); }
.special-card__visual { min-width: 0; display: grid; place-items: center; padding: 14px; background: #f1eeeb; }
.special-card__visual img { width: 100%; height: 100%; max-height: 485px; object-fit: contain; }
.special-card__body { min-width: 0; display: flex; flex-direction: column; padding: 34px 28px 30px; }
.special-card__tag { color: var(--orange); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.special-card h3 { margin: 25px 0 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(40px, 4vw, 62px); font-weight: 900; letter-spacing: -.045em; line-height: .76; text-transform: uppercase; }
.special-card h3 em { color: var(--orange); font-style: normal; }
.special-card__body > p { margin: 27px 0 24px; color: #685a6d; font-size: 12px; line-height: 1.7; }
.special-card__price { display: flex; align-items: flex-end; gap: 8px; margin-top: auto; color: var(--purple); }
.special-card__price small { align-self: center; font-family: var(--condensed); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.special-card__price strong { font-family: var(--condensed); font-size: 64px; font-weight: 900; letter-spacing: -.06em; line-height: .72; }
.special-card__price span { color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; }
.special-card__location { margin-top: 24px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--purple); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.special-card__location span { margin-right: 7px; color: var(--orange); }
.latest-specials__footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.latest-specials__footer p { margin: 0; color: #746879; font-size: 11px; }

.reel-section { position: relative; overflow: hidden; background: var(--purple); color: var(--white); }
.reel-section::before { content: "REELS"; position: absolute; left: -55px; bottom: -90px; color: rgba(255,255,255,.035); font-family: var(--condensed); font-size: clamp(230px, 30vw, 480px); font-weight: 900; line-height: .7; }
.reel-section__ring { position: absolute; width: 620px; height: 620px; top: -440px; right: -160px; border: 75px solid var(--orange); border-radius: 50%; }
.reel-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .48fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.reel-heading h2 { margin: 0; color: var(--white); font-family: var(--condensed); font-size: clamp(70px, 7vw, 108px); font-weight: 900; letter-spacing: -.05em; line-height: .75; text-transform: uppercase; }
.reel-heading h2 span { color: var(--orange); }
.reel-heading__side > p { margin: 0 0 24px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.reel-controls { display: flex; gap: 9px; }
.reel-controls button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.28); background: transparent; color: var(--white); cursor: pointer; font-size: 22px; transition: .25s ease; }
.reel-controls button:hover { border-color: var(--orange); background: var(--orange); }
.reel-viewport { position: relative; z-index: 2; width: min(100%, 940px); margin-inline: auto; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.reel-viewport::-webkit-scrollbar { display: none; }
.reel-track { width: max-content; display: flex; gap: 20px; padding: 4px 4px 14px; }
.reel-card { flex: 0 0 340px; overflow: hidden; scroll-snap-align: start; border: 1px solid rgba(255,255,255,.18); background: var(--purple-dark); box-shadow: 0 28px 60px rgba(0,0,0,.24); transition: border-color .3s ease, transform .3s ease; }
.reel-card.is-active { border-color: var(--orange); transform: translateY(-3px); }
.reel-card__media { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: #100021; }
.reel-card__media video { width: 100%; height: 100%; display: block; object-fit: cover; cursor: pointer; }
.reel-card__media::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 32%; pointer-events: none; background: linear-gradient(transparent, rgba(13,0,25,.7)); }
.reel-card__index { position: absolute; top: 16px; left: 16px; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--condensed); font-size: 13px; font-weight: 900; }
.reel-card__play { position: absolute; top: 50%; left: 50%; z-index: 3; width: 62px; height: 62px; display: grid; place-items: center; padding: 0 0 0 4px; border: 2px solid var(--white); border-radius: 50%; opacity: .94; transform: translate(-50%,-50%); background: rgba(45,0,85,.72); color: var(--white); cursor: pointer; font-size: 20px; transition: opacity .25s ease, background .25s ease; }
.reel-card__play.is-playing { padding-left: 0; opacity: 0; }
.reel-card__media:hover .reel-card__play.is-playing, .reel-card__play:focus-visible { opacity: .94; }
.reel-card__sound { position: absolute; right: 13px; bottom: 13px; z-index: 3; padding: 9px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 30px; background: rgba(27,0,54,.75); color: var(--white); cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.reel-card__sound[aria-pressed="true"] { border-color: var(--orange); background: var(--orange); }
.reel-card__meta { padding: 21px 20px 24px; }
.reel-card__meta span { color: var(--orange); font-family: var(--condensed); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.reel-card__meta h3 { margin: 8px 0 7px; font-family: var(--condensed); font-size: 31px; font-weight: 900; line-height: .9; text-transform: uppercase; }
.reel-card__meta p { margin: 0; color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.5; }
.reel-footer { position: relative; z-index: 2; width: min(100%, 940px); display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 25px auto 0; }
.reel-dots { display: flex; gap: 9px; }
.reel-dots button { width: 36px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.25); cursor: pointer; transition: .25s ease; }
.reel-dots button.is-active { width: 65px; background: var(--orange); }

.social-section { padding-top: 105px; background: var(--cream); }
.section-heading--social { grid-template-columns: 1fr auto; }
.social-grid { display: grid; grid-template-columns: 1.15fr .85fr 1.15fr .85fr; gap: 14px; }
.social-card { position: relative; min-height: 520px; overflow: hidden; }
.social-card--portrait { border: 1px solid rgba(45,0,85,.08); background: var(--white); }
.social-card--portrait img { width: 100%; height: 100%; object-fit: contain; transition: transform .7s ease; }
.social-card--portrait:hover img { transform: scale(.985); }
.social-card--portrait > span { position: absolute; right: 14px; bottom: 14px; padding: 10px 13px; background: var(--white); color: var(--purple); font-family: var(--condensed); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.social-card--type { display: flex; flex-direction: column; justify-content: space-between; padding: 27px; color: var(--white); }
.social-card--type small, .social-card--type > span { font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.social-card--type strong { font-family: var(--condensed); font-size: clamp(50px, 5vw, 78px); font-weight: 900; letter-spacing: -.05em; line-height: .75; }
.social-card--type strong em { color: var(--orange); font-style: normal; }
.social-card--purple { background: var(--purple); }
.social-card--orange { background: var(--orange); }
.social-card--orange strong em { color: var(--purple); }

.locations { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.location-card { position: relative; min-height: 480px; display: grid; grid-template-columns: 170px 1fr; overflow: hidden; color: var(--white); }
.location-card--east { background: var(--purple); }
.location-card--west { background: var(--orange); }
.location-card__top { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 34px 25px; border-right: 1px solid rgba(255,255,255,.24); }
.location-card__top span { font-family: var(--condensed); font-size: 16px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.location-card__top strong { font-family: var(--condensed); font-size: 80px; font-weight: 900; line-height: 1; opacity: .25; }
.location-card__content { padding: 58px; display: flex; flex-direction: column; }
.location-card__content > p { margin: 0 0 8px; font-family: var(--condensed); font-size: 15px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.location-card__content h3 { max-width: 420px; margin: 0; font-family: var(--condensed); font-size: clamp(52px, 5vw, 76px); font-weight: 900; letter-spacing: -.04em; line-height: .85; text-transform: uppercase; }
.location-card__content ul { margin: 45px 0 30px; padding: 0; list-style: none; }
.location-card__content li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.22); font-size: 13px; }
.location-card__content li b { text-align: right; }
.location-card__content > a { display: flex; justify-content: space-between; margin-top: auto; font-family: var(--condensed); font-size: 20px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.delivery-band { display: grid; grid-template-columns: 78px 1.1fr 1fr auto; gap: 28px; align-items: center; margin-top: 20px; padding: 33px 38px; background: var(--purple-dark); color: var(--white); }
.delivery-band__icon { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); font-size: 28px; }
.delivery-band small { color: var(--orange); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.delivery-band h3 { margin: 3px 0 0; font-family: var(--condensed); font-size: 35px; font-weight: 900; line-height: .9; }
.delivery-band p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }

.site-footer { position: relative; padding: 120px 0 22px; overflow: hidden; background: var(--purple); color: var(--white); }
.site-footer::after { content: "FUZE"; position: absolute; left: -20px; bottom: -115px; color: rgba(255,255,255,.035); font-family: var(--condensed); font-size: 360px; font-weight: 900; line-height: .7; pointer-events: none; }
.site-footer__curve { position: absolute; width: 520px; height: 520px; top: -365px; right: -60px; border: 75px solid var(--orange); border-radius: 50%; }
.footer-main { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 90px; padding-bottom: 80px; }
.footer-logo { display: inline-block; font-family: var(--condensed); font-size: 86px; font-weight: 900; letter-spacing: .1em; line-height: .8; }
.footer-logo span { color: var(--orange); }
.footer-brand p { margin: 30px 0; color: rgba(255,255,255,.64); line-height: 1.7; }
.footer-brand > a:last-child { color: var(--orange); font-family: var(--condensed); font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links h3 { margin: 0 0 24px; color: var(--orange); font-family: var(--condensed); font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { display: block; width: max-content; margin: 13px 0; color: rgba(255,255,255,.75); font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-cta { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.18); }
.footer-cta p { margin: 0 0 10px; color: var(--orange); font-family: var(--condensed); font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-cta h2 { margin: 0 0 28px; font-family: var(--condensed); font-size: 70px; font-weight: 900; line-height: .72; }
.footer-cta h2 span { color: var(--orange); }
.footer-bottom { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom a { justify-self: end; color: rgba(255,255,255,.78); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1100px); }
  .header-inner { grid-template-columns: 190px 1fr 190px; }
  .desktop-nav { gap: 22px; }
  .hero__shell { grid-template-columns: .92fr 1.08fr; gap: 10px; }
  .hero h1 { font-size: clamp(72px, 8vw, 105px); }
  .hero__orange-disc { width: 440px; height: 440px; }
  .hero-image img { height: 540px; }
  .price-badge { right: 0; }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .food-card { min-height: 610px; }
  .food-card__image, .food-card__word-art { height: 340px; }
  .food-card__stamp { margin-block: 70px; }
  .special-card { min-height: 485px; grid-template-columns: minmax(200px, .82fr) 1.18fr; }
  .special-card__body { padding-inline: 24px; }
  .special-card__price strong { font-size: 55px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story__grid { gap: 50px; }
  .location-card { grid-template-columns: 120px 1fr; }
  .location-card__content { padding: 45px 35px; }
  .delivery-band { grid-template-columns: 65px 1fr auto; }
  .delivery-band > p { display: none; }
}

@media (max-width: 920px) {
  :root { --shell: min(100% - 36px, 820px); }
  .section { padding: 100px 0; }
  .header-inner { position: relative; height: 82px; display: flex; align-items: center; justify-content: space-between; }
  .desktop-nav, .header-order { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .mobile-nav { position: fixed; top: var(--mobile-nav-top, 116px); right: 0; bottom: 0; left: 0; z-index: 1000; width: 100vw; max-width: 100vw; display: flex; visibility: hidden; flex-direction: column; min-height: calc(100dvh - var(--mobile-nav-top, 116px)); padding: 38px max(28px, calc((100vw - 820px) / 2)); overflow-x: hidden; overflow-y: auto; transform: translate3d(100%,0,0); pointer-events: none; background-color: var(--purple); color: var(--white); isolation: isolate; transition: transform .4s cubic-bezier(.2,.8,.2,1), visibility 0s linear .4s, top .12s linear; }
  .mobile-nav::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--purple); }
  .mobile-nav.is-open { visibility: visible; transform: translate3d(0,0,0); pointer-events: auto; transition-delay: 0s; }
  .mobile-nav > a:not(.button) { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-family: var(--condensed); font-size: 38px; font-weight: 800; text-transform: uppercase; }
  .mobile-nav .button { margin-top: 30px; align-self: stretch; }
  .hero { min-height: auto; padding-top: 60px; }
  .hero__shell { min-height: 0; grid-template-columns: 1fr; }
  .hero__content { max-width: 720px; }
  .hero h1 { font-size: clamp(76px, 15vw, 118px); }
  .hero__visual { min-height: 680px; margin-top: 15px; }
  .hero__orange-disc { width: min(72vw, 510px); height: min(72vw, 510px); }
  .hero-image { inset: 0; }
  .hero-image img { height: 600px; }
  .price-badge { right: 5%; }
  .hero__bottom { display: flex; justify-content: space-between; margin-top: -20px; }
  .hero__signature { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .brand-story__grid { grid-template-columns: 1fr; }
  .brand-story__lead { max-width: 690px; }
  .specials__grid { grid-template-columns: .85fr 1.15fr; gap: 50px; }
  .specials h2 { font-size: clamp(58px, 8.5vw, 80px); }
  .specials__price strong { font-size: 90px; }
  .specials-gallery { grid-template-columns: 1fr; }
  .special-card { min-height: 500px; grid-template-columns: minmax(250px, .85fr) 1.15fr; }
  .reel-heading { grid-template-columns: 1fr; gap: 30px; }
  .reel-heading__side { max-width: 600px; }
  .reel-viewport, .reel-footer { width: 100%; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 440px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; padding: 40px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 78px 0; }
  .announcement__track { justify-content: flex-start; animation: mobileTicker 18s linear infinite; }
  @keyframes mobileTicker { to { transform: translateX(-55%); } }
  .brand, .brand img { width: 148px; }
  .hero { padding-top: 42px; }
  .hero__eyebrow { font-size: 11px; }
  .hero h1 { font-size: clamp(68px, 21vw, 96px); line-height: .73; }
  .hero__kicker { font-size: 21px; }
  .hero__lead { margin-top: 24px; font-size: 14px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__pager { gap: 15px; margin-top: 35px; }
  .hero__pager button { min-width: 0; flex: 1; font-size: 11px; }
  .hero__visual { min-height: 520px; }
  .hero-image { inset: 0; }
  .hero-image img { max-width: 84%; height: 470px; border-width: 8px; }
  .hero-image--empanada { inset: 0; }
  .hero__orange-disc { width: 330px; height: 330px; }
  .price-badge { top: 5px; right: 0; width: 112px; height: 112px; }
  .price-badge strong { font-size: 42px; }
  .ingredient-chip { padding: 9px 11px; font-size: 10px; box-shadow: 5px 5px 0 var(--purple); }
  .ingredient-chip--one { bottom: 65px; }
  .ingredient-chip--two { bottom: 32px; right: 7px; }
  .hero__scribble { display: none; }
  .hero__micro { display: none; }
  .hero__bottom { margin-top: -30px; }
  .hero__social { flex-direction: column; align-items: flex-end; gap: 2px; }
  .hero__social span { display: none; }
  .hero__promise p, .hero__social { font-size: 9px; }
  .flavour-strip__track { padding: 18px 0; }
  .section-heading h2, .brand-story h2, .specials h2 { font-size: clamp(55px, 17vw, 76px); }
  .menu-filter { margin-inline: -14px; padding-inline: 14px; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card { min-height: 580px; }
  .food-card__image, .food-card__word-art { height: 330px; }
  .menu-cta { align-items: flex-start; flex-direction: column; gap: 25px; }
  .menu-cta .button { width: 100%; }
  .brand-story__tiles { grid-template-columns: 1fr; }
  .story-tile--white { transform: none; }
  .story-tile--outline { grid-column: auto; margin-top: 0; }
  .specials__grid { grid-template-columns: 1fr; }
  .specials__poster { width: calc(100% - 14px); }
  .specials__price strong { font-size: 94px; }
  .specials__actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .specials__actions .button { width: 100%; }
  .specials__actions .text-link { align-self: flex-start; }
  .special-card { min-height: 0; grid-template-columns: 1fr; }
  .special-card__visual { aspect-ratio: .81; }
  .special-card__visual img { max-height: none; }
  .special-card__body { padding: 30px 24px 27px; }
  .special-card h3 { font-size: 53px; }
  .special-card__body > p { font-size: 12px; }
  .latest-specials__footer { align-items: stretch; flex-direction: column; }
  .latest-specials__footer .button { width: 100%; }
  .reel-heading h2 { font-size: clamp(60px, 18vw, 80px); }
  .reel-heading__side > p { font-size: 12px; }
  .reel-card { flex-basis: min(82vw, 340px); }
  .reel-footer { align-items: stretch; flex-direction: column; }
  .reel-footer .button { width: 100%; }
  .section-heading--social { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { min-height: 440px; }
  .social-card--portrait { min-height: 0; aspect-ratio: .78; }
  .social-card--type { min-height: 350px; }
  .location-card { min-height: 470px; grid-template-columns: 72px 1fr; }
  .location-card__top { padding: 25px 14px; }
  .location-card__top strong { font-size: 48px; }
  .location-card__content { padding: 38px 25px; }
  .location-card__content h3 { font-size: 52px; }
  .location-card__content li { align-items: flex-start; flex-direction: column; gap: 5px; }
  .location-card__content li b { text-align: left; }
  .delivery-band { grid-template-columns: 50px 1fr; padding: 28px 22px; }
  .delivery-band .button { grid-column: 1 / -1; width: 100%; }
  .delivery-band h3 { font-size: 28px; }
  .delivery-band__icon { width: 48px; height: 48px; }
  .site-footer { padding-top: 95px; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
  .footer-links { gap: 30px; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Internal Fuze menu */
.menu-page { background: var(--cream); }
.menu-hero { position: relative; min-height: 720px; overflow: hidden; background: var(--purple); color: var(--white); }
.menu-hero::before { content: "MENU"; position: absolute; left: -45px; bottom: 0; color: rgba(255,255,255,.035); font-family: var(--condensed); font-size: clamp(220px, 30vw, 470px); font-weight: 900; line-height: .62; }
.menu-hero__ring { position: absolute; width: 690px; height: 690px; top: -400px; right: -210px; border: 85px solid var(--orange); border-radius: 50%; }
.menu-hero__grid { position: relative; z-index: 2; min-height: 645px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.menu-hero__copy { padding: 70px 0 90px; }
.menu-hero h1 { margin: 0; font-family: var(--condensed); font-size: clamp(86px, 9vw, 145px); font-weight: 900; letter-spacing: -.055em; line-height: .7; text-transform: uppercase; }
.menu-hero h1 span { display: inline-block; margin-top: .22em; color: var(--orange); font-size: .7em; }
.menu-hero__copy > p:not(.eyebrow) { max-width: 590px; margin: 35px 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; }
.menu-hero__facts { display: flex; gap: 42px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.2); }
.menu-hero__facts > div { display: flex; align-items: center; gap: 12px; }
.menu-hero__facts strong { color: var(--orange); font-family: var(--condensed); font-size: 50px; font-weight: 900; line-height: .8; }
.menu-hero__facts span { color: rgba(255,255,255,.7); font-size: 9px; font-weight: 700; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.menu-hero__visual { position: relative; height: 610px; }
.menu-hero__visual::before { content: ""; position: absolute; width: 440px; height: 440px; top: 80px; left: 50%; border-radius: 50%; transform: translateX(-50%); background: var(--orange); }
.menu-hero__photo { position: absolute; overflow: hidden; border: 10px solid var(--white); box-shadow: 0 35px 70px rgba(0,0,0,.22); }
.menu-hero__photo { background: var(--white); }
.menu-hero__photo img { width: 100%; height: 100%; object-fit: contain; }
.menu-hero__photo--fish { z-index: 2; width: 500px; height: 360px; top: 60px; left: 1%; transform: rotate(-5deg); }
.menu-hero__photo--fish img { object-position: center; }
.menu-hero__photo--empanada { z-index: 3; width: 280px; height: 385px; right: 0; bottom: 35px; transform: rotate(6deg); }
.menu-hero__photo--empanada img { object-position: center 42%; }
.menu-hero__badge { position: absolute; z-index: 5; left: 5%; bottom: 70px; width: 155px; height: 155px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 5px solid var(--white); border-radius: 50%; transform: rotate(-8deg); background: var(--orange); text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.menu-hero__badge small, .menu-hero__badge span { font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu-hero__badge strong { font-family: var(--condensed); font-size: 37px; font-weight: 900; line-height: .9; }
.menu-hero__ticker { position: absolute; right: 0; bottom: 0; left: 0; z-index: 8; overflow: hidden; background: var(--orange); color: var(--white); }
.menu-hero__ticker > div { min-width: max-content; display: flex; align-items: center; gap: 25px; padding: 18px 0; animation: marquee 25s linear infinite; font-family: var(--condensed); font-size: 25px; font-weight: 900; letter-spacing: .08em; line-height: .9; }
.menu-hero__ticker i { color: var(--purple); font-style: normal; }

.menu-browser { padding-bottom: 125px; background: var(--cream); }
.menu-tools { position: sticky; top: 94px; z-index: 90; border-bottom: 1px solid var(--line); background: rgba(247,243,238,.96); box-shadow: 0 15px 30px rgba(45,0,85,.05); backdrop-filter: blur(18px); }
.menu-tools__inner { padding: 22px 0 17px; }
.menu-search { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 25px; margin-bottom: 15px; }
.menu-search label { color: var(--purple); font-family: var(--condensed); font-size: 15px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-search > div { position: relative; }
.menu-search input { width: 100%; height: 48px; padding: 0 48px 0 18px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--white); color: var(--purple); font-family: var(--body); font-size: 14px; }
.menu-search input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,75,18,.12); }
.menu-search > div span { position: absolute; top: 50%; right: 17px; color: var(--orange); font-size: 25px; transform: translateY(-50%); pointer-events: none; }
.menu-category-scroll { display: flex; gap: 8px; padding-bottom: 5px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--orange) transparent; }
.menu-category-scroll button { flex: 0 0 auto; padding: 10px 15px; border: 1px solid rgba(45,0,85,.15); border-radius: 40px; background: transparent; color: var(--purple); cursor: pointer; font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: .25s ease; }
.menu-category-scroll button:hover, .menu-category-scroll button.is-active { border-color: var(--purple); background: var(--purple); color: var(--white); }
.menu-browser__body { padding-top: 85px; }
.menu-browser__intro { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.menu-browser__intro h2 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(65px, 8vw, 116px); font-weight: 900; letter-spacing: -.05em; line-height: .73; text-transform: uppercase; }
.menu-browser__intro h2 span { color: var(--orange); }
.menu-browser__meta { max-width: 330px; text-align: right; }
.menu-browser__meta p { margin: 0 0 12px; color: var(--purple); font-family: var(--condensed); font-size: 17px; font-weight: 800; text-transform: uppercase; }
.menu-browser__meta p strong { margin-right: 6px; color: var(--orange); font-size: 42px; font-weight: 900; }
.menu-browser__meta small { color: #766a7b; font-size: 11px; line-height: 1.6; }
.menu-active-filter { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 26px; padding: 17px 20px; border-left: 4px solid var(--orange); background: var(--white); }
.menu-active-filter[hidden] { display: none; }
.menu-active-filter p { margin: 0; font-size: 13px; }
.menu-active-filter strong { color: var(--purple); }
.menu-active-filter button { border: 0; background: transparent; color: var(--orange); cursor: pointer; font-family: var(--condensed); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.menu-category-block { padding: 95px 0 25px; scroll-margin-top: 250px; }
.menu-category-block + .menu-category-block { border-top: 1px solid var(--line); }
.menu-category-block__heading { display: grid; grid-template-columns: 100px 1fr auto; gap: 28px; align-items: start; margin-bottom: 43px; }
.menu-category-block__number { color: var(--orange); font-family: var(--condensed); font-size: 70px; font-weight: 900; letter-spacing: -.06em; line-height: .72; }
.menu-category-block__heading p { margin: 0 0 7px; color: var(--orange); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.menu-category-block__heading h2 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(50px, 5vw, 76px); font-weight: 900; letter-spacing: -.035em; line-height: .78; text-transform: uppercase; }
.menu-category-block__heading span { display: block; margin-top: 14px; color: #756779; font-size: 12px; }
.menu-category-block__heading > strong { align-self: center; padding: 9px 12px; border: 1px solid var(--line); color: var(--purple); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-entry-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 50px; }
.menu-entry { position: relative; min-height: 155px; display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.menu-entry:hover { margin-inline: -15px; padding-inline: 15px; background: var(--white); }
.menu-entry__number { padding-top: 4px; color: rgba(45,0,85,.34); font-family: var(--condensed); font-size: 14px; font-weight: 800; }
.menu-entry__heading { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; }
.menu-entry h3 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: 25px; font-weight: 800; letter-spacing: -.01em; line-height: .95; text-transform: uppercase; }
.menu-entry__heading strong { color: var(--orange); font-family: var(--condensed); font-size: 29px; font-weight: 900; line-height: .85; }
.menu-entry__copy > p { max-width: 560px; margin: 12px 0 0; color: #766a7b; font-size: 12px; line-height: 1.65; }
.menu-entry__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.menu-tag { padding: 5px 7px; background: rgba(45,0,85,.07); color: var(--purple); font-family: var(--condensed); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-tag--spicy { background: rgba(255,75,18,.12); color: var(--orange); }
.menu-tag--favourite { background: var(--purple); color: var(--white); }
.menu-empty { padding: 110px 20px; text-align: center; }
.menu-empty[hidden] { display: none; }
.menu-empty strong { color: var(--purple); font-family: var(--condensed); font-size: 65px; font-weight: 900; }
.menu-empty p { margin: 8px 0 30px; color: #766a7b; }

.menu-callout { position: relative; padding: 100px 0; overflow: hidden; background: var(--purple); color: var(--white); }
.menu-callout::after { content: "FUZE"; position: absolute; right: -40px; bottom: -85px; color: rgba(255,255,255,.04); font-family: var(--condensed); font-size: 280px; font-weight: 900; line-height: .7; }
.menu-callout__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .7fr .8fr; gap: 70px; align-items: center; }
.menu-callout h2 { margin: 0; font-family: var(--condensed); font-size: clamp(65px, 7vw, 105px); font-weight: 900; letter-spacing: -.04em; line-height: .72; }
.menu-callout h2 span { color: var(--orange); }
.menu-callout__grid > p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.75; }
.menu-callout__actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.menu-callout__actions > a:not(.button) { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-family: var(--condensed); font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1050px) {
  .menu-hero__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .menu-hero__photo--fish { width: 410px; }
  .menu-hero__photo--empanada { width: 240px; }
  .menu-hero__facts { gap: 22px; }
  .menu-callout__grid { grid-template-columns: 1fr 1fr; }
  .menu-callout__actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; }
}

@media (max-width: 920px) {
  .menu-tools { top: 82px; }
  .menu-hero__grid { grid-template-columns: 1fr; padding: 50px 0 90px; }
  .menu-hero__copy { padding: 40px 0 0; }
  .menu-hero__visual { height: 570px; }
  .menu-hero__photo--fish { left: 8%; }
  .menu-hero__photo--empanada { right: 8%; }
  .menu-entry-grid { grid-template-columns: 1fr; }
  .menu-browser__intro { grid-template-columns: 1fr; }
  .menu-browser__meta { text-align: left; }
}

@media (max-width: 680px) {
  .menu-hero__grid { padding-top: 22px; }
  .menu-hero h1 { font-size: clamp(78px, 23vw, 104px); }
  .menu-hero__copy > p:not(.eyebrow) { margin: 27px 0; font-size: 14px; }
  .menu-hero__facts { justify-content: space-between; gap: 10px; }
  .menu-hero__facts strong { font-size: 38px; }
  .menu-hero__visual { height: 430px; }
  .menu-hero__visual::before { width: 310px; height: 310px; top: 50px; }
  .menu-hero__photo { border-width: 7px; }
  .menu-hero__photo--fish { width: 88%; height: 275px; top: 35px; left: 0; }
  .menu-hero__photo--empanada { width: 175px; height: 245px; right: 0; bottom: 20px; }
  .menu-hero__badge { width: 110px; height: 110px; left: 3%; bottom: 22px; }
  .menu-hero__badge strong { font-size: 27px; }
  .menu-hero__badge small, .menu-hero__badge span { font-size: 8px; }
  .menu-tools__inner { padding-top: 14px; }
  .menu-search { grid-template-columns: 1fr; gap: 8px; }
  .menu-search label { font-size: 12px; }
  .menu-category-scroll { margin-inline: -14px; padding-inline: 14px; }
  .menu-browser__body { padding-top: 62px; }
  .menu-browser__intro { padding-bottom: 37px; }
  .menu-browser__intro h2 { font-size: clamp(60px, 18vw, 78px); }
  .menu-active-filter { align-items: flex-start; flex-direction: column; gap: 8px; }
  .menu-category-block { padding-top: 70px; scroll-margin-top: 230px; }
  .menu-category-block__heading { grid-template-columns: 55px 1fr; gap: 14px; }
  .menu-category-block__number { font-size: 49px; }
  .menu-category-block__heading h2 { font-size: 45px; }
  .menu-category-block__heading > strong { grid-column: 2; justify-self: start; }
  .menu-entry { grid-template-columns: 32px 1fr; gap: 8px; }
  .menu-entry h3 { font-size: 22px; }
  .menu-entry__heading strong { font-size: 25px; }
  .menu-callout { padding: 78px 0; }
  .menu-callout__grid { grid-template-columns: 1fr; gap: 28px; }
  .menu-callout__actions { grid-column: auto; display: flex; }
}

/* Ordering modal and persistent cart */
body.order-open { overflow: hidden; }
.cart-trigger { min-width: 156px; height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 10px 0 20px; border: 0; border-radius: 4px; background: var(--purple); color: var(--white); cursor: pointer; font-family: var(--condensed); font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cart-trigger strong, .mobile-cart-trigger strong, .mobile-nav__cart strong { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--condensed); font-size: 15px; }
.ordering-location { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 25px; margin-bottom: 12px; }
.ordering-location > span { color: var(--purple); font-family: var(--condensed); font-size: 15px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ordering-location > div { display: flex; gap: 8px; }
.ordering-location button { min-height: 38px; padding: 0 14px; border: 1px solid var(--line); background: var(--white); color: var(--purple); cursor: pointer; font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.ordering-location button.is-active { border-color: var(--orange); background: var(--orange); color: var(--white); }
.menu-entry__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 13px; }
.menu-entry__tags { margin-top: 0; }
.menu-entry__add { flex: 0 0 auto; height: 36px; display: inline-flex; align-items: center; gap: 13px; padding: 0 8px 0 14px; border: 1px solid var(--purple); background: transparent; color: var(--purple); cursor: pointer; font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: .25s ease; }
.menu-entry__add span { width: 20px; height: 20px; display: grid; place-items: center; background: var(--orange); color: var(--white); font-size: 17px; line-height: 1; }
.menu-entry__add:hover { background: var(--purple); color: var(--white); }

.order-modal, .cart-layer { position: fixed; inset: 0; z-index: 3000; }
.order-modal[hidden], .cart-layer[hidden] { display: none; }
.order-modal__backdrop, .cart-layer__backdrop { position: absolute; inset: 0; opacity: 0; background: rgba(22,0,42,.72); backdrop-filter: blur(7px); transition: opacity .32s ease; }
.order-modal.is-open .order-modal__backdrop, .cart-layer.is-open .cart-layer__backdrop { opacity: 1; }
.order-modal { display: grid; place-items: center; padding: 25px; }
.order-modal__panel { position: relative; width: min(720px, 100%); max-height: min(880px, calc(100dvh - 50px)); overflow-y: auto; opacity: 0; transform: translateY(30px) scale(.98); background: var(--cream); box-shadow: 0 35px 100px rgba(18,0,34,.38); transition: opacity .32s ease, transform .32s cubic-bezier(.2,.8,.2,1); }
.order-modal.is-open .order-modal__panel { opacity: 1; transform: none; }
.order-modal__close { position: sticky; top: 16px; z-index: 5; float: right; width: 42px; height: 42px; margin: 16px 16px -58px 0; border: 0; background: var(--purple); color: var(--white); cursor: pointer; font-size: 28px; line-height: 1; }
.item-order-form__header { position: relative; padding: 45px 65px 38px; overflow: hidden; background: var(--purple); color: var(--white); }
.item-order-form__header::after { content: ""; position: absolute; width: 230px; height: 230px; top: -155px; right: -80px; border: 35px solid var(--orange); border-radius: 50%; }
.item-order-form__header p { margin: 0 0 12px; color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.item-order-form__header h2 { max-width: 530px; margin: 0; font-family: var(--condensed); font-size: clamp(48px, 7vw, 72px); font-weight: 900; letter-spacing: -.035em; line-height: .8; text-transform: uppercase; }
.item-order-form__header > span { max-width: 530px; display: block; margin-top: 22px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.65; }
.item-order-form__header > strong { display: block; margin-top: 23px; color: var(--orange); font-family: var(--condensed); font-size: 44px; font-weight: 900; line-height: 1; }
.order-options { margin: 0; padding: 30px 65px; border: 0; border-bottom: 1px solid var(--line); }
.order-options legend { width: 100%; float: left; margin-bottom: 14px; color: var(--purple); font-family: var(--condensed); font-size: 17px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.order-options legend + * { clear: both; }
.order-options--location { padding-top: 34px; }
.modal-location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.modal-location-grid button { min-height: 70px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 12px 16px; border: 1px solid var(--line); background: var(--white); color: var(--purple); cursor: pointer; text-align: left; }
.modal-location-grid button span { font-family: var(--condensed); font-size: 17px; font-weight: 800; text-transform: uppercase; }
.modal-location-grid button small { margin-top: 4px; color: #7b6d80; font-size: 10px; }
.modal-location-grid button.is-active { border-color: var(--orange); box-shadow: inset 0 0 0 2px var(--orange); }
.modal-location-grid button.is-active::after { content: "Selected"; align-self: flex-end; margin-top: -30px; padding: 4px 6px; background: var(--orange); color: var(--white); font-family: var(--condensed); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.modal-location-warning { margin: 10px 0 0; color: var(--orange); font-size: 11px; font-weight: 700; }
.modal-location-warning[hidden] { display: none; }
.order-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.order-choice-grid label { position: relative; cursor: pointer; }
.order-choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.order-choice-grid label span { min-height: 49px; display: flex; align-items: center; justify-content: center; padding: 8px; border: 1px solid var(--line); background: var(--white); color: var(--purple); font-size: 11px; font-weight: 700; text-align: center; }
.order-choice-grid input:checked + span { border-color: var(--purple); background: var(--purple); color: var(--white); }
.order-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.order-select-grid label > span { display: block; margin-bottom: 7px; color: #776a7b; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.order-select-grid select { width: 100%; height: 50px; padding: 0 40px 0 13px; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--purple); font: 12px var(--body); }
.order-included { display: flex; align-items: center; gap: 13px; margin: 25px 65px 0; padding: 15px; background: rgba(45,0,85,.06); }
.order-included > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--purple); color: var(--white); }
.order-included p { margin: 0; }
.order-included strong, .order-included small { display: block; }
.order-included strong { color: var(--purple); font-family: var(--condensed); font-size: 14px; text-transform: uppercase; }
.order-included small { margin-top: 2px; color: #7b6d80; font-size: 10px; }
.order-note { display: block; padding: 30px 65px; }
.order-note > span { display: flex; justify-content: space-between; margin-bottom: 11px; color: var(--purple); font-family: var(--condensed); font-size: 17px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.order-note small { color: #8b7e8f; font-size: 9px; }
.order-note textarea { width: 100%; min-height: 90px; padding: 14px; resize: vertical; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--white); color: var(--ink); font: 12px/1.6 var(--body); }
.order-note textarea:focus { border-color: var(--orange); }
.item-order-form__footer { position: sticky; bottom: 0; display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 20px 65px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 -15px 35px rgba(45,0,85,.07); }
.quantity-stepper { height: 52px; display: grid; grid-template-columns: 43px 43px 43px; border: 1px solid var(--line); }
.quantity-stepper button { border: 0; background: transparent; color: var(--purple); cursor: pointer; font-size: 20px; }
.quantity-stepper output { display: grid; place-items: center; border-right: 1px solid var(--line); border-left: 1px solid var(--line); color: var(--purple); font-family: var(--condensed); font-size: 17px; font-weight: 800; }
.item-add-button { width: 100%; justify-content: space-between; }
.item-add-button strong { color: inherit; font-family: var(--condensed); font-size: 19px; }

.cart-layer { pointer-events: none; }
.cart-layer.is-open { pointer-events: auto; }
.cart-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(520px, 100%); display: flex; flex-direction: column; transform: translateX(100%); background: var(--cream); box-shadow: -30px 0 80px rgba(20,0,38,.28); transition: transform .36s cubic-bezier(.2,.8,.2,1); }
.cart-layer.is-open .cart-drawer { transform: none; }
.cart-drawer__header { min-height: 145px; display: flex; align-items: center; justify-content: space-between; padding: 30px 34px; background: var(--purple); color: var(--white); }
.cart-drawer__header p { margin: 0 0 5px; color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.cart-drawer__header h2 { margin: 0; font-family: var(--condensed); font-size: 47px; font-weight: 900; line-height: .8; }
.cart-drawer__header button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); cursor: pointer; font-size: 28px; }
.cart-drawer__location { display: flex; justify-content: space-between; gap: 20px; padding: 15px 34px; background: var(--orange); color: var(--white); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cart-drawer__items { flex: 1; padding: 10px 34px 30px; overflow-y: auto; }
.cart-item { padding: 25px 0; border-bottom: 1px solid var(--line); }
.cart-item__top { display: grid; grid-template-columns: 1fr auto; gap: 20px; }
.cart-item__top p { margin: 0 0 5px; color: var(--orange); font-family: var(--condensed); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cart-item__top h3 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: 24px; font-weight: 800; line-height: .9; text-transform: uppercase; }
.cart-item__top > strong { color: var(--orange); font-family: var(--condensed); font-size: 27px; font-weight: 900; }
.cart-item ul { margin: 14px 0 0; padding: 0; list-style: none; }
.cart-item li { display: flex; justify-content: space-between; gap: 20px; padding: 4px 0; color: #706376; font-size: 10px; }
.cart-item li span { color: var(--purple); font-weight: 700; }
.cart-item__note { margin: 12px 0 0; padding: 9px; background: var(--white); color: #766a7b; font-size: 10px; font-style: italic; line-height: 1.5; }
.cart-item__actions { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.cart-quantity { height: 34px; display: grid; grid-template-columns: repeat(3, 34px); border: 1px solid var(--line); }
.cart-quantity button { border: 0; background: transparent; color: var(--purple); cursor: pointer; font-size: 17px; }
.cart-quantity span { display: grid; place-items: center; border-right: 1px solid var(--line); border-left: 1px solid var(--line); font-family: var(--condensed); font-size: 13px; font-weight: 800; }
.cart-item__remove { padding: 6px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #8a7d8e; cursor: pointer; font-family: var(--condensed); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 45px; text-align: center; }
.cart-drawer__empty[hidden] { display: none; }
.cart-drawer__empty > span { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); font-size: 25px; }
.cart-drawer__empty h3 { margin: 22px 0 8px; color: var(--purple); font-family: var(--condensed); font-size: 37px; font-weight: 900; line-height: .8; }
.cart-drawer__empty p { margin: 0 0 28px; color: #776a7b; font-size: 11px; }
.cart-drawer__footer { padding: 23px 34px 28px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 -15px 35px rgba(45,0,85,.07); }
.cart-drawer__footer[hidden] { display: none; }
.cart-drawer__footer > div { display: flex; justify-content: space-between; align-items: flex-end; color: var(--purple); font-family: var(--condensed); font-size: 16px; font-weight: 800; text-transform: uppercase; }
.cart-drawer__footer > div strong { color: var(--orange); font-size: 43px; font-weight: 900; line-height: .8; }
.cart-drawer__footer small { display: block; margin: 12px 0 16px; color: #86798a; font-size: 9px; line-height: 1.5; }
.cart-drawer__footer .button { width: 100%; }
.whatsapp-checkout { position: absolute; inset: 0; z-index: 10; overflow-y: auto; opacity: 0; transform: translateX(100%); background: var(--cream); transition: opacity .28s ease, transform .32s cubic-bezier(.2,.8,.2,1); }
.whatsapp-checkout[hidden] { display: none; }
.whatsapp-checkout.is-visible { opacity: 1; transform: none; }
.whatsapp-checkout > header { min-height: 150px; display: grid; grid-template-columns: 44px 1fr; gap: 22px; align-items: center; padding: 28px 34px; background: var(--purple); color: var(--white); }
.whatsapp-checkout > header button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); cursor: pointer; font-size: 20px; }
.whatsapp-checkout > header p { margin: 0 0 7px; color: var(--orange); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.whatsapp-checkout > header h2 { margin: 0; font-family: var(--condensed); font-size: 42px; font-weight: 900; line-height: .78; }
.whatsapp-checkout > header h2 span { color: var(--orange); }
.whatsapp-checkout form { padding: 28px 34px 40px; }
.checkout-destination { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; margin-bottom: 25px; padding: 16px; border-left: 4px solid var(--orange); background: var(--white); }
.checkout-destination span { color: #786b7d; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.checkout-destination strong { grid-row: 2; color: var(--purple); font-family: var(--condensed); font-size: 22px; font-weight: 800; text-transform: uppercase; }
.checkout-destination small { grid-row: 1 / span 2; align-self: center; color: var(--orange); font-family: var(--condensed); font-size: 13px; font-weight: 800; }
.checkout-field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.checkout-field-grid label, .checkout-address, .checkout-general-note { display: block; }
.checkout-field-grid .checkout-field--full { grid-column: 1 / -1; }
.checkout-field-grid label > span, .checkout-address > span, .checkout-general-note > span, .checkout-order-type legend { display: block; margin-bottom: 8px; color: var(--purple); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.checkout-general-note small, .checkout-field-grid label > span small { margin-left: 6px; color: #8b7e8f; font-size: 8px; }
.checkout-field-grid input, .checkout-address textarea, .checkout-general-note textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--white); color: var(--ink); font: 12px var(--body); }
.checkout-field-grid input { height: 50px; padding: 0 13px; }
.checkout-address textarea, .checkout-general-note textarea { min-height: 78px; padding: 13px; resize: vertical; line-height: 1.5; }
.checkout-field-grid input:focus, .checkout-address textarea:focus, .checkout-general-note textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,75,18,.1); }
.checkout-order-type { margin: 24px 0; padding: 0; border: 0; }
.checkout-order-type > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.checkout-order-type label { position: relative; cursor: pointer; }
.checkout-order-type input { position: absolute; opacity: 0; }
.checkout-order-type label span { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); color: var(--purple); font-size: 11px; font-weight: 700; }
.checkout-order-type input:checked + span { border-color: var(--purple); background: var(--purple); color: var(--white); }
.checkout-address { margin: 0 0 22px; }
.checkout-address[hidden] { display: none; }
.checkout-general-note { margin-top: 22px; }
.checkout-review { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 25px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--purple); font-family: var(--condensed); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.checkout-review strong { color: var(--orange); font-size: 40px; font-weight: 900; line-height: .8; }
.checkout-disclaimer { margin: 16px 0; color: #817484; font-size: 9px; line-height: 1.6; }
.checkout-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.checkout-submit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.checkout-submit-grid .button { width: 100%; min-height: 56px; justify-content: space-between; padding-inline: 17px; font-size: 11px; }
.checkout-submit-grid .button[disabled] { opacity: .58; cursor: wait; }
.button--whatsapp { background: #20b95d; color: var(--white); }
.button--whatsapp:hover { background: #178b47; }
.button--email { background: var(--purple); color: var(--white); }
.button--email:hover { background: var(--orange); }
.checkout-submit-status { min-height: 16px; margin: 12px 0 0; color: var(--purple); font-size: 10px; font-weight: 600; line-height: 1.5; }
.checkout-submit-status:empty { min-height: 0; margin: 0; }
.checkout-submit-status.is-error { color: #ad2f20; }
.mobile-cart-trigger { display: none; }
.order-toast { position: fixed; right: 24px; bottom: 24px; z-index: 5000; max-width: 420px; padding: 16px 20px; opacity: 0; transform: translateY(15px); pointer-events: none; background: var(--purple); color: var(--white); box-shadow: var(--shadow); font-size: 12px; line-height: 1.5; transition: .3s ease; }
.order-toast::before { content: "✓"; margin-right: 10px; color: var(--orange); font-weight: 800; }
.order-toast.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .mobile-nav__cart { margin-top: 30px; }
  .mobile-nav__cart strong { margin-left: auto; color: var(--white); }
  .ordering-location, .menu-search { grid-template-columns: 130px 1fr; }
  .mobile-cart-trigger { position: fixed; right: 15px; bottom: 15px; z-index: 900; min-width: 145px; height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 7px 0 17px; border: 0; border-radius: 4px; background: var(--purple); color: var(--white); box-shadow: 0 14px 40px rgba(45,0,85,.3); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
  .mobile-cart-trigger strong { width: 33px; height: 33px; }
}

@media (max-width: 680px) {
  .ordering-location, .menu-search { grid-template-columns: 1fr; gap: 7px; }
  .ordering-location > div { display: grid; grid-template-columns: repeat(2, 1fr); }
  .ordering-location button { min-height: 42px; padding: 0 8px; font-size: 10px; }
  .menu-entry__bottom { align-items: center; }
  .menu-entry__add { height: 34px; }
  .order-modal { padding: 0; place-items: stretch; }
  .order-modal__panel { width: 100%; max-height: 100dvh; }
  .item-order-form__header { padding: 42px 25px 30px; }
  .item-order-form__header h2 { font-size: 50px; }
  .order-options, .order-note { padding: 25px; }
  .order-included { margin: 20px 25px 0; }
  .modal-location-grid, .order-choice-grid, .order-select-grid { grid-template-columns: 1fr; }
  .item-order-form__footer { grid-template-columns: 1fr; padding: 15px 25px; }
  .quantity-stepper { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .cart-drawer__header { min-height: 125px; padding: 25px; }
  .cart-drawer__items { padding-inline: 25px; }
  .cart-drawer__location, .cart-drawer__footer { padding-inline: 25px; }
  .whatsapp-checkout > header { padding-inline: 25px; }
  .whatsapp-checkout form { padding-inline: 25px; }
  .checkout-field-grid { grid-template-columns: 1fr; }
  .checkout-field-grid .checkout-field--full { grid-column: auto; }
  .checkout-submit-grid { grid-template-columns: 1fr; }
  .order-toast { right: 14px; bottom: 75px; left: 14px; max-width: none; }
}

/* Dedicated Our Fuze page */
.about-page { background: var(--paper); }
.about-hero { position: relative; min-height: 820px; padding: 68px 0 42px; overflow: hidden; background: var(--paper); }
.about-hero__texture { position: absolute; inset: 0; opacity: .14; pointer-events: none; background-image: radial-gradient(var(--purple) .75px, transparent .75px); background-size: 16px 16px; mask-image: linear-gradient(90deg, #000 0, transparent 53%, #000 100%); }
.about-hero__word { position: absolute; left: -34px; bottom: -84px; color: rgba(45,0,85,.032); font-family: var(--condensed); font-size: clamp(270px, 28vw, 510px); font-weight: 900; letter-spacing: -.07em; line-height: .72; }
.about-hero__grid { position: relative; z-index: 2; min-height: 620px; display: grid; grid-template-columns: minmax(450px, .86fr) minmax(570px, 1.14fr); align-items: center; gap: clamp(45px, 6vw, 110px); }
.about-hero__copy { padding-bottom: 20px; }
.about-hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; color: var(--purple); font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-hero__eyebrow b { width: 45px; height: 2px; background: var(--orange); }
.about-hero h1 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(104px, 10vw, 168px); font-weight: 900; letter-spacing: -.065em; line-height: .68; text-transform: uppercase; }
.about-hero h1 span { display: inline-block; margin-top: .17em; color: var(--orange); }
.about-hero__copy > p { max-width: 590px; margin: 38px 0 0; padding-left: 22px; border-left: 3px solid var(--orange); color: #584d5e; font-size: 16px; line-height: 1.8; }
.about-hero__actions { display: flex; align-items: center; gap: 35px; margin-top: 34px; }
.about-hero__visual { position: relative; min-height: 610px; }
.about-hero__visual::before { content: ""; position: absolute; width: 510px; height: 510px; top: 44px; left: 50%; border-radius: 50%; transform: translateX(-48%); background: var(--orange); }
.about-hero__visual::after { content: ""; position: absolute; width: 520px; height: 520px; top: 22px; left: 50%; border: 1px solid rgba(45,0,85,.22); border-radius: 50%; transform: translateX(-57%); }
.about-hero__poster { position: absolute; z-index: 2; margin: 0; display: grid; place-items: center; overflow: hidden; background: #f8f5f1; border: 9px solid var(--white); box-shadow: 0 35px 75px rgba(36,0,69,.24); }
.about-hero__poster img { width: 100%; height: 100%; object-fit: contain; background: #f8f5f1; }
.about-hero__poster--burger { width: 340px; height: 455px; top: 60px; left: 10px; transform: rotate(-5deg); }
.about-hero__poster--rice { width: 295px; height: 395px; right: 2px; bottom: 18px; transform: rotate(5.5deg); }
.about-hero__stamp { position: absolute; z-index: 4; width: 142px; height: 142px; top: 4px; right: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 5px solid var(--white); border-radius: 50%; transform: rotate(7deg); background: var(--purple); color: var(--white); box-shadow: 0 20px 50px rgba(45,0,85,.24); font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: .08em; line-height: 1.1; text-align: center; }
.about-hero__stamp::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.7); border-radius: 50%; }
.about-hero__stamp strong { color: var(--orange); font-size: 30px; font-weight: 900; line-height: 1; }
.about-hero__scribble { position: absolute; z-index: 5; left: 32%; bottom: 2px; color: var(--purple); font-family: var(--script); font-size: 34px; transform: rotate(-7deg); }
.about-hero__facts { position: relative; z-index: 3; max-width: 780px; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; margin-left: max(36px, calc((100vw - min(1380px, calc(100% - 72px))) / 2)); border-top: 1px solid var(--line); }
.about-hero__facts > div { min-height: 78px; display: flex; align-items: center; gap: 13px; padding: 20px 24px; border-right: 1px solid var(--line); }
.about-hero__facts > div:first-child { padding-left: 0; }
.about-hero__facts strong { color: var(--orange); font-family: var(--condensed); font-size: 44px; font-weight: 900; line-height: 1; }
.about-hero__facts span { color: var(--purple); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; }
.about-hero__micro { position: absolute; top: 46%; z-index: 3; color: rgba(45,0,85,.42); font-family: var(--condensed); font-size: 10px; font-weight: 800; letter-spacing: .22em; writing-mode: vertical-rl; }
.about-hero__micro--left { left: 14px; transform: rotate(180deg); }
.about-hero__micro--right { right: 14px; }

.about-ticker { position: relative; z-index: 4; overflow: hidden; transform: rotate(-1deg) scale(1.02); background: var(--orange); color: var(--white); box-shadow: 0 16px 42px rgba(45,0,85,.14); }
.about-ticker__track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 22px 0; animation: marquee 26s linear infinite; font-family: var(--condensed); font-size: clamp(34px, 4vw, 62px); font-weight: 900; line-height: .78; }
.about-ticker__track b { color: var(--purple); }
.about-ticker__track i { color: var(--purple); font-style: normal; }

.about-manifesto { position: relative; overflow: hidden; background: var(--purple); color: var(--white); }
.about-manifesto::before { content: "FUZE"; position: absolute; right: -35px; bottom: -90px; color: rgba(255,255,255,.03); font-family: var(--condensed); font-size: 350px; font-weight: 900; line-height: .75; }
.about-manifesto__orbit { position: absolute; width: 620px; height: 620px; top: -475px; left: -130px; border: 65px solid var(--orange); border-radius: 50%; }
.about-manifesto__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(70px, 9vw, 160px); align-items: center; }
.about-manifesto h2 { margin: 0; color: var(--white); font-family: var(--condensed); font-size: clamp(76px, 8vw, 126px); font-weight: 900; letter-spacing: -.055em; line-height: .72; text-transform: uppercase; }
.about-manifesto h2 span { display: inline-block; margin-top: .15em; color: var(--orange); }
.about-manifesto__body { padding: 0 0 0 45px; border-left: 1px solid rgba(255,255,255,.22); }
.about-manifesto__body > p { max-width: 590px; margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; }
.about-manifesto blockquote { margin: 50px 0 0; padding-top: 30px; border-top: 3px solid var(--orange); color: var(--white); font-family: var(--condensed); font-size: clamp(31px, 3vw, 48px); font-weight: 900; letter-spacing: -.02em; line-height: .86; }
.about-manifesto blockquote span { color: var(--orange); }

.fuze-formula { background: var(--cream); }
.formula-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.formula-card { position: relative; min-height: 500px; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; overflow: hidden; border: 1px solid var(--line); }
.formula-card__number { position: absolute; top: 31px; right: 34px; font-family: var(--condensed); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.formula-card__mark { position: absolute; top: 55px; left: 38px; font-size: 80px; font-weight: 800; line-height: 1; }
.formula-card h3 { position: relative; z-index: 2; margin: 0; font-family: var(--condensed); font-size: clamp(58px, 5vw, 82px); font-weight: 900; letter-spacing: -.045em; line-height: .72; text-transform: uppercase; }
.formula-card p { position: relative; z-index: 2; max-width: 340px; margin: 27px 0 0; font-size: 14px; line-height: 1.7; }
.formula-card--purple { background: var(--purple); color: var(--white); }
.formula-card--purple::before { content: "FRESH"; position: absolute; left: -30px; bottom: 130px; color: rgba(255,255,255,.04); font-family: var(--condensed); font-size: 150px; font-weight: 900; transform: rotate(-90deg); }
.formula-card--purple .formula-card__mark { color: var(--orange); }
.formula-card--purple p { color: rgba(255,255,255,.72); }
.formula-card--paper { background: var(--white); color: var(--purple); }
.formula-card--paper .formula-card__mark { color: var(--orange); }
.formula-card--paper p { color: #66596b; }
.formula-card--orange { background: var(--orange); color: var(--white); }
.formula-card--orange::after { content: ""; position: absolute; width: 300px; height: 300px; top: -185px; right: -95px; border: 42px solid rgba(255,255,255,.19); border-radius: 50%; }
.formula-card--orange .formula-card__mark { color: var(--purple); }
.formula-card--orange p { color: rgba(255,255,255,.82); }

.about-motion { position: relative; overflow: hidden; background: var(--purple-dark); color: var(--white); }
.about-motion::after { content: "MOTION"; position: absolute; right: -60px; bottom: -75px; color: rgba(255,255,255,.025); font-family: var(--condensed); font-size: 280px; font-weight: 900; line-height: .75; }
.about-motion__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 9vw, 155px); align-items: center; }
.about-motion__media { position: relative; max-width: 540px; margin-inline: auto; padding: 13px; background: var(--white); transform: rotate(-2deg); box-shadow: 28px 32px 0 var(--orange); }
.about-motion__media video { width: 100%; aspect-ratio: 9 / 12; display: block; background: #1d1026; object-fit: cover; }
.about-motion__frame { position: absolute; inset: 26px; border: 1px solid rgba(255,255,255,.55); pointer-events: none; }
.about-motion__sound { position: absolute; z-index: 3; top: 30px; right: 30px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.48); background: rgba(45,0,85,.82); color: var(--white); cursor: pointer; font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-motion__sound[aria-pressed="true"] { background: var(--orange); }
.about-motion__label { position: absolute; z-index: 3; left: 30px; bottom: 32px; padding: 10px 13px; background: var(--white); color: var(--purple); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-motion__copy h2 { margin: 0; font-family: var(--condensed); font-size: clamp(78px, 8vw, 128px); font-weight: 900; letter-spacing: -.055em; line-height: .72; text-transform: uppercase; }
.about-motion__copy h2 span { display: inline-block; margin-top: .15em; color: var(--orange); }
.about-motion__copy > p:not(.eyebrow):not(.about-motion__script) { max-width: 630px; margin: 35px 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.8; }
.about-motion__line { width: 74px; height: 3px; margin: 0 0 24px; background: var(--orange); }
.about-motion__script { margin: 0 0 35px; color: var(--orange); font-family: var(--script); font-size: clamp(31px, 3.4vw, 51px); line-height: 1.1; transform: rotate(-2deg); }

.about-range { position: relative; overflow: hidden; background: var(--paper); }
.about-range__word { position: absolute; top: 40px; right: -60px; color: rgba(45,0,85,.032); font-family: var(--condensed); font-size: clamp(180px, 22vw, 350px); font-weight: 900; line-height: .8; }
.about-range__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 170px); align-items: center; }
.about-range__copy h2 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(78px, 8vw, 124px); font-weight: 900; letter-spacing: -.055em; line-height: .7; text-transform: uppercase; }
.about-range__copy h2 span { display: inline-block; margin-top: .15em; color: var(--orange); }
.about-range__copy > p:not(.eyebrow) { max-width: 540px; margin: 34px 0; color: #665a6b; font-size: 15px; line-height: 1.8; }
.about-range__categories { border-top: 1px solid var(--line); }
.about-range__categories a { min-height: 95px; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 20px; padding: 0 12px; border-bottom: 1px solid var(--line); color: var(--purple); transition: padding .28s ease, background .28s ease, color .28s ease; }
.about-range__categories a:hover { padding-inline: 24px; background: var(--purple); color: var(--white); }
.about-range__categories span { color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; }
.about-range__categories strong { font-family: var(--condensed); font-size: clamp(28px, 3vw, 45px); font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.about-range__categories i { color: var(--orange); font-style: normal; font-size: 25px; }

.about-locations { position: relative; overflow: hidden; background: var(--cream); }
.about-location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.about-location-card { position: relative; min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; overflow: hidden; color: var(--white); }
.about-location-card::before { content: ""; position: absolute; width: 320px; height: 320px; top: -220px; right: -120px; border: 45px solid rgba(255,255,255,.16); border-radius: 50%; }
.about-location-card__number { position: absolute; top: 35px; right: 40px; font-family: var(--condensed); font-size: 16px; font-weight: 800; }
.about-location-card p { margin: 0 0 12px; font-family: var(--condensed); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-location-card h3 { margin: 0 0 30px; font-family: var(--condensed); font-size: clamp(59px, 6vw, 91px); font-weight: 900; letter-spacing: -.045em; line-height: .72; text-transform: uppercase; }
.about-location-card a { width: fit-content; padding-top: 14px; border-top: 2px solid rgba(255,255,255,.55); font-family: var(--condensed); font-size: 16px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-location-card a span { margin-left: 15px; }
.about-location-card--east { background: var(--purple); }
.about-location-card--east p, .about-location-card--east a span { color: var(--orange); }
.about-location-card--west { background: var(--orange); }
.about-location-card--west p, .about-location-card--west a span { color: var(--purple); }
.about-location-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 30px 36px; background: var(--white); border: 1px solid var(--line); }
.about-location-cta div { display: flex; align-items: center; gap: 18px; }
.about-location-cta small { color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-location-cta strong { color: var(--purple); font-family: var(--condensed); font-size: 28px; font-weight: 900; text-transform: uppercase; }

@media (max-width: 1180px) {
  .about-hero__grid { grid-template-columns: minmax(390px, .9fr) minmax(480px, 1.1fr); gap: 35px; }
  .about-hero__poster--burger { width: 300px; height: 410px; }
  .about-hero__poster--rice { width: 260px; height: 360px; }
  .about-hero__facts { max-width: 660px; }
  .about-manifesto__grid, .about-motion__grid, .about-range__grid { gap: 65px; }
}

@media (max-width: 920px) {
  .about-hero { min-height: 0; padding: 70px 0 46px; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 45px; }
  .about-hero__copy { max-width: 710px; }
  .about-hero__visual { width: min(100%, 680px); min-height: 600px; margin-inline: auto; }
  .about-hero__poster--burger { width: 340px; height: 455px; left: 7%; }
  .about-hero__poster--rice { width: 300px; height: 410px; right: 5%; }
  .about-hero__facts { width: var(--shell); max-width: none; margin: 42px auto 0; }
  .about-hero__micro { display: none; }
  .about-manifesto__grid, .about-motion__grid, .about-range__grid { grid-template-columns: 1fr; }
  .about-manifesto__body { max-width: 680px; padding: 0; border: 0; }
  .formula-grid { grid-template-columns: 1fr; }
  .formula-card { min-height: 390px; }
  .about-motion__media { width: min(100%, 520px); }
  .about-motion__copy { max-width: 710px; }
  .about-range__copy { max-width: 680px; }
}

@media (max-width: 680px) {
  .about-hero { padding-top: 48px; }
  .about-hero h1 { font-size: clamp(78px, 24vw, 116px); }
  .about-hero__eyebrow span:last-child, .about-hero__eyebrow b { display: none; }
  .about-hero__copy > p { margin-top: 27px; font-size: 14px; }
  .about-hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .about-hero__actions .button, .about-hero__actions .text-link { width: 100%; justify-content: space-between; }
  .about-hero__visual { min-height: 500px; }
  .about-hero__visual::before { width: 390px; height: 390px; top: 50px; }
  .about-hero__visual::after { width: 400px; height: 400px; top: 31px; }
  .about-hero__poster { border-width: 6px; }
  .about-hero__poster--burger { width: 55%; height: 385px; top: 50px; left: 2%; }
  .about-hero__poster--rice { width: 48%; height: 335px; right: 1%; bottom: 5px; }
  .about-hero__stamp { width: 108px; height: 108px; top: 4px; right: 0; border-width: 4px; font-size: 8px; }
  .about-hero__stamp strong { font-size: 23px; }
  .about-hero__scribble { left: 7%; bottom: 0; font-size: 28px; }
  .about-hero__facts { grid-template-columns: 1fr; margin-top: 22px; }
  .about-hero__facts > div { min-height: 64px; padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-hero__facts strong { width: 80px; font-size: 38px; }
  .about-ticker__track { padding-block: 16px; }
  .about-manifesto h2, .about-motion__copy h2, .about-range__copy h2 { font-size: clamp(62px, 18vw, 88px); }
  .about-manifesto__body > p, .about-motion__copy > p:not(.eyebrow):not(.about-motion__script), .about-range__copy > p:not(.eyebrow) { font-size: 14px; }
  .about-manifesto blockquote { font-size: 32px; }
  .formula-card { min-height: 350px; padding: 28px; }
  .formula-card__mark { top: 45px; left: 28px; font-size: 62px; }
  .formula-card h3 { font-size: 58px; }
  .about-motion__media { box-shadow: 14px 17px 0 var(--orange); }
  .about-motion__sound { top: 25px; right: 25px; }
  .about-motion__label { right: 25px; left: 25px; bottom: 25px; text-align: center; }
  .about-range__categories a { min-height: 76px; grid-template-columns: 34px 1fr auto; gap: 10px; padding-inline: 0; }
  .about-range__categories strong { font-size: 26px; }
  .about-location-grid { grid-template-columns: 1fr; }
  .about-location-card { min-height: 330px; padding: 30px; }
  .about-location-card__number { top: 28px; right: 30px; }
  .about-location-card h3 { font-size: 62px; }
  .about-location-cta { align-items: stretch; flex-direction: column; padding: 25px; }
  .about-location-cta div { align-items: flex-start; flex-direction: column; gap: 7px; }
  .about-location-cta .button { width: 100%; justify-content: space-between; }
}

/* Dedicated Locations page */
.locations-page { background: var(--paper); }
.locations-hero { position: relative; min-height: 710px; padding: 82px 0 78px; overflow: hidden; background: var(--purple); color: var(--white); }
.locations-hero::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(#fff .7px, transparent .7px); background-size: 17px 17px; mask-image: linear-gradient(90deg, transparent 0, #000 35%, #000 100%); }
.locations-hero__rings { position: absolute; width: 720px; height: 720px; top: -475px; right: -95px; border: 75px solid var(--orange); border-radius: 50%; }
.locations-hero__rings::after { content: ""; position: absolute; inset: -130px; border: 1px solid rgba(255,255,255,.2); border-radius: inherit; }
.locations-hero__word { position: absolute; left: -45px; bottom: -95px; color: rgba(255,255,255,.035); font-family: var(--condensed); font-size: clamp(300px, 32vw, 530px); font-weight: 900; line-height: .72; }
.locations-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(65px, 9vw, 155px); align-items: center; }
.locations-hero h1 { margin: 0; font-family: var(--condensed); font-size: clamp(102px, 10vw, 158px); font-weight: 900; letter-spacing: -.06em; line-height: .68; text-transform: uppercase; }
.locations-hero h1 span { display: inline-block; margin-top: .15em; color: var(--orange); }
.locations-hero__copy > p:not(.eyebrow) { max-width: 590px; margin: 35px 0; padding-left: 22px; border-left: 3px solid var(--orange); color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; }
.locations-hero__route { position: relative; min-height: 510px; display: flex; flex-direction: column; justify-content: center; gap: 34px; padding: 72px 76px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.locations-hero__route::before { content: "TRINIDAD"; position: absolute; right: -52px; bottom: 50px; color: rgba(255,255,255,.05); font-family: var(--condensed); font-size: 124px; font-weight: 900; transform: rotate(-90deg); }
.locations-hero__route article { position: relative; z-index: 2; display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: center; }
.locations-hero__route article > span { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 50%; background: var(--purple); color: var(--orange); font-family: var(--condensed); font-size: 15px; font-weight: 900; box-shadow: 0 0 0 9px rgba(255,75,18,.12); }
.locations-hero__route small { display: block; color: var(--orange); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.locations-hero__route strong { display: block; margin-top: 2px; font-family: var(--condensed); font-size: clamp(38px, 4vw, 56px); font-weight: 900; letter-spacing: -.03em; line-height: .9; }
.locations-hero__route p { margin: 5px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }
.locations-hero__route-line { position: absolute; z-index: 1; width: 2px; height: 150px; top: 178px; left: 105px; border-left: 2px dashed rgba(255,255,255,.28); }
.locations-hero__route-line i { position: absolute; left: -4px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.locations-hero__route-line i:nth-child(1) { top: 12%; }.locations-hero__route-line i:nth-child(2) { top: 31%; }.locations-hero__route-line i:nth-child(3) { top: 50%; }.locations-hero__route-line i:nth-child(4) { top: 69%; }.locations-hero__route-line i:nth-child(5) { top: 88%; }
.locations-hero__route-stamp { position: absolute; z-index: 3; width: 128px; height: 128px; top: -29px; right: -24px; display: grid; place-content: center; border: 5px solid var(--white); border-radius: 50%; transform: rotate(7deg); background: var(--orange); color: var(--white); box-shadow: 0 20px 45px rgba(16,0,31,.28); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .07em; line-height: 1.1; text-align: center; }
.locations-hero__route-stamp strong { color: var(--purple); font-size: 30px; }

.locations-ticker { position: relative; z-index: 3; overflow: hidden; transform: rotate(-1deg) scale(1.02); background: var(--orange); color: var(--white); box-shadow: 0 16px 40px rgba(45,0,85,.18); }
.locations-ticker__track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 20px 0; animation: marquee 28s linear infinite; font-family: var(--condensed); font-size: clamp(34px, 4vw, 60px); font-weight: 900; line-height: .8; }
.locations-ticker__track b, .locations-ticker__track i { color: var(--purple); font-style: normal; }

.location-finder { position: relative; background: var(--cream); }
.location-finder__heading { margin-bottom: 44px; }
.location-finder__layout { display: grid; grid-template-columns: minmax(390px, .76fr) minmax(600px, 1.24fr); gap: 20px; align-items: stretch; }
.location-finder__sidebar { min-width: 0; display: flex; flex-direction: column; }
.location-switcher { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 8px; }
.location-switcher button { position: relative; min-height: 82px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: 1fr 1fr; gap: 0 9px; align-items: end; padding: 14px 16px; border: 1px solid var(--line); background: var(--white); color: var(--purple); cursor: pointer; text-align: left; transition: .28s ease; }
.location-switcher button:hover, .location-switcher button.is-active { border-color: var(--purple); background: var(--purple); color: var(--white); }
.location-switcher button > span { grid-row: 1 / 3; align-self: center; color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; }
.location-switcher button strong { align-self: end; font-family: var(--condensed); font-size: 19px; font-weight: 900; line-height: 1; text-transform: uppercase; }
.location-switcher button small { align-self: start; color: #817487; font-size: 9px; }
.location-switcher button.is-active small, .location-switcher button:hover small { color: rgba(255,255,255,.62); }
.finder-panel { min-height: 590px; flex: 1; padding: 38px 38px 34px; background: var(--white); border: 1px solid var(--line); }
.finder-panel[hidden] { display: none; }
.finder-panel.is-active { animation: finderPanelIn .35s ease both; }
@keyframes finderPanelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.finder-panel__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 25px; border-bottom: 1px solid var(--line); color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.finder-panel__top strong { color: rgba(45,0,85,.2); font-size: 36px; font-weight: 900; line-height: 1; }
.finder-panel__area { margin: 28px 0 7px; color: var(--orange); font-family: var(--condensed); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.finder-panel h3 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(55px, 5vw, 78px); font-weight: 900; letter-spacing: -.045em; line-height: .73; text-transform: uppercase; }
.finder-panel address { margin: 25px 0; color: #685d6c; font-size: 13px; font-style: normal; line-height: 1.7; }
.finder-panel__details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.finder-panel__details small { display: block; margin-bottom: 6px; color: #8c808f; font-family: var(--condensed); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.finder-panel__details a { color: var(--purple); font-family: var(--condensed); font-size: 15px; font-weight: 800; text-transform: uppercase; }
.finder-panel__actions { display: flex; align-items: center; gap: 25px; margin-top: 27px; }
.finder-panel__actions .button { min-height: 48px; padding-inline: 19px; font-size: 13px; }
.finder-panel__actions .text-link { font-size: 13px; }

.fuze-map { min-width: 0; min-height: 680px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: var(--purple); color: var(--white); box-shadow: 0 24px 65px rgba(45,0,85,.12); }
.fuze-map__topbar { position: relative; z-index: 5; min-height: 83px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 16px 20px 16px 24px; border-bottom: 1px solid rgba(255,255,255,.16); background: var(--purple-dark); }
.fuze-map__topbar > div:first-child { display: flex; align-items: center; gap: 13px; }
.fuze-map__live-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,75,18,.16); animation: mapPulse 2s ease infinite; }
@keyframes mapPulse { 50% { box-shadow: 0 0 0 13px rgba(255,75,18,0); } }
.fuze-map__topbar p { margin: 0; }
.fuze-map__topbar small { display: block; margin-bottom: 3px; color: rgba(255,255,255,.46); font-family: var(--condensed); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fuze-map__topbar strong { font-family: var(--condensed); font-size: 16px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.fuze-map__controls { display: flex; }
.fuze-map__controls button { min-width: 39px; height: 39px; padding: 0 12px; border: 1px solid rgba(255,255,255,.22); background: transparent; color: var(--white); cursor: pointer; font-family: var(--condensed); font-size: 18px; font-weight: 800; }
.fuze-map__controls button + button { margin-left: -1px; }
.fuze-map__controls button:nth-child(2) { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.fuze-map__controls button:hover { background: var(--orange); }
.fuze-map__viewport { position: relative; flex: 1; min-height: 595px; overflow: hidden; background: linear-gradient(135deg, #3c066b, #260047 72%); }
.fuze-map__viewport::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; }
.fuze-map__world { position: absolute; inset: 0; transform: scale(1); transform-origin: 50% 50%; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.fuze-map[data-zoom="1"] .fuze-map__world { transform: scale(1.13); }
.fuze-map[data-zoom="2"] .fuze-map__world { transform: scale(1.28); }
.fuze-map[data-active-location="bagshot"] .fuze-map__world { transform-origin: 31% 31%; }
.fuze-map[data-active-location="east"] .fuze-map__world { transform-origin: 59% 31%; }
.fuze-map__islands { position: absolute; width: 94%; height: 94%; left: 3%; top: 1%; overflow: visible; }
.fuze-map__trinidad, .fuze-map__tobago { fill: #592184; stroke: rgba(255,255,255,.5); stroke-width: 2; }
.fuze-map__route { fill: none; stroke: rgba(255,255,255,.24); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 2 12; }
.fuze-map__route--main { stroke: var(--orange); stroke-width: 5; opacity: .75; }
.fuze-map__coast-dots { fill: none; stroke: rgba(255,255,255,.3); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 1 17; }
.fuze-map__labels text { fill: rgba(255,255,255,.48); font: 800 11px var(--condensed); letter-spacing: 1.2px; }
.fuze-map__pin { position: absolute; z-index: 4; min-width: 122px; display: grid; grid-template-columns: 35px 1fr; grid-template-rows: auto auto; gap: 0 8px; align-items: center; padding: 11px 13px 11px 9px; border: 2px solid var(--white); background: var(--purple-dark); color: var(--white); cursor: pointer; text-align: left; box-shadow: 0 15px 35px rgba(18,0,34,.3); transition: transform .28s ease, background .28s ease; }
.fuze-map__pin::after { content: ""; position: absolute; width: 15px; height: 15px; left: 23px; bottom: -9px; transform: rotate(45deg); border-right: 2px solid var(--white); border-bottom: 2px solid var(--white); background: inherit; }
.fuze-map__pin:hover, .fuze-map__pin.is-active { z-index: 6; transform: translateY(-7px); background: var(--orange); }
.fuze-map__pin i { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--purple); font-style: normal; font-family: var(--condensed); font-size: 11px; font-weight: 900; }
.fuze-map__pin strong { align-self: end; font-family: var(--condensed); font-size: 14px; font-weight: 900; line-height: 1; text-transform: uppercase; }
.fuze-map__pin small { align-self: start; color: rgba(255,255,255,.64); font-size: 8px; }
.fuze-map__pin-wave { position: absolute; width: 40px; height: 20px; left: 20px; bottom: -30px; border: 2px solid var(--orange); border-radius: 50%; opacity: 0; }
.fuze-map__pin.is-active .fuze-map__pin-wave { animation: pinWave 1.8s ease infinite; }
@keyframes pinWave { from { opacity: .8; transform: scale(.35); } to { opacity: 0; transform: scale(1.5); } }
.fuze-map__pin--bagshot { left: 25%; top: 26%; }
.fuze-map__pin--east { left: 55%; top: 27%; }
.fuze-map__compass { position: absolute; z-index: 3; right: 24px; bottom: 28px; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); font-family: var(--condensed); }
.fuze-map__compass span { position: absolute; top: -16px; color: var(--orange); font-size: 10px; font-weight: 900; }
.fuze-map__compass i { color: var(--orange); font-size: 25px; font-style: normal; }
.fuze-map__note { position: absolute; z-index: 3; left: 22px; bottom: 20px; margin: 0; color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }

.location-experience { position: relative; overflow: hidden; background: var(--paper); }
.location-experience__word { position: absolute; right: -55px; top: 45px; color: rgba(45,0,85,.03); font-family: var(--condensed); font-size: clamp(180px, 22vw, 350px); font-weight: 900; line-height: .75; }
.location-experience__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.location-experience__grid article { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: 35px; overflow: hidden; border: 1px solid var(--line); background: var(--cream); }
.location-experience__grid article:nth-child(2) { background: var(--purple); color: var(--white); }
.location-experience__grid article:nth-child(3) { background: var(--orange); color: var(--white); }
.location-experience__grid article > span { position: absolute; top: 29px; right: 32px; color: var(--orange); font-family: var(--condensed); font-size: 13px; font-weight: 900; }
.location-experience__grid article:nth-child(3) > span { color: var(--purple); }
.location-experience__grid article > div { position: absolute; top: 45px; left: 35px; color: var(--orange); font-size: 74px; font-weight: 800; line-height: 1; }
.location-experience__grid article:nth-child(3) > div { color: var(--purple); }
.location-experience__grid h3 { margin: 0; color: var(--purple); font-family: var(--condensed); font-size: clamp(60px, 6vw, 86px); font-weight: 900; letter-spacing: -.045em; line-height: .72; text-transform: uppercase; }
.location-experience__grid article:nth-child(2) h3, .location-experience__grid article:nth-child(3) h3 { color: var(--white); }
.location-experience__grid p { max-width: 320px; margin: 25px 0 0; color: #6d6172; font-size: 13px; line-height: 1.7; }
.location-experience__grid article:nth-child(2) p, .location-experience__grid article:nth-child(3) p { color: rgba(255,255,255,.72); }

.location-order-cta { padding: 110px 0; overflow: hidden; background: var(--purple-dark); color: var(--white); }
.location-order-cta__grid { display: grid; grid-template-columns: 1fr .75fr auto; gap: clamp(40px, 6vw, 100px); align-items: center; }
.location-order-cta h2 { margin: 0; font-family: var(--condensed); font-size: clamp(70px, 7vw, 108px); font-weight: 900; letter-spacing: -.05em; line-height: .72; text-transform: uppercase; }
.location-order-cta h2 span { color: var(--orange); }
.location-order-cta__grid > p { max-width: 470px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }
.location-order-cta .button { min-width: 200px; }

@media (max-width: 1180px) {
  .locations-hero__grid { gap: 55px; }
  .locations-hero__route { padding-inline: 55px; }
  .location-finder__layout { grid-template-columns: minmax(350px, .8fr) minmax(510px, 1.2fr); }
  .finder-panel { padding-inline: 30px; }
  .fuze-map__pin--bagshot { left: 21%; }
  .fuze-map__pin--east { left: 53%; }
  .location-order-cta__grid { grid-template-columns: 1fr .8fr; }
  .location-order-cta .button { justify-self: start; }
}

@media (max-width: 920px) {
  .locations-hero { min-height: 0; }
  .locations-hero__grid { grid-template-columns: 1fr; }
  .locations-hero__copy { max-width: 700px; }
  .locations-hero__route { width: min(100%, 690px); min-height: 450px; }
  .location-finder__layout { grid-template-columns: 1fr; }
  .fuze-map { grid-row: 1; min-height: 620px; }
  .fuze-map__viewport { min-height: 535px; }
  .location-finder__sidebar { grid-row: 2; }
  .finder-panel { min-height: 0; }
  .location-experience__grid { grid-template-columns: 1fr; }
  .location-experience__grid article { min-height: 350px; }
  .location-order-cta__grid { grid-template-columns: 1fr; }
  .location-order-cta__grid > p { margin: 0; }
}

@media (max-width: 680px) {
  .locations-hero { padding: 65px 0 70px; }
  .locations-hero h1 { font-size: clamp(82px, 24vw, 112px); }
  .locations-hero__copy > p:not(.eyebrow) { font-size: 14px; }
  .locations-hero__copy .button { width: 100%; justify-content: space-between; }
  .locations-hero__route { min-height: 410px; padding: 64px 25px 44px; }
  .locations-hero__route article { grid-template-columns: 52px 1fr; }
  .locations-hero__route article > span { width: 48px; height: 48px; }
  .locations-hero__route-line { left: 49px; top: 162px; }
  .locations-hero__route-stamp { width: 105px; height: 105px; top: -25px; right: -8px; font-size: 9px; }
  .locations-hero__route-stamp strong { font-size: 24px; }
  .locations-ticker__track { padding-block: 16px; }
  .location-switcher button { min-height: 76px; grid-template-columns: 25px 1fr; padding: 12px 10px; }
  .location-switcher button strong { font-size: 16px; }
  .finder-panel { padding: 27px 23px; }
  .finder-panel h3 { font-size: 57px; }
  .finder-panel__details { grid-template-columns: 1fr; }
  .finder-panel__actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .finder-panel__actions .button, .finder-panel__actions .text-link { width: 100%; justify-content: space-between; }
  .fuze-map { min-height: 490px; }
  .fuze-map__topbar { align-items: flex-start; flex-direction: column; gap: 12px; padding: 17px; }
  .fuze-map__controls { width: 100%; }
  .fuze-map__controls button { flex: 1; }
  .fuze-map__viewport { min-height: 390px; }
  .fuze-map__world { inset: 8px -125px 0 -95px; }
  .fuze-map__pin { min-width: 104px; grid-template-columns: 28px 1fr; padding: 8px; }
  .fuze-map__pin i { width: 28px; height: 28px; }
  .fuze-map__pin strong { font-size: 11px; }
  .fuze-map__pin--bagshot { left: 24%; top: 26%; }
  .fuze-map__pin--east { left: 56%; top: 28%; }
  .fuze-map__compass { right: 16px; bottom: 25px; }
  .fuze-map__note { max-width: 220px; left: 14px; bottom: 12px; }
  .location-experience__grid article { min-height: 315px; padding: 28px; }
  .location-experience__grid article > div { left: 28px; font-size: 60px; }
  .location-experience__grid h3 { font-size: 62px; }
  .location-order-cta { padding: 82px 0; }
  .location-order-cta h2 { font-size: 68px; }
  .location-order-cta .button { width: 100%; justify-content: space-between; }
}
