﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
a{
    color:inherit;
    text-decoration:inherit;
}
    a:hover {
        color: inherit;
        text-decoration: inherit;
    }

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Jost',sans-serif;
    background: #f5ede0;
    color: #2c1810;
    overflow-x: hidden;
    line-height: 1.6
}

:root {
    /* Brand Palette — Red + Chocolate + Cream */
    --red: #9b1c1c;
    --red2: #b91c1c;
    --red-light: #fef2f2;
    --choc: #3b1a0e;
    --choc2: #5c2d1a;
    --choc3: #7a3b22;
    --cream: #fdf6e3;
    --cream2: #f5ede0;
    --cream3: #ede0cc;
    --warm: #c4956a;
    --warm2: #a0714a;
    --text: #2c1810;
    --text2: #5c2d1a;
    --muted: #9a7b6a;
    --muted2: #c4a898;
    --border: rgba(59,26,14,0.12);
    --border2: rgba(155,28,28,0.25);
    --red-dim: rgba(155,28,28,0.1);
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--cream2)
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px
}

/* ═══ UTILITY ═══ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px
}

.section {
    padding: 100px 0
}

.tc {
    text-align: center
}

    .tc .ssub {
        margin: 0 auto
    }

    .tc .slabel {
        justify-content: center
    }

/* ═══ TYPOGRAPHY ═══ */
.slabel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

    .slabel::before, .slabel::after {
        content: '◆';
        font-size: 6px;
        color: var(--red);
        opacity: .6
    }

.stitle {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(34px,4.5vw,58px);
    font-weight: 700;
    color: var(--choc);
    line-height: 1.08;
    margin-bottom: 18px;
}

    .stitle em {
        color: var(--red2);
        font-style: italic
    }

.ssub {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.85;
    font-weight: 400
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost',sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all .28s;
    cursor: pointer;
    border: none;
    padding: 15px 30px;
}

.btn-red {
    background: var(--red2);
    color: #fff;
    box-shadow: 0 4px 20px rgba(155,28,28,0.35)
}

    .btn-red:hover {
        background: var(--red);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(155,28,28,0.45)
    }

.btn-choc {
    background: var(--choc);
    color: var(--cream);
    border: 1.5px solid var(--choc2)
}

    .btn-choc:hover {
        background: var(--choc2);
        transform: translateY(-2px)
    }

.btn-outline-red {
    background: transparent;
    color: var(--red2);
    border: 1.5px solid var(--red2)
}

    .btn-outline-red:hover {
        background: var(--red-dim);
        transform: translateY(-2px)
    }

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(253,246,227,0.4)
}

    .btn-outline-cream:hover {
        background: rgba(253,246,227,0.1);
        transform: translateY(-2px)
    }

/* ═══ ANNOUNCE ═══ */
.announce {
    background: var(--red2);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .announce::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,0.12),transparent);
        animation: sweep 3s ease-in-out infinite;
    }

@keyframes sweep {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(150%)
    }
}

.announce a {
    color: #ffe4e1;
    text-decoration: underline;
    font-weight: 700
}

/* ═══ NAV ═══ */
.nav {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(59,26,14,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 10px 32px;
}

.nav-i {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-seal {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red2);
    border: 2px solid rgba(253,246,227,0.25);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
/* .logo-seal::after{content:'';position:absolute;inset:2px;border-radius:50%;border:1px solid rgba(253,246,227,0.15)} */
.logo-crown {
    font-size: 18px;
    position: relative;
    z-index: 1
}

.logo-text {
    display: flex;
    flex-direction: column
}

.logo img {
    width: 80px;
}

.logo-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: .5px;
    line-height: 1
}

.logo-tag {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 4px
}

    .nlinks a {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(253,246,227,0.55);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 2px;
        transition: color .2s
    }

        .nlinks a:hover, .nlinks a.active {
            color: var(--cream)
        }

.nav-r {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-cta {
    background: var(--red2);
    color: #fff;
    padding: 9px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all .2s
}

    .nav-cta:hover {
        background: var(--red)
    }

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

    .ham span {
        width: 22px;
        height: 1.5px;
        background: var(--cream);
        display: block
    }

.mmenu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(59,26,14,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px
}

    .mmenu.open {
        display: flex
    }

    .mmenu a {
        font-family: 'Cormorant Garamond',serif;
        font-size: 36px;
        font-weight: 700;
        color: rgba(253,246,227,0.5);
        text-decoration: none;
        transition: color .2s
    }

        .mmenu a:hover {
            color: var(--cream)
        }

.mclose {
    position: absolute;
    top: 24px;
    right: 70px;
    background: none;
    border: none;
    color: rgba(253,246,227,0.5);
    font-size: 28px;
    cursor: pointer
}

/* ═══════════════════════════════════════
   HERO — Full London Night Atmosphere
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--choc);
}
/* Real hero image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1600&q=80');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(.35) saturate(.8);
}

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 170deg, rgba(59,26,14,.7) 0%, rgba(155,28,28,.15) 40%, transparent 60%, rgba(59,26,14,.9) 100% );
    }

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-i {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.hero-kicker {
    margin-bottom: 20px
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(155,28,28,0.3);
    border: 1px solid rgba(155,28,28,0.5);
    color: #fca5a5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 1px;
}

    .hero-chip .flag {
        font-size: 14px
    }

.hero h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(48px,6.5vw,84px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

    .hero h1 .it {
        font-style: italic;
        color: #fca5a5
    }

    .hero h1 .bold {
        font-weight: 700;
        -webkit-text-stroke: 1px var(--cream);
        -webkit-text-fill-color: transparent
    }

.hero-desc {
    font-size: 17px;
    color: rgba(253,246,227,0.65);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 460px;
    font-weight: 300
}

    .hero-desc strong {
        color: var(--cream);
        font-weight: 600
    }

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(253,246,227,0.12);
    border-radius: 2px;
    overflow: hidden
}

.hs {
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(253,246,227,0.12)
}

    .hs:last-child {
        border-right: none
    }

.hs-val {
    font-family: 'Cormorant Garamond',serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1
}

.hs-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(253,246,227,0.4);
    margin-top: 4px
}

/* HERO RIGHT — stacked food images */
.hero-stack {
    position: relative;
    height: 480px
}

.hi {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.7)
}

    .hi img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.hi-main {
    top: 0;
    right: 0;
    width: 320px;
    height: 320px
}

.hi-2 {
    bottom: 0;
    right: 60px;
    width: 240px;
    height: 200px
}

.hi-3 {
    top: 100px;
    left: 0;
    width: 180px;
    height: 220px
}

.hi-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--red2);
    color: #fff;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond',serif;
    box-shadow: 0 8px 24px rgba(155,28,28,.6);
    z-index: 3;
}

    .hi-badge strong {
        font-size: 16px;
        font-weight: 700;
        line-height: 1
    }

    .hi-badge span {
        font-size: 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: .85
    }

.hi-float {
    position: absolute;
    bottom: 60px;
    left: -20px;
    z-index: 4;
    background: var(--choc);
    border: 1px solid rgba(253,246,227,.15);
    border-radius: 4px;
    padding: 14px 18px;
    box-shadow: 0 12px 36px rgba(0,0,0,.5);
    animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hf-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 4px
}

.hf-val {
    font-family: 'Cormorant Garamond',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cream)
}

.hf-sub {
    font-size: 10px;
    color: #fca5a5;
    font-weight: 600;
    margin-top: 2px
}

/* ═══ SCROLL INDICATOR ═══ */
.scroll-hint {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    gap: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(253,246,227,0.3);
}

    .scroll-hint::before {
        content: '';
        width: 1px;
        height: 20px;
        background: rgba(253,246,227,0.2);
        animation: pulse2 2s ease-in-out infinite;
    }

@keyframes pulse2 {
    0%,100% {
        opacity: .2;
        transform: scaleY(.5)
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

/* ═══ MARQUEE ═══ */
.mstrip {
    background: var(--red2);
    padding: 0;
    overflow: hidden;
    border-top: 3px solid var(--choc);
    border-bottom: 3px solid var(--choc);
}

.mtrack {
    display: flex;
    animation: marquee 22s linear infinite;
    width: max-content
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.mi {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
}

    .mi .dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(253,246,227,0.35)
    }

/* ═══ STORY / ABOUT ═══ */
.story {
    background: var(--cream2);
    position: relative;
    overflow: hidden
}

    .story::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(155,28,28,0.05),transparent 70%);
    }

.story-i {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

/* Left: London image collage */
.story-images {
    position: relative;
    height: 520px
}

.si-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59,26,14,.25);
    border: 4px solid var(--cream2);
}

    .si-main img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.si-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59,26,14,.2);
    border: 4px solid var(--cream2);
}

    .si-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.si-plaque {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    background: var(--choc);
    color: var(--cream);
    padding: 16px 20px;
    border-radius: 2px;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    border-left: 3px solid var(--red2);
}

    .si-plaque strong {
        display: block;
        font-family: 'Cormorant Garamond',serif;
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        line-height: 1
    }

    .si-plaque span {
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--warm)
    }

/* Right text */
.story-text .stitle {
    color: var(--choc)
}

.story-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0
}

.sf {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 18px;
    border-top: 3px solid var(--red2);
}

.sf-val {
    font-family: 'Cormorant Garamond',serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--choc);
    line-height: 1;
    margin-bottom: 4px
}

.sf-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted)
}

.story-quote {
    background: var(--choc);
    color: var(--cream);
    padding: 24px 28px;
    border-radius: 4px;
    font-family: 'Cormorant Garamond',serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 24px;
    position: relative;
}

    .story-quote::before {
        content: '\201C';
        font-size: 60px;
        color: var(--red2);
        position: absolute;
        top: -10px;
        left: 20px;
        line-height: 1;
        font-family: 'Cormorant Garamond',serif;
    }

/* ═══ BANNER 1 — London atmosphere full bleed ═══ */
.banner-london {
    height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-london .bg {
        position: absolute;
        inset: 0;
        background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
        background-size: cover;
        background-position: center;
        filter: brightness(.35) saturate(.7);
    }

        .banner-london .bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,rgba(59,26,14,.8),rgba(155,28,28,.3),rgba(59,26,14,.7));
        }

.banner-london-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 32px
}

    .banner-london-content h2 {
        font-family: 'Cormorant Garamond',serif;
        font-size: clamp(36px,5vw,62px);
        font-weight: 700;
        color: var(--cream);
        line-height: 1.1;
        margin-bottom: 16px;
    }

        .banner-london-content h2 em {
            color: #fca5a5;
            font-style: italic
        }

    .banner-london-content p {
        font-size: 16px;
        color: rgba(253,246,227,0.65);
        margin-bottom: 28px;
        font-weight: 300
    }

/* ═══ MENU SECTION ═══ */
.menu-sec {
    background: #fff;
    position: relative
}

    .menu-sec::before {
        content: 'MENU';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Cormorant Garamond',serif;
        font-size: 200px;
        font-weight: 700;
        color: rgba(59,26,14,.03);
        pointer-events: none;
        line-height: 1;
    }

.menu-cats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center
}

.mcat {
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--border);
    color: var(--muted);
    border-radius: 1px;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    font-family: 'Jost',sans-serif;
}

    .mcat.on, .mcat:hover {
        background: var(--choc);
        border-color: var(--choc);
        color: var(--cream)
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px
}

.mc {
    background: var(--cream2);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .28s,box-shadow .28s;
    cursor: pointer;
}

    .mc:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(59,26,14,.15)
    }

.mc-img {
    height: 180px;
    position: relative;
    overflow: hidden
}

    .mc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s
    }

.mc:hover .mc-img img {
    transform: scale(1.06)
}

.mc-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--choc);
    color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 1px;
}

.mc-badge-r {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: var(--red2);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 1px
}

.mc-body {
    padding: 18px
}

.mc-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--choc);
    margin-bottom: 5px;
    line-height: 1.2
}

.mc-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px
}

.mc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mc-price {
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red2)
}

.mc-order {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--choc3);
    border-bottom: 1px solid var(--choc3);
    padding-bottom: 1px;
    text-decoration: none;
    transition: color .2s
}

    .mc-order:hover {
        color: var(--red2);
        border-color: var(--red2)
    }

.menu-more {
    text-align: center;
    margin-top: 40px
}

/* ═══ BANNER 2 — Pizza full bleed ═══ */
.banner-pizza {
    height: 500px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bp-left {
    position: relative;
    overflow: hidden;
}

    .bp-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.5)
    }

    .bp-left::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,transparent,rgba(59,26,14,.9))
    }

.bp-right {
    background: var(--choc);
    display: flex;
    align-items: center;
    padding: 60px 56px;
}

.bp-text h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(32px,4vw,52px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px
}

    .bp-text h2 em {
        color: #fca5a5;
        font-style: italic
    }

.bp-text p {
    font-size: 15px;
    color: rgba(253,246,227,0.6);
    line-height: 1.85;
    margin-bottom: 28px;
    font-weight: 300
}

.pizza-facts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.pf {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(253,246,227,0.7)
}

    .pf::before {
        content: '✦';
        color: var(--red2);
        font-size: 10px;
        flex-shrink: 0
    }

/* ═══ WHY LPB ═══ */
.why-sec {
    background: var(--cream2)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 52px
}

.wcard {
    background: var(--cream2);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    cursor: default
}

    .wcard:hover {
        background: #fff
    }

    .wcard::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red2);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s
    }

    .wcard:hover::after {
        transform: scaleX(1)
    }

.wc-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: block
}

.wc-n {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Cormorant Garamond',serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(59,26,14,.05);
    line-height: 1
}

.wcard h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--choc);
    margin-bottom: 10px
}

.wcard p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8
}

/* ═══ FRANCHISE ═══ */
.fran {
    background: var(--choc);
    position: relative;
    overflow: hidden;
}

    .fran::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1200&q=60') center/cover no-repeat;
        filter: brightness(.08) saturate(.3);
    }

.fran-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(59,26,14,.97),rgba(155,28,28,.2),rgba(59,26,14,.95))
}

.fran-content {
    position: relative;
    z-index: 2
}

.fran-hero {
    text-align: center;
    padding: 0 0 72px;
    max-width: 720px;
    margin: 0 auto
}

    .fran-hero .stitle {
        color: var(--cream)
    }

        .fran-hero .stitle em {
            color: #fca5a5
        }

    .fran-hero p {
        font-size: 16px;
        color: rgba(253,246,227,0.6);
        line-height: 1.85;
        margin-bottom: 36px;
        font-weight: 300
    }

.fran-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* Models */
.fran-models {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 64px
}

.fm {
    background: rgba(253,246,227,0.04);
    border: 1px solid rgba(253,246,227,.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all .28s;
}

    .fm:hover {
        border-color: rgba(155,28,28,.5);
        transform: translateY(-4px)
    }

    .fm.star {
        border-color: rgba(155,28,28,.4);
        background: rgba(155,28,28,.08)
    }

.fm-top {
    padding: 28px 26px 20px;
    border-bottom: 1px solid rgba(253,246,227,.06)
}

.fm-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block
}

.fm-badge {
    display: inline-block;
    background: var(--red2);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 1px;
    margin-bottom: 12px
}

.fm h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px
}

.fm-inv {
    font-size: 13px;
    color: #fca5a5;
    font-weight: 600
}

.fm-body {
    padding: 20px 26px
}

.fm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px
}

    .fm-list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13px;
        color: rgba(253,246,227,.65)
    }

        .fm-list li::before {
            content: '✦';
            color: var(--warm);
            font-size: 9px;
            margin-top: 3px;
            flex-shrink: 0
        }

.fm-roi {
    background: rgba(253,246,227,.05);
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--warm);
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 20px
}

/* Stats band */
.fran-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(253,246,227,.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 64px
}

.fs {
    background: rgba(253,246,227,.03);
    padding: 32px 20px;
    text-align: center
}

.fs-v {
    font-family: 'Cormorant Garamond',serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px
}

.fs-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(253,246,227,.35)
}

/* Steps */
.fran-steps {
    margin-bottom: 64px
}

.fsteps {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
    margin-top: 44px;
    position: relative
}

    .fsteps::before {
        content: '';
        position: absolute;
        top: 26px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: rgba(253,246,227,.1)
    }

.fstep {
    text-align: center;
    position: relative;
    z-index: 1
}

.fsn {
    width: 52px;
    height: 52px;
    border-radius: 2px;
    background: rgba(253,246,227,.07);
    border: 1px solid rgba(253,246,227,.15);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--warm);
    transition: all .28s
}

.fstep:hover .fsn {
    background: var(--red2);
    color: #fff;
    border-color: var(--red2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(155,28,28,.5)
}

.fstep h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
    letter-spacing: .3px
}

.fstep p {
    font-size: 11px;
    color: rgba(253,246,227,.4);
    line-height: 1.6
}

/* FORM */
.fform-wrap {
    background: rgba(253,246,227,0.04);
    border: 1px solid rgba(253,246,227,.12);
    border-radius: 4px;
    padding: 52px;
    box-shadow: 0 20px 80px rgba(0,0,0,.4);
}

    .fform-wrap::before {
        content: '';
        display: block;
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg,transparent,rgba(155,28,28,.6),transparent);
        margin: 0 auto 52px
    }

.fform-head {
    text-align: center;
    margin-bottom: 40px
}

    .fform-head h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 32px;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: 8px
    }

    .fform-head p {
        font-size: 14px;
        color: rgba(253,246,227,.5)
    }

.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 7px
}

    .fg.full {
        grid-column: 1/-1
    }

    .fg label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(253,246,227,.4)
    }

.finp, .fsel, .ftxt {
    background: rgba(253,246,227,.05);
    border: 1.5px solid rgba(253,246,227,.1);
    border-radius: 2px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--cream);
    font-family: 'Jost',sans-serif;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
}

    .finp::placeholder, .ftxt::placeholder {
        color: rgba(253,246,227,.2)
    }

    .finp:focus, .fsel:focus, .ftxt:focus {
        border-color: rgba(155,28,28,.6)
    }

    .fsel option {
        background: #3b1a0e;
        color: var(--cream)
    }

.ftxt {
    resize: vertical;
    min-height: 100px
}

.fsub {
    grid-column: 1/-1;
    background: var(--red2);
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Jost',sans-serif;
    cursor: pointer;
    transition: all .28s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(155,28,28,.4);
}

    .fsub:hover {
        background: var(--red);
        transform: translateY(-1px);
        box-shadow: 0 12px 40px rgba(155,28,28,.5)
    }

.fsuccess {
    display: none;
    text-align: center;
    padding: 48px 20px
}

    .fsuccess .big {
        font-size: 56px;
        margin-bottom: 16px
    }

    .fsuccess h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: 10px
    }

    .fsuccess p {
        font-size: 15px;
        color: rgba(253,246,227,.5)
    }

/* ═══ TESTIMONIALS ═══ */
.testi-sec {
    background: var(--cream2)
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 52px
}

.tc3 {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 30px 26px;
    transition: border-color .25s,box-shadow .25s
}

    .tc3:hover {
        border-color: var(--border2);
        box-shadow: 0 8px 32px rgba(59,26,14,.08)
    }

.tc3-stars {
    color: var(--red2);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.tc3-q {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    border-left: 2px solid var(--red2);
    padding-left: 16px;
    font-family: 'Cormorant Garamond',serif;
    font-weight: 600
}

.tc3-from {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc3-av {
    width: 44px;
    height: 44px;
    border-radius: 2px;
    background: var(--choc);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond',serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    flex-shrink: 0
}

.tc3-from strong {
    display: block;
    font-size: 14px;
    color: var(--choc);
    font-weight: 700
}

.tc3-from span {
    font-size: 11px;
    color: var(--muted)
}

/* ═══ GALLERY FULL BLEED ═══ */
.gallery-sec {
    background: var(--choc);
    padding: 0;
    overflow: hidden
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 3px
}

.gi {
    overflow: hidden;
    position: relative;
    cursor: pointer
}

    .gi img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

    .gi:hover img {
        transform: scale(1.05)
    }

    .gi.tall {
        grid-row: 1/3
    }

.gi-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(0deg,rgba(59,26,14,.85),transparent);
    color: var(--cream);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .3s
}

.gi:hover .gi-label {
    opacity: 1
}

/* ═══ BOTTOM CTA ═══ */
.cta-fin {
    padding: 96px 0;
    text-align: center;
    background: var(--red2);
    position: relative;
    overflow: hidden;
}

    .cta-fin::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1200&q=40') center/cover;
        filter: brightness(.15) saturate(.5);
        mix-blend-mode: multiply
    }

.cta-fin-c {
    position: relative;
    z-index: 1
}

.cta-fin h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(38px,5.5vw,64px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px
}

    .cta-fin h2 em {
        font-style: italic;
        color: #fca5a5
    }

.cta-fin p {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    margin-bottom: 40px;
    font-weight: 300
}

.cta-fin-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.cta-fin-note {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    letter-spacing: .5px
}

    .cta-fin-note a {
        color: rgba(255,255,255,.7);
        text-decoration: none
    }

/* ═══ FOOTER ═══ */
footer {
    background: var(--choc);
    border-top: 1px solid rgba(253,246,227,.06)
}

.ftop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px
}

.fbrand-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px
}

.fbrand p {
    font-size: 14px;
    color: rgba(253,246,227,.4);
    line-height: 1.8;
    max-width: 260px
}

.fsoc2 {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.sb2 {
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background: rgba(253,246,227,.05);
    border: 1px solid rgba(253,246,227,.1);
    display: grid;
    place-items: center;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
    color: rgba(253,246,227,.4)
}

    .sb2:hover {
        background: var(--red-dim);
        border-color: rgba(155,28,28,.4);
        color: var(--cream)
    }

.fcol h5 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 18px
}

.fcol a {
    display: block;
    font-size: 13px;
    color: rgba(253,246,227,.4);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s
}

    .fcol a:hover {
        color: var(--warm)
    }

.fbot {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(253,246,227,.06);
    flex-wrap: wrap;
    gap: 10px
}

    .fbot p {
        font-size: 12px;
        color: rgba(253,246,227,.25)
    }

.fbot-links {
    display: flex;
    gap: 20px
}

    .fbot-links a {
        font-size: 11px;
        color: rgba(253,246,227,.25);
        text-decoration: none;
        transition: color .2s
    }

        .fbot-links a:hover, .fbot p a:hover{
            color: var(--warm)
        }

/* ═══ REVEAL ═══ */
.rev {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease,transform .75s ease
}

    .rev.vis {
        opacity: 1;
        transform: translateY(0)
    }

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

/* ═══ HERO ANIMATION ═══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.htxt > * {
    animation: fadeUp .8s ease both
}

    .htxt > *:nth-child(1) {
        animation-delay: .1s
    }

    .htxt > *:nth-child(2) {
        animation-delay: .22s
    }

    .htxt > *:nth-child(3) {
        animation-delay: .34s
    }

    .htxt > *:nth-child(4) {
        animation-delay: .46s
    }

    .htxt > *:nth-child(5) {
        animation-delay: .58s
    }

.hero-stack {
    animation: fadeUp .9s .4s ease both
}
.announce.mobile {
    display: none;
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
    .hero-i, .story-i, .banner-pizza {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .hero-stack {
        height: 340px
    }

    .story-images {
        height: 300px
    }

    .banner-pizza {
        height: auto
    }

    .bp-left {
        height: 300px
    }

    .menu-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .fran-models {
        grid-template-columns: 1fr 1fr
    }

    .fsteps {
        grid-template-columns: 1fr 1fr
    }

        .fsteps::before {
            display: none
        }

    .ftop {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .gi.tall {
        grid-row: auto
    }
}

@media(max-width:768px) {
    .section {
        padding: 64px 0
    }
    .announce.desktop {
        display: none;
    }
    .announce.mobile {
        display: inherit;
    }

    .container {
        padding: 0 20px
    }

    .nlinks, .nav-cta {
        display: none
    }

    .ham {
        display: flex
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -.5px
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .tgrid {
        grid-template-columns: 1fr
    }

    .fran-stats {
        grid-template-columns: 1fr 1fr
    }

    .fran-models {
        grid-template-columns: 1fr
    }

    .fform-wrap {
        padding: 28px 20px
    }

    .fgrid {
        grid-template-columns: 1fr
    }

    .fg.full {
        grid-column: 1
    }

    .ftop {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .hero-stats {
        flex-wrap: wrap
    }

    .hs {
        flex: 1;
        min-width: 80px
    }
    .policy-toc {
        display: none;
    }
    .policy-wrap {
        display: inherit !important;
    }
    header.nav .container {
        padding: 0px;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 34px
    }

    .hero-btns {
        flex-direction: column
    }

        .hero-btns .btn {
            width: 100%;
            justify-content: center
        }

    .hi-main {
        width: 260px;
        height: 260px
    }

    .hi-2 {
        width: 190px;
        height: 160px
    }

    .menu-grid {
        grid-template-columns: 1fr
    }
    .logo-tag {
        font-size: 10px;
    }
}


#experience-rating .rate-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    #experience-rating .rate-btn:hover {
        background: #f5f5f5;
    }

    #experience-rating .rate-btn.active {
        background: #9b1c1c;
        color: #fff;
        border-color: #9b1c1c;
        transform: scale(1.1);
    }






/*
    BLOG CSS
*/
:root {
    --black: #0a0a0a;
    --surface: #111111;
    --card: #181818;
    --border: #2a2a2a;
    --gold: #b91c1c;
    --gold-light: #e8c07a;
    --red: #c0392b;
    --red-light: #e74c3c;
    --white: #f5f0e8;
    --muted: #888;
    --text: #ccc;
    --radius: 12px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
}


/* HERO */
.post-hero {
    position: relative;
    height: clamp(360px, 55vw, 560px);
    overflow: hidden;
}

    .post-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.4);
    }

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.15) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 5% 56px;
}

.post-hero-content {
    max-width: 820px;
}

.hero-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.post-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
}

/* BREADCRUMB */
.breadcrumb {
    padding: 18px 5%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.8rem;
    color: var(--muted);
}

    .breadcrumb a {
        color: var(--gold);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb span {
        opacity: 0.4;
    }

/* LAYOUT */
.post-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    padding: 0 5% 100px;
    align-items: start;
}

/* META */
.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

    .post-meta .author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info .name {
    font-weight: 600;
    font-size: 0.88rem;
}

.author-info .role {
    color: var(--muted);
    font-size: 0.78rem;
}

.post-meta .date {
    color: var(--muted);
    font-size: 0.82rem;
}

.post-meta .read-time {
    color: var(--muted);
    font-size: 0.82rem;
    margin-left: auto;
}

/* CONTENT */
.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    margin: 44px 0 16px;
    line-height: 1.3;
}

.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin: 30px 0 12px;
}

.post-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.post-content strong {
    color: var(--white);
    font-weight: 600;
}

.post-content ul {
    list-style: none;
    margin: 0 0 20px 0;
}

    .post-content ul li {
        color: var(--text);
        font-size: 1rem;
        padding: 8px 0 8px 26px;
        position: relative;
        border-bottom: 1px solid rgba(42,42,42,0.6);
    }

        .post-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 17px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
        }

.post-content blockquote {
    border-left: 3px solid var(--red);
    background: var(--card);
    padding: 22px 28px;
    margin: 32px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

    .post-content blockquote p {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-style: italic;
        color: var(--white);
        margin: 0;
    }

.post-content .highlight-box {
    background: linear-gradient(135deg, #150808, #111);
    border: 1px solid rgba(192,57,43,0.3);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 32px 0;
}

    .post-content .highlight-box h3 {
        margin-top: 0;
    }

.post-content .inline-img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 36px 0;
}

    .post-content .inline-img img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .post-content .inline-img figcaption {
        padding: 10px 0 0;
        font-size: 0.78rem;
        color: var(--muted);
        text-align: center;
        font-style: italic;
    }

/* STATS STRIP */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 36px 0;
}

.stat-cell {
    background: var(--card);
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
}

/* TAGS & SHARE */
.post-tags {
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

    .post-tags span {
        font-size: 0.8rem;
        color: var(--muted);
        margin-right: 4px;
    }

.tag {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 50px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

    .tag:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.post-share {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    align-items: center;
}

    .post-share span {
        font-size: 0.85rem;
        color: var(--muted);
    }

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

    .share-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

    .share-btn svg {
        fill: var(--muted);
        transition: fill .2s;
    }

    .share-btn:hover svg {
        fill: var(--black);
    }

/* CTA */
.post-cta {
    background: linear-gradient(135deg, #150808 0%, #111 100%);
    border: 1px solid rgba(192,57,43,0.35);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

    .post-cta .emoji {
        font-size: 2.5rem;
        margin-bottom: 14px;
    }

    .post-cta h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 10px;
    }

    .post-cta p {
        color: var(--muted);
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-red {
    background: var(--red);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all .2s;
}

    .btn-red:hover {
        background: var(--red-light);
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all .2s;
}

    .btn-outline:hover {
        background: rgba(212,168,83,0.1);
    }

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    margin-bottom: 24px;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mini-post {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}

    .mini-post:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .mini-post img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

.mini-post-info .mini-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color .2s;
}

.mini-post:hover .mini-title {
    color: var(--gold);
}

.mini-post-info .mini-date {
    font-size: 0.75rem;
    color: var(--muted);
}

.toc-list {
    list-style: none;
}

    .toc-list li {
        padding: 6px 0;
        border-bottom: 1px solid rgba(42,42,42,0.5);
    }

        .toc-list li:last-child {
            border-bottom: none;
        }

    .toc-list a {
        color: var(--muted);
        font-size: 0.83rem;
        text-decoration: none;
        transition: color .2s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .toc-list a::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--red);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .toc-list a:hover {
            color: var(--gold);
        }

/* RELATED */
.related-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .section-head h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--white);
    }

    .section-head a {
        color: var(--gold);
        font-size: 0.85rem;
        text-decoration: none;
    }

        .section-head a:hover {
            text-decoration: underline;
        }

.related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.related-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

    .related-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        border-color: var(--gold);
    }

    .related-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        transition: transform .4s;
    }

    .related-card:hover img {
        transform: scale(1.05);
    }

.related-card-body {
    padding: 18px;
}

    .related-card-body .rc-cat {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .related-card-body h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.4;
    }

.related-card:hover .related-card-body h4 {
    color: var(--gold);
}

/* PROGRESS BAR */
.progress-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.05);
    z-index: 99;
}

.progress-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width .1s linear;
}

@media (max-width: 900px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .related-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 580px) {
    .nav-links {
        display: none;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .post-hero {
        height: 300px;
    }

    .stats-strip {
        grid-template-columns: 1fr;
    }
}














