/* ==========================================================================
   PLANEFLY /gift — "GIFT BOUTIQUE"  ·  STANDALONE STYLESHEET
   Clean premium digital-gift aesthetic. No shared/brutalist dependencies.
   Warm white canvas · coral signature · soft gold · rounded · layered shadows
   ========================================================================== */

/* ---------- design tokens ------------------------------------------------- */
:root {
    /* color — PlaneFly brand palette (from logo: purple / teal / lime) */
    --bg:        #FBFAFD;   /* cool off-white, purple hint */
    --bg-soft:   #F3EEF8;   /* light purple-gray */
    --surface:   #FFFFFF;
    --ink:       #211A2B;   /* deep purple-black */
    --ink-soft:  #685F73;   /* muted body */
    --line:      #E9E1F1;   /* hairline */
    --coral:     #8040B0;   /* brand purple (primary) */
    --coral-d:   #66318C;   /* purple dark */
    --gold:      #3C9A93;   /* brand teal (secondary) */
    --gold-soft: #D8EFEC;   /* light teal tint */
    --rose:      #F2EAFA;   /* soft purple tint bg */

    /* shadows (soft, layered — NOT brutalist offset) */
    --sh-sm: 0 1px 2px rgba(33,26,43,0.04), 0 2px 8px rgba(33,26,43,0.05);
    --sh-md: 0 4px 12px rgba(33,26,43,0.06), 0 12px 28px rgba(33,26,43,0.07);
    --sh-lg: 0 8px 24px rgba(33,26,43,0.08), 0 24px 56px rgba(33,26,43,0.10);
    --sh-coral: 0 10px 30px rgba(128,64,176,0.28);

    /* radius */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;
    --r-pill: 999px;

    /* type scale (fluid) */
    --fs-display: clamp(2.4rem, 8vw, 4.4rem);
    --fs-h2:      clamp(1.7rem, 5vw, 2.7rem);
    --fs-h3:      clamp(1.15rem, 3vw, 1.4rem);
    --fs-body:    clamp(1rem, 2.5vw, 1.12rem);

    /* spacing */
    --section: clamp(3.5rem, 10vw, 6.5rem);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

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

/* ---------- atmospheric background orbs ---------------------------------- */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.orb-1 {
    width: 46vw; height: 46vw; max-width: 520px; max-height: 520px;
    top: -10vw; right: -12vw;
    background: radial-gradient(circle, rgba(128,64,176,0.26), transparent 70%);
}
.orb-2 {
    width: 50vw; height: 50vw; max-width: 560px; max-height: 560px;
    bottom: -16vw; left: -14vw;
    background: radial-gradient(circle, rgba(60,154,147,0.28), transparent 70%);
}

/* ---------- layout shell -------------------------------------------------- */
.page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(1.2rem, 4vw, 2.2rem) clamp(1.1rem, 4vw, 2.2rem) clamp(2.5rem, 6vw, 4rem);
}

/* ---------- scroll reveal ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- buttons ------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--r-pill);
    padding: 1rem 1.7rem;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.btn i { font-size: 1.15em; }

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-d));
    color: #fff;
    box-shadow: var(--sh-coral);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(128,64,176,0.34); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--sh-sm);
    border: 1px solid var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.btn-wa {
    background: linear-gradient(135deg, #2bd47a, #20b865);
    color: #fff;
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 12px 30px rgba(32,184,101,0.32);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(32,184,101,0.4); }

/* ---------- section scaffolding ------------------------------------------ */
.section { margin-top: var(--section); }

.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #66318C;
    margin-bottom: 0.7rem;
}
.section-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: var(--fs-h2);
    line-height: 1.1;
    letter-spacing: -0.5px;
    max-width: 20ch;
    margin: 0 auto;
}
.section-sub {
    font-size: var(--fs-body);
    color: var(--ink-soft);
    margin-top: 0.7rem;
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251,250,253,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.7rem clamp(1.1rem, 4vw, 2.2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
}
.nav-logo {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--rose);
    flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: -0.2px;
}
.nav-verified { color: var(--coral); font-size: 1rem; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-coral);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.nav-cta i { font-size: 1em; }
.nav-cta:hover { transform: translateY(-2px); background: var(--coral-d); }

/* center menu — hidden on mobile, shown on desktop */
.nav-menu {
    display: none;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.6rem);
    margin: 0;
    padding: 0;
}
.nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 4px 0;
    transition: color 0.2s;
}
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { transform: scaleX(1); }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.hero {
    min-height: calc(100svh - 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 5vw, 3rem) clamp(1.2rem, 5vw, 3rem);
    margin-top: 0;
}
.hero-text { width: 100%; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold-soft);
    color: #2A6B65;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    margin-bottom: clamp(1.3rem, 3.5vw, 1.8rem);
}
.eyebrow i { color: var(--gold); }

.hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: var(--fs-display);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: clamp(1.1rem, 3vw, 1.5rem);
    text-wrap: balance;
}
.hero-title .hl-line-1 { display: block; }
.hero-title em {
    display: block;
    font-style: italic;
    color: var(--coral);
}

.hero-sub {
    font-size: clamp(1.05rem, 2.7vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 48ch;
    margin: 0 auto clamp(1.8rem, 4.5vw, 2.4rem);
    line-height: 1.6;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: clamp(2rem, 5vw, 2.8rem);
}
.hero-cta-row .btn { width: 100%; max-width: 340px; }

/* proof bar — single honest metric + decorative avatars */
.proof-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--sh-md);
    padding: 0.7rem 1.4rem 0.7rem 0.8rem;
    border-radius: var(--r-pill);
}
.avatars { display: inline-flex; }
.ava {
    width: 36px; height: 36px;
    margin-left: -12px;
    border-radius: 50%;
    border: 2.5px solid var(--surface);
    background: var(--c, var(--coral));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ava:first-child { margin-left: 0; }
.ava-more { background: var(--bg-soft); color: var(--ink-soft); }
.proof-text {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    text-align: left;
    white-space: nowrap;
}
.proof-num {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--coral);
}
.proof-label {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.proof-label .l-main {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--ink);
}
.proof-label .l-since {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-soft);
}

/* hero collage — desktop only (hidden on mobile) */
.hero-collage { display: none; }

/* ==========================================================================
   2. TESTIMONI MARQUEE
   ========================================================================== */
.marquee {
    overflow: hidden;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
    display: flex;
    gap: clamp(0.9rem, 2.5vw, 1.4rem);
    width: max-content;
    padding: 0 0.7rem;
    animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testi-card {
    flex: 0 0 auto;
    width: clamp(150px, 42vw, 200px);
    aspect-ratio: 9 / 16;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--sh-md);
    border: 1px solid var(--line);
}
.testi-card img { width: 100%; height: 100%; object-fit: cover; }

/* pixel-art sample cards — square, reversed direction */
.sample-card {
    flex: 0 0 auto;
    width: clamp(210px, 56vw, 294px);
    aspect-ratio: 1 / 1;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--rose);
    box-shadow: var(--sh-md);
    border: 1px solid var(--line);
}
.sample-card img { width: 100%; height: 100%; object-fit: cover; }
.marquee-track--rev { animation-direction: reverse; animation-duration: 34s; }

@media (prefers-reduced-motion: reduce) {
    .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
    .marquee-track { animation: none; }
}

/* ==========================================================================
   3. KATALOG — uniform card grid, equal heights, aligned footers
   ========================================================================== */
.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.3rem, 3.5vw, 1.9rem);
    align-items: stretch;
}

.gift-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    display: flex;
    overflow: visible;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.gift-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.gift-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.gift-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    background: var(--rose);
}
.gift-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gift-card:hover .gift-cover img { transform: scale(1.06); }

.gift-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-sm);
}

/* Best Seller — featured card highlight + mencolok badge */
.gift-card--featured {
    border-color: #E8B04B;
    box-shadow: 0 0 0 2px rgba(232,176,75,0.55), var(--sh-lg);
}
.gift-card--featured:hover {
    box-shadow: 0 0 0 2px rgba(232,176,75,0.7), var(--sh-lg);
}

.gift-badge-best {
    position: absolute;
    top: -12px; right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #FFC65C, #F59E0B 55%, #E07A00);
    color: #4A2A00;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    box-shadow: 0 6px 16px rgba(224,122,0,0.45);
    border: 1.5px solid rgba(255,255,255,0.7);
    animation: bestPulse 2.2s var(--ease) infinite;
}
.gift-badge-best i { font-size: 0.9rem; }

@keyframes bestPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
    .gift-badge-best { animation: none; }
}

.gift-body {
    padding: clamp(1.3rem, 3vw, 1.7rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.gift-name {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: var(--fs-h3);
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 0.55rem;
}
.gift-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 1.4rem;
    flex: 1;
}
.gift-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.gift-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.gift-price strong { font-size: 1.25rem; font-weight: 800; color: var(--ink); }

.gift-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--ink);
    font-size: 1.15rem;
    transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.gift-card:hover .gift-btn { background: var(--coral); color: #fff; transform: rotate(0deg) scale(1.08); }

/* ==========================================================================
   4. WHY
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.9rem, 2.5vw, 1.4rem);
}
.why-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    padding: clamp(1.3rem, 3vw, 1.8rem) clamp(1.1rem, 2.5vw, 1.5rem);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--coral);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.why-item:nth-child(2) .why-icon { background: var(--gold-soft); color: var(--gold); }
.why-item:nth-child(3) .why-icon { background: #EAF6DC; color: #5C8A2C; }
.why-item:nth-child(4) .why-icon { background: #EFE9F6; color: var(--ink); }
.why-item h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
}
.why-item p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; }

/* ==========================================================================
   5. FAQ
   ========================================================================== */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    overflow: hidden;
    transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: var(--sh-md); }
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(0.98rem, 2.5vw, 1.08rem);
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    padding: 1.2rem 1.4rem;
}
.faq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rose);
    color: var(--coral);
    font-size: 0.95rem;
    transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(135deg); background: var(--coral); color: #fff; }

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-panel { max-height: 600px; }
.faq-panel p {
    padding: 0 1.4rem 1.3rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ==========================================================================
   6. FINAL CTA + FOOTER
   ========================================================================== */
.final-cta {
    position: relative;
    text-align: center;
    background: linear-gradient(150deg, #211A2B, #2E2440);
    color: #fff;
    border-radius: var(--r-lg);
    padding: clamp(2.6rem, 7vw, 4.2rem) clamp(1.4rem, 5vw, 3rem);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.final-cta::before {
    content: "";
    position: absolute;
    top: -30%; right: -10%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(128,64,176,0.5), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}
.final-cta::after {
    content: "";
    position: absolute;
    bottom: -40%; left: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(60,154,147,0.42), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}
.final-title {
    position: relative;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: var(--fs-h2);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 0.7rem;
}
.final-sub {
    position: relative;
    color: rgba(255,255,255,0.78);
    font-size: var(--fs-body);
    max-width: 40ch;
    margin: 0 auto 1.9rem;
}
.final-cta .btn-wa { position: relative; }

.site-footer {
    text-align: center;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}
.site-footer p {
    font-size: 0.82rem;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}
.site-footer i { color: var(--coral); }

/* ==========================================================================
   CLEAN SOCIAL-PROOF POPUP
   ========================================================================== */
.sp-pop {
    position: fixed;
    bottom: 18px;
    left: 18px;
    z-index: 8500;
    width: min(310px, calc(100% - 36px));
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    padding: 13px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.sp-pop.show { opacity: 1; visibility: visible; transform: none; }
.sp-ava {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #EAF3EE;
    color: #4DA877;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.sp-body { min-width: 0; flex: 1; }
.sp-line { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.3; }
.sp-line .sp-n { color: var(--ink); font-weight: 800; }
.sp-p {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--coral-d);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-t { font-size: 0.72rem; color: #6F675F; margin-top: 1px; }
.sp-x {
    position: absolute;
    top: 8px; right: 9px;
    width: 20px; height: 20px;
    border: none;
    background: var(--bg-soft);
    color: var(--ink-soft);
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sp-x:hover { background: var(--rose); color: var(--coral-d); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 700px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-cta-row { flex-direction: row; justify-content: center; }
    .hero-cta-row .btn { width: auto; }
}

/* show navbar center menu on tablet+ */
@media (min-width: 768px) {
    .nav-inner { justify-content: center; }
    .nav-menu { display: flex; }
    .nav-brand { margin-right: auto; }
    .nav-cta { margin-left: auto; }
}

/* hero two-column layout + collage on desktop */
@media (min-width: 980px) {
    .hero {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(2rem, 4vw, 3.8rem);
        align-items: center;
        text-align: left;
        min-height: calc(100svh - 90px);
        padding-top: clamp(1rem, 2.5vw, 1.75rem);
        padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
    }
    .hero-sub { margin-left: 0; margin-right: 0; }
    .hero-cta-row { justify-content: flex-start; align-items: flex-start; }
    .hero-title { font-size: clamp(3rem, 4.4vw, 4.4rem); }

    .hero-collage {
        display: block;
        position: relative;
        min-height: 400px;
    }
    .collage-card {
        position: absolute;
        margin: 0;
        width: 62%;
        max-width: 300px;
        border-radius: var(--r-md);
        overflow: hidden;
        background: var(--surface);
        border: 3px solid var(--surface);
        box-shadow: var(--sh-lg);
        transition: transform 0.45s var(--ease);
    }
    .collage-card img { width: 100%; height: auto; display: block; }
    .cc-1 { top: 4%;  left: 2%;  transform: rotate(-7deg); z-index: 1; }
    .cc-2 { top: 26%; right: 0;  transform: rotate(5deg);  z-index: 2; }
    .cc-3 { bottom: 2%; left: 14%; transform: rotate(-3deg); z-index: 3; }
    .hero-collage:hover .cc-1 { transform: rotate(-9deg) translateY(-6px); }
    .hero-collage:hover .cc-2 { transform: rotate(7deg)  translateY(-6px); }
    .hero-collage:hover .cc-3 { transform: rotate(-2deg) translateY(-8px); }
}

@media (min-width: 1024px) {
    .catalog-grid { gap: 2.1rem; }
    .marquee { width: 100%; margin-left: 0; transform: none; }
}
