@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800&display=swap');

:root { color-scheme: dark; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Manrope, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.site { overflow: hidden; min-height: 100vh; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.nav { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 4; }
.brand { display: flex; align-items: center; gap: 11px; font: 800 17px/1 Unbounded, sans-serif; letter-spacing: -.07em; }
.brand__mark { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font: 800 15px/1 Unbounded, sans-serif; box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 35%, transparent); }
.nav__links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; font-weight: 700; }
.nav__links a:hover { color: var(--ink); }
.nav__cta, .button { border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 9px; border-radius: 999px; font: 800 12px/1 Manrope, sans-serif; transition: transform .2s ease, box-shadow .2s ease; }
.nav__cta { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); }
.button { min-height: 58px; padding: 0 25px; background: var(--accent); color: var(--accent-ink); box-shadow: 0 14px 35px color-mix(in srgb, var(--accent) 25%, transparent); }
.button:hover, .nav__cta:hover { transform: translateY(-2px); }
.hero { min-height: 650px; padding: 32px 0 80px; position: relative; isolation: isolate; }
.hero__grid { display: grid; grid-template-columns: minmax(330px, .91fr) minmax(460px, 1.09fr); gap: 24px; align-items: center; min-height: 530px; }
.eyebrow { display: inline-flex; gap: 9px; align-items: center; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow:before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px color-mix(in srgb, currentColor 16%, transparent); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 18px 0 25px; max-width: 680px; font: 800 clamp(42px, 5.25vw, 76px)/.98 Unbounded, sans-serif; letter-spacing: -.08em; }
.hero__lead { max-width: 440px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero__actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }
.ghost { min-height: 58px; padding: 0 22px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 800; }
.delivery-note { margin-top: 32px; color: var(--muted); font-size: 12px; font-weight: 700; }
.delivery-note strong { color: var(--ink); }
.hero__visual { min-height: 480px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero__halo { position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 19%, transparent), transparent 67%); filter: blur(3px); }
.hero__image { position: relative; z-index: 1; width: 100%; height: 470px; object-fit: cover; border-radius: 30px; box-shadow: 0 32px 80px rgba(0,0,0,.25); }
.tag { position: absolute; z-index: 2; border: 1px solid var(--float-line); background: var(--float); backdrop-filter: blur(12px); border-radius: 16px; padding: 12px 14px; box-shadow: 0 16px 35px rgba(0,0,0,.14); font-size: 11px; font-weight: 800; }
.tag--top { top: 8%; left: -3%; }
.tag--bottom { bottom: 7%; right: -3%; }
.tag b { display:block; font-size: 16px; margin-top: 2px; }
.hero__stamp { width: 118px; height: 118px; position: absolute; z-index: 2; right: 2%; top: -5px; color: var(--accent-ink); background: var(--accent); border-radius: 50%; display: grid; place-items: center; text-align: center; transform: rotate(12deg); font: 800 10px/1.55 Unbounded, sans-serif; letter-spacing: .04em; }
.hero__stamp:before { content: '★  ★  ★  ★  ★  ★  ★  ★'; position: absolute; inset: 7px; border: 1px dashed currentColor; padding: 6px; border-radius: inherit; font-size: 7px; line-height: 6.6; overflow: hidden; }
.hero__stamp span { position: relative; }
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; color: var(--ticker); font: 700 15px/1 Unbounded, sans-serif; letter-spacing: -.05em; }
.ticker__line { padding: 18px 0; animation: tick 24s linear infinite; display: inline-block; }
@keyframes tick { to { transform: translateX(-24%); } }
.section { padding: 108px 0; }
.section--menu { background: var(--surface); }
.section__top { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
h2 { margin: 10px 0 0; max-width: 600px; font: 700 clamp(31px, 3.5vw, 49px)/1.04 Unbounded, sans-serif; letter-spacing: -.07em; }
.section__hint { max-width: 280px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dish { min-height: 330px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: var(--card); transition: transform .25s ease, border-color .25s ease; }
.dish:hover { transform: translateY(-6px); border-color: var(--accent); }
.dish__photo { height: 132px; border-radius: 17px; padding: 14px; display: flex; align-items: end; justify-content: space-between; background: var(--dish-bg); overflow: hidden; position: relative; }
.dish__emoji { position: absolute; right: 10px; top: -10px; font-size: 105px; filter: drop-shadow(0 16px 10px rgba(0,0,0,.18)); transform: rotate(-13deg); }
.dish__label { z-index: 1; color: var(--dish-label); background: var(--paper); border-radius: 999px; padding: 8px 10px; font-size: 10px; font-weight: 800; }
.dish h3 { margin: 22px 0 9px; font: 700 20px/1.12 Unbounded, sans-serif; letter-spacing: -.06em; }
.dish p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 800; }
.dish__price { color: var(--accent); font-size: 17px; }
.promise { padding: 0 0 108px; background: var(--surface); }
.promise__inner { display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; padding: 44px 48px; border-radius: 28px; background: var(--feature); color: var(--feature-ink); }
.promise h2 { max-width: 580px; }
.promise p { max-width: 470px; margin: 22px 0 0; color: var(--feature-muted); line-height: 1.7; font-size: 14px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: center; }
.fact { padding: 18px; border: 1px solid var(--feature-line); border-radius: 16px; }
.fact b { display: block; color: var(--accent); font: 700 27px/1 Unbounded, sans-serif; letter-spacing: -.08em; }
.fact span { display: block; margin-top: 7px; color: var(--feature-muted); font-size: 11px; line-height: 1.35; }
.cta { padding: 102px 0; background: var(--paper); }
.cta__box { padding: 56px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; border-radius: 30px; border: 1px solid var(--line); background: radial-gradient(circle at 90% 20%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 30%), var(--card); }
.cta__box h2 { margin-top: 12px; }
.cta__box p { margin: 20px 0 0; max-width: 500px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.order { display: grid; align-content: center; gap: 12px; }
.order a { min-height: 58px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-radius: 14px; border: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.order a:first-child { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.footer { padding: 27px 0 34px; color: var(--muted); font-size: 11px; border-top: 1px solid var(--line); }
.footer__in { display: flex; gap: 16px; justify-content: space-between; }
.catalog { background:#0b0b10; color:#f5f2fb; min-height:100vh; }
.catalog .nav { height: 92px; }
.catalog .brand__mark { background:#7cf0b7; color:#0b0b10; }
.catalog-hero { padding: 72px 0 48px; }
.catalog-hero h1 { font-size: clamp(43px, 7vw, 92px); max-width: 940px; }
.catalog-hero p { max-width: 510px; color:#aba8b7; line-height:1.65; }
.catalog-grid { padding: 38px 0 100px; display:grid; grid-template-columns:repeat(2, 1fr); gap: 20px; }
.catalog-card { min-height: 370px; border-radius:26px; overflow:hidden; position:relative; isolation:isolate; background:#1a1a1f; border:1px solid rgba(255,255,255,.1); }
.catalog-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.84; transition: transform .5s ease; }
.catalog-card:hover img { transform: scale(1.055); }
.catalog-card:after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 20%,rgba(0,0,0,.76) 100%); }
.catalog-card__text { position:absolute; z-index:1; left:28px; right:28px; bottom:26px; }
.catalog-card__kicker { font-size:10px; text-transform:uppercase; letter-spacing:.12em; font-weight:800; color:#b4ffcf; }
.catalog-card h2 { margin:9px 0 0; font-size:30px; }
.catalog-card__arrow { position:absolute; z-index:2; right:24px; top:24px; width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:white; color:black; font-size:20px; }
@media (max-width: 850px) { .nav__links { display: none; } .hero { padding-top: 12px; } .hero__grid { grid-template-columns: 1fr; } .hero__copy { padding-top: 28px; } .hero__visual { min-height: 410px; } .hero__image { height: 410px; } .section__top, .promise__inner, .cta__box { grid-template-columns: 1fr; display: grid; } .section__top { align-items: start; } .menu-grid { grid-template-columns: 1fr 1fr; } .promise__inner, .cta__box { padding: 36px; } .catalog-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .wrap { width: min(100% - 32px, 1180px); } .nav { height: 75px; } .nav__cta { font-size:10px; min-height:38px; padding:0 13px; } .brand { font-size:14px; } .brand__mark { width:32px; height:32px; border-radius:10px; } h1 { font-size: 42px; } .hero { min-height: unset; padding-bottom: 48px; } .hero__grid { min-height:unset; } .hero__visual { min-height: 310px; margin: 10px -7px 0; } .hero__image { height: 310px; border-radius: 22px; } .hero__stamp { width:84px; height:84px; right:-7px; top:-12px; font-size:7px; } .tag { font-size:9px; padding:9px 10px; } .tag b { font-size:13px; } .tag--top { left:-7px; top:6%; } .tag--bottom { right:-7px; bottom:4%; } .section { padding:70px 0; } .section__top { margin-bottom:26px; } .menu-grid { grid-template-columns: 1fr; } .dish { min-height:300px; } .promise { padding-bottom:70px; } .promise__inner, .cta__box { padding:26px 22px; border-radius:22px; gap:27px; } .facts { gap:9px; } .fact { padding:14px; } .fact b { font-size:21px; } .cta { padding:70px 0; } .footer__in { flex-direction:column; } .catalog-hero { padding:45px 0 25px; } .catalog-card { min-height:300px; } .catalog-card__text { left:20px; bottom:19px; } .catalog-card h2 { font-size:25px; } }
