/* ============================================================
   VIET DELI — HOMEPAGE   (premium redesign)
   ============================================================ */

/* ---- Shared utilities ---- */
.home-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-eyebrow {
    display: block;
    font-family: var(--font-family-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Eyebrow with side lines */
.home-eyebrow--decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.home-eyebrow--decorated::before,
.home-eyebrow--decorated::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: rgba(201, 136, 58, 0.4);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(.22,.68,0,1.1), transform 0.8s cubic-bezier(.22,.68,0,1.1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   3D TILT CARDS
   ============================================================ */
.tilt-card {
    transition: transform 0.12s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--brand-950);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    animation: kenburns 30s ease-out forwards;
    will-change: transform;
}

@keyframes kenburns {
    from { transform: scale(1)    translate3d(0, 0, 0); }
    to   { transform: scale(1.11) translate3d(-1.5%, -0.8%, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg img { animation: none; }
}

/* Layered overlay: consistent dark veil so all text is readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* overall dark base */
        linear-gradient(to bottom,
            rgba(16, 5, 0, 0.52) 0%,
            rgba(16, 5, 0, 0.60) 40%,
            rgba(16, 5, 0, 0.75) 70%,
            rgba(16, 5, 0, 0.92) 100%);
}

/* Extra centre vignette — darkens behind the text block */
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 65% at 50% 55%, rgba(10, 3, 0, 0.45) 0%, transparent 100%);
}

/* Thin gold line at bottom of hero */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(201,136,58,0.7) 40%, rgba(201,136,58,0.7) 60%, transparent 100%);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 7rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

/* Staggered load animations */
@keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 8px 22px;
    border: 1px solid rgba(201, 136, 58, 0.45);
    border-radius: 100px;
    background: rgba(201, 136, 58, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: heroIn 0.8s cubic-bezier(.22,.68,0,1.2) both;
    animation-delay: 0.2s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.8;
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--font-family-display);
    font-size: clamp(2.5rem, 4.8vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65), 0 4px 60px rgba(0, 0, 0, 0.4);
    animation: heroIn 0.9s cubic-bezier(.22,.68,0,1.2) both;
    animation-delay: 0.38s;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-gold);
    display: inline-block;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: heroIn 0.7s ease both;
    animation-delay: 0.6s;
}

.hero-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.55;
}

.hero-divider-dot:nth-child(2) {
    opacity: 1;
    width: 6px;
    height: 6px;
}

.hero p {
    font-family: var(--font-family-primary);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 540px;
    margin: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
    animation: heroIn 0.8s ease both;
    animation-delay: 0.72s;
}

/* Keep em words white — gold blends into warm background */
.hero p em {
    color: #ffffff;
    font-style: normal;
    font-weight: 700;
}

/* CTA buttons */
.btn-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroIn 0.8s ease both;
    animation-delay: 0.88s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.btn svg { flex-shrink: 0; transition: transform 0.2s ease; }

/* Shimmer fill on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.55s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--red-500);
    color: #fff;
    border: 2px solid var(--red-500);
    box-shadow: 0 4px 24px rgba(184, 58, 31, 0.42);
}

.btn-primary:hover {
    background: var(--red-400);
    border-color: var(--red-400);
    box-shadow: 0 8px 32px rgba(184, 58, 31, 0.58);
    transform: translateY(-2px);
}

.btn-primary:hover svg { transform: scale(1.1); }

.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.22);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-secondary:hover svg { transform: translateX(4px); }

/* Trust badges */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: heroIn 0.8s ease both;
    animation-delay: 1.05s;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.trust-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(201,136,58,0.45);
}

.trust-item svg { color: var(--accent-gold); flex-shrink: 0; }

.trust-text {
    color: rgba(255,255,255,0.95);
    font-family: var(--font-family-primary);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.35);
    animation: heroBounce 2.4s ease-in-out infinite;
}

@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.4; }
    50%       { transform: translateX(-50%) translateY(9px); opacity: 0.9; }
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.home-story {
    background: var(--brand-950);
    padding: 8rem 0 6rem;
    overflow: visible;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story-img-wrap {
    position: relative;
    padding-bottom: 2.5rem;
    padding-right: 2.5rem;
}

.story-img-frame {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

/* Subtle gold glow frame */
.story-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(201, 136, 58, 0.22);
    z-index: 1;
    pointer-events: none;
}

.story-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.22,.68,0,1.2);
}

.story-img-wrap:hover .story-img-frame img {
    transform: scale(1.05);
}

/* Floating glass stats card */
.story-stats-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(26, 10, 0, 0.45);
    border: 1px solid rgba(201, 136, 58, 0.28);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 3;
    min-width: 164px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

.story-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.story-stat-num {
    font-family: var(--font-family-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.story-stat-label {
    font-family: var(--font-family-primary);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.48);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Text column */
.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text h2 {
    font-family: var(--font-family-display);
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
}

.story-text p {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    margin: 0;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(201, 136, 58, 0.35);
    transition: gap 0.22s ease, border-color 0.22s ease;
    width: fit-content;
    margin-top: 0.25rem;
}

.story-link:hover { gap: 16px; border-color: var(--accent-gold); }

/* ---- Highlight cards ---- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.highlight-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 2rem 1.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Top gold accent line — animates in on hover */
.highlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), var(--red-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
}

.highlight-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,136,58,0.25);
}

.highlight-card:hover::before { transform: scaleX(1); }

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 136, 58, 0.1);
    border: 1px solid rgba(201, 136, 58, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background: rgba(201, 136, 58, 0.18);
}

.highlight-card h3 {
    font-family: var(--font-family-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}

.highlight-card p {
    font-family: var(--font-family-primary);
    font-size: 0.865rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.62);
    margin: 0;
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.home-dishes {
    background: var(--brand-50);
    padding: 8rem 0 7rem;
}

.dishes-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.dishes-header h2 {
    font-family: var(--font-family-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--brand-950);
    letter-spacing: -0.025em;
    margin: 0 0 0.75rem;
}

.dishes-header p {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: var(--brand-600);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.75;
}

/* 4-column dish grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dish-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--brand-950);
    box-shadow: 0 8px 40px rgba(26, 10, 0, 0.12);
    cursor: default;
}

.dish-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.22,.68,0,1.2);
}

.dish-card:hover .dish-img img {
    transform: scale(1.08);
}

/* Glass label at bottom */
.dish-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(16,5,0,0.92) 0%, rgba(16,5,0,0.55) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform: translateY(3px);
    transition: transform 0.35s ease;
}

.dish-card:hover .dish-label {
    transform: translateY(0);
}

.dish-name {
    font-family: var(--font-family-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.dish-desc {
    font-family: var(--font-family-primary);
    font-size: 0.77rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.45;
}

.dishes-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.home-gallery {
    background: #0c0600;
    padding: 8rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gallery-header h2 {
    font-family: var(--font-family-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    margin: 0 0 0.75rem;
}

.gallery-header p {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: rgba(255,255,255,0.38);
    max-width: 400px;
    margin: 0 auto;
}

/* Mosaic grid */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 0.875rem;
}

.gallery-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-tile:nth-child(4) { grid-column: span 2; }

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--brand-950);
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.22,.68,0,1.2), filter 0.45s ease;
    filter: brightness(0.82) saturate(0.95);
}

.gallery-tile:hover img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1.1);
}

.gallery-tile-label {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,5,0,0.8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-tile:hover .gallery-tile-label { opacity: 1; }

.gallery-tile-label span {
    font-family: var(--font-family-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
}

/* ============================================================
   HOURS + FIND US
   ============================================================ */
.home-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hours-col {
    background: var(--brand-950);
    padding: 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-col h2 {
    font-family: var(--font-family-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 2.5rem;
}

.hours-rows {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.75rem;
}

.hours-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hours-period {
    font-family: var(--font-family-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    min-width: 52px;
}

.hours-time {
    font-family: var(--font-family-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    text-align: center;
}

.hours-days {
    font-family: var(--font-family-primary);
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
    text-align: right;
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

.hours-note svg { color: var(--accent-gold); opacity: 0.6; flex-shrink: 0; }

/* Location image column */
.location-col {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 460px;
}

.location-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.22,.68,0,1.2);
}

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

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,5,0,0.88) 0%, rgba(16,5,0,0.3) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    gap: 0.75rem;
}

.location-address {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    display: block;
}

.location-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    padding: 8px 18px;
    border: 1px solid rgba(201,136,58,0.38);
    border-radius: 100px;
    background: rgba(201,136,58,0.09);
    width: fit-content;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.location-col:hover .location-directions {
    background: rgba(201,136,58,0.18);
    border-color: rgba(201,136,58,0.7);
}

/* ============================================================
   ORDER CTA
   ============================================================ */
.home-order {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    background: var(--brand-950);
}

.home-order-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-order-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    display: block;
}

/* Radial vignette over the bg image */
.home-order-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at center, transparent 10%, rgba(15,6,0,0.85) 75%);
}

.home-order-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-order-inner h2 {
    font-family: var(--font-family-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.035em;
    margin: 0 0 0.75rem;
}

.home-order-inner > p {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: rgba(255,255,255,0.48);
    margin: 0 auto 4rem;
    max-width: 460px;
    line-height: 1.8;
}

.order-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 940px;
    margin: 0 auto;
    text-align: left;
}

.order-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(.22,.68,0,1.2);
}

.order-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,136,58,0.28);
    transform: translateY(-5px);
}

.order-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201,136,58,0.1);
    border: 1px solid rgba(201,136,58,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.order-card:hover .order-card-icon {
    background: rgba(201,136,58,0.18);
}

.order-card h3 {
    font-family: var(--font-family-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.order-card > p {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.delivery-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.platform-btn:hover {
    background: rgba(255,255,255,0.11);
    color: #fff;
    border-color: rgba(255,255,255,0.22);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--brand-50);
    padding: 7rem 0;
}

.contact-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-family-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--brand-950);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.contact-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: var(--brand-600);
    margin: 0 0 2.25rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201,136,58,0.1);
    border: 1px solid rgba(201,136,58,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-content h3 {
    font-family: var(--font-family-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-500);
    margin: 3px 0 4px;
}

.contact-content p {
    font-family: var(--font-family-primary);
    font-size: 0.95rem;
    color: var(--brand-900);
    line-height: 1.6;
    margin: 0;
}

.contact-content a {
    color: var(--brand-900);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-content a:hover { color: var(--accent-gold); }

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button overrides for light bg */
.contact-section .btn-primary { color: #fff; }

.contact-section .btn-secondary {
    background: transparent;
    color: var(--brand-950);
    border: 2px solid rgba(26, 10, 0, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.contact-section .btn-secondary:hover {
    background: rgba(26, 10, 0, 0.06);
    border-color: var(--brand-950);
    transform: translateY(-2px);
}

/* Storefront image */
.storefront-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 10, 0, 0.14);
}

.storefront-link { display: block; position: relative; }

.storefront-image { position: relative; }

.storefront-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s cubic-bezier(.22,.68,0,1.2);
}

.storefront-link:hover .storefront-image img { transform: scale(1.05); }

.storefront-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,5,0,0.58);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.storefront-link:hover .storefront-overlay { opacity: 1; }

.storefront-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
}

.storefront-overlay-content svg { color: var(--accent-gold); }
.storefront-overlay-content p {
    font-family: var(--font-family-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .story-grid { gap: 4rem; }
    .hours-col { padding: 6rem 3.5rem; }
}

@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .dishes-grid     { grid-template-columns: repeat(2, 1fr); }
    .order-cards     { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
    .story-stats-card { right: -1.5rem; bottom: 0; }
}

@media (max-width: 768px) {
    .home-inner { padding: 0 1.25rem; }

    /* Hero */
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); line-height: 1.1; }
    .hero-content { padding: 6rem 1.25rem 5rem; gap: 1.1rem; }
    .btn-container { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; }
    .btn { justify-content: center; }

    /* Story */
    .home-story { padding: 5rem 0 4rem; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-img-wrap { padding: 0; }
    .story-stats-card {
        position: static;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        margin-top: 1.25rem;
        border-radius: 12px;
    }
    .story-stat { align-items: center; text-align: center; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }

    /* Dishes */
    .home-dishes { padding: 5rem 0; }
    .dishes-grid { grid-template-columns: 1fr 1fr; }

    /* Gallery */
    .home-gallery { padding: 5rem 0; }
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-tile:nth-child(1) { grid-column: span 2; }
    .gallery-tile:nth-child(4) { grid-column: span 2; }

    /* Hours */
    .home-hours { grid-template-columns: 1fr; }
    .hours-col { padding: 4.5rem 1.5rem; }
    .location-col { min-height: 280px; }
    .hours-row { grid-template-columns: auto 1fr; }
    .hours-days { display: none; }

    /* Order */
    .home-order { padding: 6rem 0; }
    .order-cards { grid-template-columns: 1fr; max-width: 400px; }

    /* Contact */
    .contact-section { padding: 5rem 0; }
    .contact-map-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
    .highlights-grid { grid-template-columns: 1fr; }
    .dishes-grid     { grid-template-columns: 1fr; }
    .gallery-mosaic  { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-tile:nth-child(1),
    .gallery-tile:nth-child(4) { grid-column: span 1; }
    .trust-indicators { gap: 0.5rem; }
    .trust-item { padding: 5px 11px; }
    .trust-text { font-size: 0.74rem; }
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.home-ticker {
    overflow: hidden;
    background: var(--brand-950);
    border-top: 1px solid rgba(201, 136, 58, 0.2);
    border-bottom: 1px solid rgba(201, 136, 58, 0.2);
    padding: 0.85rem 0;
}

.ticker-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
}

.ticker-track span {
    font-family: var(--font-family-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.ticker-dot {
    color: rgba(201, 136, 58, 0.4) !important;
    letter-spacing: 0 !important;
}

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

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* ============================================================
   REVIEWS / SOCIAL PROOF
   ============================================================ */
.home-reviews {
    padding: 7rem 0 8rem;
    background: linear-gradient(180deg, #150800 0%, #0e0500 100%);
    position: relative;
}

.home-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,136,58,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 50% 30% at 20% 100%, rgba(184,58,31,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Rating hero row */
.reviews-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.reviews-rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.reviews-big-num {
    font-family: var(--font-family-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-source {
    font-family: var(--font-family-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* Review cards grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(201,136,58,0.04);
    border: 1px solid rgba(201,136,58,0.12);
    border-radius: 16px;
    padding: 2rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.review-card:hover {
    background: rgba(201,136,58,0.08);
    border-color: rgba(201,136,58,0.28);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,136,58,0.06);
}

.review-quote {
    font-family: var(--font-family-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.6;
    margin-bottom: -0.5rem;
}

.review-text {
    font-family: var(--font-family-primary);
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    flex: 1;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #8B5E2A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.review-name {
    font-family: var(--font-family-primary);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.review-location {
    font-family: var(--font-family-primary);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
}

.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

/* CTA link below cards */
.reviews-cta {
    display: flex;
    justify-content: center;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
}

.reviews-google-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.28);
}

/* ---- Reviews responsive ---- */
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .review-card:last-child { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 600px) {
    .home-reviews { padding: 5rem 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card:last-child { grid-column: auto; max-width: none; margin: 0; }
    .reviews-big-num { font-size: clamp(3rem, 14vw, 4rem); }
}

/* --- "Posted on Google" verified badge --- */
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-family-primary);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.review-verified svg { color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ============================================================
   STICKY FLOATING ORDER BUTTON
   ============================================================ */
.sticky-order-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2);
    pointer-events: none;
}

.sticky-order-float.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.sticky-order-float a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    background: var(--red-500);
    color: #fff;
    border-radius: 100px;
    font-family: var(--font-family-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(184,58,31,0.55), 0 2px 0 rgba(255,255,255,0.12) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.sticky-order-float a:hover {
    transform: scale(1.04) translateY(-1px);
    box-shadow: 0 14px 44px rgba(184,58,31,0.7);
}

@media (max-width: 480px) {
    .sticky-order-float { bottom: 1.25rem; right: 1.25rem; }
    .sticky-order-float a { padding: 12px 20px; font-size: 0.82rem; }
}

/* ============================================================
   GALLERY — always show labels on touch devices
   ============================================================ */
@media (hover: none) {
    .gallery-tile-label { opacity: 1; }
}

/* ============================================================
   DISH CARDS — warmer shadow
   ============================================================ */
.dish-card {
    box-shadow: 0 8px 32px rgba(26,10,0,0.14), 0 0 0 1px rgba(201,136,58,0.04);
}

.dish-card:hover {
    box-shadow: 0 16px 48px rgba(26,10,0,0.22), 0 0 0 1px rgba(201,136,58,0.1);
}

/* ============================================================
   REVIEWS EYEBROW
   ============================================================ */
.reviews-section-eyebrow {
    text-align: center;
    margin-bottom: 1.5rem;
}
