/* ============================================================
   LEO'S PIZZA & WINGS — Premium Brand Site
   Design system: light editorial base, fire-orange accent,
   big display type, generous whitespace, subtle motion.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');
:root {
    --ink: #1a1510;
    --bg: #fbf9f5;
    --bg-soft: #f2ede4;
    --surface: #ffffff;
    --line: rgba(26, 21, 16, .10);
    --line-soft: rgba(26, 21, 16, .06);
    --cream: #f2ede4;
    --cream-2: #e8e0d0;
    --paper: #ffffff;
    --text: #211c15;
    --text-dim: #6f6759;
    --text-dark: #1a1510;
    --text-dark-dim: #6f6759;
    --accent: #ff6400;
    --accent-2: #ff7a45;
    --gold: #b8892a;
    --green: #2e9d63;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 999px;
    --ff-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease: cubic-bezier(.16, .84, .44, 1);
    --wrap: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--accent);
    color: #fff;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-display);
    margin: 0;
    letter-spacing: -.02em;
    font-weight: 700;
}

p {
    margin: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--accent);
    display: block;
}


/* ---------- Buttons ---------- */

.btn {
    --btn-bg: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.01em;
    border: 1px solid transparent;
    cursor: pointer;
    background: var(--btn-bg);
    color: #fff;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .15) inset, 0 12px 30px -10px rgba(255, 77, 46, .55);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .15) inset, 0 18px 38px -8px rgba(255, 77, 46, .65);
}

.btn.lg {
    padding: 12px 38px;
    font-size: 1.02rem;
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(26, 21, 16, .18);
    box-shadow: none;
}

.btn.ghost:hover {
    border-color: rgba(26, 21, 16, .4);
    background: rgba(26, 21, 16, .04);
    transform: translateY(-3px);
    box-shadow: none;
}

.btn.dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .5);
}

.btn.on-light {
    box-shadow: 0 12px 28px -10px rgba(255, 77, 46, .4);
}


/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announce {
    background: var(--accent);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-align: center;
    padding: 9px 20px;
    position: relative;
    z-index: 200;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.announce b {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-top-bar {
    position: static;
}

header {
    position: sticky;
    top: 0;
    z-index: 150;
    background: rgba(251, 249, 245, .75);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line-soft);
    transition: background .3s, border-color .3s;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 86px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand .mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(155deg, var(--accent), #b8280f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px -6px rgba(255, 77, 46, .6);
    flex-shrink: 0;
}

.brand .word {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.28rem;
    letter-spacing: -.01em;
    line-height: 1;
}

.brand .word span {
    display: block;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .22em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 3px;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.foot-brand .logo-img {
    height: 52px;
    margin-bottom: 4px;
}

.nav-links {
    display: flex;
    gap: 34px;
    margin-left: 8px;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dim);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width .3s var(--ease);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: .78rem;
    color: var(--text-dim);
}

.nav-phone b {
    font-size: .92rem;
    color: var(--text);
    font-weight: 700;
}


/* ---------- Account (login/logout) ---------- */

.acct-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(26, 21, 16, .18);
    transition: border-color .2s, background .2s, transform .2s;
}

.acct-link:hover {
    color: var(--text);
    border-color: rgba(26, 21, 16, .4);
    background: rgba(26, 21, 16, .04);
    transform: translateY(-2px);
}

.acct-chip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(26, 21, 16, .18);
    transition: border-color .2s, background .2s;
}

.acct-chip:hover {
    border-color: rgba(26, 21, 16, .4);
    background: rgba(26, 21, 16, .04);
}

.acct-chip .dd {
    font-size: .7rem;
    color: var(--text-dim);
    transition: transform .2s;
}

.acct-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 160;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 20px 40px -16px rgba(20, 15, 9, .3);
}

.acct-menu.show {
    display: block;
}

.acct-menu-head {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.acct-menu-name {
    font-weight: 800;
    font-size: .92rem;
    color: var(--text);
}

.acct-menu-email {
    font-size: .78rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.acct-menu a {
    display: block;
    font-size: .86rem;
    font-weight: 700;
    color: var(--accent);
}

@media (max-width:920px) {
    .acct-link,
    .acct-chip {
        display: none;
    }
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
}

@media (max-width:920px) {
    .nav-links,
    .nav-phone {
        display: none;
    }
    .burger {
        display: flex;
    }
    .nav {
        height: 74px;
    }
    .logo-img {
        height: 68px;
    }
    .nav-right .btn {
        padding: 9px 20px;
        font-size: .82rem;
    }
}


/* Mobile menu */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    padding: 26px 26px 40px;
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-menu .close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 1.2rem;
}

.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 2.1rem;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-menu .cta {
    margin-top: auto;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    padding: 86px 0 0;
    background: radial-gradient(90% 60% at 15% 0%, rgba(255, 77, 46, .18), transparent 60%), radial-gradient(70% 50% at 100% 10%, rgba(233, 182, 74, .14), transparent 60%), var(--bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 86px);
    padding: 56px 0 70px;
}

.hero-copy .eyebrow {
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: .98;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero h1 .flame {
    display: inline-block;
    font-size: .7em;
    vertical-align: middle;
}

.hero p.lead {
    font-size: 1.14rem;
    line-height: 1.65;
    color: var(--text-dim);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.hero-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}

.hero-stats .st b {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.7rem;
    font-weight: 700;
}

.hero-stats .st span {
    font-size: .78rem;
    color: var(--text-dim);
    font-weight: 600;
}

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

.hv-main {
    position: absolute;
    inset: 0 8% 0 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7), 0 0 0 1px var(--line);
}

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

.hv-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 45%, rgba(10, 10, 11, .65));
}

.hv-badge {
    position: absolute;
    left: -16px;
    bottom: 38px;
    z-index: 3;
    background: var(--paper);
    color: var(--text-dark);
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 16px 20px;
    box-shadow: 0 24px 50px -18px rgba(20, 16, 10, .28);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
    animation: float 5s ease-in-out infinite;
}

.hv-badge .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff2ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hv-badge b {
    font-size: .86rem;
    display: block;
    line-height: 1.3;
}

.hv-badge span {
    font-size: .72rem;
    color: var(--text-dark-dim);
}

.hv-price {
    position: absolute;
    right: 2%;
    top: 8%;
    z-index: 3;
    background: var(--accent);
    color: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 20px 40px -14px rgba(255, 77, 46, .7);
    animation: float 5s ease-in-out infinite 1.2s;
}

.hv-price small {
    display: block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    opacity: .85;
}

.hv-price b {
    font-size: 1.5rem;
    font-family: var(--ff-display);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 36px 0 50px;
        min-height: auto;
    }
    .hero-visual {
        height: 420px;
        order: -1;
    }
    .hero-copy {
        text-align: left;
    }
}

@media (max-width:640px) {
    /* .hero-grid's own padding shorthand (top/bottom only) zeroes out the
       left/right padding .wrap normally provides, so the hero image and
       copy sit flush against the screen edges on phones. Restore the same
       20px .wrap uses elsewhere on mobile, scoped to this breakpoint only. */
    .hero-grid {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* .hero's own 86px top padding is sized for the desktop layout and
       leaves a lot of empty space above the hero image on phones. */
    .hero {
        padding-top: 24px;
    }

    /* Order Now / View Full Menu wrap onto separate lines at this width
       because .btn.lg's desktop padding/font-size are too wide for both to
       fit side by side. Shrink them and stop wrapping so they share one row. */
    .hero-cta {
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 0;
    }

    .hero-cta .btn {
        flex: 1;
        padding: 12px 10px;
        font-size: .85rem;
        white-space: nowrap;
    }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee {
    background: var(--accent);
    color: #fff;
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: scroll 26s linear infinite;
}

.marquee-track span {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 48px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.marquee-track span i {
    font-style: normal;
    opacity: .7;
}

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


/* ============================================================
   PROMO BANNER (full-width)
   ============================================================ */

.promo-banner {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transition: box-shadow .35s var(--ease);
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s var(--ease);
}

.promo-banner:hover img {
    transform: scale(1.015);
}

.promo-banner:hover {
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .35);
}


/* ============================================================
   SECTION HEADS
   ============================================================ */

section {
    padding: 120px 0;
    position: relative;
}

@media (max-width:640px) {
    section {
        padding: 76px 0;
    }
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.sec-head h2 {
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    margin-top: 14px;
    line-height: 1.04;
}

.sec-head .sub {
    max-width: 420px;
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.6;
    margin-top: 14px;
}

.sec-head.center {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.sec-head.center .sub {
    max-width: 560px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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


/* ============================================================
   SIGNATURE MENU
   ============================================================ */

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

.sig-card {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 390px;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform .5s var(--ease);
}

.sig-card:hover {
    transform: translateY(-8px);
}

.sig-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.sig-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

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

.sig-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 6, 7, .92) 8%, rgba(6, 6, 7, .1) 55%, transparent 75%);
}

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

.sig-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(233, 182, 74, .14);
    border: 1px solid rgba(233, 182, 74, .35);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.sig-card:first-child .sig-title {
    font-size: 1.9rem;
    color: #ffffff;
}

.sig-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.24rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.sig-desc {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 340px;
    color: #ffffff;
}

.sig-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sig-price {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.sig-add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background .2s, transform .3s var(--ease);
}

.sig-card:hover .sig-add {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width:980px) {
    .sig-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sig-card:first-child {
        grid-column: span 2;
        height: 340px;
    }
}

@media (max-width:640px) {
    .sig-grid {
        grid-template-columns: 1fr;
    }
    .sig-card {
        height: 300px;
    }
    .sig-card:first-child {
        grid-column: span 1;
    }
}


/* ============================================================
   DEALS (light section)
   ============================================================ */

.section-light {
    background: var(--cream);
    color: var(--text-dark);
}

.section-light .eyebrow {
    color: var(--accent);
}

.section-light .sec-head .sub {
    color: var(--text-dark-dim);
}

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

.deal-card {
    display: block;
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 8px;
    position: relative;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .02);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px -24px rgba(0, 0, 0, .22);
}

.deal-photo {
    /* height: 190px; */
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

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

.deal-save {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ink);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 6px 12px;
    border-radius: 20px;
}

.deal-info {
    padding: 22px 16px 18px;
}

.deal-info h3 {
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.deal-info p {
    font-size: .86rem;
    color: var(--text-dark-dim);
    line-height: 1.55;
    margin-bottom: 18px;
    min-height: 42px;
}

.deal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.deal-price b {
    font-family: var(--ff-display);
    font-size: 1.5rem;
}

.deal-price s {
    color: var(--text-dark-dim);
    font-size: .88rem;
}

.deal-price .from {
    color: var(--text-dark-dim);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.deal-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background .2s, transform .3s var(--ease);
}

.deal-card:hover .deal-arrow {
    background: var(--accent);
    transform: rotate(45deg);
}

@media (max-width:980px) {
    .deal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .deal-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px);
}

.p-step {
    position: relative;
    padding-right: 20px;
}

.p-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
    color: var(--accent);
}

.p-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.p-step p {
    font-size: .87rem;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width:980px) {
    .process {
        grid-template-columns: 1fr 1fr;
        row-gap: 44px;
    }
    .process::before {
        display: none;
    }
}

@media (max-width:560px) {
    .process {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   STORY / ABOUT
   ============================================================ */

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img-a {
    border-radius: 28px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
}

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

.story-img-b {
    position: absolute;
    width: 46%;
    bottom: -40px;
    right: -40px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--bg);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}

.story-img-b img {
    width: 100%;
    display: block;
    height: 220px;
    object-fit: cover;
}

.story-copy p.lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--text-dim);
    margin: 22px 0 40px;
    max-width: 520px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.story-stats .st {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.story-stats .st b {
    font-family: var(--ff-display);
    font-size: 2.1rem;
    display: block;
}

.story-stats .st span {
    font-size: .78rem;
    color: var(--text-dim);
    font-weight: 600;
}

@media (max-width:980px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 80px 0;
    }
    .story-img-b {
        width: 52%;
        bottom: -30px;
        right: -16px;
    }
}

@media (max-width:640px) {
    .story-stats {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

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

.testi-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .4s var(--ease), border-color .4s;
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 46, .35);
}

.testi-stars {
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .95rem;
}

.testi-person b {
    display: block;
    font-size: .9rem;
}

.testi-person span {
    font-size: .76rem;
    color: #000000;
}

@media (max-width:980px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-band {
    border-radius: 36px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff4ec, #fbf6ef);
    border: 1px solid var(--line);
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: -40%;
    /* background: radial-gradient(closest-side, rgba(255, 77, 46, .28), transparent); */
    background: radial-gradient(closest-side, rgb(232 224 208), transparent);
    animation: pulse 7s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: .6
    }
    50% {
        transform: scale(1.25);
        opacity: 1
    }
}

.cta-band>* {
    position: relative;
    z-index: 2;
}

.cta-band h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    max-width: 680px;
    margin: 18px auto 30px;
    line-height: 1.08;
}

.cta-band .btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================
   LOCATION
   ============================================================ */

.loc-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: stretch;
}

.loc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.loc-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loc-ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgb(242 237 228);
    border: 1px solid rgb(242 237 228);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #000000 !important;
    flex-shrink: 0;
}

.loc-row b {
    display: block;
    margin-bottom: 3px;
    font-size: .98rem;
}

.loc-row span {
    font-size: .87rem;
    color: var(--text-dim);
    line-height: 1.55;
}

.loc-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 360px;
}

.loc-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width:980px) {
    .loc-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    padding: 80px 0 0;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line-soft);
}

.foot-brand p {
    color: var(--text-dim);
    font-size: .9rem;
    line-height: 1.65;
    margin: 18px 0 24px;
    max-width: 280px;
}

.foot-social {
    display: flex;
    gap: 10px;
}

.foot-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff6400;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #ffffff;
    transition: background .2s, color .2s, transform .3s var(--ease);
}

.foot-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.foot-col h5 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-dim);
    margin-bottom: 20px;
    margin-top: 0px;
    font-weight: 700;
}

.foot-col a,
.foot-col span {
    display: block;
    font-size: .9rem;
    color: var(--text);
    padding: 7px 0;
    opacity: .85;
}

.foot-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.foot-col span.c-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.foot-col span.c-line i {
    color: var(--accent);
    font-size: .82rem;
    width: 14px;
    margin-top: 4px;
    text-align: center;
    flex-shrink: 0;
}

.foot-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 0;
    font-size: .8rem;
    color: #000000;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-bottom .foot-brand {
    color: #ff6400;
}

@media (max-width:920px) {
    .foot-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width:560px) {
    .foot-top {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   STICKY ORDER PILL (mobile-friendly floating CTA)
   ============================================================ */

.float-cta {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 180;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width:640px) {
    .float-cta {
        right: 16px;
        bottom: 16px;
    }
    .float-cta .label {
        display: none;
    }
}