/* =========================================================
   Suzie Party Rentals - Main Stylesheet
   A playful, modern, colorful look for an event rental brand.
   ========================================================= */

/* ---------- Tokens ---------- */
/* Palette tuned to match the Suzie Party Rentals logo:
   teal, hot pink, yellow, purple, with a coral accent. */
:root {
    --pink:        #ff4d9a;   /* hot pink — letter "u" */
    --pink-soft:   #ffe0ec;
    --teal:        #14b8b8;   /* turquoise — letter "S" */
    --teal-soft:   #d4f5f5;
    --cyan:        #2dd4d4;
    --yellow:      #ffd93b;   /* letter "z" */
    --yellow-soft: #fff3cc;
    --purple:      #a855f7;   /* letter "i" */
    --purple-soft: #f3e8ff;
    --indigo:      #9b51e0;
    --orange:      #ff7a5a;   /* coral — letter "e" */
    --orange-soft: #ffe1d6;
    --blue:        #4dabf7;
    --red:         #ff5252;

    --ink:         #1a1138;   /* deep indigo-purple to harmonize with palette */
    --ink-soft:    #2e2456;
    --muted:       #6e6a8a;
    --line:        #ecedf6;
    --bg:          #ffffff;
    --bg-soft:     #fff8fb;
    --bg-section:  #faf6ff;

    /* Primary brand gradient — pink → teal (matches concept-2 logo: pink dominant, teal banner) */
    --grad-warm:   linear-gradient(135deg, #ff4d9a 0%, #14b8b8 100%);
    /* Cool — teal → blue */
    --grad-cool:   linear-gradient(135deg, #14b8b8 0%, #4dabf7 100%);
    /* Fresh, bouncy — teal → cyan */
    --grad-fresh:  linear-gradient(135deg, #14b8b8 0%, #2dd4d4 100%);
    /* Sunny — yellow → coral */
    --grad-sunny:  linear-gradient(135deg, #ffd93b 0%, #ff7a5a 100%);
    /* Pop — purple → pink (used on the big pre-footer CTA card) */
    --grad-pop:    linear-gradient(135deg, #a855f7 0%, #ff4d9a 100%);
    /* Rainbow — for special accents (hero, decorative) */
    --grad-rainbow: linear-gradient(135deg, #14b8b8 0%, #ff4d9a 50%, #a855f7 100%);

    --shadow-sm:   0 4px 14px rgba(26, 17, 56, 0.07);
    --shadow:      0 14px 34px rgba(26, 17, 56, 0.10);
    --shadow-lg:   0 24px 60px rgba(26, 17, 56, 0.15);
    --shadow-pop:  0 18px 40px rgba(255, 77, 154, 0.35);

    --radius-sm:   12px;
    --radius:      20px;
    --radius-lg:   28px;
    --radius-xl:   40px;

    --ease:        cubic-bezier(.22,.61,.36,1);

    --font-display: 'Fredoka', system-ui, sans-serif;
    --font-body:    'Poppins', system-ui, sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--pink);
    text-decoration: none;
    transition: color .2s var(--ease);
}
a:hover { color: var(--indigo); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0 0 .6em;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 820px; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 0; top: -100px;
    background: var(--pink); color: #fff;
    padding: 12px 18px; z-index: 9999;
    border-radius: 0 0 12px 0;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
    white-space: nowrap;
    line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--pink);
    color: #fff !important;
    box-shadow: var(--shadow-pop);
}
.btn-primary:hover { background: #ef3d8a; box-shadow: 0 18px 40px rgba(255, 77, 154, 0.45); }

.btn-outline {
    background: transparent;
    color: var(--ink) !important;
    border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff !important; }

.btn-white {
    background: #fff;
    color: var(--ink) !important;
    box-shadow: var(--shadow-sm);
}
.btn-dark {
    background: var(--ink);
    color: #fff !important;
}
.btn-dark:hover { background: var(--pink); }

/* ---------- Section heads ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-soft);
    color: var(--pink);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 12px;
}
.section-head { margin-bottom: 50px; max-width: 720px; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.title-highlight {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

/* ---------- Confetti shapes (whole-page decorative) ---------- */
.suzie-confetti {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.confetti {
    position: absolute;
    width: 14px; height: 14px;
    background: var(--pink);
    border-radius: 3px;
    opacity: .18;
    animation: floatY 9s ease-in-out infinite alternate;
}
.confetti.c1 { top: 12%; left: 4%; background: var(--yellow); transform: rotate(15deg); }
.confetti.c2 { top: 30%; right: 6%; background: var(--cyan); border-radius: 50%; animation-delay: -2s; }
.confetti.c3 { top: 55%; left: 9%; background: var(--purple); transform: rotate(-25deg); animation-delay: -4s; }
.confetti.c4 { top: 78%; right: 4%; background: var(--orange); animation-delay: -1s; }
.confetti.c5 { top: 88%; left: 22%; background: var(--teal); border-radius: 50%; animation-delay: -3s; }
.confetti.c6 { top: 18%; left: 48%; background: var(--pink); border-radius: 50%; animation-delay: -5s; opacity: .12; }
@keyframes floatY { 0% { transform: translateY(0) rotate(0); } 100% { transform: translateY(-30px) rotate(40deg); } }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header { position: sticky; top: 0; z-index: 100; transition: box-shadow .25s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(15,21,48,.06); }

.topbar {
    background: var(--ink);
    color: #fff;
    font-size: .85rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-link { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.topbar-link:hover { color: var(--yellow); }
.topbar-tag { color: rgba(255,255,255,.7); }
.topbar-tag i { color: var(--teal); margin-right: 4px; }

.topbar-socials { display: flex; gap: 8px; }
.topbar-socials a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    color: #fff;
    transition: background .2s, transform .2s;
}
.topbar-socials a:hover { background: var(--pink); transform: translateY(-2px); }

@media (max-width: 720px) {
    .topbar-hide-mobile { display: none; }
    .topbar-inner { padding: 8px 16px; font-size: .8rem; gap: 12px; }
}

.mainbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(180%) blur(10px);
}
.mainbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 24px;
    gap: 20px;
    min-height: 80px;
    box-sizing: border-box;
}
@media (max-width: 720px) {
    .mainbar-inner { padding: 5px 16px; min-height: 70px; }
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: var(--ink);
}

/* When the brand is a logo image (no icon mark + text) */
.brand-link-image { padding: 0; }
.brand-logo {
    height: 70px;
    width: auto;
    display: block;
    transition: transform .3s var(--ease);
}
.brand-link-image:hover .brand-logo { transform: scale(1.04); }
@media (max-width: 960px) {
    .brand-logo { height: 64px; }
}
@media (max-width: 720px) {
    .brand-logo { height: 52px; }
}
/* If a logo is uploaded via WordPress Appearance → Customize → Site Identity */
.custom-logo-link { display: inline-block; }
.custom-logo {
    height: 70px;
    width: auto !important;
    max-width: none;
    transition: transform .3s var(--ease);
}
.custom-logo-link:hover .custom-logo { transform: scale(1.04); }
@media (max-width: 960px) { .custom-logo { height: 64px; } }
@media (max-width: 720px) { .custom-logo { height: 52px; } }
.brand-logo-footer {
    height: 80px;
    width: auto;
    background: #fff;
    border-radius: 18px;
    padding: 6px 10px;
    box-shadow: var(--shadow-sm);
}
.footer-brand-image {
    display: inline-block;
    margin-bottom: 18px;
}
.brand-mark {
    width: 50px; height: 50px;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: var(--shadow-pop);
    transform: rotate(-6deg);
    transition: transform .3s var(--ease);
}
.brand-link:hover .brand-mark { transform: rotate(6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
}
.brand-slogan {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.primary-menu {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.primary-menu li { position: relative; }
.primary-menu a {
    color: var(--ink);
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background .2s, color .2s;
    display: inline-block;
}
.primary-menu a:hover,
.primary-menu li.current-menu-item > a {
    background: var(--pink-soft);
    color: var(--pink);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 44px; height: 44px;
    padding: 0;
    position: relative;
}
.menu-toggle span {
    position: absolute;
    left: 10px; right: 10px;
    height: 3px;
    border-radius: 3px;
    background: var(--ink);
    transition: transform .25s var(--ease), opacity .25s;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
    .menu-toggle { display: block; }
    .primary-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 18px 20px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform .25s var(--ease), opacity .25s;
    }
    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .primary-menu a {
        display: block;
        padding: 12px 14px;
    }
    .nav-cta { align-self: flex-start; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #fce7f3 0%, #e0f7f7 50%, #f3e8ff 100%);
    padding: 90px 0 140px;
    overflow: hidden;
    isolation: isolate;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}
@media (max-width: 900px) {
    .hero { padding: 60px 0 110px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.hero-shapes { position: absolute; inset: 0; z-index: 0; }
.shape { position: absolute; display: block; }
.shape-blob {
    width: 320px; height: 320px;
    border-radius: 42% 58% 65% 35% / 45% 50% 50% 55%;
    filter: blur(2px);
    opacity: .55;
    animation: morph 12s ease-in-out infinite alternate;
}
.blob-1 { top: -60px; left: -100px; background: radial-gradient(circle, #ffd1e3 0%, #ff7ab2 60%, transparent 70%); }
.blob-2 { bottom: -140px; right: -120px; background: radial-gradient(circle, #d4f5f5 0%, #5edada 60%, transparent 70%); animation-delay: -4s; }
.shape-circle { border-radius: 50%; }
.circle-1 { width: 90px; height: 90px; background: var(--yellow); top: 18%; left: 48%; opacity: .55; }
.circle-2 { width: 50px; height: 50px; background: var(--teal); bottom: 22%; left: 8%; opacity: .55; }
.shape-star { color: var(--orange); font-size: 1.4rem; animation: spin 16s linear infinite; }
.star-1 { top: 12%; right: 12%; font-size: 1.8rem; }
.star-2 { bottom: 30%; left: 18%; color: var(--purple); }
.star-3 { top: 38%; right: 30%; color: var(--pink); font-size: 1.1rem; }

@keyframes morph {
    0% { border-radius: 42% 58% 65% 35% / 45% 50% 50% 55%; }
    100% { border-radius: 55% 45% 35% 65% / 60% 40% 60% 40%; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-text { position: relative; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--pink);
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 22px;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.3rem);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 700;
}
.title-emoji { display: inline-block; transform-origin: 50% 80%; animation: wiggle 3s ease-in-out infinite; }
@keyframes wiggle {
    0%, 80%, 100% { transform: rotate(0); }
    85% { transform: rotate(-14deg); }
    90% { transform: rotate(12deg); }
    95% { transform: rotate(-8deg); }
}

.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 540px; }
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 36px; }
@media (max-width: 900px) { .hero-cta { justify-content: center; } }

.hero-trust {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 900px) { .hero-trust { justify-content: center; } }
.hero-trust-item { display: flex; flex-direction: column; line-height: 1.1; }
.hero-trust-item strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.hero-trust-item span { color: var(--muted); font-size: .85rem; }

/* hero art */
.hero-art {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-art-stack {
    position: relative;
    width: 100%;
    height: 360px;
    max-width: 480px;
}
.hero-card {
    position: absolute;
    background: #fff;
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
    border: 1px solid rgba(255,255,255,.7);
    animation: floatCard 6s ease-in-out infinite alternate;
}
.hero-card h4 { margin: 0 0 2px; font-size: 1rem; }
.hero-card p  { margin: 0; color: var(--muted); font-size: .85rem; }
.hero-card-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-card-1 { top: 0;   left: 6%;  animation-delay: 0s; }
.hero-card-2 { top: 38%; right: 0;  animation-delay: -2s; }
.hero-card-3 { bottom: 0; left: 14%; animation-delay: -4s; }
@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-14px); }
}

@media (max-width: 900px) {
    .hero-art { min-height: 0; }
    .hero-art-stack {
        height: auto;
        max-width: 360px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .hero-card {
        position: static;
        width: 100%;
        min-width: 0;
        animation: none;
    }
    .hero-card-1, .hero-card-2, .hero-card-3 {
        top: auto; bottom: auto; left: auto; right: auto;
    }
    .hero-bubble { display: none; }
}

.hero-bubble {
    position: absolute;
    width: 110px; height: 110px;
    border-radius: 50%;
    z-index: -1;
}
.bubble-a { top: 18%; right: 22%; background: var(--grad-sunny); opacity: .5; filter: blur(8px); }
.bubble-b { bottom: 25%; right: 38%; background: var(--grad-cool); opacity: .55; width: 140px; height: 140px; filter: blur(10px); }
.bubble-c { top: 60%; left: 8%; background: var(--grad-fresh); opacity: .5; width: 80px; height: 80px; filter: blur(6px); }

.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-curve svg { width: 100%; height: 90px; display: block; }

/* ===========================================================
   TRUST STRIP
   =========================================================== */
.trust-strip {
    background: #fff;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink-soft);
    font-weight: 500;
}
.trust-item i {
    width: 40px; height: 40px;
    background: var(--pink-soft);
    color: var(--pink);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.trust-item:nth-child(2) i { background: var(--teal-soft); color: var(--teal); }
.trust-item:nth-child(3) i { background: var(--yellow-soft); color: #e8a500; }
.trust-item:nth-child(4) i { background: var(--purple-soft); color: var(--purple); }

/* ===========================================================
   CATEGORIES
   =========================================================== */
.categories {
    padding: 90px 0;
    background: var(--bg-section);
    position: relative;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.cat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 26px;
    text-decoration: none !important;
    color: var(--ink) !important;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--grad-warm);
    transition: height .3s var(--ease);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { height: 10px; }
.cat-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.cat-card p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }

.cat-icon {
    width: 62px; height: 62px;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: var(--grad-warm);
    transition: transform .3s var(--ease);
}
.cat-card:hover .cat-icon { transform: rotate(-8deg) scale(1.05); }
.cat-link { font-family: var(--font-display); font-weight: 600; color: var(--pink); display: inline-flex; align-items: center; gap: 6px; }

.cat-1::before { background: var(--grad-warm); } .cat-1 .cat-icon { background: var(--grad-warm); }
.cat-2::before { background: var(--grad-cool); } .cat-2 .cat-icon { background: var(--grad-cool); }
.cat-3::before { background: var(--grad-fresh); } .cat-3 .cat-icon { background: var(--grad-fresh); }
.cat-4::before { background: var(--grad-sunny); } .cat-4 .cat-icon { background: var(--grad-sunny); }
.cat-5::before { background: var(--grad-pop); } .cat-5 .cat-icon { background: var(--grad-pop); }
.cat-6::before { background: linear-gradient(135deg, var(--purple), var(--teal)); } .cat-6 .cat-icon { background: linear-gradient(135deg, var(--purple), var(--teal)); }

/* ===========================================================
   RENTALS GRID
   =========================================================== */
.rentals { padding: 90px 0; background: #fff; }

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.rentals-grid-wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.rental-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    isolation: isolate;
    display: flex;
    flex-direction: column;
}
.rental-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 110px;
    background: var(--grad-warm);
    z-index: -1;
    border-radius: var(--radius) var(--radius) 0 0;
}
.rental-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    z-index: -1;
}
.rental-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.rental-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}
.rental-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.95);
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--pink);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.rental-tag {
    background: rgba(255,255,255,.95);
    color: var(--ink);
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
}
.rental-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.rental-card p { color: var(--muted); font-size: .92rem; flex-grow: 1; }
.rental-card-foot { margin-top: 14px; padding-top: 16px; border-top: 1px dashed var(--line); }
.rental-cta {
    font-family: var(--font-display); font-weight: 600;
    color: var(--pink); display: inline-flex; align-items: center; gap: 6px;
}
.rental-cta:hover { color: var(--indigo); gap: 10px; }

/* gradient variants for cards — keyed to the new logo palette */
.grad-pink-orange::before { background: linear-gradient(135deg, #ff4d9a, #ff7a5a); }
.grad-pink-orange .rental-icon { color: #ff4d9a; }
.grad-blue-cyan::before { background: linear-gradient(135deg, #14b8b8, #4dabf7); }
.grad-blue-cyan .rental-icon { color: #14b8b8; }
.grad-purple-pink::before { background: linear-gradient(135deg, #a855f7, #ff4d9a); }
.grad-purple-pink .rental-icon { color: #a855f7; }
.grad-yellow-orange::before { background: linear-gradient(135deg, #ffd93b, #ff7a5a); }
.grad-yellow-orange .rental-icon { color: #e8a500; }
.grad-teal-green::before { background: linear-gradient(135deg, #14b8b8, #2dd4d4); }
.grad-teal-green .rental-icon { color: #14b8b8; }
.grad-red-pink::before { background: linear-gradient(135deg, #ff7a5a, #ff4d9a); }
.grad-red-pink .rental-icon { color: #ff7a5a; }
.grad-indigo-blue::before { background: linear-gradient(135deg, #a855f7, #4dabf7); }
.grad-indigo-blue .rental-icon { color: #a855f7; }

.rentals-cta-row { text-align: center; margin-top: 50px; }

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.how-it-works {
    padding: 90px 0;
    background: var(--bg-section);
    position: relative;
}
.steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.step {
    flex: 1 1 240px;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .3s var(--ease);
}
.step:hover { transform: translateY(-6px); }
.step-num {
    position: absolute;
    top: -22px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px;
    background: var(--grad-warm);
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-pop);
}
.step:nth-child(3) .step-num { background: var(--grad-cool); box-shadow: 0 14px 30px rgba(20,184,184,.35); }
.step:nth-child(5) .step-num { background: var(--grad-fresh); box-shadow: 0 14px 30px rgba(168,85,247,.35); }
.step-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 22px;
    background: var(--pink-soft); color: var(--pink);
    font-size: 1.8rem;
    margin: 16px auto 18px;
}
.step:nth-child(3) .step-icon { background: var(--teal-soft); color: var(--teal); }
.step:nth-child(5) .step-icon { background: var(--purple-soft); color: var(--purple); }
.step h3 { font-size: 1.2rem; }
.step p  { color: var(--muted); font-size: .95rem; margin: 0; }
.step-arrow {
    color: var(--line);
    align-self: center;
    font-size: 1.4rem;
}
@media (max-width: 900px) { .step-arrow { transform: rotate(90deg); } }

/* ===========================================================
   WHY US
   =========================================================== */
.why-us { padding: 90px 0; background: #fff; }
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
}

.why-us-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
}
.why-blob {
    position: absolute;
    border-radius: 42% 58% 65% 35% / 45% 50% 50% 55%;
    animation: morph 9s ease-in-out infinite alternate;
}
.blob-pink {
    inset: 8% 8% 24% 24%;
    background: var(--grad-warm);
    opacity: .85;
}
.blob-yellow {
    inset: 20% 18% 8% 8%;
    background: var(--grad-cool);
    opacity: .82;
    animation-delay: -3s;
}
.why-mid {
    position: absolute;
    inset: 24% 24% 24% 24%;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--pink);
    box-shadow: var(--shadow-lg);
}
.why-mid i { font-size: 3rem; margin-bottom: 8px; }
.why-mid span { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); }

.why-icon {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 18px;
    background: #fff;
    color: var(--pink);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite alternate;
}
.why-icon.i1 { top: 0; left: 8%; color: var(--orange); }
.why-icon.i2 { top: 4%; right: 0; color: var(--pink); animation-delay: -1s; }
.why-icon.i3 { bottom: 10%; right: 6%; color: var(--yellow); background: #fff; animation-delay: -2s; }
.why-icon.i4 { bottom: 0; left: 14%; color: var(--cyan); animation-delay: -3s; }

.why-lead { font-size: 1.1rem; color: var(--ink-soft); }
.why-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: var(--grad-warm);
    color: #fff;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(255,77,154,.3);
}
.why-list li strong { display: block; color: var(--ink); margin-bottom: 2px; font-family: var(--font-display); }
.why-list li div { color: var(--muted); }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { padding: 90px 0; background: var(--bg-section); }
.testimonial-rating { color: var(--muted); }
.stars { color: var(--orange); margin-right: 6px; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.testimonial {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 6px solid transparent;
    border-image: var(--grad-warm) 1;
    transition: transform .3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::after {
    content: '\201C';
    position: absolute;
    top: 16px; right: 22px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--pink-soft);
}
.t-stars { color: var(--orange); margin-bottom: 12px; }
.testimonial p { color: var(--ink-soft); margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.t-author small { color: var(--muted); }

/* ===========================================================
   GALLERY STRIP
   =========================================================== */
.gallery-strip { padding: 90px 0; background: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
}
.g {
    border-radius: var(--radius-sm);
    background: linear-gradient(110deg, #efeff3 30%, #f8f8fa 50%, #efeff3 70%);
    background-size: 200% 100%;
    animation: tile-skeleton 1.4s ease-in-out infinite;
    display: block;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    overflow: hidden;
    position: relative;
    text-decoration: none;
}
.g img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.g:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.g:hover img { transform: scale(1.06); }
.g1 { grid-column: span 2; grid-row: span 2; background: var(--grad-warm); }
.g2 { grid-column: span 2; background: var(--grad-cool); }
.g3 { grid-column: span 2; background: var(--grad-fresh); }
.g4 { grid-column: span 2; background: var(--grad-sunny); }
.g5 { grid-column: span 2; background: var(--grad-pop); }
.g6 { grid-column: span 2; background: linear-gradient(135deg, var(--purple), var(--teal)); }
@media (max-width: 800px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
    .g1 { grid-column: span 2; }
}

/* ===========================================================
   QUOTE FORM
   =========================================================== */
.quote-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(255,77,154,.12), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(20,184,184,.12), transparent 40%),
        var(--bg-section);
}
.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 900px) { .quote-inner { grid-template-columns: 1fr; } }
.quote-points { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 8px; }
.quote-points li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); }
.quote-points i { color: var(--teal); }
.quote-contact a {
    display: inline-flex; align-items: center; gap: 8px;
    margin-right: 16px;
    color: var(--ink);
    font-weight: 600;
}
.quote-contact a:hover { color: var(--pink); }

.quote-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) { .quote-form .form-row { grid-template-columns: 1fr; } }
.quote-form label {
    display: block;
    margin-bottom: 14px;
}
.quote-form span {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--line);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255,77,154,.12);
}
.quote-form .btn-block { margin-top: 8px; }
.form-fineprint { color: var(--muted); font-size: .8rem; text-align: center; margin: 12px 0 0; }

/* ===========================================================
   PRE-FOOTER CTA
   =========================================================== */
.prefooter-cta { padding: 0 0 90px; background: #fff; }
.prefooter-card {
    background: var(--grad-pop);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.prefooter-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    top: -100px; right: -80px;
}
.prefooter-card::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    bottom: -80px; left: 20%;
}
.prefooter-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.2);
    padding: 6px 14px; border-radius: 999px;
    font-family: var(--font-display); font-weight: 600;
    color: #fff; margin-bottom: 14px;
    font-size: .9rem;
}
.prefooter-card h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.prefooter-card p { color: rgba(255,255,255,.92); margin: 0; max-width: 480px; }
.prefooter-actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 2; }
@media (max-width: 800px) {
    .prefooter-card { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--ink); color: #cfd2e6; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 70px 24px 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; padding: 50px 24px 30px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-slogan { color: rgba(255,255,255,.65); }

.footer-about p { color: rgba(255,255,255,.7); }

.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
}
.footer-socials a:hover { background: var(--pink); transform: translateY(-3px); }

.footer-widget-title {
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 3px;
    background: var(--pink);
    border-radius: 3px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-contact-list li { display: flex; gap: 12px; color: rgba(255,255,255,.75); }
.footer-contact-list i { color: var(--pink); margin-top: 4px; }
.footer-contact-list a { color: rgba(255,255,255,.85); }
.footer-contact-list a:hover { color: var(--yellow); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px;
    flex-wrap: wrap; gap: 14px;
    font-size: .9rem;
    color: rgba(255,255,255,.6);
}
.footer-bottom-inner p { margin: 0; }
.footer-policy { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; }
.footer-policy a { color: rgba(255,255,255,.7); }
.footer-policy a:hover { color: var(--yellow); }

/* ===========================================================
   GENERIC PAGES, BANNER, ARCHIVE
   =========================================================== */
.page-banner {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #fce7f3 0%, #e0f7f7 50%, #f3e8ff 100%);
    overflow: hidden;
    text-align: center;
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }
.page-crumbs {
    margin-top: 18px;
    color: var(--muted);
    font-size: .9rem;
}
.page-crumbs a { color: var(--pink); }
.page-crumbs span { margin: 0 6px; }

.page-banner-shapes { position: absolute; inset: 0; pointer-events: none; }
.b-c1 { width: 110px; height: 110px; background: var(--yellow); top: 20%; left: 8%; opacity: .5; }
.b-c2 { width: 70px; height: 70px; background: var(--teal); bottom: 20%; right: 12%; opacity: .55; }
.b-s1 { color: var(--orange); top: 30%; right: 18%; font-size: 1.4rem; animation: spin 14s linear infinite; }
.b-s2 { color: var(--purple); bottom: 28%; left: 20%; font-size: 1.2rem; animation: spin 14s linear infinite reverse; }

.rentals-page { padding: 60px 0 90px; background: #fff; }

.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-pill {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all .25s var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
}
.filter-pill:hover { border-color: var(--pink); color: var(--pink); }
.filter-pill.is-active {
    background: var(--grad-warm);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-pop);
}

/* Archive */
.archive-banner { padding: 70px 0 40px; background: var(--bg-section); text-align: center; }
.archive-section { padding: 60px 0 90px; }
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.post-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-image {
    display: block;
    aspect-ratio: 16/10;
    background: var(--grad-warm);
    color: #fff;
    overflow: hidden;
}
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.post-card-body { padding: 24px; }
.post-card-date { color: var(--muted); font-size: .85rem; }
.post-card-date i { color: var(--pink); margin-right: 4px; }
.post-card-title { font-size: 1.25rem; margin: 8px 0 10px; }
.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--pink); }
.post-card-excerpt { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.post-card-link { font-family: var(--font-display); font-weight: 600; color: var(--pink); display: inline-flex; align-items: center; gap: 6px; }
.post-card-link:hover { gap: 10px; }

.pagination-wrap { margin-top: 40px; text-align: center; }
.pagination-wrap .nav-links { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.pagination-wrap a, .pagination-wrap span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid var(--line);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
}
.pagination-wrap .current { background: var(--grad-warm); color: #fff; border-color: transparent; }
.pagination-wrap a:hover { border-color: var(--pink); color: var(--pink); }

/* Single + page */
.single-section { padding: 60px 0 90px; }
.page-article-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; }
.page-article-body { font-size: 1.05rem; color: var(--ink-soft); }
.page-article-body h2, .page-article-body h3 { color: var(--ink); margin-top: 1.6em; }
.page-article-body a { color: var(--pink); }
.page-article-body img { border-radius: var(--radius-sm); margin: 1.2em 0; }
.page-article-body blockquote {
    border-left: 4px solid var(--pink);
    background: var(--bg-soft);
    padding: 18px 22px;
    border-radius: 0 14px 14px 0;
    margin: 1.6em 0;
}
.post-meta { display: inline-flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .9rem; }
.post-meta i { color: var(--pink); margin-right: 4px; }
.post-tags { margin-top: 30px; color: var(--muted); font-size: .9rem; }
.post-tags i { color: var(--pink); margin-right: 6px; }
.post-tags a { color: var(--ink); background: var(--bg-section); padding: 4px 12px; border-radius: 999px; margin-right: 4px; }
.post-tags a:hover { background: var(--pink-soft); color: var(--pink); }
.post-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin: 40px 0;
}
.post-nav > div { background: #fff; border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.post-nav span { color: var(--pink); font-size: .85rem; font-family: var(--font-display); font-weight: 600; }
.post-nav strong { display: block; color: var(--ink); margin-top: 6px; }
.post-nav-next { text-align: right; }
@media (max-width: 600px) { .post-nav { grid-template-columns: 1fr; } .post-nav-next { text-align: left; } }

/* 404 */
.error-404 {
    padding: 100px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 50%, #e0f7f7 100%);
}
.error-inner { max-width: 600px; margin: 0 auto; }
.error-balloon {
    width: 100px; height: 100px;
    margin: 0 auto 30px;
    background: var(--grad-warm);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-pop);
    animation: floatCard 4s ease-in-out infinite alternate;
}
.error-404 h1 {
    font-size: clamp(5rem, 18vw, 9rem);
    line-height: 1;
    margin-bottom: 10px;
    background: var(--grad-pop);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.error-404 h1 span {
    display: inline-block;
    background: var(--grad-fresh);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.error-actions { display: flex; gap: 14px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* Search form */
.search-form {
    display: inline-flex; align-items: center;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
}
.search-form .search-field {
    border: 0; outline: none;
    font-family: inherit; font-size: 1rem;
    padding: 8px 8px 8px 0;
    background: transparent;
}
.search-form .search-submit {
    width: 40px; height: 40px;
    background: var(--grad-warm);
    color: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    max-width: 520px;
    margin: 0 auto;
}
.empty-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: var(--pink-soft);
    color: var(--pink);
    border-radius: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}

/* Comments */
.comments-area { margin-top: 60px; }
.comments-title { margin-bottom: 24px; }
.comment-list { list-style: none; padding: 0; }
.comment-list li { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
#commentform input[type="text"], #commentform input[type="email"], #commentform input[type="url"], #commentform textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--line);
    border-radius: 14px;
    font-family: inherit;
    margin-top: 4px;
}
#commentform .form-submit input,
#commentform button {
    background: var(--grad-warm);
    color: #fff;
    border: 0;
    padding: 12px 26px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
}

/* ===========================================================
   UTIL & REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   CATALOG TOOLBAR — filter pills + view toggle
   =========================================================== */
.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}
.catalog-toolbar .filter-bar { margin-bottom: 0; justify-content: flex-start; }
.view-toggle {
    display: inline-flex;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
}
.view-btn {
    width: 40px; height: 40px;
    border: 0; background: transparent;
    border-radius: 999px;
    cursor: pointer;
    color: var(--muted);
    font-size: 1rem;
    transition: all .2s var(--ease);
    display: inline-flex; align-items: center; justify-content: center;
}
.view-btn:hover { color: var(--pink); }
.view-btn.is-active {
    background: var(--grad-warm);
    color: #fff;
    box-shadow: var(--shadow-pop);
}

.catalog-empty {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto 30px;
    max-width: 460px;
    color: var(--muted);
    background: var(--bg-section);
    border-radius: var(--radius);
    border: 2px dashed var(--line);
}
.catalog-empty i { color: var(--pink); margin-right: 6px; }

/* ===========================================================
   PACKAGES PAGE
   =========================================================== */
.packages-page { padding: 60px 0 90px; background: #fff; }

.packages-grid.is-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.package-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.package-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 8px;
    background: var(--grad-warm);
    z-index: 0;
    border-radius: var(--radius) var(--radius) 0 0;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.package-card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.package-icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    background: var(--grad-warm);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}
.package-tagline {
    background: var(--pink-soft);
    color: var(--pink);
    padding: 5px 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .82rem;
}

.package-name { font-size: 1.25rem; margin-bottom: 8px; }
.package-price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line);
}
.package-price .from { color: var(--muted); font-size: .85rem; }
.package-price .amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
    flex-grow: 1;
}
.package-includes li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--ink-soft);
    font-size: .94rem;
}
.package-includes li i {
    color: var(--teal);
    background: var(--teal-soft);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-actions {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.package-link {
    font-family: var(--font-display); font-weight: 600;
    color: var(--pink);
    display: inline-flex; align-items: center; gap: 6px;
}
.package-link:hover { color: var(--purple); gap: 10px; }

/* Per-package gradient accent on the top bar + price */
.package-card.grad-pink-orange::before { background: linear-gradient(135deg, #ff4d9a, #ff7a5a); }
.package-card.grad-pink-orange .package-icon { background: linear-gradient(135deg, #ff4d9a, #ff7a5a); }
.package-card.grad-blue-cyan::before { background: linear-gradient(135deg, #14b8b8, #4dabf7); }
.package-card.grad-blue-cyan .package-icon { background: linear-gradient(135deg, #14b8b8, #4dabf7); }
.package-card.grad-purple-pink::before { background: linear-gradient(135deg, #a855f7, #ff4d9a); }
.package-card.grad-purple-pink .package-icon { background: linear-gradient(135deg, #a855f7, #ff4d9a); }
.package-card.grad-yellow-orange::before { background: linear-gradient(135deg, #ffd93b, #ff7a5a); }
.package-card.grad-yellow-orange .package-icon { background: linear-gradient(135deg, #ffd93b, #ff7a5a); }
.package-card.grad-teal-green::before { background: linear-gradient(135deg, #14b8b8, #2dd4d4); }
.package-card.grad-teal-green .package-icon { background: linear-gradient(135deg, #14b8b8, #2dd4d4); }
.package-card.grad-red-pink::before { background: linear-gradient(135deg, #ff7a5a, #ff4d9a); }
.package-card.grad-red-pink .package-icon { background: linear-gradient(135deg, #ff7a5a, #ff4d9a); }
.package-card.grad-indigo-blue::before { background: linear-gradient(135deg, #a855f7, #4dabf7); }
.package-card.grad-indigo-blue .package-icon { background: linear-gradient(135deg, #a855f7, #4dabf7); }

/* List view — horizontal layout */
.packages-grid.is-list-view {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.is-list-view .package-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
}
.is-list-view .package-card::before {
    top: 0; bottom: 0; right: auto; width: 6px; height: auto;
    border-radius: var(--radius) 0 0 var(--radius);
}
.is-list-view .package-card-head {
    display: flex; flex-direction: column; align-items: flex-start;
    margin: 0; gap: 8px;
    min-width: 130px;
}
.is-list-view .package-name { font-size: 1.15rem; margin: 0 0 4px; }
.is-list-view .package-price { margin: 0; padding: 0; border: 0; }
.is-list-view .package-price .amount { font-size: 1.6rem; }
.is-list-view .package-includes {
    display: flex; flex-wrap: wrap; gap: 6px 16px;
    margin: 8px 0 0;
}
.is-list-view .package-includes li { font-size: .85rem; }
.is-list-view .package-actions { flex-direction: column; align-items: flex-end; min-width: 160px; }
@media (max-width: 800px) {
    .is-list-view .package-card { grid-template-columns: 1fr; }
    .is-list-view .package-actions { align-items: flex-start; }
}

.packages-note {
    margin-top: 40px;
    background: var(--bg-section);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; gap: 14px; align-items: flex-start;
    color: var(--ink-soft);
}
.packages-note i {
    color: var(--purple);
    font-size: 1.4rem;
    margin-top: 4px;
}
.packages-note p { margin: 0; }
.packages-note a { color: var(--pink); font-weight: 600; }

/* ===========================================================
   GALLERY PAGE
   =========================================================== */
.gallery-page { padding: 60px 0 90px; background: #fff; }

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 200px;
    gap: 14px;
}
.gallery-tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--grad-warm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

.gallery-tile {
    background: linear-gradient(110deg, #efeff3 30%, #f8f8fa 50%, #efeff3 70%);
    background-size: 200% 100%;
    animation: tile-skeleton 1.4s ease-in-out infinite;
}
.gallery-tile > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.gallery-tile:hover > img { transform: scale(1.06); }
@keyframes tile-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Vary tile sizes for masonry feel */
.gallery-tile:nth-child(5n+1) { grid-row: span 2; }
.gallery-tile:nth-child(7n+3) { grid-column: span 2; }
@media (max-width: 700px) {
    .gallery-tile:nth-child(7n+3) { grid-column: span 1; }
}

.gallery-tile-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: rgba(255,255,255,.85);
    text-align: center;
    padding: 16px;
    font-family: var(--font-display);
}
.gallery-tile-inner i { font-size: 2rem; margin-bottom: 8px; opacity: .8; }
.gallery-tile-inner span { font-weight: 600; }

.gallery-tile figcaption {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15,21,48,.85) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
    color: #fff;
    opacity: .6;
    transition: opacity .3s var(--ease);
}
.gallery-tile:hover figcaption { opacity: 1; }
.tile-cat {
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-family: var(--font-display); font-weight: 600;
    align-self: flex-start;
    margin-bottom: 6px;
}
.tile-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }

/* Reuse the grad-* classes for tile colors */
.gallery-tile.grad-pink-orange { background: linear-gradient(135deg, #ff4d9a, #ff7a5a); }
.gallery-tile.grad-blue-cyan { background: linear-gradient(135deg, #14b8b8, #4dabf7); }
.gallery-tile.grad-purple-pink { background: linear-gradient(135deg, #a855f7, #ff4d9a); }
.gallery-tile.grad-yellow-orange { background: linear-gradient(135deg, #ffd93b, #ff7a5a); }
.gallery-tile.grad-teal-green { background: linear-gradient(135deg, #14b8b8, #2dd4d4); }
.gallery-tile.grad-red-pink { background: linear-gradient(135deg, #ff7a5a, #ff4d9a); }
.gallery-tile.grad-indigo-blue { background: linear-gradient(135deg, #a855f7, #4dabf7); }

.gallery-cta {
    margin-top: 50px;
    text-align: center;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
}
.gallery-cta h3 { font-size: 1.5rem; margin-bottom: 8px; }
.gallery-cta p { color: var(--muted); margin-bottom: 18px; }

/* ===========================================================
   FAQ PAGE
   =========================================================== */
.faq-page { padding: 60px 0 90px; background: #fff; }

.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.faq-group-title {
    display: flex; align-items: center; gap: 14px;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.faq-group-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: var(--grad-warm);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-pop);
}
.faq-group:nth-child(2) .faq-group-icon { background: var(--grad-cool); box-shadow: 0 12px 24px rgba(20,184,184,.25); }
.faq-group:nth-child(3) .faq-group-icon { background: var(--grad-pop); box-shadow: 0 12px 24px rgba(168,85,247,.25); }
.faq-group:nth-child(4) .faq-group-icon { background: var(--grad-sunny); box-shadow: 0 12px 24px rgba(255,217,59,.25); }
.faq-group:nth-child(5) .faq-group-icon { background: var(--grad-fresh); box-shadow: 0 12px 24px rgba(20,184,184,.25); }

.faq-list { display: grid; gap: 10px; }

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 2px solid var(--line);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] {
    border-color: var(--pink);
    box-shadow: 0 8px 24px rgba(255,77,154,.10);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    font-size: 1.02rem;
    user-select: none;
    line-height: 1.4;
}
.faq-question { flex: 1; min-width: 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:hover { color: var(--pink); }

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    transition: transform .25s var(--ease), background .25s, color .25s;
}
.faq-toggle-icon i {
    font-size: .8rem;
    line-height: 1;
    display: block;
}
.faq-item[open] .faq-toggle-icon {
    background: var(--pink);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--ink-soft);
    line-height: 1.7;
    animation: faqOpen .3s var(--ease);
}
.faq-answer p { margin: 0; }
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-help-card {
    margin: 60px auto 0;
    max-width: 760px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex; gap: 24px; align-items: flex-start;
}
.faq-help-icon {
    width: 60px; height: 60px;
    flex-shrink: 0;
    border-radius: 18px;
    background: var(--grad-warm);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-pop);
}
.faq-help-card h3 { margin: 0 0 6px; font-size: 1.25rem; }
.faq-help-card p { color: var(--muted); margin: 0 0 16px; }
.faq-help-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) {
    .faq-help-card { flex-direction: column; }
}

/* ===========================================================
   QUOTE PAGE
   =========================================================== */
.quote-page { padding: 60px 0 90px; background: #fff; }
.quote-page-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .quote-page-grid { grid-template-columns: 1fr; }
}

.quote-side { display: grid; gap: 14px; }
.quote-side-card {
    background: var(--bg-section);
    border-radius: var(--radius);
    padding: 20px 22px;
    border-left: 4px solid var(--pink);
}
.quote-side-card:nth-child(2) { border-left-color: var(--teal); }
.quote-side-card:nth-child(3) { border-left-color: var(--purple); }
.quote-side-card h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    display: flex; align-items: center; gap: 8px;
}
.quote-side-card h3 i { color: var(--pink); }
.quote-side-card:nth-child(2) h3 i { color: var(--teal); }
.quote-side-card:nth-child(3) h3 i { color: var(--purple); }
.quote-side-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.quote-side-contact {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-top: 10px;
}
.quote-side-contact h4 { margin: 0 0 12px; font-size: 1rem; }
.quote-side-contact a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    color: var(--ink);
    font-weight: 500;
}
.quote-side-contact a i { color: var(--pink); width: 18px; }
.quote-side-contact a:hover { color: var(--pink); }
.quote-side-hours { font-size: .85rem; color: var(--muted); margin: 12px 0 0; display: flex; align-items: center; gap: 8px; }
.quote-side-hours i { color: var(--teal); }

.quote-form-full {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.qf-section {
    border: 0; padding: 0; margin: 0 0 32px;
}
.qf-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0 0 16px;
    padding: 0;
}
.qf-step {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow-pop);
    flex-shrink: 0;
}
.qf-checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
@media (max-width: 600px) { .qf-checks { grid-template-columns: repeat(2, 1fr); } }

.qf-check {
    display: block;
    position: relative;
    cursor: pointer;
}
.qf-check input {
    position: absolute; opacity: 0; pointer-events: none;
}
.qf-check span {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 14px;
    border: 2px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-weight: 500;
    transition: all .2s var(--ease);
    font-size: .92rem;
}
.qf-check span i {
    color: var(--pink);
    width: 18px;
    text-align: center;
}
.qf-check:hover span { border-color: var(--pink); color: var(--pink); }
.qf-check input:checked + span {
    background: var(--grad-warm);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-pop);
}
.qf-check input:checked + span i { color: #fff; }

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-story { padding: 80px 0; background: #fff; }
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-story-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-story-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1em; }
.about-story-text strong { color: var(--pink); font-weight: 700; }
.about-story-text em { color: var(--teal); font-style: italic; }

.about-story-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
}
.story-blob {
    position: absolute;
    border-radius: 42% 58% 65% 35% / 45% 50% 50% 55%;
    animation: morph 10s ease-in-out infinite alternate;
}
.story-blob.blob-pink {
    inset: 10% 6% 24% 24%;
    background: var(--grad-warm);
    opacity: .88;
}
.story-blob.blob-teal {
    inset: 24% 24% 10% 6%;
    background: var(--grad-cool);
    opacity: .82;
    animation-delay: -3s;
}
.story-mid {
    position: absolute;
    inset: 30% 30%;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink);
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.story-icon {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: #fff;
    color: var(--pink);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite alternate;
}
.story-icon.i1 { top: 4%; left: 10%; color: var(--orange); }
.story-icon.i2 { top: 8%; right: 6%; color: var(--pink); animation-delay: -1s; }
.story-icon.i3 { bottom: 12%; right: 4%; color: var(--yellow); animation-delay: -2s; }
.story-icon.i4 { bottom: 4%; left: 12%; color: var(--teal); animation-delay: -3s; }

/* Stats strip */
.about-stats {
    padding: 60px 0;
    background: var(--grad-warm);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-stats::before, .about-stats::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.about-stats::before { top: -120px; left: -100px; }
.about-stats::after { bottom: -150px; right: -120px; }
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    color: rgba(255,255,255,.9);
    font-size: .95rem;
}

/* Values */
.about-values { padding: 90px 0; background: var(--bg-section); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.value-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Team */
.about-team { padding: 90px 0; background: #fff; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.team-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    border: 2px solid var(--line);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow);
}
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-role {
    display: block;
    color: var(--pink);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 12px;
}
.team-card p { color: var(--muted); margin: 0; font-size: .92rem; font-style: italic; }

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-methods { padding: 60px 0 30px; background: #fff; }
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.contact-card {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    text-decoration: none !important;
    color: var(--ink) !important;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow);
}
.contact-icon {
    width: 58px; height: 58px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-value {
    display: block;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 4px;
    word-break: break-word;
}
.contact-note { display: block; color: var(--muted); font-size: .85rem; }

.contact-main { padding: 60px 0 90px; background: #fff; }
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-main-grid { grid-template-columns: 1fr; }
}

.contact-info { display: grid; gap: 18px; }
.contact-info-card {
    background: var(--bg-section);
    border-radius: var(--radius);
    padding: 24px;
}
.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.contact-info-card h3 i { color: var(--pink); }
.contact-info-card p { color: var(--muted); margin: 0 0 12px; }
.contact-info-list {
    list-style: none;
    padding: 0; margin: 0 0 12px;
    display: grid; gap: 8px;
}
.contact-info-list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink-soft);
}
.contact-info-list i {
    width: 22px; height: 22px;
    background: var(--teal-soft);
    color: var(--teal);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .7rem;
}
.contact-note-small {
    color: var(--muted) !important;
    font-size: .85rem;
    margin: 8px 0 0 !important;
}

.hours-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid; gap: 6px;
}
.hours-list li {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink-soft);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: var(--ink); font-family: var(--font-display); }

.contact-map { border-radius: var(--radius); overflow: hidden; }
.map-placeholder {
    aspect-ratio: 16 / 10;
    background: var(--grad-cool);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}
.map-placeholder i { font-size: 2.4rem; margin-bottom: 10px; opacity: .9; }
.map-placeholder span { font-family: var(--font-display); font-weight: 600; }

.contact-socials {
    background: var(--bg-section);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
}
.contact-socials h4 { margin: 0 0 12px; font-size: 1rem; }
.socials-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.socials-row a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--pink);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s, color .2s;
}
.socials-row a:hover { background: var(--pink); color: #fff; transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
