:root {
    --ink: #2d1a12;
    --ink-soft: #4b2a1e;
    --adobe: #8e3d28;
    --terracotta: #c65a31;
    --terracotta-dark: #9f4027;
    --sun: #efb344;
    --sand: #ead0a2;
    --cream: #fff9ed;
    --paper: #fffdf7;
    --olive: #5e6a3c;
    --olive-dark: #3f4b28;
    --sky: #5d8590;
    --line: rgba(63, 37, 24, .16);
    --shadow: 0 24px 70px rgba(71, 35, 18, .18);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 15px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 10%, rgba(239, 179, 68, .13), transparent 27rem),
        linear-gradient(180deg, #fff8e8 0%, #f4e3c5 100%);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .19;
    background-image:
        linear-gradient(90deg, rgba(122, 69, 35, .08) 1px, transparent 1px),
        linear-gradient(rgba(122, 69, 35, .06) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

body.drawer-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

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

a {
    color: inherit;
}

.local-strip {
    min-height: 34px;
    padding: 7px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff7e5;
    background: var(--adobe);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.local-strip strong {
    font-weight: 700;
}

.strip-separator {
    color: var(--sun);
}

.topbar {
    min-height: 94px;
    padding: 0 clamp(18px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: rgba(45, 26, 18, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
}

.topbar.scrolled {
    min-height: 74px;
    background: rgba(45, 26, 18, .98);
    box-shadow: 0 14px 35px rgba(45, 26, 18, .25);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: clamp(180px, 16vw, 250px);
    text-decoration: none;
}

.brand picture {
    display: block;
    line-height: 0;
}

.brand-logo {
    width: 78px;
    height: 78px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    filter:
        drop-shadow(0 8px 16px rgba(0, 0, 0, .28))
        drop-shadow(0 0 1px rgba(239, 179, 68, .7));
    transition:
        width .25s ease,
        height .25s ease,
        transform .2s ease,
        filter .2s ease;
}

.brand:hover .brand-logo {
    transform: translateY(-2px) scale(1.02);
    filter:
        drop-shadow(0 10px 20px rgba(0, 0, 0, .34))
        drop-shadow(0 0 3px rgba(239, 179, 68, .65));
}

.topbar.scrolled .brand-logo {
    width: 60px;
    height: 60px;
}

.topbar nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 34px);
}

.topbar nav a {
    position: relative;
    padding: 10px 0;
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.topbar nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    border-radius: 99px;
    background: var(--sun);
    transition: right .22s ease;
}

.topbar nav a:hover,
.topbar nav a.active {
    color: #fff;
}

.topbar nav a:hover::after,
.topbar nav a.active::after {
    right: 0;
}

.cart {
    min-height: 46px;
    padding: 8px 10px 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.cart:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 179, 68, .75);
    background: rgba(239, 179, 68, .12);
}

.cart b {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    display: inline-grid;
    place-items: center;
    color: var(--ink);
    background: var(--sun);
    border-radius: 999px;
}

.cart.bump {
    animation: cartBump .36s ease;
}

.hero {
    position: relative;
    min-height: 860px;
    padding: 70px clamp(18px, 4vw, 64px) 118px;
    overflow: hidden;
    isolation: isolate;
    color: #fffdf5;
    background:
        radial-gradient(circle at 77% 35%, rgba(239, 179, 68, .32), transparent 21rem),
        linear-gradient(150deg, #5f251b 0%, #843521 48%, #b24f2c 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: -4;
    opacity: .24;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, .26) 1.4px, transparent 1.5px),
        linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, .14) 48%, rgba(255, 255, 255, .14) 52%, transparent 53%);
    background-size: 28px 28px, 84px 84px;
    mask-image: linear-gradient(110deg, #000 0%, transparent 62%);
}

.mountain {
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -1px;
    z-index: -2;
    pointer-events: none;
}

.mountain-back {
    height: 240px;
    opacity: .48;
    background: #6a2b20;
    clip-path: polygon(0 63%, 8% 44%, 17% 57%, 27% 30%, 38% 55%, 49% 23%, 61% 49%, 73% 31%, 84% 54%, 94% 38%, 100% 51%, 100% 100%, 0 100%);
}

.mountain-front {
    height: 170px;
    background: #3f251b;
    clip-path: polygon(0 63%, 12% 43%, 23% 67%, 37% 38%, 52% 67%, 66% 43%, 79% 70%, 91% 48%, 100% 63%, 100% 100%, 0 100%);
}

.hero-copy {
    position: relative;
    z-index: 4;
    width: min(650px, 100%);
}

.eyebrow,
.card-kicker,
.combo-label {
    margin: 0 0 9px;
    color: var(--terracotta-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f8d99d;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(46px, 6.4vw, 92px);
    line-height: .97;
    letter-spacing: -.055em;
}

.hero h1 span {
    display: block;
    color: var(--sun);
}

.hero-intro {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .83);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-order,
.btn-ghost,
.btn-outline {
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-order {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: var(--sun);
    box-shadow: 0 14px 34px rgba(45, 26, 18, .24);
}

.btn-order::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100%;
    background: rgba(255, 255, 255, .46);
    transform: skewX(-24deg);
    animation: shine 3.1s infinite;
}

.btn-order:hover {
    transform: translateY(-2px);
    color: var(--ink);
    background: #ffc85b;
    box-shadow: 0 18px 40px rgba(45, 26, 18, .31);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .34);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .55);
}

.btn-outline {
    color: var(--adobe);
    background: transparent;
    border-color: rgba(142, 61, 40, .42);
}

.btn-outline:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--adobe);
    border-color: var(--adobe);
}

.valley-stamp {
    position: absolute;
    top: 82px;
    right: clamp(30px, 5vw, 90px);
    z-index: 3;
    width: 142px;
    height: 142px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(7deg);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .08);
}

.valley-stamp::before,
.valley-stamp::after {
    content: "";
    width: 46px;
    height: 1px;
    margin: 5px 0;
    background: rgba(255, 255, 255, .5);
}

.valley-stamp span,
.valley-stamp small {
    font-size: 9px;
    letter-spacing: .13em;
}

.valley-stamp strong {
    font-family: "Fraunces", Georgia, serif;
    font-size: 20px;
}

.slider-wrap {
    position: relative;
    z-index: 4;
    min-height: 530px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pizza-stage {
    position: relative;
    z-index: 2;
    width: min(520px, 72vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 10px solid rgba(247, 231, 199, .25);
    border-radius: 50%;
    background: radial-gradient(circle, #3b2b23 0%, #17110d 72%);
    box-shadow:
        0 0 0 22px rgba(255, 255, 255, .06),
        0 0 0 44px rgba(255, 255, 255, .025),
        0 42px 90px rgba(28, 12, 7, .48);
}

.pizza-stage::before {
    content: "";
    position: absolute;
    inset: 3%;
    z-index: 3;
    pointer-events: none;
    border-radius: 50%;
    box-shadow: inset 0 0 24px rgba(23, 12, 7, .18);
}

.pizza-stage::after {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 4;
    pointer-events: none;
    opacity: .55;
    background: conic-gradient(from 190deg, transparent 0 22%, rgba(255, 255, 255, .10) 27%, transparent 34% 100%);
    animation: stageLight 7s linear infinite;
}

.stage-ring {
    position: absolute;
    inset: 17px;
    z-index: 2;
    pointer-events: none;
    border: 1px dashed rgba(239, 179, 68, .34);
    border-radius: 50%;
}

.pizza-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    background: #241712;
    filter: brightness(1.08) saturate(1.05) contrast(1.02);
    transition: opacity .2s ease, transform .46s ease;
}

.pizza-stage img.enter {
    animation: pizzaEnter .55s ease;
}

.orbit {
    position: absolute;
    z-index: 5;
    width: min(720px, 91vw);
    aspect-ratio: 1;
    overflow: visible;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.orbit::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px dashed rgba(239, 179, 68, .23);
    border-radius: 50%;
}

.orbit-item {
    --x: 0px;
    --y: 0px;
    --scale: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;
    width: 12px;
    height: 12px;
    padding: 0;
    pointer-events: auto;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(var(--scale));
    color: rgba(255, 255, 255, .82);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease;
}

.orbit-item::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .07);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.orbit-item span {
    position: absolute;
    z-index: 2;
    width: max-content;
    max-width: 146px;
    padding: 4px 8px 5px;
    color: inherit;
    background: rgba(83, 34, 25, .42);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(45, 26, 18, .18);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
    text-shadow: 0 2px 8px rgba(45, 26, 18, .78);
    white-space: normal;
    pointer-events: none;
}

.orbit-item--top span {
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
}

.orbit-item--top-right span {
    left: 20px;
    bottom: 16px;
    text-align: left;
}

.orbit-item--right span {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.orbit-item--bottom-right span {
    left: 20px;
    top: 16px;
    text-align: left;
}

.orbit-item--bottom span {
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
}

.orbit-item--bottom-left span {
    right: 20px;
    top: 16px;
    text-align: right;
}

.orbit-item--left span {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.orbit-item--top-left span {
    right: 20px;
    bottom: 16px;
    text-align: right;
}

.orbit-item:hover {
    --scale: 1.08;
    color: #fff;
}

.orbit-item:hover span {
    background: rgba(83, 34, 25, .68);
    border-color: rgba(255, 255, 255, .17);
}

.orbit-item.active {
    --scale: 1.12;
    color: var(--sun);
}

.orbit-item.active::before {
    transform: scale(1.15);
    background: var(--sun);
    box-shadow: 0 0 18px rgba(239, 179, 68, .78);
}

.orbit-item.active span {
    background: rgba(67, 28, 21, .76);
    border-color: rgba(239, 179, 68, .36);
}

.arrow {
    position: absolute;
    z-index: 8;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--sun);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 43px;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(45, 26, 18, .22);
    transition: transform .2s ease, background .2s ease;
}

.arrow:hover {
    transform: scale(1.06);
    background: #ffd06c;
}

.arrow.left {
    left: 2%;
}

.arrow.right {
    right: 2%;
}

.content-shell {
    position: relative;
    z-index: 8;
    width: min(1180px, calc(100% - 32px));
    margin: -78px auto 0;
}

.info-card,
.section-block,
.menu-strip {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 253, 247, .94);
    box-shadow: var(--shadow);
}

.info-card {
    padding: clamp(24px, 4vw, 44px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: clamp(30px, 5vw, 70px);
    overflow: hidden;
    position: relative;
}

.info-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    bottom: -145px;
    border: 26px solid rgba(198, 90, 49, .07);
    border-radius: 50%;
}

.info-card.change {
    animation: infoFade .38s ease;
}

.pizza-copy,
.ingredient-panel {
    position: relative;
    z-index: 2;
}

.info-card h2,
.section-title h2,
.story-copy h2,
.contact-block h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    letter-spacing: -.035em;
}

.info-card h2 {
    font-size: clamp(35px, 4.5vw, 55px);
    line-height: 1.04;
}

.price {
    width: max-content;
    margin: 18px 0;
    padding: 9px 18px;
    color: #fff;
    background: var(--adobe);
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
}

.price.animate {
    animation: pricePop .35s ease;
}

.info-card p {
    max-width: 590px;
    color: #634334;
    font-size: 16px;
    line-height: 1.7;
}

.features {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.features span {
    padding: 8px 12px;
    color: var(--olive-dark);
    background: rgba(94, 106, 60, .09);
    border: 1px solid rgba(94, 106, 60, .16);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

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

.ingredient-panel {
    align-self: stretch;
    padding: 24px;
    background:
        linear-gradient(rgba(255, 249, 237, .93), rgba(255, 249, 237, .93)),
        repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(122, 69, 35, .08) 24px);
    border: 1px solid rgba(142, 61, 40, .16);
    border-radius: var(--radius-lg);
}

.ingredient-panel h3 {
    margin: 0 0 20px;
    color: var(--adobe);
    font-family: "Fraunces", Georgia, serif;
    font-size: 30px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    padding: 10px 13px;
    color: var(--ink-soft);
    background: #fff;
    border: 1px solid rgba(45, 26, 18, .13);
    border-radius: 999px;
    box-shadow: 0 7px 16px rgba(71, 35, 18, .06);
    opacity: 0;
    transform: translateY(9px);
    animation: tagIn .34s ease forwards;
}

.menu-strip,
.section-block {
    margin-top: 28px;
    padding: clamp(24px, 4vw, 38px);
}

.section-title {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-title.compact {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-title h2,
.story-copy h2,
.contact-block h2 {
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.07;
}

.section-title.compact > p {
    margin: 0;
    color: #765646;
}

.thumbs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 4px 16px;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--terracotta) rgba(142, 61, 40, .12);
    scrollbar-width: thin;
}

.thumb {
    min-width: 172px;
    overflow: hidden;
    scroll-snap-align: start;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(45, 26, 18, .13);
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 10px 24px rgba(71, 35, 18, .08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.thumb:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 90, 49, .55);
    box-shadow: 0 16px 30px rgba(71, 35, 18, .13);
}

.thumb.active {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 2px rgba(198, 90, 49, .16), 0 18px 34px rgba(71, 35, 18, .14);
}

.thumb img {
    width: 100%;
    height: 110px;
    display: block;
    object-fit: cover;
}

.thumb div {
    padding: 12px;
}

.thumb strong {
    display: block;
    line-height: 1.25;
}

.thumb small {
    display: block;
    margin-top: 6px;
    color: var(--terracotta-dark);
    font-weight: 700;
}

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

.combo-card {
    min-height: 245px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(45, 26, 18, .13);
    border-radius: var(--radius-lg);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.combo-card.featured {
    color: #fffdf6;
    background:
        linear-gradient(145deg, rgba(45, 26, 18, .3), rgba(45, 26, 18, .04)),
        var(--adobe);
    border-color: transparent;
}

.combo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 90, 49, .45);
    box-shadow: 0 18px 38px rgba(71, 35, 18, .13);
}

.combo-number {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--sun);
    border-radius: 50%;
    font-weight: 700;
}

.combo-card h3 {
    margin: 5px 0 9px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 25px;
}

.combo-card p:last-child {
    margin: 0;
    color: #705040;
    line-height: 1.6;
}

.combo-card.featured .combo-label,
.combo-card.featured p:last-child {
    color: rgba(255, 255, 255, .76);
}

.story-block {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.story-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: linear-gradient(180deg, #72919a 0%, #e5c07c 70%, #d69958 100%);
    border-radius: var(--radius-lg);
}

.sun-disc {
    position: absolute;
    top: 62px;
    right: 66px;
    width: 92px;
    height: 92px;
    background: var(--sun);
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(239, 179, 68, .17);
}

.story-hill {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -1px;
}

.hill-one {
    height: 190px;
    background: #aa5131;
    clip-path: polygon(0 55%, 20% 20%, 38% 57%, 58% 28%, 76% 61%, 100% 35%, 100% 100%, 0 100%);
}

.hill-two {
    height: 130px;
    background: #6d3829;
    clip-path: polygon(0 65%, 17% 38%, 34% 70%, 52% 35%, 72% 68%, 88% 46%, 100% 65%, 100% 100%, 0 100%);
}

.story-house {
    position: absolute;
    left: 27%;
    bottom: 53px;
    z-index: 3;
    width: 86px;
    height: 58px;
    background: #f1d8ab;
    border: 5px solid #5c3024;
    border-top: 0;
}

.story-house::before {
    content: "";
    position: absolute;
    left: -14px;
    top: -38px;
    width: 104px;
    height: 72px;
    background: #8e3d28;
    clip-path: polygon(50% 0, 100% 55%, 88% 55%, 88% 100%, 12% 100%, 12% 55%, 0 55%);
    z-index: -1;
}

.story-house span {
    position: absolute;
    left: 32px;
    bottom: 0;
    width: 22px;
    height: 34px;
    background: #5c3024;
}

.story-copy > p:not(.eyebrow) {
    color: #6c4d3e;
    line-height: 1.75;
}

.story-points {
    margin-top: 26px;
    display: grid;
    gap: 10px;
}

.story-points span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 600;
}

.story-points b {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--olive);
    border-radius: 50%;
    font-size: 12px;
}

.contact-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(239, 179, 68, .22), transparent 15rem),
        var(--ink);
    border-color: transparent;
}

.contact-block .eyebrow {
    color: var(--sun);
}

.contact-block p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(430px, 100vw);
    height: 100dvh;
    padding: 24px;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(45, 26, 18, .28);
    transform: translateX(105%);
    transition: transform .28s ease;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.cart-head span {
    display: block;
    color: var(--terracotta-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cart-head strong {
    display: block;
    margin-top: 4px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 25px;
}

.cart-head button {
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
}

.order-fields {
    padding: 16px 0;
    display: grid;
    gap: 8px;
    border-bottom: 1px solid var(--line);
}

.order-fields > label,
.note-label,
.order-fields legend {
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.order-fields label small {
    font-weight: 500;
}

.order-fields input[type="text"],
.cart-drawer textarea {
    width: 100%;
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(45, 26, 18, .17);
    border-radius: 12px;
    outline: none;
}

.order-fields input[type="text"]:focus,
.cart-drawer textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(198, 90, 49, .12);
}

.order-fields fieldset {
    margin: 4px 0 2px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
}

.order-fields legend {
    width: 100%;
    margin-bottom: 8px;
}

.choice {
    padding: 8px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(142, 61, 40, .07);
    border: 1px solid rgba(142, 61, 40, .13);
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.choice input {
    accent-color: var(--terracotta);
}

.cart-items {
    min-height: 120px;
    flex: 1;
    overflow-y: auto;
    padding: 14px 2px;
}

.cart-empty {
    margin-top: 12px;
    padding: 22px;
    color: #7a5a49;
    background: rgba(142, 61, 40, .06);
    border: 1px dashed rgba(142, 61, 40, .25);
    border-radius: 15px;
    line-height: 1.55;
    text-align: center;
}

.cart-item {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.cart-item img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 13px;
}

.cart-item h4 {
    margin: 0;
    font-size: 15px;
}

.cart-item p {
    margin: 5px 0;
    color: var(--terracotta-dark);
    font-size: 13px;
    font-weight: 700;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.item-actions button {
    min-width: 31px;
    height: 31px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    cursor: pointer;
}

.item-actions .remove {
    margin-left: auto;
    padding: 0 8px;
    color: var(--terracotta-dark);
    border-color: rgba(198, 90, 49, .28);
    font-size: 12px;
}

.note-label {
    margin-bottom: 7px;
}

.cart-drawer textarea {
    resize: vertical;
}

.cart-total {
    margin-top: 14px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
}

.cart-total strong {
    color: var(--adobe);
    font-family: "Fraunces", Georgia, serif;
    font-size: 27px;
}

.cart-disclaimer {
    margin: 6px 0 0;
    color: #7c5d4c;
    font-size: 11px;
    line-height: 1.45;
}

.btn-order.full {
    width: 100%;
    margin-top: 14px;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    background: rgba(34, 18, 11, .56);
    backdrop-filter: blur(3px);
    transition: opacity .24s ease;
}

.drawer-backdrop.open {
    pointer-events: auto;
    opacity: 1;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    min-height: 52px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: #258b4d;
    border: 2px solid rgba(255, 255, 255, .76);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(24, 84, 47, .35);
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.footer {
    min-height: 95px;
    padding: 24px clamp(18px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .68);
    background: #21130e;
    font-size: 13px;
}

.footer strong {
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
    font-size: 17px;
}

.reveal-up {
    opacity: 0;
    animation: revealUp .65s ease forwards;
}

.delay-1 { animation-delay: .11s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .33s; }

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

@keyframes pizzaEnter {
    0% { opacity: 0; transform: scale(.9) rotate(-4deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes stageLight {
    to { transform: rotate(360deg); }
}

@keyframes infoFade {
    0% { opacity: .76; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pricePop {
    0% { transform: scale(.9); }
    70% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

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

@keyframes cartBump {
    50% { transform: scale(1.09); }
}

@keyframes shine {
    0%, 52% { left: -100%; }
    78%, 100% { left: 145%; }
}

@media (max-width: 1050px) {
    .topbar nav {
        display: none;
    }

    .brand {
        min-width: auto;
    }

    .valley-stamp {
        top: 44px;
        width: 116px;
        height: 116px;
    }

    .valley-stamp strong {
        font-size: 17px;
    }

    .info-card,
    .story-block {
        grid-template-columns: 1fr;
    }

    .story-visual {
        min-height: 300px;
    }
}

@media (max-width: 760px) {
    .local-strip {
        font-size: 10px;
    }

    .strip-separator,
    .local-strip span:last-child {
        display: none;
    }

    .topbar {
        min-height: 74px;
        padding: 0 14px;
    }

    .brand {
        min-width: auto;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .topbar.scrolled .brand-logo {
        width: 52px;
        height: 52px;
    }

    .cart {
        padding-left: 11px;
    }

    .cart > span:nth-child(2) {
        display: none;
    }

    .hero {
        min-height: 780px;
        padding: 46px 16px 104px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .hero-intro {
        font-size: 16px;
    }

    .valley-stamp {
        display: none;
    }

    .slider-wrap {
        min-height: 390px;
        margin-top: 34px;
    }

    .orbit {
        display: none;
    }

    .pizza-stage {
        width: min(82vw, 390px);
        border-width: 7px;
        box-shadow:
            0 0 0 13px rgba(255, 255, 255, .06),
            0 27px 60px rgba(28, 12, 7, .42);
    }

    .arrow {
        width: 46px;
        height: 46px;
        font-size: 36px;
    }

    .arrow.left { left: 0; }
    .arrow.right { right: 0; }

    .content-shell {
        width: min(100% - 20px, 1180px);
        margin-top: -60px;
    }

    .info-card,
    .menu-strip,
    .section-block {
        border-radius: 22px;
    }

    .info-card {
        padding: 24px 19px;
        gap: 24px;
    }

    .info-card h2 {
        font-size: 38px;
    }

    .ingredient-panel {
        padding: 19px;
    }

    .actions .btn-order,
    .actions .btn-outline {
        width: 100%;
    }

    .section-title.compact {
        display: block;
    }

    .section-title.compact > p {
        margin-top: 8px;
    }

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

    .combo-card {
        min-height: 210px;
    }

    .contact-block {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-block .btn-order {
        width: 100%;
    }

    .whatsapp-float {
        right: 13px;
        bottom: 13px;
        min-height: 48px;
        padding: 0 14px;
        font-size: 13px;
    }

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

@media (max-width: 430px) {
    .hero-actions .btn-order,
    .hero-actions .btn-ghost {
        width: 100%;
    }

    .slider-wrap {
        min-height: 345px;
    }

    .pizza-stage {
        width: 79vw;
    }

    .arrow {
        width: 42px;
        height: 42px;
    }

    .thumb {
        min-width: 154px;
    }

    .cart-drawer {
        padding: 18px;
    }
}

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

/* ===== Vista inicial optimizada para escritorio ===== */
@media (min-width: 1060px) {
    .hero {
        min-height: max(620px, calc(100svh - 116px));
        padding: 40px clamp(28px, 4vw, 70px) 66px;
        display: grid;
        grid-template-columns: minmax(430px, .84fr) minmax(600px, 1.16fr);
        grid-template-rows: 1fr;
        align-items: center;
        column-gap: clamp(28px, 4vw, 74px);
    }

    .hero-copy {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        width: 100%;
        max-width: 650px;
        padding-bottom: 42px;
    }

    .hero h1 {
        font-size: clamp(58px, 5.1vw, 82px);
        line-height: .96;
    }

    .hero-intro {
        max-width: 520px;
        margin-top: 20px;
        font-size: clamp(16px, 1.25vw, 19px);
    }

    .hero-actions {
        margin-top: 24px;
    }

    .slider-wrap {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        min-height: min(650px, calc(100svh - 190px));
        margin-top: 0;
        align-self: center;
        justify-self: center;
    }

    .pizza-stage {
        width: min(clamp(410px, 30vw, 500px), calc(100svh - 330px));
    }

    .orbit {
        width: min(clamp(560px, 41vw, 680px), calc(100svh - 220px));
    }

    .arrow.left {
        left: clamp(0px, 1vw, 18px);
    }

    .arrow.right {
        right: clamp(0px, 1vw, 18px);
    }

    .valley-stamp {
        position: relative;
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        justify-self: end;
        top: auto;
        right: auto;
        width: 112px;
        height: 112px;
        margin: 0 8px 8px 0;
        opacity: .82;
    }

    .valley-stamp strong {
        font-size: 16px;
    }

    .content-shell {
        margin-top: -50px;
    }
}

@media (min-width: 1060px) and (max-width: 1240px) {
    .hero {
        grid-template-columns: minmax(390px, .9fr) minmax(540px, 1.1fr);
        column-gap: 20px;
    }

    .hero h1 {
        font-size: clamp(54px, 5.4vw, 68px);
    }

    .pizza-stage {
        width: clamp(390px, 34vw, 450px);
    }

    .orbit {
        width: clamp(540px, 48vw, 610px);
    }

    .valley-stamp {
        display: none;
    }
}

@media (min-width: 1060px) and (max-height: 820px) {
    .hero-copy {
        padding-bottom: 0;
    }

    .valley-stamp {
        display: none;
    }
}
