/* ========================================
   BUTTER BURGER - Brand Website
   Colors: #000000, #932525, #EBE3DA
   Fonts: Manuka Black (headings), Market Pro (handwritten), Inter (body)
   ======================================== */

/* --- Font Setup --- */

@font-face {
    font-family: 'Manuka';
    src: url('../font/Manuka/Manuka-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manuka';
    src: url('../font/Manuka/Manuka-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manuka';
    src: url('../font/Manuka/Manuka-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manuka';
    src: url('../font/Manuka/Manuka-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Market Pro';
    src: url('../font/Market Pro/MarketPro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Market Pro';
    src: url('../font/Market Pro/MarketPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archimoto';
    src: url('../font/Archimoto/ArchimotoV00-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archimoto';
    src: url('../font/Archimoto/ArchimotoV00-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-black: #000000;
    --color-red: #932525;
    --color-cream: #EBE3DA;
    --color-cream-dark: #d9cfc4;
    --color-white: #FFFFFF;

    --font-heading: 'Manuka', 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-handwritten: 'Market Pro', 'Caveat', cursive;
    --font-desc: 'Archimoto', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-max: 1280px;
    --gutter: 24px;

    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hidden {
    display: none !important;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--color-red);
    color: var(--color-cream);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.skip-link:focus {
    top: 16px;
}

/* --- Focus Styles --- */
:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 3px;
}

.about :focus-visible,
.locations :focus-visible,
.order :focus-visible,
.footer :focus-visible,
.nav :focus-visible {
    outline-color: var(--color-cream);
}

.why :focus-visible {
    outline-color: var(--color-cream);
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 7vw, 6.75rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 2rem;
}

.section-title--light {
    color: var(--color-cream);
}

.handwritten {
    font-family: var(--font-handwritten);
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background-color: var(--color-red);
    color: var(--color-cream);
    border-color: var(--color-red);
}

.btn--primary:hover {
    background-color: #7a1e1e;
    border-color: #7a1e1e;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-red);
    border-color: var(--color-red);
}

.btn--outline:hover {
    background-color: var(--color-red);
    color: var(--color-cream);
}

.btn--large {
    padding: 18px 48px;
    font-size: 1.3rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav--scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo-img {
    height: 70px;
    width: auto;
    aspect-ratio: 301 / 312;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: height var(--transition);
}

.nav--scrolled .nav__logo-img {
    height: 50px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__cta {
    background-color: var(--color-red) !important;
    color: var(--color-cream) !important;
    padding: 10px 24px;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background-color: #7a1e1e !important;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-cream);
    transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18vh;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-cream);
    padding: 0 var(--gutter);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 14rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero__title-line {
    display: block;
}

.hero__tagline {
    font-family: var(--font-handwritten);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-red);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
    margin-top: -0.35em;
    margin-bottom: -0.45em;
    position: relative;
    z-index: 2;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero__content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.9s forwards;
    margin-bottom: 60px;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero__scroll-icon {
    width: 24px;
    height: 38px;
}

.hero__scroll-dot {
    animation: scrollDot 2s ease infinite;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDot {
    0% { cy: 10; opacity: 1; }
    50% { cy: 24; opacity: 0.3; }
    100% { cy: 10; opacity: 1; }
}

/* ========================================
   MANIFEST
   ======================================== */
.manifest {
    padding: 120px 0;
    background-color: var(--color-cream);
}

.manifest__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.manifest__lead {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--color-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.manifest__body {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.manifest__claim {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    color: var(--color-black);
}

.manifest__logo {
    text-align: center;
    margin-top: 3rem;
    perspective: 800px;
}

.manifest__logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: inline-block;
    opacity: 0;
    transform: rotateX(90deg);
    transition: transform 1s ease, opacity 0.6s ease;
}

.manifest__logo-img.visible {
    opacity: 1;
    transform: rotateX(0deg);
}


/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 120px 0;
    background-color: var(--color-black);
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-cream);
    text-align: center;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about__text .about__lead {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-red);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-cream-dark);
}

.about__text strong {
    color: var(--color-cream);
}

.about__sources {
    display: flex;
    gap: 32px;
    margin-top: 2rem;
}

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

.about__source-check {
    width: 28px;
    height: 28px;
}

.about__source-name {
    font-family: var(--font-desc);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-cream);
}

/* ========================================
   WHY BUTTER IS BETTER
   ======================================== */
.why {
    padding: 120px 0;
    background-color: var(--color-red);
    color: var(--color-cream);
}

.why__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.why__header .section-title {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.why__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 320px;
    width: auto;
    aspect-ratio: 301 / 312;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.1;
    will-change: transform;
    z-index: 1;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 4rem;
}

.why__card {
    position: relative;
    text-align: center;
}

.why__card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-cream);
    border-radius: 50%;
    font-family: var(--font-desc);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    opacity: 0.5;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.why__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 2rem;
}

.why__steps-number {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 120px;
    height: 60px;
    border: 2px solid var(--color-cream);
    border-radius: 50%;
    font-family: var(--font-desc);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    opacity: 0.5;
    color: var(--color-cream);
    padding-top: 2px;
}


.why__card-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.why__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why__card:hover .why__card-img {
    transform: scale(1.05);
}

.why__card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.why__card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.why__bottom-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.why__bottom-text .handwritten {
    font-size: 2rem;
    color: var(--color-cream);
}

/* ========================================
   MENU
   ======================================== */
.menu {
    padding: 120px 0;
    background-color: var(--color-cream);
}

.menu__logo {
    text-align: center;
    margin-bottom: 2rem;
    perspective: 800px;
}

.menu__logo-img {
    height: 80px;
    width: auto;
    margin: 0 auto;
    opacity: 0;
    transform: rotateX(90deg);
    transition: transform 1s ease, opacity 0.6s ease;
}

.menu__logo-img.visible {
    opacity: 1;
    transform: rotateX(0deg);
}

.menu__header {
    margin-bottom: 3rem;
    text-align: center;
}

.menu__intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto 0.75rem;
}

/* Menu section titles */
.menu__section-title {
    font-family: var(--font-handwritten);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-red);
    text-transform: uppercase;
    text-align: center;
    margin: 3rem 0 1.5rem;
    letter-spacing: 0.02em;
}

.menu__section-title:first-of-type {
    margin-top: 0;
}

/* Burger grid */
.menu__burgers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 1rem;
}

.menu__burger {
    text-align: center;
    padding: 24px 16px;
    width: calc(33.333% - 22px);
}

.menu__burger-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline;
    color: var(--color-red);
}

.menu__burger-price {
    font-family: var(--font-handwritten);
    font-size: 1.8rem;
    color: var(--color-red);
    display: inline;
    margin-left: 8px;
}

.menu__burger-desc {
    font-family: var(--font-desc);
    font-size: 0.9rem;
    color: var(--color-red);
    line-height: 1.5;
    margin-top: 8px;
}

/* Menu two columns */
.menu__two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 2rem;
}

.menu__two-cols .menu__section-title {
    margin-top: 0;
}

.menu__two-cols .menu__section-title + .menu__list + .menu__section-title {
    margin-top: 2rem;
}

.menu__two-cols .menu__list {
    max-width: none;
}

/* Menu list */
.menu__list {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
}

/* Menu list - classic dot-leader style */
.menu__list-item {
    padding: 14px 0;
}

.menu__list-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.menu__list-desc {
    font-family: var(--font-handwritten);
    font-size: 1rem;
    color: var(--color-red);
    margin-top: 4px;
    line-height: 1.5;
}

.menu__list-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-red);
}

.menu__list-name small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.7;
}

.menu__list-dots {
    flex: 1;
    border-bottom: 2px dotted var(--color-red);
    min-width: 40px;
    margin-bottom: 4px;
    opacity: 0.4;
}

.menu__list-price {
    font-family: var(--font-handwritten);
    font-size: 1.35rem;
    color: var(--color-red);
    white-space: nowrap;
}

.menu__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
    padding: 120px 0;
    background-color: var(--color-cream-dark);
    text-align: center;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
    padding-top: 20px;
}

.reviews__card {
    position: relative;
    background: #faf6ef;
    background-image:
        linear-gradient(to bottom, transparent 0px, transparent 3px, #c8392622 3px, #c8392622 4px, transparent 4px),
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            #d6cfc5 31px,
            #d6cfc5 32px
        );
    background-size: 100% 100%, 100% 32px;
    background-position: 0 0, 0 10px;
    padding: 42px 36px 36px 52px;
    border-left: none;
    box-shadow:
        2px 3px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
    transform-origin: center center;
}

.reviews__card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: rgba(147, 37, 37, 0.35);
    border-radius: 1px;
}

.reviews__card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -2px;
    right: -2px;
    height: 18px;
    background: #faf6ef;
    clip-path: polygon(
        0% 0%, 2% 55%, 4% 15%, 7% 70%, 9% 25%, 12% 60%, 14% 10%,
        17% 65%, 20% 20%, 23% 55%, 25% 5%, 28% 70%, 31% 15%,
        34% 60%, 36% 25%, 39% 75%, 42% 10%, 45% 55%, 47% 20%,
        50% 65%, 53% 5%, 56% 70%, 58% 15%, 61% 60%, 64% 30%,
        67% 75%, 69% 10%, 72% 55%, 75% 25%, 78% 70%, 80% 15%,
        83% 60%, 86% 5%, 89% 55%, 91% 20%, 94% 65%, 96% 10%,
        98% 50%, 100% 0%
    );
}

.reviews__card:nth-child(1) { --card-rotate: -2.3deg; }
.reviews__card:nth-child(2) { --card-rotate: 1.7deg; }
.reviews__card:nth-child(3) { --card-rotate: -0.8deg; }
.reviews__card:nth-child(4) { --card-rotate: 2.5deg; }

.reviews__card {
    transform: rotate(var(--card-rotate, 0deg));
}

.reviews__card.reveal {
    opacity: 0;
    transform: rotate(calc(var(--card-rotate, 0deg) * 3)) translateY(40px);
}

.reviews__card.reveal.visible {
    opacity: 1;
    transform: rotate(var(--card-rotate, 0deg)) translateY(0);
}


.reviews__stars {
    color: var(--color-red);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.reviews__text {
    font-family: var(--font-handwritten);
    font-size: 1.15rem;
    line-height: 1.73;
    color: #2a2a2a;
    margin-bottom: 1.25rem;
    font-style: normal;
    border: none;
    padding: 0;
}

.reviews__author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555;
}

.reviews__source {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #999;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: 120px 0;
    background-color: var(--color-black);
}

.reviews__header {
    position: relative;
    margin-bottom: 6rem;
}

.reviews__header .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.reviews__spin-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 280px;
    width: auto;
    aspect-ratio: 301 / 312;
    object-fit: contain;
    opacity: 0.08;
    will-change: transform;
    z-index: 1;
}

.reviews__logo {
    text-align: center;
    margin-top: 3rem;
}

.reviews__logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: inline-block;
    opacity: 0.15;
}

.gallery .section-title {
    color: var(--color-cream);
}

.gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.gallery__header .section-title {
    margin-bottom: 0;
}

.gallery__tabs {
    display: flex;
    gap: 8px;
}

.gallery__tab {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 2px solid var(--color-cream);
    background: none;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--color-cream);
}

.gallery__tab:hover,
.gallery__tab.active {
    background-color: var(--color-cream);
    color: var(--color-black);
}

.gallery__grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery__grid.active {
    display: grid;
    animation: menuFadeIn 0.4s ease;
}

.gallery__item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(0.15);
}

.gallery__item:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}

/* Lightbox */
.gallery__lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.gallery__lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gallery__lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.gallery__lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   LOCATIONS
   ======================================== */
.locations {
    padding: 120px 0;
    background-color: var(--color-black);
    color: var(--color-cream);
}

.locations__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.locations__card {
    overflow: hidden;
}

.locations__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0.75rem;
}

.locations__card-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 0.95;
}

.locations__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-red);
    color: var(--color-cream);
    transition: all var(--transition);
    position: relative;
}

.locations__nav-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.locations__nav-btn:hover {
    background-color: #7a1e1e;
    transform: scale(1.1);
}

.locations__nav-btn svg {
    width: 24px;
    height: 24px;
}

.locations__card-address {
    font-size: 1.1rem;
    color: var(--color-red);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.locations__card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-cream-dark);
    margin-bottom: 1.5rem;
}

.locations__card-hours {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-cream-dark);
}

.locations__card-hours p {
    margin-bottom: 4px;
}

.locations__card-map {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.locations__card-map--hero {
    height: 300px;
    margin-bottom: 2rem;
}

.locations__card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) sepia(0.3) hue-rotate(340deg) contrast(0.85);
    transition: filter 0.4s ease;
}

.locations__card-map iframe:hover {
    filter: grayscale(0) invert(0) sepia(0) hue-rotate(0deg) contrast(1);
}

/* ========================================
   ORDER CTA
   ======================================== */
.order {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.order__bg {
    position: absolute;
    inset: 0;
}

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

.order__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.order__content {
    position: relative;
    z-index: 2;
    color: var(--color-cream);
}

.order__handwritten {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-red);
    margin-bottom: 1rem;
}

.order__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.order__text {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.order__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.order__note {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background-color: var(--color-black);
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-cream);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__logo {
    height: 60px;
    width: auto;
    aspect-ratio: 301 / 312;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer__tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer__col p,
.footer__col li {
    font-size: 0.9rem;
    line-height: 2;
    opacity: 0.7;
}

.footer__col a:hover {
    opacity: 1;
    color: var(--color-red);
}

.footer__neon {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(235, 227, 218, 0.15);
}

.footer__neon-img {
    max-width: 560px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(147, 37, 37, 0.6)) drop-shadow(0 0 60px rgba(147, 37, 37, 0.3));
}

.footer__bottom {
    border-top: 1px solid rgba(235, 227, 218, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer__bottom > p {
    opacity: 0.5;
}

.footer__credits {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__credits-label {
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__credits-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer__credits-link:hover {
    opacity: 1;
}

.footer__credits-logo {
    height: 24px;
    width: auto;
}

@media (max-width: 600px) {
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer__link {
    color: inherit;
    opacity: 0.7;
    text-decoration: underline;
    margin-left: 8px;
}

.footer__link:hover {
    opacity: 1;
}

/* ========================================
   LEGAL PAGES (Privacy, Terms)
   ======================================== */
.legal {
    padding: 140px 0 80px;
    background-color: var(--color-cream);
    min-height: 70vh;
}

.legal__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-red);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 0.5rem;
}

.legal__updated {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal__section {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.legal__section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.legal__section p,
.legal__section li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
}

.legal__section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal__section li {
    margin-bottom: 0.4rem;
}

.legal__section a {
    color: var(--color-red);
    text-decoration: underline;
}

.legal__section a:hover {
    opacity: 0.75;
}

.legal__section strong {
    font-weight: 600;
}

.legal__back {
    margin-top: 3rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal__back a {
    color: var(--color-red);
    text-decoration: none;
}

.legal__back a:hover {
    text-decoration: underline;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3000;
    background: var(--color-black);
    color: var(--color-cream);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
    border-top: 3px solid var(--color-red);
    animation: cookieBannerIn 0.35s ease;
}

.cookie-banner[hidden] {
    display: none;
}

@keyframes cookieBannerIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner__text {
    flex: 1;
    min-width: 0;
}

.cookie-banner__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: var(--color-cream);
}

.cookie-banner__desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(235, 227, 218, 0.85);
    margin: 0;
}

.cookie-banner__desc a {
    color: var(--color-cream);
    text-decoration: underline;
}

.cookie-banner__desc a:hover {
    color: var(--color-red);
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 22px;
    border: 2px solid var(--color-cream);
    background: transparent;
    color: var(--color-cream);
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-banner__btn:hover {
    background: var(--color-cream);
    color: var(--color-black);
}

.cookie-banner__btn--accept {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-cream);
}

.cookie-banner__btn--accept:hover {
    background: #7a1e1e;
    border-color: #7a1e1e;
    color: var(--color-cream);
}

@media (max-width: 700px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 20px;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-banner__btn {
        flex: 1;
        padding: 14px 16px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--color-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav__links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav__links li {
        overflow: hidden;
    }

    .nav__links a {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 10vw, 4rem);
        font-weight: 900;
        letter-spacing: 0.05em;
        line-height: 1.1;
        display: block;
        padding: 8px 0;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .nav__links a:hover {
        color: var(--color-red);
        transform: translateX(8px);
    }

    .nav__links a::after {
        display: none;
    }

    .nav__cta {
        margin-top: 24px;
        padding: 16px 40px !important;
        font-size: 1.2rem !important;
    }

    .nav__toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Layout adjustments */
    .manifest__grid,
    .about__grid,
    .locations__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu__cards.active {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .menu__list.active {
        max-width: 100%;
    }

    .menu__tab {
        font-size: 1.1rem;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .menu__burger {
        width: 100%;
    }

    .menu__two-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

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

    .hero__scroll {
        display: none;
    }

    .hero__title {
        font-size: clamp(5rem, 20vw, 10rem);
    }

    .hero__tagline {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(3.5rem, 12vw, 6rem);
    }

    .locations__card-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .order__title {
        font-size: clamp(5rem, 15vw, 8rem);
    }

    .manifest__img,
    .about__img {
        height: 350px;
    }

    .locations__card-map {
        height: 180px;
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 16px;
    }

    .btn--large {
        width: 100%;
    }

    .order__buttons {
        flex-direction: column;
        align-items: center;
    }

    .reviews__card {
        padding: 28px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

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