/* ============================================================
   HERO — FULL BACKGROUND
   ============================================================ */
.lmibc-hero--fullbg {
    position: relative;
    min-height: 80vh;
    max-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--sky);
    overflow: hidden;
}

.lmibc-hero--fullbg .lmibc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(250,247,243,0.88) 0%,
        rgba(214,232,237,0.65) 45%,
        rgba(245,197,163,0.15) 100%
    );
}

.lmibc-hero--fullbg .lmibc-container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
}

.lmibc-hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.lmibc-hero-content h1 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--airmail-blue);
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease both;
    line-height: 1.3;
}

.lmibc-hero-content h1 .highlight-amber  { color: var(--amber); font-style: italic; }
.lmibc-hero-content h1 .highlight-sage   { color: var(--sage-dark); }
.lmibc-hero-content h1 .highlight-script { font-style: italic; font-weight: 900; color: var(--peach-deep); }

.lmibc-hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--ink-mid);
    margin-bottom: 36px;
    line-height: 1.75;
    animation: fadeUp 0.7s 0.15s ease both;
}

.lmibc-hero-content .lmibc-btn {
    animation: fadeUp 0.7s 0.3s ease both;
}

/* Floating blob decorations */
.lmibc-hero--fullbg::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: var(--peach);
    border-radius: var(--radius-blob);
    opacity: 0.5;
    animation: float 7s ease-in-out infinite;
    z-index: 1;
}

.lmibc-hero--fullbg::after {
    content: '';
    position: absolute;
    bottom: 60px; left: -60px;
    width: 280px; height: 280px;
    background: var(--sage-light);
    border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%;
    opacity: 0.4;
    animation: float 9s 2s ease-in-out infinite;
    z-index: 1;
}

/* Bottom wave SVG — hidden, proof bar creates the break */
.lmibc-wiggle-bottom { display: none; }
.lmibc-wiggle-bottom svg, .lmibc-wiggle-top svg { width: 100%; height: auto; display: block; }

/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
.lmibc-hero--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    max-height: 80vh;
    overflow: hidden;
}

.lmibc-hero-split-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    overflow: hidden;
}

.lmibc-hero-split-text .lmibc-squiggle-deco {
    position: absolute;
    bottom: 40px; left: 30px;
    width: 120px;
    opacity: 0.5;
    animation: float 5s ease-in-out infinite;
}

.lmibc-hero-split-inner { position: relative; z-index: 2; max-width: 480px; }

.lmibc-hero-split-inner h1 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    color: var(--ink);
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease both;
    line-height: 1.3;
}

.lmibc-hero-split-inner p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 36px;
    color: var(--ink-mid);
    animation: fadeUp 0.7s 0.15s ease both;
}

.lmibc-hero-split-image { position: relative; overflow: hidden; }
.lmibc-hero-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.lmibc-proof-bar {
    background: var(--sage-dark);
    padding: 13px 0;
    text-align: center;
}

.lmibc-proof-bar p {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
    margin: 0;
    text-transform: uppercase;
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.lmibc-categories {
    padding: 0;
    background: var(--offwhite);
    margin-top: 2em;
}

.lmibc-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.lmibc-cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 215px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    border-radius: var(--radius-card);
}

.lmibc-cat-tile:hover { filter: brightness(0.95); }

.lmibc-cat-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lmibc-cat-tile:hover img { transform: scale(1.05); }

.lmibc-cat-tile-label {
    position: relative;
    z-index: 2;
    padding: 20px 28px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(2px);
}

.lmibc-cat-tile-label span {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.lmibc-cat-tile-label em {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ink-mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.lmibc-cat-tile:hover .lmibc-cat-tile-label em { opacity: 1; color: var(--amber); }

/* ============================================================
   SHIPPING — slim 2-panel horizontal band
   ============================================================ */
.lmibc-shipping-info {
    background: var(--lavender-light);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin: 0 48px;
    border-radius: 24px;
}

/* Inner: flex row, left 2/3 + squiggle + right 1/3 */
.lmibc-shipping-inner {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 44px 32px 40px 0;
    gap: 0;
    position: relative;
}

/* LEFT panel — title, subtitle, intl note */
.lmibc-shipping-left {
    flex: 2;
    padding-right: 16px;
}

.lmibc-shipping-left h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.2;
}

.lmibc-shipping-sub {
    font-size: 0.98rem;
    color: var(--ink-mid);
    margin: 0 0 8px;
    line-height: 1.6;
}

.lmibc-shipping-intl {
    font-size: 0.85rem;
    color: var(--ink-mid);
    margin: 0;
}

.lmibc-etsy-link {
    display: inline;
    margin-left: 4px;
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1.5px solid currentColor;
    transition: opacity 0.2s ease;
}
.lmibc-etsy-link:hover { opacity: 0.75; }

/* RIGHT panel — two shipping options stacked */
.lmibc-shipping-right {
    flex: 1;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lmibc-shipping-option {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-left: 8px solid var(--blush);
    padding-left: 14px;
}

.lmibc-shipping-option strong {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ink);
}

.lmibc-shipping-option span {
    font-size: 0.85rem;
    color: var(--ink-mid);
    line-height: 1.5;
}

/* Bottom contrast band */
.lmibc-shipping-stripe {
    height: 16px;
    background: linear-gradient(
        to right,
        var(--butter) 0% 55%,
        var(--blush)  55% 100%
    );
}

@media (max-width: 680px) {
    .lmibc-shipping-info { margin: 0 16px; border-radius: 16px; }
    .lmibc-shipping-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 36px 24px 32px;
    }
    .lmibc-shipping-squiggle-wrap {
        width: 100%;
        height: 32px;
        align-self: auto;
    }
    .lmibc-shipping-squiggle {
        position: static;
        width: 100%;
        height: 32px;
    }
    .lmibc-shipping-right { padding-left: 0; }
}

/* ============================================================
   SHOP HIGHLIGHTS
   Section: offwhite → wave into raccoons (sky)
   ============================================================ */
.lmibc-shop-highlights {
    padding: 80px 0 80px;
    background: var(--offwhite);
    position: relative;
}



.lmibc-shop-highlights h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 48px;
    color: var(--ink);
}

.lmibc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
    justify-items: center;
}

.lmibc-product-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: center;
    border: 2px solid transparent;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.lmibc-product-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--peach-deep);
}

/* ── Remove colour band on homepage product cards ── */
.lmibc-product-card::before,
.lmibc-product-card:nth-child(2)::before,
.lmibc-product-card:nth-child(3)::before {
    display: none !important;
}

.lmibc-product-card .lmibc-card-img-wrap {
    padding: 10px 10px 0;
}

.lmibc-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-card) - 4px);
}

.lmibc-product-card h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 12px 2px;
    color: var(--ink);
    flex-shrink: 0;
}

.lmibc-product-card .price {
    font-weight: 600;
    color: var(--amber);
    padding: 0 12px 8px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lmibc-product-card .button,
.lmibc-product-card .add_to_cart_button,
.lmibc-product-card a.button,
.lmibc-product-card a.add_to_cart_button {
    display: block;
    margin: 0 12px 12px;
    background: var(--sage-light);
    color: var(--ink) !important;
    border: none;
    border-radius: var(--radius-pill) !important;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none !important;
    flex-shrink: 0;
    text-align: center;
    width: auto;
}

.lmibc-product-card .button:hover,
.lmibc-product-card .add_to_cart_button:hover,
.lmibc-product-card a.button:hover,
.lmibc-product-card a.add_to_cart_button:hover {
    background: var(--amber) !important;
    color: var(--white) !important;
}

/* Fix link colours inside cards */
.lmibc-product-card a {
    color: var(--ink);
    text-decoration: none;
}

.lmibc-product-card a:hover {
    color: var(--amber);
    text-decoration: none;
}

/* Price link */
.lmibc-product-card .price,
.lmibc-product-card .price a,
.lmibc-product-card .price span,
.lmibc-product-card .woocommerce-Price-amount {
    color: var(--amber) !important;
    text-decoration: none;
}

.lmibc-shop-highlights > .lmibc-container { text-align: center; }

.lmibc-shop-highlights .lmibc-btn-outline {
    margin-top: 8px;
    display: inline-block;
}

/* ============================================================
   BRAND BRIDGE — slim personality break between shop & brand
   ============================================================ */
.lmibc-bridge {
    margin-top: 50px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px 20px;
    position: relative;
    text-align: center;
}

.lmibc-bridge__raccoon {
    position: absolute;
    left: clamp(12px, 4vw, 80px);
    bottom: 0;
    height: clamp(80px, 12vw, 140px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 4px 8px rgba(42,37,32,0.12));
}

.lmibc-bridge__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: normal;
    color: var(--ink);
    margin: 0;
    line-height: 1.4;
}

.lmibc-bridge__arrow {
    font-size: 1.1rem;
    color: var(--airmail-blue);
    filter: brightness(0.7);
    display: block;
    animation: bridgeBounce 1.4s ease-in-out infinite;
}

@keyframes bridgeBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

@media (max-width: 600px) {
    .lmibc-bridge__raccoon { display: none; }
}

/* ============================================================
   3 RACCOONS IN CANADA
   White bg, straight lines, raccoon PNG cutouts
   ============================================================ */
.site-main.lmibc-main .lmibc-raccoons { padding-bottom: 80px; }
.lmibc-raccoons {
    padding: 72px 0 0px;
    background: var(--white);
    position: relative;
}

.lmibc-raccoons .lmibc-container {
    width: 100%;
}

/* Wavy SVG outline frame around content */
.lmibc-raccoons__frame {
    position: relative;
    padding: 40px 48px;
    width: fit-content;
    margin: 0 auto;
}

.lmibc-raccoons__border-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.lmibc-raccoons__inner {
    display: flex;
    align-items: center;
    gap: 56px;
    overflow: hidden;
}

.lmibc-raccoons .lmibc-col-text {
    flex: 1;
    min-width: 0;
}

.lmibc-raccoons .lmibc-col-text {
    text-align: right;
}

.lmibc-raccoons h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--airmail-blue);
}

.lmibc-raccoons p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 24px;
    color: var(--ink);
}

.lmibc-raccoons .lmibc-btn {
    display: inline;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: var(--ink) !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.lmibc-raccoons .lmibc-btn:hover {
    color: var(--airmail-blue) !important;
    background: none !important;
}

/* Main raccoons image (existing field) */
.lmibc-raccoons__main-img {
    width: auto;
    max-width: 280px;
    border-radius: var(--radius-card);
    display: block;
    margin: 0;
}

/* Raccoon character cutouts */
.lmibc-raccoons__chars {
    flex-shrink: 0;
    position: relative;
}

.lmibc-raccoons__char {
    position: absolute;
    bottom: 0;
    object-fit: contain;
    filter: drop-shadow(4px 8px 12px rgba(42,37,32,0.14));
}

/* Stagger the three characters */
.lmibc-raccoons__char--1 {
    left: 0;
    height: 80%;
    z-index: 1;
}
.lmibc-raccoons__char--2 {
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 3;
}
.lmibc-raccoons__char--3 {
    right: 0;
    height: 72%;
    z-index: 2;
}



/* ============================================================
   COMIC TEASER
   Bicolor bar + 2-panel: text left (white), image right (sky)
   ============================================================ */
.lmibc-cmx-teaser {
    position: relative;
    margin-bottom: 50px;
}

/* Top bicolor split bar */
.lmibc-cmx-teaser__bar {
    display: flex;
    height: 48px;
}

.lmibc-cmx-teaser__bar-left {
    flex: 1;
    background: var(--white);
}

.lmibc-cmx-teaser__bar-right {
    flex: 1;
    background: var(--white);
}

/* Two panels */
.lmibc-cmx-teaser__panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lmibc-cmx-teaser__text-panel {
    background: var(--white);
    padding: 24px clamp(24px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lmibc-cmx-teaser__eyebrow {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--airmail-blue) !important;
    margin: 0 0 0.75em !important;
}

.lmibc-cmx-teaser__text-panel h2 {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    color: var(--ink) !important;
    line-height: 1.15 !important;
    margin: 0 0 0.5em !important;
}

.lmibc-cmx-teaser__body {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: var(--ink-mid) !important;
    margin: 0 0 1em !important;
    max-width: 420px;
    padding-left: 1em;
}

.lmibc-cmx-teaser__link { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color 0.2s ease; }
.lmibc-brand-about .lmibc-cmx-teaser__link { padding-left: 1em; }
.lmibc-cmx-teaser__link:hover { color: var(--ink); }

/* Image panel */
.lmibc-cmx-teaser__image-panel {
    background: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px clamp(16px, 3vw, 40px);
    overflow: visible;
}

/* Floating colour blob behind the text */
.lmibc-cmx-teaser__blob {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    border-radius: 38% 62% 55% 45% / 47% 35% 65% 53%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.45;
    z-index: 0;
}

/* Text content sits above blob */
.lmibc-cmx-teaser__eyebrow,
.lmibc-cmx-teaser__text-panel h2,
.lmibc-cmx-teaser__body,
.lmibc-cmx-teaser__link {
    position: relative;
    z-index: 1;
}

/* Comic cover image — floats slightly outside the panel */
.lmibc-cmx-teaser__cover {
    position: relative;
    z-index: 2;
    width: min(250px, 80%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--airmail-blue);
    border-radius: 16px;
    box-shadow: 0 16px 56px rgba(42,37,32,0.22);
    transform: rotate(-1.5deg) translateY(-8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lmibc-cmx-teaser__cover:hover {
    transform: rotate(0deg) translateY(-20px);
    box-shadow: 0 24px 64px rgba(42,37,32,0.28);
}

.lmibc-cmx-teaser__cover-placeholder {
    width: min(300px, 80%);
    aspect-ratio: 1;
    background: var(--white);
    border-radius: 16px;
    opacity: 0.4;
    position: relative;
    z-index: 2;
}

/* ============================================================
   BLOG TEASER — homepage
   ============================================================ */
.lmibc-blog-teaser {
    padding: 64px 0 64px;
    margin: 0 0 60px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.lmibc-blog-teaser::before,
.lmibc-blog-teaser::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    z-index: 2;
    background: repeating-linear-gradient(
        -45deg,
        var(--airmail-red)  0px,
        var(--airmail-red)  10px,
        var(--white)        10px,
        var(--white)        20px,
        var(--airmail-blue) 20px,
        var(--airmail-blue) 30px,
        var(--white)        30px,
        var(--white)        40px
    );
}
.lmibc-blog-teaser::before { top: 0; }
.lmibc-blog-teaser::after  { bottom: 0; }

/* Colour blob — bottom-left, matches blog hero */
.lmibc-blog-teaser__blob {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: clamp(240px, 32vw, 432px);
    height: clamp(224px, 40vh, 400px);
    border-radius: 40% 60% 30% 70% / 50% 30% 70% 50%;
    z-index: 0;
    opacity: 0.65;
}

/* Inner layout: portrait left + text right */
.lmibc-blog-teaser__layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1em;
    position: relative;
    z-index: 10;
    padding-left: 0;
}

/* Polaroid portrait */
.lmibc-blog-teaser__portrait-wrap {
    flex-shrink: 0;
    width: 336px;
    position: relative;
    z-index: 8;
}
.lmibc-blog-teaser__portrait {
    background: var(--white);
    padding: 8px 8px 38px;
    box-shadow: 0 14px 45px rgba(42,37,32,0.20);
    border-radius: 10px;
}
.lmibc-blog-teaser__portrait img,
.lmibc-blog-teaser__portrait-placeholder {
    width: 100%;
    height: 336px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 5px;
    background: var(--sky);
}

/* Text column */
.lmibc-blog-teaser__text {
    flex: 0 1 420px;
    position: relative;
    z-index: 12;
    padding-top: 38px;
}
.lmibc-blog-teaser h2 {
    font-size: clamp(1.92rem, 4.4vw, 3.52rem);
    color: var(--airmail-blue);
    line-height: 1.05;
    margin: 0 0 0.5em;
}
.lmibc-blog-teaser__sub {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--ink);
    margin: 0 0 1.2em;
    max-width: 400px;
    padding-left: 1.5em;
}
.lmibc-blog-teaser .lmibc-btn {
    margin-left: 1.5em;
}

@media (max-width: 1100px) {
    .lmibc-blog-teaser__layout { padding-left: 0; }
    .lmibc-blog-teaser__portrait-wrap { width: 272px; }
    .lmibc-blog-teaser__portrait img { height: 272px; }
    .lmibc-blog-teaser h2 { margin-left: 0; }
}
@media (max-width: 680px) {
    .lmibc-blog-teaser__layout { flex-direction: column; align-items: center; padding-left: 0; }
    .lmibc-blog-teaser__portrait-wrap { width: 90%; max-width: 256px; }
    .lmibc-blog-teaser__portrait img { height: 256px; }
    .lmibc-blog-teaser__text { padding-top: 20px; }
    .lmibc-blog-teaser h2 { margin-left: 0; }
    .lmibc-blog-teaser .lmibc-btn { margin-left: 0; }
}
.lmibc-coming-soon {
    display: inline-block;
    background: var(--butter);
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
}

/* ============================================================
   QUIZ TEASER (commented out in template but keeping styles)
   ============================================================ */
.lmibc-quiz {
    padding: 100px 0;
    background: var(--sage);
    position: relative;
    overflow: hidden;
}

.lmibc-quiz::before {
    content: '';
    position: absolute;
    top: -2px; left: 0;
    width: 100%; height: 80px;
    background: var(--offwhite);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.lmibc-quiz::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 80px;
    background: var(--offwhite);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.lmibc-squiggle-row { display: flex; justify-content: center; margin-bottom: 20px; }
.lmibc-squiggle-svg { width: 160px; color: rgba(255,255,255,0.6); }

.lmibc-quiz h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; color: var(--white); }
.lmibc-quiz p  { font-size: 1.15rem; margin-bottom: 36px; color: var(--white); opacity: 0.92; }

.lmibc-quiz .lmibc-btn {
    background: var(--white); color: var(--ink);
    border-color: var(--white); font-size: 1.05rem; padding: 16px 48px;
}
.lmibc-quiz .lmibc-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.lmibc-newsletter {
    padding: 100px 0 120px;
    background: var(--offwhite);
}

.lmibc-newsletter h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.lmibc-newsletter p  { font-size: 1.05rem; color: var(--ink-mid); margin-bottom: 32px; }

.lmibc-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lmibc-newsletter-form input[type="email"] {
    padding: 14px 24px;
    border: 2.5px solid var(--ink);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 280px;
}

.lmibc-newsletter-form input[type="email"]:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(212,130,74,0.15);
}

.lmibc-newsletter-form button,
.lmibc-newsletter-form input[type="submit"] {
    padding: 14px 32px;
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lmibc-newsletter-form button:hover,
.lmibc-newsletter-form input[type="submit"]:hover {
    background: var(--ink);
    transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-20px) rotate(7deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 1400px) {
    .lmibc-container { max-width: 1280px; }
    .lmibc-hero-content h1 { font-size: 5rem; }
    .lmibc-cat-tile { min-height: 240px; }
}

@media (max-width: 1200px) {
    .lmibc-container { padding: 0 40px; }
    .lmibc-hero-content h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
    .lmibc-cat-tile { min-height: 240px; }
    .lmibc-cat-tile-label span { font-size: 1.3rem; }
    .lmibc-two-col { gap: 48px; }
}

@media (max-width: 1024px) {
    .lmibc-container { padding: 0 32px; }
    .lmibc-hero--fullbg .lmibc-container { padding-top: 60px; padding-bottom: 80px; }
    .lmibc-hero-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
    .lmibc-product-grid { gap: 20px; }
    .lmibc-two-col { gap: 40px; }
}

@media (max-width: 900px) {
    .lmibc-hero--split { grid-template-columns: 1fr; min-height: auto; }
    .lmibc-hero-split-image { height: 50vw; min-height: 260px; }
    .lmibc-hero-split-text { padding: 60px 36px; }
}

@media (max-width: 900px) {
    .lmibc-raccoons__inner { gap: 36px; }
    .lmibc-raccoons__chars { width: clamp(200px, 44vw, 340px); height: clamp(200px, 44vw, 340px); }
    .lmibc-raccoons__frame { padding: 28px 24px; }
    .lmibc-cmx-teaser__panels { grid-template-columns: 1fr; }
    .lmibc-cmx-teaser__panels { grid-template-columns: 1fr; box-shadow: none; }
    .lmibc-cmx-teaser__bar-left,
    .lmibc-cmx-teaser__bar-right { flex: 1; }
    .lmibc-cmx-teaser__image-panel { min-height: 340px; }
    .lmibc-cmx-teaser__cover { transform: rotate(0deg) translateY(-8px); }
}

@media (max-width: 768px) {
    .lmibc-container { padding: 0 24px; }
    .lmibc-two-col { grid-template-columns: 1fr; gap: 32px; }
    .lmibc-reverse { direction: ltr; }
    .lmibc-hero--fullbg { min-height: 75vh; max-height: 75vh; background-image: none !important; }
    .lmibc-hero-split-image { display: none; }
    .lmibc-hero--fullbg .lmibc-container { padding-top: 48px; padding-bottom: 80px; }
    .lmibc-hero-content h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
    .lmibc-hero--fullbg::before { width: 200px; height: 200px; top: -20px; right: -20px; }
    .lmibc-hero--fullbg::after { display: none; }
    .lmibc-cat-grid { grid-template-columns: 1fr; gap: 12px; padding: 0 12px; }
    .lmibc-cat-tile { min-height: 160px; border-radius: 12px; }
    .lmibc-cat-tile-label span { font-size: 1rem; }
    .lmibc-cat-tile-label em { display: none; }
    .lmibc-product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .lmibc-shop-highlights h2 { font-size: 1.8rem; margin-bottom: 32px; }
    .lmibc-quiz, .lmibc-newsletter { padding: 72px 0 140px; }
    .lmibc-blog-teaser { padding: 56px 0 56px; }
    .lmibc-blog-teaser .lmibc-col-image img { max-width: 100%; }
    .lmibc-blog-teaser__text { flex: 0 1 auto; }
    .lmibc-raccoons { padding: 56px 0 64px; }
    .lmibc-raccoons__frame { padding: 28px 24px; }
    .lmibc-raccoons__inner { flex-direction: column; gap: 32px; }
    .lmibc-raccoons__inner .lmibc-col-text { padding-top: 24px; }
    .lmibc-raccoons__chars { width: 100%; height: auto; display: flex; align-items: flex-end; justify-content: center; gap: 8px; }
    .lmibc-raccoons__char { position: static; height: auto; width: 30%; transform: none; }
    .lmibc-raccoons__main-img { max-width: 100%; width: 100%; }
    .lmibc-brand-story__text { padding: 40px 24px; }
    .lmibc-cmx-teaser__text-panel { padding: 48px 24px 56px; }
}

@media (max-width: 600px) {
    .lmibc-hero--fullbg { min-height: 70vh; max-height: 70vh; }
    .lmibc-cat-grid { gap: 8px; padding: 0 8px; }
    .lmibc-cat-tile { min-height: 130px; border-radius: 10px; }
    .lmibc-cat-tile-label { padding: 12px 16px; }
    .lmibc-cat-tile-label span { font-size: 0.85rem; }
    .lmibc-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── About the Brand — image left, text right (inverse of comics) ── */
.lmibc-brand-about .lmibc-cmx-teaser__bar-left  { background: var(--sky); }
.lmibc-brand-about .lmibc-cmx-teaser__bar-right { background: var(--white); }
.lmibc-brand-about .lmibc-cmx-teaser__cover {
    width: min(340px, 85%);
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-card);
    transform: rotate(1.5deg) translateY(-8px);
    border: none;
    box-shadow: 0 16px 56px rgba(42,37,32,0.18);
}

@media (max-width: 480px) {
    .lmibc-container { padding: 0 16px; }
    .lmibc-hero--fullbg { min-height: 65vh; max-height: 65vh; }
    .lmibc-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .lmibc-hero-content p { font-size: 0.95rem; }
    .lmibc-btn-hero { padding: 13px 28px; font-size: 0.95rem; }
    .lmibc-cat-tile { min-height: 140px; border-radius: 12px; }
    .lmibc-cat-tile-label { padding: 10px 12px; }
    .lmibc-cat-tile-label span { font-size: 0.9rem; letter-spacing: 0; }
    .lmibc-cat-tile-label em { display: block; }
    .lmibc-product-grid { grid-template-columns: 1fr; }
    .lmibc-newsletter-form { flex-direction: column; align-items: center; gap: 12px; }
    .lmibc-newsletter-form input[type="email"] { width: 100%; }
    .lmibc-newsletter-form button,
    .lmibc-newsletter-form input[type="submit"] { width: 100%; }
}

