:root {
    --ink: #0b0909;
    --ink-soft: #151111;
    --panel: #1b1514;
    --paper: #f4efe7;
    --cream: #fff8ec;
    --muted: #aaa09a;
    --line: rgba(255, 248, 236, .14);
    --red: #cf302d;
    --red-dark: #8e1d1d;
    --gold: #f2b63d;
    --brown: #38241e;
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius: 1.25rem;
    --page: min(92vw, 1320px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    margin: 0;
    color: var(--cream);
    background: var(--ink);
    font-family: var(--body);
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 200;
    padding: .75rem 1rem;
    color: var(--ink);
    background: var(--gold);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5.25rem;
    padding: 1rem 4vw;
    border-bottom: 1px solid transparent;
    transition: background-color .3s ease, border-color .3s ease, min-height .3s ease;
}

.site-header.is-scrolled {
    min-height: 4.5rem;
    background: rgba(11, 9, 9, .9);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    z-index: 2;
}

.brand-mark {
    display: grid;
    width: 2.2rem;
    aspect-ratio: 1;
    place-items: center;
    color: white;
    background: var(--red);
    border-radius: 50% 50% 50% 14%;
    font: 800 .72rem/1 var(--body);
    transform: rotate(-8deg);
}

.brand-name {
    color: white;
    font: 400 1.4rem/1 var(--display);
    letter-spacing: .035em;
}

.brand-name span {
    color: var(--red);
    font-size: 1.3em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: .79rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) {
    position: relative;
    padding: .65rem 0;
}

.main-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: .35rem;
    left: 0;
    height: 2px;
    content: "";
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.main-nav > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: .78rem 1.15rem;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}

.nav-cta:hover {
    color: var(--ink);
    background: var(--cream);
}

.menu-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    padding: .75rem;
    color: white;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    height: 1px;
    margin: .28rem 0;
    background: currentColor;
    transition: transform .25s ease;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(960px, 100svh);
    align-items: center;
    padding: 8rem 7vw 6rem;
    isolation: isolate;
}

.hero-media,
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media {
    background:
        linear-gradient(90deg, rgba(8, 6, 6, .98) 0%, rgba(8, 6, 6, .86) 32%, rgba(8, 6, 6, .22) 71%, rgba(8, 6, 6, .4) 100%),
        linear-gradient(0deg, rgba(8, 6, 6, .76), transparent 45%),
        url("../img/web/hero.webp") 58% center / cover no-repeat;
    transform: scale(1.015);
    animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-noise {
    z-index: -1;
    opacity: .11;
    background-image:
        repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.28) 0 1px, transparent 1px 4px),
        repeating-radial-gradient(circle at 80% 70%, rgba(255,255,255,.18) 0 1px, transparent 1px 5px);
    background-size: 7px 9px, 11px 13px;
    pointer-events: none;
}

@keyframes hero-breathe {
    to { transform: scale(1.045); }
}

.hero-content {
    width: min(760px, 67vw);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.5rem;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 2.75rem;
    height: 2px;
    background: currentColor;
}

h1,
h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -.015em;
    line-height: .88;
    text-transform: uppercase;
}

h1 {
    max-width: 860px;
    font-size: clamp(4.7rem, 10.6vw, 10.5rem);
}

h1 em,
h2 em {
    color: var(--red);
    font-style: normal;
    text-shadow: 0 .04em 0 rgba(0,0,0,.25);
}

.hero-copy {
    max-width: 34rem;
    margin: 2rem 0 0;
    color: rgba(255,248,236,.8);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    min-height: 3.55rem;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: .85rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .095em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: white;
    background: var(--red);
}

.button-primary:hover {
    background: #ea3b37;
}

.button-ghost {
    color: white;
    border-color: rgba(255,255,255,.45);
    background: rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    color: var(--ink);
    background: var(--cream);
    border-color: var(--cream);
}

.button-light {
    color: var(--ink);
    background: var(--cream);
}

.hero-sticker {
    position: absolute;
    right: 5vw;
    bottom: 4.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: .7rem;
    width: min(20rem, 30vw);
    padding: 1.15rem 1.3rem;
    color: var(--ink);
    background: var(--cream);
    border-radius: .8rem;
    box-shadow: 0 1.2rem 5rem rgba(0,0,0,.35);
    transform: rotate(-2deg);
}

.hero-sticker::after {
    position: absolute;
    inset: .4rem;
    content: "";
    border: 1px dashed rgba(56,36,30,.25);
    border-radius: .55rem;
    pointer-events: none;
}

.hero-sticker strong,
.hero-sticker small {
    z-index: 1;
}

.hero-sticker strong {
    font-size: .83rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-sticker small {
    grid-column: 2;
    color: #766c65;
    font-size: .72rem;
}

.status-dot {
    width: .72rem;
    height: .72rem;
    margin-top: .25rem;
    background: #4cae62;
    border-radius: 50%;
    box-shadow: 0 0 0 .25rem rgba(76,174,98,.15);
}

.status-dot.is-closed {
    background: var(--red);
    box-shadow: 0 0 0 .25rem rgba(207,48,45,.14);
}

.hero-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 4vw;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .2em;
    writing-mode: vertical-rl;
}

.hero-scroll i {
    color: var(--gold);
    font-size: 1.1rem;
    font-style: normal;
}

.ticker {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    color: var(--ink);
    background: var(--gold);
    border-block: 2px solid var(--ink);
    transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 2rem;
    padding: .7rem 0;
    animation: ticker 24s linear infinite;
    font: 400 1.6rem/1 var(--display);
    letter-spacing: .06em;
}

.ticker-track b {
    color: var(--red);
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.section {
    padding: clamp(5.5rem, 10vw, 9rem) 4vw;
}

.menu-section {
    min-height: 900px;
    background:
        radial-gradient(circle at 90% 12%, rgba(207,48,45,.12), transparent 25rem),
        var(--ink);
}

.featured-menu {
    min-height: 0;
}

.featured-meta {
    margin-top: 3.5rem;
}

.featured-menu .product-card:first-child {
    grid-column: span 2;
    grid-template-columns: minmax(9rem, 12rem) 1fr;
}

.featured-menu .product-card:first-child h3 {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.featured-cta {
    display: flex;
    width: var(--page);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.featured-cta p {
    margin: 0;
    color: var(--cream);
    font: 400 clamp(1.7rem, 3vw, 2.8rem)/1 var(--display);
    letter-spacing: .02em;
    text-transform: uppercase;
}

.catalog-hero {
    position: relative;
    display: grid;
    min-height: 38rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, .65fr);
    align-items: end;
    gap: 3rem;
    padding: 10rem max(4vw, calc((100vw - 1320px) / 2)) 5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(207,48,45,.34), transparent 27rem),
        linear-gradient(135deg, #1a1312, #0b0909 60%);
}

.catalog-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 34rem;
    aspect-ratio: 1;
    content: "";
    border: 5rem solid rgba(207,48,45,.09);
    border-radius: 50%;
}

.catalog-hero-copy {
    position: relative;
    z-index: 1;
}

.catalog-hero h1 {
    font-size: clamp(4.7rem, 9vw, 9rem);
}

.catalog-hero-copy > p:last-child {
    max-width: 36rem;
    margin: 1.7rem 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.catalog-back {
    display: inline-flex;
    gap: .7rem;
    align-items: center;
    margin-bottom: 2.2rem;
    color: #a49a95;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.catalog-back:hover {
    color: var(--gold);
}

.catalog-mascot {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(100%, 25rem);
    padding: .75rem;
    background: white;
    border-radius: 50% 50% 1.25rem 1.25rem;
    box-shadow: 0 2rem 5rem rgba(0,0,0,.35);
    transform: rotate(3deg) translateY(2rem);
}

.catalog-mascot img {
    aspect-ratio: 1 / 1.03;
    object-fit: cover;
    border-radius: inherit;
}

.catalog-menu {
    padding-top: clamp(4.5rem, 7vw, 7rem);
}

.catalog-order {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: clamp(5rem, 10vw, 9rem) max(4vw, calc((100vw - 1320px) / 2));
    color: var(--ink);
    background: var(--gold);
}

.catalog-order .eyebrow {
    color: var(--red);
}

.catalog-order h2 {
    font-size: clamp(4rem, 8vw, 8rem);
}

.catalog-order h2 em {
    color: var(--red);
}

.catalog-phone {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 2rem 0;
    border-block: 2px solid rgba(11,9,9,.65);
    transition: color .2s ease, padding .2s ease;
}

.catalog-phone:hover {
    padding-inline: 1rem;
    color: var(--red);
}

.catalog-phone small {
    grid-column: 1 / -1;
    margin-bottom: .6rem;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.catalog-phone strong {
    font: 400 clamp(2.7rem, 5vw, 5rem)/1 var(--display);
}

.catalog-phone span {
    font-size: 2rem;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 3rem;
    width: var(--page);
    margin: 0 auto;
    align-items: end;
}

.section-heading h2,
.story-copy h2,
.visit-intro h2,
.review-content h2 {
    font-size: clamp(4rem, 8vw, 8rem);
}

.section-heading > p {
    max-width: 31rem;
    margin: 0 0 .5rem;
    color: var(--muted);
    font-size: 1rem;
}

.menu-toolbar {
    display: grid;
    grid-template-columns: 1fr minmax(15rem, 22rem);
    gap: 1.25rem;
    width: var(--page);
    align-items: center;
    margin: 4rem auto 1.5rem;
}

.category-tabs {
    display: flex;
    gap: .55rem;
    padding-bottom: .35rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-tab {
    flex: 0 0 auto;
    min-height: 2.7rem;
    padding: .6rem 1rem;
    color: #c9bfba;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.category-tab:hover,
.category-tab[aria-pressed="true"] {
    color: white;
    background: var(--red);
    border-color: var(--red);
}

.menu-search {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-search input {
    width: 100%;
    min-height: 3.1rem;
    padding: .75rem 2.8rem .75rem 1.1rem;
    color: white;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.menu-search input::placeholder {
    color: #817772;
}

.menu-search span {
    position: absolute;
    right: 1.1rem;
    color: var(--gold);
    font-size: 1.3rem;
}

.menu-meta,
.menu-note {
    width: var(--page);
    margin: 0 auto;
    color: #756c68;
    font-size: .73rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: var(--page);
    margin: 1.3rem auto 2rem;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-columns: 7.3rem 1fr;
    min-height: 10.5rem;
    overflow: hidden;
    background: linear-gradient(145deg, #211a18, #171211);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    z-index: 2;
    border-color: rgba(242,182,61,.5);
    box-shadow: 0 1.3rem 3rem rgba(0,0,0,.26);
    transform: translateY(-7px) rotate(-.3deg);
}

.product-visual {
    position: relative;
    display: grid;
    min-height: 100%;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle, rgba(242,182,61,.14), transparent 64%),
        #130f0e;
}

.product-visual img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 .7rem .7rem rgba(0,0,0,.28));
    transition: transform .35s ease;
}

.product-card:hover .product-visual img {
    transform: scale(1.09) rotate(2deg);
}

.product-initial {
    color: rgba(255,255,255,.1);
    font: 400 4rem/1 var(--display);
}

.product-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1rem 1.05rem 1.05rem;
}

.product-topline {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: .75rem;
}

.product-category {
    margin: 0 0 .42rem;
    color: var(--gold);
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.product-code {
    display: inline-grid;
    min-width: 1.8rem;
    min-height: 1.8rem;
    place-items: center;
    margin-right: .4rem;
    color: white;
    background: var(--red);
    border-radius: 50%;
    font-size: .8rem;
}

.product-card h3 {
    margin: 0;
    color: var(--cream);
    font-size: 1.02rem;
    line-height: 1.18;
}

.product-price {
    flex: 0 0 auto;
    color: var(--cream);
    font: 400 1.15rem/1 var(--display);
    letter-spacing: .02em;
}

.product-description {
    display: -webkit-box;
    margin: .55rem 0 0;
    overflow: hidden;
    color: #938984;
    font-size: .76rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-badge {
    align-self: flex-start;
    margin-top: auto;
    padding-top: .5rem;
    color: var(--red);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.skeleton {
    overflow: hidden;
    min-height: 10.5rem;
    background: #171312;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.skeleton::after {
    display: block;
    width: 45%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
    animation: shimmer 1.2s ease-in-out infinite;
}

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(260%); }
}

.menu-message {
    width: min(92vw, 38rem);
    margin: 2rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.menu-message-icon {
    display: grid;
    width: 3rem;
    aspect-ratio: 1;
    place-items: center;
    margin: 0 auto 1rem;
    color: white;
    background: var(--red);
    border-radius: 50%;
    font: 400 1.5rem/1 var(--display);
}

.menu-message h3 {
    margin: 0 0 .5rem;
    font-size: 1.3rem;
}

.menu-message p {
    margin: 0 0 1.5rem;
    color: var(--muted);
}

.story-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    color: var(--brown);
    background:
        linear-gradient(rgba(244,239,231,.92), rgba(244,239,231,.92)),
        repeating-linear-gradient(90deg, transparent 0 4rem, rgba(56,36,30,.04) 4rem 4.08rem),
        var(--paper);
}

.story-art {
    position: relative;
    width: min(100%, 44rem);
    justify-self: end;
}

.story-art-frame {
    overflow: hidden;
    background: white;
    border: .75rem solid white;
    border-radius: 48% 48% 1.5rem 1.5rem;
    box-shadow: 0 1.5rem 4rem rgba(56,36,30,.15);
    transform: rotate(-2deg);
}

.story-art-frame img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
}

.story-seal {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    display: grid;
    width: 8rem;
    aspect-ratio: 1;
    place-items: center;
    color: var(--cream);
    background: var(--red);
    border-radius: 50%;
    font: 400 1.05rem/1.05 var(--display);
    letter-spacing: .06em;
    text-align: center;
    transform: rotate(8deg);
}

.story-copy {
    max-width: 42rem;
}

.story-copy .eyebrow,
.visit-intro .eyebrow {
    color: var(--red);
}

.story-copy h2 em {
    color: var(--red);
}

.story-lead {
    margin: 2rem 0 1rem;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 650;
    line-height: 1.3;
}

.story-copy > p:not(.eyebrow):not(.story-lead) {
    color: #78635b;
}

.story-points {
    display: grid;
    margin-top: 2rem;
    border-top: 1px solid rgba(56,36,30,.18);
}

.story-points span {
    display: flex;
    gap: 1.2rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(56,36,30,.18);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.story-points b {
    color: var(--red);
}

.visit-section {
    display: grid;
    grid-template-columns: 1.25fr 1fr .85fr;
    gap: 1rem;
    align-items: stretch;
    background: #110e0e;
}

.visit-intro,
.hours-card,
.contact-card {
    min-height: 32rem;
    padding: clamp(2rem, 4vw, 4rem);
    border-radius: var(--radius);
}

.visit-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 80% 10%, rgba(207,48,45,.35), transparent 16rem),
        var(--panel);
}

.visit-intro h2 {
    font-size: clamp(4rem, 6vw, 7.2rem);
}

.text-link {
    display: inline-flex;
    width: fit-content;
    gap: 1rem;
    align-items: center;
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--red);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--gold);
    font-size: 1.1rem;
}

.hours-card {
    color: var(--brown);
    background: var(--paper);
}

.hours-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.3rem;
    border-bottom: 2px solid var(--brown);
}

.hours-card-header p,
.contact-card > p {
    margin: 0;
    font: 400 1.6rem/1 var(--display);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hours-card-header span {
    padding: .32rem .62rem;
    color: white;
    background: var(--red);
    border-radius: 999px;
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hours-list {
    margin: 1.4rem 0 0;
}

.hours-list > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .67rem 0;
    border-bottom: 1px solid rgba(56,36,30,.13);
    font-size: .82rem;
}

.hours-list > div.is-today {
    color: var(--red);
    font-weight: 800;
}

.hours-list dt,
.hours-list dd {
    margin: 0;
}

.hours-list dd {
    text-align: right;
}

.contact-card {
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--gold);
}

.contact-card > a {
    margin: auto 0;
    font: 400 clamp(3.5rem, 5vw, 6rem)/.85 var(--display);
    letter-spacing: -.02em;
    transition: color .2s ease;
}

.contact-card > a:hover {
    color: var(--red);
}

.contact-card > span {
    padding-top: 1rem;
    border-top: 1px solid rgba(11,9,9,.35);
    font-size: .78rem;
    font-weight: 650;
}

.review-section {
    position: relative;
    display: grid;
    min-height: 44rem;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: var(--red);
}

.review-backdrop {
    position: absolute;
    color: rgba(77,10,10,.14);
    font: 400 32vw/1 var(--display);
    letter-spacing: -.04em;
    pointer-events: none;
    transform: rotate(-5deg);
}

.review-content {
    position: relative;
    z-index: 1;
}

.rating {
    margin: 0 0 1.4rem;
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: .35em;
}

.review-content h2 em {
    color: var(--gold);
}

.review-content > p:not(.rating) {
    max-width: 31rem;
    margin: 1.5rem auto 2rem;
    color: rgba(255,255,255,.82);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    padding: 4rem 4vw 2rem;
    background: var(--ink);
}

.footer-brand {
    width: min(32rem, 70vw);
    padding: 1rem;
    background: white;
    border-radius: .8rem;
}

.footer-brand img {
    width: 100%;
}

.footer-links {
    display: grid;
    gap: .65rem;
    text-align: right;
}

.footer-links a {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--gold);
}

.site-footer > p {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.4rem;
    justify-content: space-between;
    margin: 1rem 0 0;
    padding-top: 1.4rem;
    color: #6e6662;
    border-top: 1px solid var(--line);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* El acceso del personal: mismo tamano que el aviso legal, sin llamar la
   atencion. Es un atajo para quien ya sabe que esta ahi, no una seccion. */
.acceso-tpv {
    color: #6e6662;
    font-weight: 700;
}

.acceso-tpv:hover {
    color: var(--gold);
}

.js .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visit-section {
        grid-template-columns: 1fr 1fr;
    }

    .visit-intro {
        grid-column: 1 / -1;
        min-height: 25rem;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
        z-index: 2;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        justify-content: center;
        gap: 1.6rem;
        padding: 6rem 2rem 2rem;
        opacity: 0;
        background: rgba(11,9,9,.98);
        transition: opacity .25s ease, visibility .25s ease;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
    }

    .main-nav > a {
        font-size: 1.35rem;
    }

    .menu-toggle[aria-expanded="true"] > span:first-child {
        transform: translateY(.28rem) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        transform: translateY(-.28rem) rotate(-45deg);
    }

    .hero {
        min-height: 52rem;
        padding: 8rem 5vw 7rem;
        align-items: end;
    }

    .hero-media {
        background:
            linear-gradient(0deg, rgba(8,6,6,.98) 0%, rgba(8,6,6,.52) 60%, rgba(8,6,6,.3) 100%),
            url("../img/web/hero.webp") 68% center / cover no-repeat;
    }

    .hero-content {
        width: 100%;
    }

    h1 {
        font-size: clamp(4.1rem, 17vw, 7rem);
    }

    .hero-sticker {
        top: 7rem;
        right: 5vw;
        bottom: auto;
        width: min(18rem, 72vw);
    }

    .hero-scroll {
        display: none;
    }

    .section-heading,
    .menu-toolbar {
        grid-template-columns: 1fr;
    }

    .section-heading > p {
        margin-top: 0;
    }

    .catalog-hero {
        min-height: 34rem;
        grid-template-columns: 1fr;
        padding-top: 9rem;
    }

    .catalog-mascot {
        position: absolute;
        right: -5rem;
        bottom: -3rem;
        width: 15rem;
        opacity: .32;
    }

    .catalog-order {
        grid-template-columns: 1fr;
    }

    .menu-toolbar {
        margin-top: 2.5rem;
    }

    .category-tabs {
        order: 2;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .story-art {
        width: min(88%, 38rem);
        justify-self: center;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .section {
        padding-inline: 1rem;
    }

    .section-heading h2,
    .story-copy h2,
    .visit-intro h2,
    .review-content h2 {
        font-size: clamp(3.6rem, 17vw, 5.8rem);
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 6.6rem 1fr;
    }

    .featured-menu .product-card:first-child {
        grid-column: auto;
        grid-template-columns: 6.6rem 1fr;
    }

    .featured-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-hero {
        min-height: 38rem;
        padding-inline: 1rem;
    }

    .catalog-hero h1 {
        font-size: clamp(4.1rem, 18vw, 6rem);
    }

    .catalog-order {
        padding-inline: 1rem;
    }

    .visit-section {
        grid-template-columns: 1fr;
    }

    .visit-intro {
        grid-column: auto;
    }

    .visit-intro,
    .hours-card,
    .contact-card {
        min-height: auto;
    }

    .visit-intro {
        gap: 4rem;
    }

    .contact-card > a {
        margin: 4rem 0;
    }

    .review-section {
        min-height: 38rem;
    }

    .site-footer {
        padding-inline: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
