/* ============================================================
   CRUMB & ROSE — Neighborhood Bakery
   Soft organic identity: cocoa / dusty rose / butter on cream,
   Baloo 2 + Nunito Sans + Caveat, curved ribbons, warm blobs.
   ============================================================ */

:root {
    --color-primary:       #4A2C2A;
    --color-primary-dark:  #3A211F;
    --color-rose:          #D98E8E;
    --color-rose-soft:     #F6E3E0;
    --color-butter:        #E9C46A;
    --color-butter-soft:   #F8EBC8;
    --color-bg:            #FBF3E7;
    --color-surface:       #FFFDF7;
    --color-tint:          #F3E7D3;
    --color-text:          #33201C;
    --color-muted:         #8A7467;
    --color-border:        #EBDCC2;
    --color-danger:        #B3402E;

    --font-display: 'Baloo 2', 'Comic Sans MS', sans-serif;
    --font-body:    'Nunito Sans', 'Segoe UI', sans-serif;
    --font-script:  'Caveat', 'Comic Sans MS', cursive;

    --container: 1200px;
    --space-xs: .5rem;
    --space-sm: .9rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 10px rgba(74, 44, 42, .07);
    --shadow-md: 0 14px 40px rgba(74, 44, 42, .12);
    --shadow-lg: 0 30px 70px rgba(74, 44, 42, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--color-text); background: var(--color-bg); overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; margin: 0 0 .4em; color: var(--color-primary); }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
em.acc { font-style: normal; color: var(--color-rose); }
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 200; background: var(--color-primary); color: var(--color-butter); padding: .6rem 1.1rem; border-radius: var(--radius-pill); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--color-butter); outline-offset: 2px; border-radius: 6px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem;
    padding: .85rem 1.7rem; border-radius: var(--radius-pill);
    border: 2px solid transparent; cursor: pointer; transition: all .22s ease; text-decoration: none; line-height: 1.2; white-space: nowrap;
}
.btn svg { transition: transform .22s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--color-primary); color: #FFF7EE; }
.btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--color-butter); color: var(--color-primary); }
.btn--secondary:hover { background: #E2B84F; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); background: var(--color-butter-soft); }
.btn--light { background: #fff; color: var(--color-primary); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.1rem; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); cursor: pointer; transition: all .2s ease; }
.icon-btn:hover { background: var(--color-rose-soft); border-color: var(--color-rose); }

/* ============ ANNOUNCE + HEADER ============ */
.announce { background: var(--color-rose); color: #fff; font-size: .88rem; font-weight: 700; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .5rem 0; text-align: center; }
.announce p { margin: 0; }
.site-header { position: sticky; top: 0; z-index: 90; background: rgba(251, 243, 231, .93); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 2rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--color-primary); }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--color-primary); color: var(--color-butter); transform: rotate(-6deg); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; }
.brand-name em { font-style: normal; color: var(--color-rose); }
.main-nav { display: flex; gap: 1.7rem; margin-inline: auto; }
.nav-link { position: relative; font-family: var(--font-display); font-weight: 700; font-size: .98rem; color: var(--color-text); padding: .3rem 0; }
.nav-link::after { content: ''; position: absolute; left: 10%; right: 10%; bottom: -2px; height: 7px; background: var(--color-butter); border-radius: 4px; transform: scaleX(0); transition: transform .22s ease; z-index: -1; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.nav-toggle { display: none; }

.nav-backdrop { position: fixed; inset: 0; background: rgba(51, 32, 28, .5); z-index: 110; opacity: 0; transition: opacity .25s ease; }
.nav-backdrop.is-open { opacity: 1; }
.mobile-nav { position: fixed; top: 0; left: 0; bottom: 0; width: min(330px, 90vw); z-index: 120; background: var(--color-surface); padding: 1.3rem 1.6rem; display: flex; flex-direction: column; transform: translateX(-102%); transition: transform .3s ease; box-shadow: var(--shadow-lg); }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.mobile-nav-links { display: flex; flex-direction: column; gap: .3rem; padding: 1.5rem 0; }
.mobile-nav-link { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; padding: .5rem .3rem; color: var(--color-text); }
.mobile-nav-link:hover, .mobile-nav-link.is-active { color: var(--color-rose); background: var(--color-rose-soft); border-radius: var(--radius-sm); }
.mobile-nav-foot { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--color-border); color: var(--color-muted); font-size: .9rem; }
.mobile-nav-foot p { margin: .15rem 0; }
body.nav-locked { overflow: hidden; }

/* ============ HERO ============ */
.hero { padding: var(--space-lg) 0 var(--space-xl); position: relative; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-script); font-size: 1.45rem; color: var(--color-rose); margin-bottom: .8rem; }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--color-primary); position: relative; }
.hero h1 em::after { content: ''; position: absolute; left: 0; right: 0; bottom: .1em; height: .3em; background: var(--color-butter); z-index: -1; border-radius: 6px; }
.hero-sub { font-size: 1.13rem; color: var(--color-muted); max-width: 33rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.hero-note { display: flex; align-items: center; gap: .6rem; margin-top: 2rem; padding-top: 1.3rem; border-top: 1px dashed var(--color-border); font-size: .92rem; color: var(--color-muted); }
.hero-note b { color: var(--color-primary); }

.hero-collage { position: relative; min-height: 480px; }
.hero-blob { position: absolute; inset: 4% 0 8% 8%; background: var(--color-butter-soft); border-radius: 58% 42% 50% 50% / 50% 55% 45% 50%; transform: rotate(-8deg); }
.hero-img { position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--1 { width: 62%; aspect-ratio: 4/5; top: 0; left: 0; transform: rotate(-4deg); z-index: 2; }
.hero-img--2 { width: 46%; aspect-ratio: 1/1; top: 10%; right: 0; transform: rotate(4deg); z-index: 3; border: 6px solid var(--color-surface); }
.hero-sticker {
    position: absolute; z-index: 4; bottom: 2%; left: 4%;
    background: var(--color-primary); color: var(--color-butter); border-radius: var(--radius-pill);
    padding: .8rem 1.4rem; transform: rotate(-3deg); box-shadow: var(--shadow-md);
    font-family: var(--font-display); font-weight: 800; font-size: .95rem;
}

/* ============ SECTIONS ============ */
.section { padding: var(--space-xl) 0; }
.section--tint { background: var(--color-surface); border-block: 1px solid var(--color-border); }
.section--rose { background: var(--color-rose-soft); }
.section-head { max-width: 40rem; margin-bottom: var(--space-lg); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-kicker { display: inline-block; font-family: var(--font-script); font-size: 1.5rem; color: var(--color-rose); margin-bottom: .3rem; }
.section-head p.lead { color: var(--color-muted); font-size: 1.06rem; }

/* ============ MENU ITEMS ============ */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.item-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease; }
.item-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow-md); }
.item-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.item-card:hover .item-media img { transform: scale(1.06); }
.item-badge { position: absolute; top: .8rem; left: .8rem; z-index: 2; background: var(--color-butter); color: var(--color-primary); font-family: var(--font-display); font-weight: 800; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--radius-pill); }
.item-body { padding: 1.15rem 1.3rem 1.35rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.item-row { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; }
.item-row h3 { margin: 0; font-size: 1.2rem; }
.item-price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--color-rose); white-space: nowrap; }
.item-body p { color: var(--color-muted); font-size: .93rem; margin: 0; }

/* Filters */
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1rem 1.2rem; margin-bottom: 1.8rem; }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip { border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); font-family: var(--font-display); font-weight: 700; font-size: .9rem; padding: .55rem 1.2rem; border-radius: var(--radius-pill); cursor: pointer; transition: all .2s ease; }
.filter-chip:hover { border-color: var(--color-rose); color: var(--color-rose); }
.filter-chip.is-active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-butter); }
.shop-count { font-size: .9rem; color: var(--color-muted); font-weight: 600; }

/* ============ CAKES ============ */
.cakes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cake-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease; }
.cake-card:hover { transform: translateY(-6px) rotate(.3deg); box-shadow: var(--shadow-md); }
.cake-card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.cake-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.cake-body h3 { font-size: 1.35rem; margin: 0; }
.cake-body p { color: var(--color-muted); font-size: .95rem; flex: 1; }
.cake-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .8rem; border-top: 1px dashed var(--color-border); }
.cake-foot span { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--color-rose); }
.cake-foot em { font-style: normal; font-size: .84rem; color: var(--color-muted); font-weight: 600; text-align: right; }

/* ============ PROMISES / WHY ============ */
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.promise { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.6rem; text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.promise:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.promise-icon { width: 56px; height: 56px; margin: 0 auto .9rem; border-radius: 18px; background: var(--color-rose-soft); color: var(--color-rose); display: grid; place-items: center; }
.promise h3 { font-size: 1.05rem; margin: 0 0 .3rem; }
.promise p { color: var(--color-muted); font-size: .9rem; margin: 0; }

/* ============ QUOTES ============ */
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.quote-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.7rem; position: relative; box-shadow: var(--shadow-sm); }
.quote-card::before { content: '"'; position: absolute; top: .4rem; left: 1.2rem; font-family: var(--font-display); font-size: 4rem; color: var(--color-butter); line-height: 1; }
.quote-card p { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.5; margin: 1.4rem 0 .9rem; }
.quote-who b { display: block; font-family: var(--font-display); font-size: 1rem; }
.quote-who span { font-size: .85rem; color: var(--color-muted); }

/* ============ STATS ============ */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat-card { background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.stat-card b { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--color-rose); display: block; line-height: 1.1; }
.stat-card span { color: var(--color-muted); font-size: .92rem; font-weight: 600; }

/* ============ JOURNAL ============ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.j-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease; }
.j-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.j-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.j-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.j-meta { font-size: .8rem; color: var(--color-muted); font-weight: 700; }
.j-card h3 { font-size: 1.15rem; margin: 0; }
.j-card h3 a { color: var(--color-primary); }
.j-card h3 a:hover { color: var(--color-rose); }
.j-card p { color: var(--color-muted); font-size: .93rem; flex: 1; }
.j-link { font-family: var(--font-display); font-weight: 700; color: var(--color-rose); display: inline-flex; align-items: center; gap: .3rem; }
.j-link svg { transition: transform .2s ease; }
.j-link:hover svg { transform: translateX(4px); }

/* ============ CTA BAND ============ */
.cta-band { position: relative; border-radius: var(--radius-lg); background: var(--color-primary); color: #FBEEDD; padding: clamp(2.4rem, 5vw, 3.8rem); overflow: hidden; text-align: center; }
.cta-band::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(233, 196, 106, .16); top: -140px; right: -100px; }
.cta-band::after { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(217, 142, 142, .2); bottom: -110px; left: -70px; }
.cta-band h2 { color: #FBEEDD; position: relative; z-index: 1; }
.cta-band p { opacity: .85; max-width: 34rem; margin-inline: auto; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; position: relative; z-index: 1; }

/* ============ PAGE HERO ============ */
.page-hero { padding: var(--space-lg) 0 0; }
.page-hero h1 { margin-bottom: .3em; }
.page-hero p { color: var(--color-muted); max-width: 40rem; font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .86rem; color: var(--color-muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text); font-weight: 700; }

/* ============ ABOUT ============ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-split img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.about-split p { color: var(--color-muted); }

/* ============ ACCORDION / FAQ ============ */
.faq-list { max-width: 46rem; margin-inline: auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: .5rem 1.9rem; box-shadow: var(--shadow-sm); }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: none; cursor: pointer; padding: 1.1rem 0; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--color-primary); text-align: left; }
.accordion-btn svg { transition: transform .25s ease; flex: 0 0 auto; color: var(--color-rose); }
.accordion-item.is-open .accordion-btn svg { transform: rotate(180deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel-inner { overflow: hidden; }
.accordion-panel p { color: var(--color-muted); font-size: .97rem; padding-bottom: 1.1rem; margin: 0; }

/* ============ JOURNAL POST ============ */
.journal-article { max-width: 46rem; margin-inline: auto; }
.journal-article header { text-align: center; margin-bottom: 2rem; }
.journal-article img { border-radius: var(--radius-lg); margin-bottom: 2rem; width: 100%; }
.journal-article p { font-size: 1.06rem; line-height: 1.8; }
.journal-article p:first-of-type::first-letter { font-family: var(--font-display); font-weight: 800; font-size: 3.4em; float: left; line-height: .85; padding-right: .15em; color: var(--color-rose); }

/* ============ CONTACT / FORMS ============ */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; display: flex; gap: .9rem; align-items: flex-start; }
.contact-card svg { color: var(--color-rose); flex: 0 0 auto; margin-top: 3px; }
.contact-card b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.contact-card p, .contact-card a { color: var(--color-muted); font-size: .93rem; margin: 0; }
.contact-card a:hover { color: var(--color-primary); }
.form-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .span-2 { grid-column: 1 / -1; }
.form-field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .35rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); padding: .78rem 1rem; font-family: var(--font-body); font-size: .96rem; color: var(--color-text); background: var(--color-surface); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--color-rose); box-shadow: 0 0 0 3px rgba(217, 142, 142, .18); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-error { display: none; color: var(--color-danger); font-size: .82rem; font-weight: 700; margin: .3rem 0 .6rem; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--color-danger); }
.form-field.has-error .form-error { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* ============ THANK YOU ============ */
.thankyou { text-align: center; max-width: 40rem; margin-inline: auto; padding: var(--space-xl) 0; }
.thankyou-mark { width: 88px; height: 88px; margin: 0 auto 1.5rem; background: var(--color-primary); color: var(--color-butter); border-radius: 26px; display: grid; place-items: center; transform: rotate(-8deg); box-shadow: var(--shadow-md); }
.thankyou-mark svg { transform: rotate(8deg); }
.thankyou p { color: var(--color-muted); font-size: 1.08rem; }

/* ============ TOAST / REVEAL ============ */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translate(-50%, 20px); z-index: 160; background: var(--color-primary); color: var(--color-butter); padding: .9rem 1.5rem; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 700; font-size: .95rem; box-shadow: var(--shadow-lg); opacity: 0; transition: all .3s ease; pointer-events: none; }
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.is-in { opacity: 1; transform: none; }
.page-enter { animation: pageIn .6s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--color-primary); color: rgba(255, 250, 240, .85); margin-top: var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.3fr; gap: 2.4rem; padding: var(--space-lg) 0 var(--space-md); }
.footer-brand .brand-name { color: #FFF7EE; }
.footer-brand p { font-size: .94rem; }
.footer-col h3 { color: var(--color-butter); font-family: var(--font-body); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255, 250, 240, .8); font-size: .93rem; padding: .25rem 0; }
.footer-col a:hover { color: var(--color-butter); }
.footer-line { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; margin: 0 0 .5rem; }
.footer-line svg { flex: 0 0 auto; margin-top: 3px; color: var(--color-butter); }
.footer-line a { display: inline; color: rgba(255, 250, 240, .8); padding: 0; }
.footer-line a:hover { color: var(--color-butter); }
.footer-hours span { display: block; font-size: .86rem; color: rgba(255, 250, 240, .6); }
.news-form { display: flex; gap: .5rem; margin-top: .9rem; }
.news-form input[type="email"] { flex: 1; min-width: 0; border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .1); border-radius: var(--radius-pill); padding: .75rem 1.1rem; color: #fff; font-family: var(--font-body); }
.news-form input::placeholder { color: rgba(255, 255, 255, .55); }
.news-form input:focus { outline: none; border-color: var(--color-butter); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .14); padding: 1.3rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .84rem; color: rgba(255, 250, 240, .6); }
.footer-demo { margin: 0; }
