/* ============================================================
   AVOIRA TRADING — "POP-ARCADE"
   A bold, joyful games & toys storefront.
   Warm cream canvas, candy color-blocks, chunky ink outlines,
   hard offset shadows, rounded Fredoka display, sticker badges.
   Brand color: #FF732F
   ============================================================ */

:root {
    /* Brand + pop palette */
    --primary:       #FF732F;   /* AVOIRA orange */
    --primary-dark:  #E2530E;
    --primary-light: #FF9A5C;
    --primary-soft:  #FFE3D3;

    --grape:         #6C4DF2;
    --grape-soft:    #E7E1FF;
    --sky:           #2BB3FF;
    --sky-soft:      #D6F0FF;
    --yellow:        #FFC83D;
    --yellow-soft:   #FFF0C2;
    --pink:          #FF5DA2;
    --pink-soft:     #FFD9EC;
    --mint:          #19C8A0;
    --mint-soft:     #CFF6EC;
    --accent:        var(--yellow);

    --ink:           #17151F;   /* near-black outline + text */
    --ink-soft:      #5A5766;

    /* Surfaces */
    --paper:         #FFF9F3;   /* warm cream canvas */
    --paper-2:       #FFF2E6;   /* warmer band */
    --paper-deep:    #FCEADB;
    --line:          #ECE3D8;   /* soft hairline (non-pop areas) */
    --line-soft:     #F3ECE3;
    --white:         #ffffff;

    /* Type */
    --display: 'Fredoka', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --sans:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --serif:   var(--display);  /* legacy alias */

    /* Signature pop borders + shadows */
    --bd:       2.5px solid var(--ink);
    --bd-thin:  2px solid var(--ink);
    --pop-sm:   3px 3px 0 var(--ink);
    --pop:      5px 5px 0 var(--ink);
    --pop-lg:   8px 8px 0 var(--ink);
    --pop-color:5px 5px 0 var(--grape);
    --shadow-soft: 0 16px 34px rgba(23,21,31,.10);

    --sale-badge: var(--pink);
    --border: var(--line);
    --radius:    18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.65;
    font-weight: 600;
}

#pageContent { flex: 1 0 auto; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--display);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.08;
}

a { color: var(--primary-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; }
::selection { background: var(--primary); color: #fff; }

a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.accordion-button:focus-visible {
    outline: 3px solid var(--grape);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Pure-white pages (shop + product) — CONTRACT */
body[data-page="shop"], body[data-page="product"],
body.page-shop, body.page-product { background: #ffffff; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 28px; }
.wrap-narrow { max-width: 920px; }
.wrap-wide { max-width: 1480px; }

/* Eyebrow → sticker chip */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--yellow);
    border: var(--bd-thin);
    border-radius: 999px;
    padding: 7px 15px;
    box-shadow: var(--pop-sm);
    margin: 0 0 20px;
}
.eyebrow::before {
    content: "★";
    font-size: 12px; line-height: 1;
    color: var(--ink);
}
.eyebrow.is-centered { /* chip stays inline; center via parent */ }
.eyebrow.on-dark { background: var(--yellow); color: var(--ink); }

.display { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }
.display-xl { font-size: clamp(2.8rem, 6.2vw, 5rem); }
.display-lg { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
.display-md { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

.serif-italic { font-style: italic; font-family: var(--display); }

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 56ch; font-weight: 600; }
.rule { height: 2px; background: var(--ink); border: 0; margin: 0; opacity:.12; }

.section { padding-block: clamp(56px, 8vw, 108px); position: relative; }
.section--tight { padding-block: clamp(44px, 5vw, 70px); }
.band-cream { background: var(--paper-2); }
.band-deep  { background: var(--paper-deep); }
.band-white { background: #ffffff; }
.band-ink   { background: var(--ink); color: #EDEAF5; }
.band-ink h1,.band-ink h2,.band-ink h3,.band-ink h4 { color: #fff; }

.section-head { max-width: 660px; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-index { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--primary); }

/* Helper to center the sticker eyebrow */
.is-centered > .eyebrow, .value-head .eyebrow, .about-hero .eyebrow,
.mission-box .eyebrow, .policy-hero .eyebrow, .cta-inner .eyebrow,
.section-head.is-centered .eyebrow { }

/* ============================================================
   BUTTONS — chunky sticker buttons
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 800;
    font-size: .96rem;
    line-height: 1;
    padding: 15px 26px;
    border-radius: 999px;
    border: var(--bd);
    cursor: pointer;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--pop-sm);
    transition: transform .14s ease, box-shadow .14s ease, background .2s ease, color .2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--pop); }
.btn:active { transform: translate(1px,1px); box-shadow: var(--pop-sm); }

.btn-ink   { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; color: #fff; }

.btn-terra { background: var(--primary); color: #fff; }
.btn-terra:hover { background: var(--primary); color: #fff; }

.btn-outline { background: #fff; color: var(--ink); }
.btn-outline:hover { background: var(--yellow); color: var(--ink); }

.btn-outline-cream { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-outline-cream:hover { background: var(--yellow); color: var(--ink); }

.btn-light-terra { background: var(--yellow); color: var(--ink); }
.btn-light-terra:hover { background: #fff; color: var(--ink); }

.link-arrow {
    font-family: var(--sans);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 3px;
}
.link-arrow i { transition: transform .2s ease; color: var(--primary); }
.link-arrow:hover { color: var(--primary); }
.link-arrow:hover i { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1050; }

.topstrip {
    background: var(--ink);
    color: #F3F0FA;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .02em;
}
.topstrip .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding-block: 9px;
}
.topstrip a { color: #F3F0FA; }
.topstrip a:hover { color: var(--yellow); }
.topstrip .topstrip-note { display: inline-flex; align-items: center; gap: 9px; }
.topstrip .accent-dot { color: var(--yellow); }

.navbar-main {
    background: var(--paper);
    border-bottom: var(--bd);
}
.navbar-main .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding-block: 14px;
}
.brand img { width: 152px; height: auto; display: block; }
.nav-links {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 8px;
}
.nav-links a {
    font-family: var(--sans);
    font-weight: 800; font-size: .92rem;
    color: var(--ink); position: relative;
    padding: 8px 14px; border-radius: 999px;
    border: 2px solid transparent;
    transition: background .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--yellow-soft); border-color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 12px 22px; }

.nav-toggle {
    display: none;
    background: var(--yellow); border: var(--bd);
    color: var(--ink); width: 48px; height: 46px; border-radius: 14px;
    font-size: 1.15rem; cursor: pointer; box-shadow: var(--pop-sm);
}

.mobile-menu {
    display: none;
    background: var(--paper);
    border-bottom: var(--bd);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 14px 28px 22px; }
.mobile-menu li { border-bottom: 2px solid var(--line); }
.mobile-menu a {
    display: block; padding: 14px 4px;
    font-weight: 800; color: var(--ink); font-size: 1.05rem;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { width: 100%; margin-top: 18px; }

/* ============================================================
   HERO — playful split with play-panel
   ============================================================ */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, var(--grape-soft) 0 14px, transparent 15px),
        radial-gradient(circle at 90% 70%, var(--mint-soft) 0 18px, transparent 19px),
        var(--paper);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding-block: clamp(46px, 7vw, 88px);
}
.hero-copy { max-width: 600px; position: relative; z-index: 2; }
.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.7rem, 5.6vw, 4.6rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    color: var(--ink);
}
.hero-title #heroTitle { display: block; margin-bottom: .22em; }
.hero-title #heroHighlight {
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background: linear-gradient(transparent 56%, var(--yellow) 56%);
    color: var(--ink);
    font-size: .42em;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
}
.hero-desc { font-size: 1.1rem; color: var(--ink-soft); margin: 26px 0 32px; max-width: 52ch; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
    display: flex; gap: 14px; margin-top: 40px;
    flex-wrap: wrap;
}
.hero-meta > div {
    background: #fff;
    border: var(--bd-thin);
    border-radius: 16px;
    box-shadow: var(--pop-sm);
    padding: 12px 18px;
}
.hero-meta .stat-num {
    font-family: var(--display); font-weight: 700;
    font-size: 1.5rem; color: var(--primary); line-height: 1;
}
.hero-meta .stat-lbl {
    font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ink-soft); margin-top: 6px; font-weight: 800;
}

/* Hero visual — chunky play panel */
.hero-visual { position: relative; z-index: 1; }
.hero-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--yellow-soft);
    aspect-ratio: 4 / 5;
    border: var(--bd);
    box-shadow: var(--pop-lg);
    z-index: 2;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual::before {
    content: "";
    position: absolute; inset: 22px -22px -22px 22px;
    background: var(--grape);
    border: var(--bd);
    border-radius: var(--radius-xl);
    z-index: 1;
}
.hero-badge {
    position: absolute; left: -20px; bottom: 36px; z-index: 3;
    background: #fff; color: var(--ink);
    border: var(--bd);
    border-radius: 18px; padding: 12px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--pop);
    transform: rotate(-3deg);
}
.hero-badge .hb-mark {
    color: #fff; background: var(--primary);
    width: 40px; height: 40px; border-radius: 12px;
    border: var(--bd-thin);
    display: grid; place-items: center;
    font-size: 1.1rem;
}
.hero-badge .hb-text { font-size: .8rem; line-height: 1.25; color: var(--ink-soft); font-weight: 700; }
.hero-badge strong { display: block; font-family: var(--display); font-size: 1.02rem; color: var(--ink); }

/* ============================================================
   VALUE STRIP — color band of sticker cards
   ============================================================ */
.value-strip { background: var(--grape); color: #fff; border-block: var(--bd); }
.value-head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.value-head h2 { color: #fff; }
.value-head p { color: #E4DEFF; margin-top: 14px; font-weight: 600; }
.value-head .eyebrow { background: var(--yellow); color: var(--ink); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-item {
    background: #fff;
    border: var(--bd);
    border-radius: var(--radius-lg);
    box-shadow: var(--pop);
    padding: 26px 22px;
    transition: transform .16s ease, box-shadow .16s ease;
}
.value-item:hover { transform: translate(-3px,-3px); box-shadow: var(--pop-lg); }
.value-item .v-index { font-family: var(--display); font-weight: 700; color: var(--primary); font-size: 1rem; margin-bottom: 10px; }
.value-item .v-icon {
    color: var(--ink); font-size: 1.4rem; margin-bottom: 16px;
    width: 56px; height: 56px; border-radius: 14px;
    border: var(--bd-thin); display: grid; place-items: center;
}
.value-item:nth-child(1) .v-icon { background: var(--primary-soft); }
.value-item:nth-child(2) .v-icon { background: var(--sky-soft); }
.value-item:nth-child(3) .v-icon { background: var(--mint-soft); }
.value-item:nth-child(4) .v-icon { background: var(--pink-soft); }
.value-item h3 { color: var(--ink); font-size: 1.18rem; margin: 0 0 9px; }
.value-item p { color: var(--ink-soft); font-size: .92rem; margin: 0; font-weight: 600; }

/* ============================================================
   CATEGORY GRID — uniform candy blocks
   ============================================================ */
.cat-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
#categoryTitle { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 6px 0 0; }

.cat-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}
/* override bento spans — uniform blocks now */
.cat-tile, .cat-tile--feature, .cat-tile--tall, .cat-tile--wide, .cat-tile--std {
    grid-column: span 1 !important; grid-row: span 1 !important;
}
.cat-tile {
    position: relative;
    display: block;
    border: var(--bd);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    box-shadow: var(--pop);
    isolation: isolate;
    transition: transform .16s ease, box-shadow .16s ease;
}
.cat-tile:hover { transform: translate(-3px,-3px); box-shadow: var(--pop-lg); }
/* color rotation */
/* category tiles match the category image background (#F5F5F5) so the images blend in seamlessly */
.cat-tile { background: #f5f5f5; }

.cat-tile img {
    position: absolute; inset: 0 0 70px 0;
    width: 100%; height: calc(100% - 70px); object-fit: contain;
    padding: 26px;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    z-index: 1;
}
.cat-tile::after { content: none; }
.cat-tile:hover img { transform: scale(1.06) rotate(-2deg); }

.cat-meta {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    height: 70px; padding: 0 18px;
    background: #fff; border-top: var(--bd);
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
}
.cat-meta > div { min-width: 0; }
.cat-meta .cat-no {
    font-family: var(--sans); font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--primary); font-size: .62rem; margin-bottom: 2px;
}
.cat-meta h3 {
    color: var(--ink); font-size: 1.05rem; margin: 0;
    line-height: 1.05;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-tile--feature .cat-meta h3 { font-size: 1.05rem; }
.cat-explore {
    flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--yellow); border: var(--bd-thin);
    color: var(--ink); display: grid; place-items: center;
    transition: background .18s ease, transform .18s ease;
}
.cat-tile:hover .cat-explore { background: var(--primary); color: #fff; transform: rotate(-8deg); }

/* ============================================================
   MARQUEE / TICKER — yellow band
   ============================================================ */
.ticker {
    background: var(--yellow);
    color: var(--ink);
    overflow: hidden;
    padding-block: 14px;
    border-block: var(--bd);
}
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 34s linear infinite; }
.ticker-track span {
    font-family: var(--display); font-weight: 700;
    font-size: 1.2rem; padding-inline: 26px;
    display: inline-flex; align-items: center; gap: 26px;
    white-space: nowrap;
}
.ticker-track span::after { content: "●"; font-style: normal; color: var(--primary); font-size: .6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ============================================================
   CTA BAND — big orange sticker panel
   ============================================================ */
.cta-band { position: relative; background: var(--paper); }
.cta-band .wrap { position: relative; }
.cta-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 880px; margin-inline: auto;
    background: var(--primary);
    border: var(--bd);
    border-radius: var(--radius-xl);
    box-shadow: var(--pop-lg);
    padding: clamp(40px, 6vw, 72px) clamp(26px, 5vw, 64px);
    color: #fff;
    overflow: hidden;
}
.cta-inner .eyebrow { background: var(--yellow); color: var(--ink); }
#ctaTitle { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0 0 16px; }
#ctaDesc { color: #FFE8DB; margin: 0 auto 30px; max-width: 60ch; font-weight: 600; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* confetti dots */
.cta-inner::before {
    content: ""; position: absolute; top: -30px; right: -30px;
    width: 150px; height: 150px; border-radius: 50%;
    background: radial-gradient(circle, var(--yellow) 0 26%, transparent 27%) 0 0/34px 34px;
    opacity: .5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #C7C3D6; margin-top: auto; border-top: 7px solid var(--primary); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.1); padding-block: clamp(48px, 6vw, 76px); }
.footer-logo { width: 62px; height: auto; display: block; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer-brand-name { font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: #fff; margin: 0 0 14px; line-height: 1; }
.footer-tag { color: #A6A2BA; max-width: 42ch; margin: 0 0 24px; font-weight: 600; }
.footer-contact { display: grid; gap: 10px; font-size: .92rem; }
.footer-contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact i { color: var(--yellow); margin-top: 4px; width: 16px; text-align: center; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: #C7C3D6; font-size: .95rem; font-weight: 700; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: #847FA0; font-weight: 700; }
.footer-bottom .fb-brand { color: #fff; font-weight: 800; }

/* ============================================================
   SHOP PAGE (pure white)
   ============================================================ */
.shop-hero { padding-top: clamp(40px, 6vw, 66px); padding-bottom: 22px; }
.shop-hero .display-lg { margin: 8px 0 0; }
.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; flex-wrap: wrap;
    padding: 18px 0 30px;
    border-bottom: 2px solid var(--line);
    margin-bottom: 36px;
}
#categoryFilter { display: flex; gap: 10px; flex-wrap: wrap; }

.category-btn, .category-badge {
    font-family: var(--sans);
    background: #fff;
    color: var(--ink);
    border: var(--bd-thin);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--pop-sm);
    transition: all .14s ease;
}
.category-btn:hover, .category-badge:hover { transform: translate(-1px,-1px); background: var(--yellow-soft); }
.category-btn.active, .category-badge.active { background: var(--primary); color: #fff; }

.sort-wrap { position: relative; display: inline-flex; align-items: center; }
.sort-wrap label { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-right: 10px; font-weight: 800; }
#sortSelect {
    appearance: none;
    font-family: var(--sans); font-size: .9rem; font-weight: 800;
    color: var(--ink);
    background: #fff;
    border: var(--bd-thin);
    border-radius: 999px;
    padding: 10px 38px 10px 18px;
    cursor: pointer;
    box-shadow: var(--pop-sm);
}
.sort-wrap::after {
    content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    font-size: .7rem; color: var(--ink);
    position: absolute; right: 16px; pointer-events: none;
}

/* ============================================================
   PRODUCT CARD — sticker cards
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard { position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.pcard-media {
    position: relative;
    background: #fff;
    border: var(--bd);
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: grid; place-items: center;
    box-shadow: var(--pop-sm);
    transition: transform .16s ease, box-shadow .16s ease;
}
/* product images sit on white */
.pcard-media img { width: 78%; height: 78%; object-fit: contain; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .pcard-media { transform: translate(-3px,-3px); box-shadow: var(--pop); }
.pcard:hover .pcard-media img { transform: scale(1.07) rotate(-2deg); }

.pcard-sale {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--pink); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
    border: var(--bd-thin); box-shadow: var(--pop-sm);
    transform: rotate(-6deg);
}
.pcard-quick {
    position: absolute; right: 14px; bottom: 14px; z-index: 2;
    background: var(--ink); color: #fff;
    border-radius: 999px; padding: 9px 16px;
    font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    border: var(--bd-thin);
    opacity: 0; transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease;
}
.pcard:hover .pcard-quick { opacity: 1; transform: translateY(0); }

.pcard-body { padding: 18px 4px 4px; }
.pcard-cat { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); font-weight: 800; margin-bottom: 8px; }
.pcard-title {
    font-family: var(--display); font-weight: 600;
    font-size: 1.04rem; line-height: 1.25; margin: 0 0 12px; color: var(--ink);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 2.6em;
}
.pcard-price { display: flex; align-items: baseline; gap: 10px; }
.pcard-price .now { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.pcard-price .now.is-sale { color: var(--pink); }
.pcard-price .was { font-size: .92rem; color: var(--ink-soft); text-decoration: line-through; font-weight: 700; }

.salebadge { background: var(--sale-badge); color:#fff; border-radius: 999px; padding: 3px 10px; }
.salebadgefont { color: var(--pink); font-weight: 800; }

/* ============================================================
   PRODUCT DETAIL (pure white)
   ============================================================ */
.pd-wrap { padding-top: clamp(34px, 5vw, 60px); padding-bottom: clamp(56px, 7vw, 90px); }
.pd-crumb { font-size: .84rem; letter-spacing: .02em; color: var(--ink-soft); margin-bottom: 26px; font-weight: 700; }
.pd-crumb a { color: var(--ink-soft); }
.pd-crumb a:hover { color: var(--primary); }
.pd-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.product-image-frame {
    position: relative;
    background: #ffffff;
    border: var(--bd);
    border-radius: var(--radius-xl);
    aspect-ratio: 1 / 1;
    display: grid; place-items: center;
    overflow: hidden;
    box-shadow: var(--pop-lg);
}
.product-main-img { max-width: 80%; max-height: 80%; object-fit: contain; display: block; }
.pd-info { padding-top: 8px; }
#productCategory { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--grape); border: var(--bd-thin); border-radius: 999px; padding: 5px 13px; font-weight: 800; display: inline-block; margin-bottom: 16px; box-shadow: var(--pop-sm); }
#productTitle { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 18px; }
#productDesc { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.8; margin-bottom: 26px; font-weight: 600; }
#productPrice { margin-bottom: 28px; }
#productPrice .fw-bold, #productPrice span { font-family: var(--display); font-size: 1.7rem; color: var(--ink); font-weight: 700; }
#productPrice .text-danger { color: var(--pink) !important; }
#productPrice .text-decoration-line-through { font-size: 1.15rem; color: var(--ink-soft); font-weight: 700; }
.pd-meta { margin-top: 30px; padding-top: 26px; border-top: 2px solid var(--line); display: grid; gap: 14px; }
.pd-meta div { display: flex; gap: 12px; align-items: center; font-size: .94rem; color: var(--ink-soft); font-weight: 700; }
.pd-meta i { color: var(--primary); width: 18px; text-align: center; }
.send-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--primary); color: #fff; border: var(--bd);
    padding: 15px 30px; border-radius: 999px;
    font-family: var(--sans); font-weight: 800; font-size: 1rem;
    cursor: pointer; box-shadow: var(--pop);
    transition: transform .14s ease, box-shadow .14s ease;
}
.send-btn:hover { color: #fff; transform: translate(-2px,-2px); box-shadow: var(--pop-lg); }
.send-btn:active { transform: translate(1px,1px); box-shadow: var(--pop-sm); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero { text-align: center; max-width: 820px; margin-inline: auto; }
#aboutHeadline { color: var(--ink-soft); font-size: 1.12rem; line-height: 1.8; font-weight: 600; }
.mission-box {
    background: var(--grape);
    border: var(--bd);
    border-radius: var(--radius-xl);
    box-shadow: var(--pop-lg);
    padding: clamp(32px, 5vw, 60px);
    text-align: center;
    max-width: 900px; margin-inline: auto;
    position: relative;
    color: #fff;
}
.mission-box .eyebrow { background: var(--yellow); color: var(--ink); }
.mission-box::before { content: "\201C"; font-family: var(--display); font-weight: 700; color: var(--yellow); font-size: 5rem; line-height: 1; display: block; margin-bottom: -18px; }
#missionText { color: #fff; font-size: 1.14rem; line-height: 1.85; max-width: 62ch; margin-inline: auto; font-weight: 600; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
    background: #fff;
    border: var(--bd);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
    box-shadow: var(--pop);
    transition: transform .16s ease, box-shadow .16s ease;
}
.feature:hover { transform: translate(-3px,-3px); box-shadow: var(--pop-lg); }
.feature i {
    font-size: 1.4rem; color: var(--ink);
    width: 58px; height: 58px; border-radius: 16px;
    border: var(--bd-thin);
    display: grid; place-items: center; margin-bottom: 18px;
}
.feature:nth-child(1) i { background: var(--primary-soft); }
.feature:nth-child(2) i { background: var(--sky-soft); }
.feature:nth-child(3) i { background: var(--mint-soft); }
.feature:nth-child(4) i { background: var(--pink-soft); }
.feature h5 { font-size: 1.16rem; margin: 0 0 10px; font-weight: 700; }
.feature p { color: var(--ink-soft); font-size: .94rem; margin: 0; font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,54px); align-items: start; }
.contact-info .info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 2px solid var(--line); }
.contact-info .info-row:first-of-type { padding-top: 0; }
.contact-info i.icon {
    color: var(--ink); font-size: 1.05rem;
    width: 50px; height: 50px; border-radius: 14px; border: var(--bd-thin);
    display: grid; place-items: center; flex-shrink: 0;
}
.contact-info .info-row:nth-child(1) i.icon { background: var(--primary-soft); }
.contact-info .info-row:nth-child(2) i.icon { background: var(--sky-soft); }
.contact-info .info-row:nth-child(3) i.icon { background: var(--yellow-soft); }
.contact-info .info-row:nth-child(4) i.icon { background: var(--mint-soft); }
.contact-info .info-row strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.06rem; margin-bottom: 4px; }
.contact-info .info-row span { color: var(--ink-soft); font-size: .95rem; font-weight: 600; }
.contact-box { background: var(--ink); color: #EDEAF5; border-radius: var(--radius-lg); border: var(--bd); box-shadow: var(--pop); padding: 32px; }
.contact-box h4 { color: #fff; }
.contact-box p { color: #C7C3D6; font-weight: 600; }
.contact-box .send-btn { width: 100%; background: var(--yellow); color: var(--ink); }
.contact-box .send-btn:hover { background: #fff; color: var(--ink); }
#mapContainer iframe { display: block; border-radius: var(--radius-lg); border: var(--bd); box-shadow: var(--pop); }

/* ============================================================
   POLICY + FAQ
   ============================================================ */
.policy-hero { text-align: center; max-width: 760px; margin-inline: auto; }
.policy-box { max-width: 860px; margin-inline: auto; }
.policy-card {
    background: #fff;
    border: var(--bd);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    text-align: left;
    box-shadow: var(--pop);
}
.policy-card h1,.policy-card h2,.policy-card h3,.policy-card h4 { margin-top: 1.6em; margin-bottom: .5em; }
.policy-card h1:first-child,.policy-card h2:first-child,.policy-card h3:first-child { margin-top: 0; }
.policy-card p, .policy-card li { line-height: 1.85; color: var(--ink-soft); font-weight: 600; }
.policy-card strong { color: var(--ink); font-weight: 800; }
.policy-card a { color: var(--primary); text-decoration: underline; }

.accordion { --bs-accordion-border-color: var(--ink); }
.accordion-item {
    border: var(--bd) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: var(--pop-sm);
}
.accordion-button {
    font-family: var(--display);
    font-weight: 600; font-size: 1.08rem;
    background: #fff !important; color: var(--ink) !important;
    padding: 20px 22px;
    box-shadow: none !important;
}
.accordion-button .me-2 { color: var(--primary); font-family: var(--display); font-weight: 700; }
.accordion-button:not(.collapsed) { background: var(--yellow) !important; color: var(--ink) !important; }
.accordion-button::after {
    background-image: none; content: "\2b";
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--ink); width: auto; height: auto;
    transition: transform .2s ease;
}
.accordion-button:not(.collapsed)::after { content: "\f068"; transform: none; }
.accordion-body { background: #fff; color: var(--ink-soft); line-height: 1.85; padding: 6px 22px 22px; font-weight: 600; }
#faqAccordion .accordion-button { text-align: left; }

/* ============================================================
   GENERIC PAGE HEADER
   ============================================================ */
.page-intro { padding-top: clamp(40px, 6vw, 72px); padding-bottom: 12px; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 440px; margin-inline: auto; order: -1; }
    .pd-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .topstrip .topstrip-hours { display: none; }
}

@media (max-width: 640px) {
    .wrap { padding-inline: 18px; }
    .value-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .feature-grid { grid-template-columns: 1fr; }
    .cat-mosaic { grid-template-columns: 1fr; }
    .hero-meta { gap: 10px; }
    .hero-meta > div { flex: 1 1 40%; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero-badge { left: 8px; }
    .brand img { width: 132px; }
    /* prevent iOS zoom-on-focus (needs >=16px) */
    #sortSelect, .qty-stepper input { font-size: 16px; }
    /* tighter product cards on small phones */
    .pcard-add { padding: 9px 10px; font-size: .8rem; }
    .pcard-title { font-size: .98rem; }
}

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

/* ============================================================
   SHOPPING CART
   ============================================================ */

/* Header cart button + badge */
.cart-btn {
    position: relative;
    background: #fff;
    border: var(--bd);
    border-radius: 14px;
    width: 48px; height: 46px;
    color: var(--ink);
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: var(--pop-sm);
    display: inline-grid; place-items: center;
    transition: transform .14s ease, box-shadow .14s ease, background .2s ease;
}
.cart-btn:hover { transform: translate(-2px,-2px); box-shadow: var(--pop); background: var(--yellow); }
.cart-count {
    position: absolute; top: -9px; right: -9px;
    min-width: 22px; height: 22px; padding: 0 5px;
    background: var(--primary); color: #fff;
    border: 2px solid var(--ink); border-radius: 999px;
    font-family: var(--sans); font-weight: 800; font-size: 11px;
    display: grid; place-items: center; line-height: 1;
}

/* Add-to-cart on product cards */
.pcard-add {
    margin-top: 12px; width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--ink); color: #fff;
    border: var(--bd-thin); border-radius: 999px;
    padding: 10px 16px;
    font-family: var(--sans); font-weight: 800; font-size: .85rem;
    cursor: pointer; box-shadow: var(--pop-sm);
    transition: transform .14s ease, box-shadow .14s ease, background .2s ease;
}
.pcard-add:hover { background: var(--primary); transform: translate(-2px,-2px); box-shadow: var(--pop); }
.pcard-add:active { transform: translate(1px,1px); box-shadow: var(--pop-sm); }

/* Product-detail buy row */
.pd-buy { display: flex; align-items: stretch; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.qty-stepper {
    display: inline-flex; align-items: center;
    border: var(--bd); border-radius: 999px; background: #fff;
    box-shadow: var(--pop-sm); overflow: hidden;
}
.qty-stepper button {
    width: 44px; height: 52px; border: none; background: #fff;
    font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--ink);
    cursor: pointer; line-height: 1;
}
.qty-stepper button:hover { background: var(--yellow); }
.qty-stepper input {
    width: 46px; height: 52px; border: none; border-inline: var(--bd-thin);
    text-align: center; font-family: var(--display); font-weight: 700; font-size: 1.1rem;
    color: var(--ink); background: #fff;
}
.qty-stepper input:focus { outline: none; }
.add-cart-btn {
    flex: 1 1 auto; min-width: 200px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--primary); color: #fff;
    border: var(--bd); border-radius: 999px;
    padding: 14px 28px;
    font-family: var(--sans); font-weight: 800; font-size: 1rem;
    cursor: pointer; box-shadow: var(--pop);
    transition: transform .14s ease, box-shadow .14s ease;
}
.add-cart-btn:hover { color: #fff; transform: translate(-2px,-2px); box-shadow: var(--pop-lg); }
.add-cart-btn:active { transform: translate(1px,1px); box-shadow: var(--pop); }

/* Overlay + slide-in drawer */
.cart-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(23,21,31,.55);
    opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: 0; z-index: 1101;
    height: 100%; width: 420px; max-width: 92vw;
    background: var(--paper);
    border-left: var(--bd);
    display: flex; flex-direction: column;
    transform: translateX(105%);
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
body.cart-open .cart-drawer { transform: translateX(0); }

.cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: var(--bd); background: var(--yellow);
}
.cart-head h3 { margin: 0; font-size: 1.4rem; }
.cart-x {
    width: 40px; height: 40px; border-radius: 12px;
    border: var(--bd-thin); background: #fff; color: var(--ink);
    font-size: 1rem; cursor: pointer; display: grid; place-items: center;
    box-shadow: var(--pop-sm);
}
.cart-x:hover { background: var(--primary); color: #fff; }

.cart-items { flex: 1 1 auto; overflow-y: auto; padding: 18px 22px; }
.cart-row {
    display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: start;
    padding: 16px 0; border-bottom: 2px solid var(--line);
}
.cart-row:first-child { padding-top: 0; }
.cart-thumb {
    width: 64px; height: 64px; border: var(--bd-thin); border-radius: 14px;
    background: #fff; display: grid; place-items: center; overflow: hidden;
}
.cart-thumb img { width: 84%; height: 84%; object-fit: contain; }
.cart-info { min-width: 0; }
.cart-name {
    font-family: var(--display); font-weight: 600; font-size: .95rem; line-height: 1.25;
    color: var(--ink); margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cart-unit { font-size: .82rem; color: var(--ink-soft); font-weight: 700; margin-bottom: 10px; }
.cart-qty {
    display: inline-flex; align-items: center;
    border: var(--bd-thin); border-radius: 999px; overflow: hidden; background: #fff;
}
.cart-qty button {
    width: 30px; height: 30px; border: none; background: #fff; cursor: pointer;
    font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1;
}
.cart-qty button:hover { background: var(--yellow); }
.cart-qty span { min-width: 30px; text-align: center; font-weight: 800; font-size: .9rem; }
.cart-end { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cart-remove {
    width: 28px; height: 28px; border: none; background: transparent; cursor: pointer;
    color: var(--ink-soft); font-size: 1rem; border-radius: 8px;
}
.cart-remove:hover { color: var(--pink); }
.cart-linetotal { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink); white-space: nowrap; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty i { font-size: 2.6rem; color: var(--line); margin-bottom: 16px; display: block; }
.cart-empty p { font-weight: 700; margin: 0 0 20px; }

.cart-foot { border-top: var(--bd); padding: 20px 22px; background: #fff; }
.cart-subtotal-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.cart-subtotal-row span { font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--ink-soft); }
.cart-subtotal-row strong { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.cart-note { font-size: .78rem; color: var(--ink-soft); margin: 0 0 16px; }
.cart-checkout { width: 100%; margin-bottom: 10px; }
.cart-clear {
    width: 100%; background: none; border: none; cursor: pointer;
    color: var(--ink-soft); font-family: var(--sans); font-weight: 700; font-size: .82rem;
    text-decoration: underline; padding: 6px;
}
.cart-clear:hover { color: var(--pink); }

@media (max-width: 480px) {
    .cart-drawer { width: 100%; max-width: 100%; }
}

/* ============================================================
   ABOUT PAGE (redesign)
   ============================================================ */
.ab-hero { background: var(--paper); padding-block: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.ab-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.ab-hero-copy .eyebrow { margin-bottom: 22px; }
.ab-hero-title {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.02em;
    margin: 0 0 22px; color: var(--ink);
}
.hl {
    -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(transparent 56%, var(--yellow) 56%); padding: 0 .06em;
}
.ab-hero #aboutHeadline, .ab-lead {
    font-size: 1.12rem; color: var(--ink-soft); font-weight: 600; max-width: 52ch; margin: 0 0 30px;
}
.ab-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero art collage */
.ab-hero-art { position: relative; aspect-ratio: 1/1; max-width: 440px; width: 100%; margin-inline: auto; }
.ab-art-panel {
    position: absolute; inset: 13%;
    border: var(--bd); border-radius: var(--radius-xl);
    background: var(--grape); box-shadow: var(--pop-lg);
    display: grid; place-items: center;
}
.ab-art-logo { width: 60%; height: auto; display: block; }
.ab-chip {
    position: absolute; width: 64px; height: 64px;
    border-radius: 18px; border: var(--bd); background: #fff;
    display: grid; place-items: center; font-size: 1.5rem; color: var(--ink);
    box-shadow: var(--pop);
}
.ab-chip--1 { top: 0; left: 4%; background: var(--primary-soft); transform: rotate(-8deg); }
.ab-chip--2 { top: 10%; right: 0; background: var(--yellow); transform: rotate(7deg); }
.ab-chip--3 { bottom: 5%; left: 0; background: var(--mint-soft); transform: rotate(6deg); }
.ab-chip--4 { bottom: 0; right: 8%; background: var(--pink-soft); transform: rotate(-7deg); }
.ab-chip--5 { top: 45%; left: -5%; width: 52px; height: 52px; font-size: 1.2rem; background: var(--sky-soft); transform: rotate(10deg); }

/* stats band */
.ab-stats { background: var(--ink); border-block: var(--bd); padding-block: clamp(30px, 4vw, 46px); }
.ab-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ab-stat { text-align: center; color: #fff; padding: 6px 12px; border-left: 2px solid rgba(255,255,255,.14); }
.ab-stat:first-child { border-left: 0; }
.ab-stat-num { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--yellow); line-height: 1; }
.ab-stat-lbl { font-size: .8rem; font-weight: 800; letter-spacing: .04em; color: #C7C3D6; margin-top: 8px; text-transform: uppercase; }

/* mission card */
.ab-mission {
    position: relative; background: var(--grape); color: #fff;
    border: var(--bd); border-radius: var(--radius-xl); box-shadow: var(--pop-lg);
    padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 64px);
    max-width: 920px; margin-inline: auto; text-align: center;
}
.ab-mission .eyebrow { background: var(--yellow); color: var(--ink); }
.ab-mission-mark {
    position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
    width: 56px; height: 56px; border-radius: 16px; border: var(--bd);
    background: var(--yellow); color: var(--ink); display: grid; place-items: center;
    font-size: 1.35rem; box-shadow: var(--pop);
}
.ab-mission #missionText {
    color: #fff; font-family: var(--display); font-weight: 600;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.6;
    max-width: 64ch; margin: 8px auto 0;
}

/* cta */
.ab-cta-section { padding-top: 0; }
.ab-cta {
    background: var(--primary); color: #fff;
    border: var(--bd); border-radius: var(--radius-xl); box-shadow: var(--pop-lg);
    padding: clamp(40px, 6vw, 68px); text-align: center;
}
.ab-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 12px; }
.ab-cta p { color: #FFE8DB; font-weight: 600; max-width: 56ch; margin: 0 auto 26px; }
.ab-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT PAGE (redesign)
   ============================================================ */
.ct-hero { text-align: center; padding-block: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 30px); }
.ct-hero .eyebrow { margin-bottom: 20px; }
.ct-hero-title { font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1; margin: 0 0 18px; color: var(--ink); }
.ct-hero-lead { font-size: 1.1rem; color: var(--ink-soft); font-weight: 600; max-width: 60ch; margin: 0 auto; }

.ct-actions-section { padding-top: 0; }
.ct-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 740px; margin-inline: auto; }
.ct-action {
    position: relative; display: block; text-decoration: none; color: var(--ink);
    background: #fff; border: var(--bd); border-radius: var(--radius-lg);
    box-shadow: var(--pop); padding: 28px 26px 26px;
    transition: transform .16s ease, box-shadow .16s ease;
}
.ct-action:hover { transform: translate(-3px,-3px); box-shadow: var(--pop-lg); color: var(--ink); }
.ct-ico {
    width: 60px; height: 60px; border-radius: 16px; border: var(--bd-thin);
    display: grid; place-items: center; font-size: 1.5rem; color: var(--ink); margin-bottom: 18px;
}
.ct-action--mail .ct-ico { background: var(--primary-soft); }
.ct-action--call .ct-ico { background: var(--sky-soft); }
.ct-action h3 { margin: 0 0 4px; font-size: 1.3rem; }
.ct-action p { margin: 0 0 14px; color: var(--ink-soft); font-weight: 600; font-size: .92rem; }
.ct-val { font-family: var(--display); font-weight: 600; color: var(--primary); font-size: 1rem; word-break: break-word; }
.ct-go {
    position: absolute; top: 22px; right: 22px;
    width: 40px; height: 40px; border-radius: 999px; border: var(--bd-thin);
    background: var(--yellow); color: var(--ink); display: grid; place-items: center;
    transition: transform .18s ease, background .2s ease, color .2s ease;
}
.ct-action:hover .ct-go { background: var(--primary); color: #fff; transform: rotate(-8deg); }

.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 40px); align-items: stretch; }
.ct-panel { background: var(--paper-2); border: var(--bd); border-radius: var(--radius-lg); box-shadow: var(--pop); padding: clamp(28px, 4vw, 44px); }
.ct-panel-title { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 6px 0 24px; }
.ct-rows { display: grid; gap: 2px; margin-bottom: 26px; }
.ct-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 2px solid var(--line); }
.ct-row:last-child { border-bottom: 0; }
.ct-row-ico {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; border: var(--bd-thin);
    background: #fff; display: grid; place-items: center; color: var(--primary); font-size: 1rem;
}
.ct-row strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1rem; margin-bottom: 3px; color: var(--ink); }
.ct-row span { color: var(--ink-soft); font-weight: 600; font-size: .92rem; }
.ct-panel .send-btn { width: 100%; }

.ct-mapwrap { display: flex; flex-direction: column; }
.ct-mapwrap .eyebrow { margin-bottom: 14px; }
.ct-mapwrap #mapContainer {
    flex: 1 1 auto; min-height: 360px;
    border: var(--bd); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--pop); background: var(--paper-deep);
}
.ct-mapwrap #mapContainer iframe { width: 100%; height: 100%; min-height: 360px; border: 0; border-radius: 0; box-shadow: none; display: block; }

/* about + contact responsive */
@media (max-width: 900px) {
    .ab-hero-grid { grid-template-columns: 1fr; }
    .ab-hero-art { order: -1; max-width: 320px; }
    .ab-hero-art .ab-chip--3 { left: 2%; }
    .ab-hero-art .ab-chip--5 { left: 1%; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
    .ab-stat:nth-child(3) { border-left: 0; }
    .ct-actions { grid-template-columns: 1fr; }
    .ct-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .ab-stats-grid { grid-template-columns: 1fr; }
    .ab-stat { border-left: 0; border-top: 2px solid rgba(255,255,255,.14); padding-top: 18px; }
    .ab-stat:first-child { border-top: 0; padding-top: 6px; }
}
