/* ==========================================================
   Salemba Raya 31 — Shared website styles
   Clean, framework-free, responsive, and hosting friendly.
   ========================================================== */

:root {
    --red: #d71920;
    --red-deep: #a80f17;
    --red-soft: #ffe8e8;
    --yellow: #ffc72c;
    --yellow-soft: #fff3c4;
    --ink: #1d1d1f;
    --ink-soft: #4f4f55;
    --muted: #73737b;
    --paper: #ffffff;
    --cream: #fffaf1;
    --cream-deep: #f8efe1;
    --line: rgba(29, 29, 31, 0.12);
    --shadow-sm: 0 10px 28px rgba(35, 20, 10, 0.09);
    --shadow-md: 0 22px 55px rgba(35, 20, 10, 0.15);
    --shadow-red: 0 18px 40px rgba(215, 25, 32, 0.24);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
    --header-height: 82px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

button {
    border: 0;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--ink);
    border-radius: 999px;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 96px 0;
    overflow: clip;
}

.section--compact {
    padding: 68px 0;
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 199, 44, 0.14), transparent 28%),
        linear-gradient(135deg, #191919 0%, #2b1917 100%);
}

.section--red {
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.18), transparent 25%),
        linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 3px;
    content: "";
    background: var(--yellow);
    border-radius: 999px;
}

.section--dark .eyebrow,
.section--red .eyebrow {
    color: var(--yellow);
}

.display-title,
.section-title,
.card-title,
h1,
h2,
h3 {
    margin-top: 0;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.display-title {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 6.2vw, 5.8rem);
}

.section-title {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4.4vw, 3.8rem);
}

.section-copy {
    max-width: 720px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.section--dark .section-copy,
.section--red .section-copy {
    color: rgba(255, 255, 255, 0.74);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}

.section-heading__text {
    max-width: 770px;
}

.icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon--sm {
    width: 18px;
    height: 18px;
}

.icon--lg {
    width: 30px;
    height: 30px;
}

/* ----------------------------------------------------------
   Utility bar and primary navigation
   ---------------------------------------------------------- */

.utility-bar {
    position: relative;
    z-index: 102;
    color: #ffffff;
    background: #171717;
    font-size: 0.82rem;
}

.utility-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.utility-list {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.utility-item,
.utility-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
}

.utility-link:hover,
.utility-link:focus-visible {
    color: var(--yellow);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition:
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-color: var(--line);
    box-shadow: 0 12px 34px rgba(25, 20, 16, 0.08);
}

.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand__logo {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 8px 14px rgba(168, 15, 23, 0.2));
    transition: transform 260ms var(--ease);
}

.brand:hover .brand__logo,
.brand:focus-visible .brand__logo {
    transform: rotate(-4deg) scale(1.04);
}

.brand__text {
    display: grid;
    gap: 1px;
}

.brand__name {
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand__meta {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.2;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.primary-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 0.91rem;
    font-weight: 760;
    transition:
        color 180ms ease,
        background 180ms ease;
}

.primary-nav__link::after {
    position: absolute;
    right: 13px;
    bottom: 6px;
    left: 13px;
    height: 2px;
    content: "";
    background: var(--red);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 200ms var(--ease);
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible,
.primary-nav__link[aria-current="page"] {
    color: var(--red);
    background: var(--red-soft);
}

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after,
.primary-nav__link[aria-current="page"]::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle .icon-close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
    display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
    display: block;
}

.mobile-panel {
    display: none;
}

/* ----------------------------------------------------------
   Buttons and interactive links
   ---------------------------------------------------------- */

.button {
    position: relative;
    isolation: isolate;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: var(--shadow-red);
    font-size: 0.94rem;
    font-weight: 820;
    cursor: pointer;
    transition:
        transform 200ms var(--ease),
        box-shadow 200ms ease,
        background 200ms ease;
}

.button::before {
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -55%;
    width: 45%;
    height: 260%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(20deg);
    transition: left 650ms var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(215, 25, 32, 0.3);
}

.button:hover::before,
.button:focus-visible::before {
    left: 118%;
}

.button--yellow {
    color: #2a2108;
    background: linear-gradient(135deg, #ffd750, var(--yellow));
    box-shadow: 0 18px 38px rgba(255, 199, 44, 0.24);
}

.button--yellow:hover,
.button--yellow:focus-visible {
    box-shadow: 0 22px 46px rgba(255, 199, 44, 0.34);
}

.button--dark {
    color: #ffffff;
    background: var(--ink);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.button--ghost {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--red);
    background: var(--red-soft);
    box-shadow: var(--shadow-sm);
}

.button--light {
    color: var(--red-deep);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(56, 0, 5, 0.16);
}

.button--sm {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 0.86rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-weight: 830;
}

.text-link .icon {
    transition: transform 180ms var(--ease);
}

.text-link:hover .icon,
.text-link:focus-visible .icon {
    transform: translateX(4px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ----------------------------------------------------------
   Home hero
   ---------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    padding: 70px 0 88px;
    overflow: clip;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 199, 44, 0.23), transparent 25%),
        radial-gradient(circle at 86% 16%, rgba(215, 25, 32, 0.09), transparent 24%),
        linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
}

.hero::before {
    position: absolute;
    top: 7%;
    left: -9%;
    width: 340px;
    height: 340px;
    content: "";
    background: repeating-radial-gradient(circle, rgba(215, 25, 32, 0.08) 0 2px, transparent 2px 14px);
    border-radius: 50%;
    mask-image: radial-gradient(circle, #000 20%, transparent 72%);
    animation: slow-spin 26s linear infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    align-items: center;
    gap: 70px;
}

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: var(--red-deep);
    background: #ffffff;
    border: 1px solid rgba(215, 25, 32, 0.12);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker__dot {
    width: 9px;
    height: 9px;
    background: #26a65b;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(38, 166, 91, 0.14);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 30px;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.hero-fact {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-fact__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--red);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--yellow);
    border: 10px solid #ffffff;
    border-radius: 48px 48px 118px 48px;
    box-shadow: var(--shadow-md);
    transform: rotate(1.2deg);
}

.hero-photo::before {
    position: absolute;
    z-index: 2;
    top: -35%;
    left: -42%;
    width: 42%;
    height: 170%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
    transform: rotate(18deg);
    animation: photo-shine 5.8s ease-in-out infinite 1s;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    z-index: 4;
    top: 42px;
    right: -28px;
    width: 134px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 18px;
    color: #ffffff;
    background: var(--red);
    border: 7px solid #ffffff;
    border-radius: 50%;
    box-shadow: var(--shadow-red);
    text-align: center;
    transform: rotate(7deg);
    animation: badge-float 4.2s ease-in-out infinite;
}

.hero-badge strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.05;
}

.hero-badge span {
    display: block;
    margin-top: 5px;
    color: var(--yellow);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-address {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: -30px;
    left: 34px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.hero-address__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    background: var(--red);
    border-radius: 15px;
}

.hero-address strong,
.hero-address span {
    display: block;
}

.hero-address strong {
    font-size: 0.98rem;
}

.hero-address span {
    color: var(--muted);
    font-size: 0.79rem;
}

.sparkle {
    position: absolute;
    z-index: 5;
    color: var(--yellow);
    filter: drop-shadow(0 7px 12px rgba(168, 15, 23, 0.22));
    animation: sparkle-pulse 2.8s ease-in-out infinite;
}

.sparkle--one {
    top: 10px;
    left: -12px;
}

.sparkle--two {
    right: 10px;
    bottom: 90px;
    animation-delay: 0.8s;
}

/* ----------------------------------------------------------
   Quick links, cards, and menu galleries
   ---------------------------------------------------------- */

.quick-links {
    position: relative;
    z-index: 10;
    margin-top: -42px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quick-card {
    position: relative;
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition:
        transform 220ms var(--ease),
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.quick-card::after {
    position: absolute;
    right: -30px;
    bottom: -54px;
    width: 120px;
    height: 120px;
    content: "";
    background: var(--yellow-soft);
    border-radius: 50%;
    transition: transform 260ms var(--ease);
}

.quick-card:hover,
.quick-card:focus-visible {
    border-color: rgba(215, 25, 32, 0.22);
    box-shadow: 0 26px 60px rgba(35, 20, 10, 0.17);
    transform: translateY(-6px);
}

.quick-card:hover::after,
.quick-card:focus-visible::after {
    transform: scale(1.22);
}

.quick-card__icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    background: var(--red);
    border-radius: 18px;
    box-shadow: var(--shadow-red);
}

.quick-card:nth-child(2) .quick-card__icon {
    color: #2a2108;
    background: var(--yellow);
    box-shadow: 0 18px 38px rgba(255, 199, 44, 0.27);
}

.quick-card:nth-child(3) .quick-card__icon {
    background: var(--ink);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.quick-card__content {
    position: relative;
    z-index: 2;
}

.quick-card h2 {
    margin-bottom: 5px;
    font-size: 1.16rem;
}

.quick-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.menu-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-template-rows: 260px 260px;
    gap: 18px;
}

.food-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    color: #ffffff;
    background: #222222;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
}

.food-card:first-child {
    grid-row: span 2;
}

.food-card__image {
    position: absolute;
    inset: 0;
}

.food-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82) 100%);
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms var(--ease);
}

.food-card:hover img,
.food-card:focus-visible img {
    transform: scale(1.07);
}

.food-card__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px;
}

.food-card__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--yellow);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.food-card h3 {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 2.3vw, 2.1rem);
}

.food-card__arrow {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition:
        color 180ms ease,
        background 180ms ease,
        transform 220ms var(--ease);
}

.food-card:hover .food-card__arrow,
.food-card:focus-visible .food-card__arrow {
    color: #ffffff;
    background: var(--red);
    transform: rotate(-8deg) scale(1.06);
}

/* ----------------------------------------------------------
   Feature split and statistics
   ---------------------------------------------------------- */

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 72px;
}

.feature-media {
    position: relative;
    min-height: 570px;
}

.feature-media__main {
    position: absolute;
    inset: 0 64px 44px 0;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: var(--shadow-md);
}

.feature-media__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-media__accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 210px;
    padding: 27px;
    color: var(--ink);
    background: var(--yellow);
    border: 8px solid #ffffff;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.feature-media__accent strong {
    display: block;
    font-size: 2.4rem;
    letter-spacing: -0.06em;
    line-height: 1;
}

.feature-media__accent span {
    display: block;
    margin-top: 7px;
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.35;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 32px 0 36px;
}

.feature-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    align-items: start;
}

.feature-item__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 15px;
}

.feature-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
}

.feature-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.stat-card {
    padding: 21px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.stat-card strong {
    display: block;
    color: var(--yellow);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
}

/* ----------------------------------------------------------
   Promotion cards
   ---------------------------------------------------------- */

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.promo-card {
    position: relative;
    min-height: 338px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 220ms var(--ease),
        box-shadow 220ms ease;
}

.promo-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.promo-card--image {
    color: #ffffff;
    background: #21100c;
}

.promo-card--image::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(20, 9, 5, 0.08), rgba(20, 9, 5, 0.9)),
        url("../img/promo-burgers.webp") center / cover;
}

.promo-card--yellow {
    background: var(--yellow);
    border-color: transparent;
}

.promo-card--red {
    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(145deg, var(--red), var(--red-deep));
    border-color: transparent;
}

.promo-card__top,
.promo-card__content,
.promo-card__footer {
    position: relative;
    z-index: 2;
}

.promo-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: auto;
}

.promo-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    color: var(--red-deep);
    background: var(--red-soft);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.promo-card--image .promo-chip,
.promo-card--red .promo-chip {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.promo-card--yellow .promo-chip {
    color: #ffffff;
    background: var(--red);
}

.promo-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 16px;
}

.promo-card--image .promo-card__icon,
.promo-card--red .promo-card__icon {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.12);
}

.promo-card--yellow .promo-card__icon {
    color: #ffffff;
    background: var(--red);
}

.promo-card__content {
    margin-top: 48px;
}

.promo-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.promo-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.promo-card--image p,
.promo-card--red p {
    color: rgba(255, 255, 255, 0.76);
}

.promo-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 0.79rem;
    font-weight: 760;
}

.promo-card--image .promo-card__footer,
.promo-card--red .promo-card__footer {
    border-color: rgba(255, 255, 255, 0.16);
}

/* ----------------------------------------------------------
   Location and contact sections
   ---------------------------------------------------------- */

.location-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 38px;
    box-shadow: var(--shadow-md);
}

.location-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.location-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.2));
}

.location-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-pin {
    position: absolute;
    z-index: 2;
    top: 44%;
    left: 57%;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--red);
    border: 6px solid #ffffff;
    border-radius: 50% 50% 50% 12px;
    box-shadow: var(--shadow-red);
    transform: rotate(-45deg);
    animation: pin-bounce 2.6s ease-in-out infinite;
}

.location-pin .icon {
    transform: rotate(45deg);
}

.location-content {
    padding: 54px 46px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 30px 0 34px;
}

.contact-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 13px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
    border-bottom: 0;
}

.contact-row__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 14px;
}

.contact-row strong,
.contact-row span {
    display: block;
}

.contact-row strong {
    font-size: 0.9rem;
}

.contact-row span,
.contact-row a {
    color: var(--muted);
    font-size: 0.86rem;
}

/* ----------------------------------------------------------
   FAQ accordion and CTA bands
   ---------------------------------------------------------- */

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 64px;
    align-items: start;
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion details {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(35, 20, 10, 0.05);
}

.accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    font-weight: 820;
    cursor: pointer;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary .icon {
    transition: transform 200ms var(--ease);
}

.accordion details[open] summary .icon {
    transform: rotate(180deg);
}

.accordion__content {
    padding: 0 22px 22px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.accordion__content p {
    margin: 0;
}

.cta-band {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 48px 52px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 5% 10%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--red), var(--red-deep));
    border-radius: 36px;
    box-shadow: var(--shadow-red);
}

.cta-band::after {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    content: "";
    border: 50px solid rgba(255, 199, 44, 0.26);
    border-radius: 50%;
}

.cta-band__content,
.cta-band__actions {
    position: relative;
    z-index: 2;
}

.cta-band h2 {
    max-width: 720px;
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-band p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

/* ----------------------------------------------------------
   Inner-page hero
   ---------------------------------------------------------- */

.page-hero {
    position: relative;
    min-height: 480px;
    display: grid;
    align-items: center;
    overflow: clip;
    color: #ffffff;
    background: #21120f;
}

.page-hero__media {
    position: absolute;
    inset: 0;
}

.page-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(22, 10, 8, 0.94) 0%, rgba(22, 10, 8, 0.76) 45%, rgba(22, 10, 8, 0.2) 100%),
        linear-gradient(180deg, transparent 70%, rgba(22, 10, 8, 0.48));
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 82px 0 88px;
}

.page-hero__content h1 {
    max-width: 720px;
    margin-bottom: 19px;
    font-size: clamp(2.7rem, 5.8vw, 5.2rem);
}

.page-hero__content p {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 720;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: var(--yellow);
}

.breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.36);
}

/* ----------------------------------------------------------
   Menu page filters and products
   ---------------------------------------------------------- */

.filter-bar {
    position: sticky;
    z-index: 60;
    top: calc(var(--header-height) + 10px);
    padding: 12px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    scrollbar-width: none;
    backdrop-filter: blur(14px);
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-list {
    display: flex;
    gap: 8px;
    min-width: max-content;
}

.filter-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: var(--ink-soft);
    background: transparent;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 780;
    cursor: pointer;
    transition:
        color 180ms ease,
        background 180ms ease,
        transform 180ms var(--ease);
}

.filter-button:hover,
.filter-button:focus-visible {
    color: var(--red);
    background: var(--red-soft);
}

.filter-button.is-active {
    color: #ffffff;
    background: var(--red);
    box-shadow: 0 10px 24px rgba(215, 25, 32, 0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.product-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 220ms var(--ease),
        box-shadow 220ms ease,
        opacity 200ms ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card.is-hidden {
    display: none;
}

.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-deep);
}

.product-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.14));
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-card__badge {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: #ffffff;
    background: rgba(29, 29, 31, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-card__body {
    padding: 23px;
}

.product-card__body h2,
.product-card__body h3 {
    margin-bottom: 9px;
    font-size: 1.35rem;
}

.product-card__body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.89rem;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 19px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.product-card__note {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 680;
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 19px;
    color: var(--ink-soft);
    background: var(--yellow-soft);
    border: 1px solid rgba(255, 199, 44, 0.38);
    border-radius: 16px;
    font-size: 0.86rem;
}

.notice .icon {
    color: #9b6b00;
    margin-top: 1px;
}

/* ----------------------------------------------------------
   Delivery page
   ---------------------------------------------------------- */

.delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.delivery-card {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 220ms var(--ease),
        box-shadow 220ms ease;
}

.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.delivery-card__number {
    position: absolute;
    top: -12px;
    right: 16px;
    color: rgba(215, 25, 32, 0.08);
    font-size: 7.2rem;
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 1;
}

.delivery-card__icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--red);
    border-radius: 18px;
    box-shadow: var(--shadow-red);
}

.delivery-card:nth-child(2) .delivery-card__icon {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 18px 38px rgba(255, 199, 44, 0.25);
}

.delivery-card:nth-child(3) .delivery-card__icon {
    background: var(--ink);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.delivery-card h2,
.delivery-card h3 {
    position: relative;
    z-index: 2;
    margin: 27px 0 10px;
    font-size: 1.45rem;
}

.delivery-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 24px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.delivery-card .text-link {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 46px;
}

.step {
    position: relative;
    padding: 0 26px;
    text-align: center;
}

.step:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: -20%;
    width: 40%;
    height: 2px;
    content: "";
    background: repeating-linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px 14px);
}

.step__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    color: #ffffff;
    background: var(--red);
    border-radius: 18px;
    box-shadow: var(--shadow-red);
}

.step strong {
    display: block;
    margin-bottom: 6px;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

/* ----------------------------------------------------------
   Contact page
   ---------------------------------------------------------- */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--red);
    border-radius: 18px;
    box-shadow: var(--shadow-red);
}

.contact-card:nth-child(2) .contact-card__icon {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 18px 38px rgba(255, 199, 44, 0.25);
}

.contact-card:nth-child(3) .contact-card__icon {
    background: var(--ink);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.contact-card h2,
.contact-card h3 {
    margin-bottom: 9px;
    font-size: 1.32rem;
}

.contact-card p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.contact-card a:not(.button):not(.text-link) {
    color: var(--red);
    font-weight: 800;
    word-break: break-word;
}

.contact-detail-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 46px;
    align-items: stretch;
}

.contact-panel {
    padding: 38px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-panel h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.info-table {
    display: grid;
    gap: 0;
}

.info-table__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.info-table__row:last-child {
    border-bottom: 0;
}

.info-table__label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.info-table__value {
    font-size: 0.9rem;
    font-weight: 700;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 11px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
}

.map-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.74));
}

.map-card__content {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 26px;
    left: 26px;
    color: #ffffff;
}

.map-card__content h2 {
    margin-bottom: 8px;
    font-size: 2rem;
}

.map-card__content p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.76);
}

/* ----------------------------------------------------------
   Profile and history page
   ---------------------------------------------------------- */

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
    align-items: center;
}

.story-media {
    position: relative;
    min-height: 590px;
}

.story-media__image {
    position: absolute;
    inset: 0 68px 0 0;
    overflow: hidden;
    border-radius: 38px;
    box-shadow: var(--shadow-md);
}

.story-media__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-media__card {
    position: absolute;
    right: 0;
    bottom: 42px;
    width: 225px;
    padding: 28px;
    color: #ffffff;
    background: var(--red);
    border: 8px solid #ffffff;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.story-media__card strong {
    display: block;
    color: var(--yellow);
    font-size: 2.6rem;
    letter-spacing: -0.06em;
    line-height: 1;
}

.story-media__card span {
    display: block;
    margin-top: 9px;
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.4;
}

.timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: 36px;
}

.timeline::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 19px;
    width: 2px;
    content: "";
    background: linear-gradient(var(--red), var(--yellow));
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding-bottom: 27px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item__dot {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--red);
    border: 6px solid var(--cream);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(215, 25, 32, 0.16);
}

.timeline-item__year {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.timeline-item h3 {
    margin-bottom: 7px;
    font-size: 1.15rem;
}

.timeline-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.89rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-card {
    min-height: 225px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.value-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 16px;
}

.value-card h3 {
    margin-bottom: 9px;
    font-size: 1.15rem;
}

.value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.84rem;
}

/* ----------------------------------------------------------
   Promo listing page
   ---------------------------------------------------------- */

.promo-list {
    display: grid;
    gap: 20px;
}

.promo-list-card {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 220ms var(--ease),
        box-shadow 220ms ease;
}

.promo-list-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.promo-list-card__visual {
    position: relative;
    min-height: 166px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(145deg, var(--red), var(--red-deep));
    border-radius: 20px;
}

.promo-list-card__visual--yellow {
    color: var(--ink);
    background: var(--yellow);
}

.promo-list-card__visual--image {
    background: url("../img/promo-burgers.webp") center / cover;
}

.promo-list-card__visual--image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(30, 12, 7, 0.42);
}

.promo-list-card__visual .icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
}

.promo-list-card__body h2 {
    margin-bottom: 9px;
    font-size: 1.55rem;
}

.promo-list-card__body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.promo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 720;
}

.promo-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ----------------------------------------------------------
   Site footer
   ---------------------------------------------------------- */

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #151515;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 0.75fr 1fr;
    gap: 48px;
    padding: 72px 0 54px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-brand img {
    width: 58px;
    height: 58px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-size: 1.06rem;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.73rem;
}

.footer-about {
    max-width: 360px;
    margin: 0;
    font-size: 0.88rem;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    transition:
        color 180ms ease,
        background 180ms ease,
        transform 180ms var(--ease);
}

.social-link:hover,
.social-link:focus-visible {
    color: var(--ink);
    background: var(--yellow);
    transform: translateY(-3px);
}

.footer-column h2,
.footer-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.footer-links {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    font-size: 0.84rem;
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--yellow);
}

.footer-contact {
    display: grid;
    gap: 13px;
}

.footer-contact__row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.82rem;
}

.footer-contact__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.73rem;
}

.footer-legal {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.46);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 750;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    color: var(--yellow);
}

/* ----------------------------------------------------------
   Toast, reveal animation, and helpers
   ---------------------------------------------------------- */

.toast {
    position: fixed;
    z-index: 300;
    right: 20px;
    bottom: 20px;
    max-width: min(360px, calc(100% - 40px));
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    color: #ffffff;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    font-size: 0.84rem;
    font-weight: 720;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition:
        opacity 180ms ease,
        transform 180ms var(--ease);
}

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

.reveal {
    opacity: 1;
    transform: none;
    transition:
        opacity 700ms var(--ease),
        transform 700ms var(--ease);
}

.js-ready .reveal {
    opacity: 0;
    transform: translateY(28px);
}

.reveal[data-delay="1"] {
    transition-delay: 80ms;
}

.reveal[data-delay="2"] {
    transition-delay: 160ms;
}

.reveal[data-delay="3"] {
    transition-delay: 240ms;
}

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

.u-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.text-red {
    color: var(--red);
}

.text-yellow {
    color: var(--yellow);
}

.no-margin {
    margin: 0;
}

/* ----------------------------------------------------------
   Keyframes
   ---------------------------------------------------------- */

@keyframes slow-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-dot {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(38, 166, 91, 0.14);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(38, 166, 91, 0.03);
    }
}

@keyframes photo-shine {
    0%,
    46% {
        left: -50%;
    }

    72%,
    100% {
        left: 130%;
    }
}

@keyframes badge-float {
    0%,
    100% {
        transform: rotate(7deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-10px);
    }
}

@keyframes sparkle-pulse {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(0.88) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.12) rotate(16deg);
    }
}

@keyframes pin-bounce {
    0%,
    100% {
        transform: rotate(-45deg) translate(0, 0);
    }

    50% {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ----------------------------------------------------------
   Responsive layout
   ---------------------------------------------------------- */

@media (max-width: 1080px) {
    .primary-nav__link {
        padding-inline: 10px;
        font-size: 0.86rem;
    }

    .header-actions .button {
        display: none;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .menu-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 250px 250px;
    }

    .food-card:first-child {
        grid-column: span 2;
        grid-row: auto;
    }

    .feature-split,
    .story-grid {
        gap: 46px;
    }

    .footer-main {
        grid-template-columns: 1.3fr 0.7fr 0.7fr;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .utility-list--secondary {
        display: none;
    }

    .site-header {
        position: sticky;
    }

    .primary-nav,
    .header-actions .button {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .mobile-panel {
        position: fixed;
        z-index: 99;
        top: calc(38px + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 18px 20px 30px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--line);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition:
            opacity 180ms ease,
            transform 220ms var(--ease);
        backdrop-filter: blur(20px);
    }

    .mobile-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav {
        display: grid;
        gap: 8px;
        max-width: 600px;
        margin-inline: auto;
    }

    .mobile-nav__link {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 18px;
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 17px;
        font-weight: 820;
    }

    .mobile-nav__link[aria-current="page"] {
        color: #ffffff;
        background: var(--red);
        border-color: var(--red);
    }

    .mobile-panel__actions {
        max-width: 600px;
        display: grid;
        gap: 10px;
        margin: 16px auto 0;
    }

    .mobile-panel__actions .button {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 52px 0 88px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-visual {
        min-height: 600px;
    }

    .hero-photo {
        border-radius: 42px 42px 98px 42px;
    }

    .quick-grid,
    .promo-grid,
    .delivery-options,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .quick-card {
        min-height: 112px;
    }

    .feature-split,
    .story-grid,
    .contact-detail-layout {
        grid-template-columns: 1fr;
    }

    .feature-copy,
    .story-copy {
        order: -1;
    }

    .location-shell {
        grid-template-columns: 1fr;
    }

    .location-media {
        min-height: 380px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }

    .cta-band__actions {
        justify-content: flex-start;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0;
    }

    .step:nth-child(2)::after {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-list-card {
        grid-template-columns: 190px 1fr;
    }

    .promo-list-card > .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .section--compact {
        padding: 54px 0;
    }

    .utility-bar__inner {
        min-height: 34px;
    }

    .utility-item--address {
        display: none;
    }

    .mobile-panel {
        top: calc(34px + var(--header-height));
    }

    .brand__logo {
        width: 48px;
        height: 48px;
    }

    .brand__name {
        font-size: 0.94rem;
    }

    .brand__meta {
        font-size: 0.66rem;
    }

    .display-title {
        font-size: clamp(2.55rem, 13vw, 4.2rem);
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .section-heading {
        display: block;
        margin-bottom: 32px;
    }

    .section-heading .text-link {
        margin-top: 18px;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-fact {
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 490px;
    }

    .hero-photo {
        border-width: 7px;
        border-radius: 30px 30px 76px 30px;
    }

    .hero-badge {
        top: 22px;
        right: -6px;
        width: 108px;
        border-width: 5px;
    }

    .hero-badge strong {
        font-size: 0.96rem;
    }

    .hero-address {
        right: 12px;
        bottom: -28px;
        left: 12px;
        padding: 15px;
    }

    .quick-links {
        margin-top: -28px;
    }

    .menu-showcase {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .food-card,
    .food-card:first-child {
        min-height: 320px;
        grid-column: auto;
    }

    .feature-media,
    .story-media {
        min-height: 500px;
    }

    .feature-media__main,
    .story-media__image {
        inset: 0 28px 50px 0;
    }

    .feature-media__accent,
    .story-media__card {
        width: 190px;
        padding: 23px;
        border-width: 6px;
    }

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

    .location-content {
        padding: 38px 25px;
    }

    .location-media {
        min-height: 310px;
    }

    .cta-band {
        padding: 38px 24px;
        border-radius: 28px;
    }

    .cta-band__actions,
    .cta-band__actions .button {
        width: 100%;
    }

    .page-hero {
        min-height: 430px;
    }

    .page-hero__media::after {
        background: linear-gradient(90deg, rgba(22, 10, 8, 0.92), rgba(22, 10, 8, 0.54));
    }

    .page-hero__content {
        padding: 64px 0 70px;
    }

    .page-hero__content h1 {
        font-size: clamp(2.45rem, 12vw, 4.1rem);
    }

    .filter-bar {
        top: calc(var(--header-height) + 8px);
        margin-inline: -4px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .contact-panel {
        padding: 28px 22px;
    }

    .info-table__row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .map-card {
        min-height: 460px;
    }

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

    .promo-list-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-list-card__visual {
        min-height: 190px;
    }

    .promo-list-card > .button {
        grid-column: auto;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding-top: 54px;
    }

    .footer-column:first-child,
    .footer-column:last-child {
        grid-column: 1 / -1;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .brand__meta {
        display: none;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .actions,
    .actions .button {
        width: 100%;
    }

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

    .footer-column,
    .footer-column:first-child,
    .footer-column:last-child {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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


/* ==========================================================
   Page-specific utility classes
   ========================================================== */

.actions--spaced {
    margin-top: 28px;
}

.actions--spaced-lg {
    margin-top: 34px;
}

.notice--spaced {
    margin-top: 30px;
}

.image-position--45 {
    object-position: center 45%;
}

.image-position--48 {
    object-position: center 48%;
}

.image-position--56 {
    object-position: center 56%;
}

.image-position--58 {
    object-position: center 58%;
}

.not-found {
    min-height: 65vh;
    display: grid;
    place-items: center;
}

.not-found__content {
    text-align: center;
}

.not-found__title,
.not-found__copy {
    margin-inline: auto;
}

.not-found__actions {
    justify-content: center;
    margin-top: 28px;
}

.promo-list-card.is-expired {
    opacity: 0.66;
    filter: grayscale(0.45);
}

@media (max-width: 900px) {
    .no-js .menu-toggle {
        display: none;
    }

    .no-js .mobile-panel {
        position: static;
        display: block;
        padding-top: 14px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}
