/* =====================================================================
   RAAS Beauty Concepts — Showcase Frontend (mobile-first, responsive)
   Audience: ~80% mobile, then tablet, then desktop.
   No e-commerce: no prices, no cart, no wishlist.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
    --lx-bg: #fffaf8;
    --lx-surface: #ffffff;
    --lx-ink: #1c1416;
    --lx-ink-2: #5a4a4d;
    --lx-muted: #8a7a7d;
    --lx-line: #efe4e1;

    --lx-rose: #d4a5a5;
    --lx-rose-deep: #b87a7a;
    --lx-gold: #c9a96e;
    --lx-blush: #f7e8e3;
    --lx-cream: #fdf4ef;

    --lx-radius: 14px;
    --lx-radius-lg: 22px;
    --lx-shadow-sm: 0 4px 14px rgba(184, 122, 122, 0.08);
    --lx-shadow-md: 0 12px 32px rgba(28, 20, 22, 0.10);

    --lx-header-h: 64px;

    --lx-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    --lx-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--lx-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lx-ink);
    background: var(--lx-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--lx-font-display); font-weight: 600; margin: 0; line-height: 1.2; color: var(--lx-ink); }
p { margin: 0; }

.lx-skip {
    position: absolute; left: -9999px; top: 0;
    background: var(--lx-ink); color: #fff; padding: 10px 14px; z-index: 9999;
}
.lx-skip:focus { left: 12px; top: 12px; }

.lx-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.lx-muted { color: var(--lx-muted); }
.lx-eyebrow {
    display: inline-block;
    font-size: 34px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lx-rose-deep);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.lx-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    min-height: 44px; /* tap target */
    white-space: nowrap;
}
.lx-btn-primary {
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    color: #fff;
    box-shadow: var(--lx-shadow-sm);
}
.lx-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--lx-shadow-md); }
.lx-btn-ghost {
    background: transparent;
    color: var(--lx-ink);
    border: 1px solid var(--lx-ink);
}
.lx-btn-ghost:hover { background: var(--lx-ink); color: #fff; }

/* ---------- Header ---------- */
.lx-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 250, 248, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.lx-header.scrolled { border-bottom-color: var(--lx-line); box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.lx-nav {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--lx-header-h);
    gap: 12px;
}
.lx-logo { display: inline-flex; align-items: center; }
.lx-logo img {
    height: 44px; width: auto;
    object-fit: contain;
    border-radius: 6px;
}
.lx-menu { display: none; }
.lx-menu-cta {
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(192, 85, 106, .25);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.lx-menu-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(192, 85, 106, .32);
    filter: brightness(1.05);
}
.lx-menu-cta i { color: #fff; }
.lx-burger {
    width: 44px; height: 44px;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    border-radius: 10px;
}
.lx-burger span {
    display: block; width: 22px; height: 2px;
    background: var(--lx-ink); border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.lx-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lx-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.lx-drawer {
    position: fixed; top: 0; right: 0;
    width: min(86vw, 340px);
    height: 100dvh;
    background: var(--lx-surface);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,.2,.2,1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
}
.lx-drawer.open { transform: translateX(0); }
.lx-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--lx-line);
}
.lx-drawer-head .lx-logo img { height: 38px; }
.lx-drawer-close {
    width: 40px; height: 40px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--lx-ink);
}
.lx-drawer nav { display: flex; flex-direction: column; padding: 8px 0; }
.lx-drawer nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px;
    font-size: 16px; font-weight: 500;
    border-bottom: 1px solid var(--lx-line);
}
.lx-drawer nav a i { color: var(--lx-rose-deep); width: 20px; text-align: center; }
.lx-drawer nav a:active { background: var(--lx-blush); }
.lx-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(20, 14, 16, 0.45);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
    z-index: 150;
}
.lx-drawer-overlay.show { opacity: 1; pointer-events: auto; }
body.lx-no-scroll { overflow: hidden; }

/* ---------- Section ---------- */
.lx-section {
    padding: 48px 0;
}
.lx-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 0 8px;
}
.lx-section-head h2 {
    font-size: clamp(26px, 5vw, 40px);
    margin-bottom: 10px;
}
.lx-section-head p { font-size: 15px; }

/* ---------- Hero ---------- */
.lx-hero {
    position: relative;
    min-height: calc(100dvh - var(--lx-header-h));
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 48px 16px;
    background:
        radial-gradient(1200px 600px at 50% -10%, var(--lx-blush) 0%, transparent 60%),
        linear-gradient(180deg, var(--lx-cream) 0%, var(--lx-bg) 100%);
    overflow: hidden;
}
.lx-hero::before, .lx-hero::after {
    content: ""; position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: .55; pointer-events: none;
}
.lx-hero::before { width: 280px; height: 280px; background: var(--lx-blush); top: -40px; left: -60px; }
.lx-hero::after  { width: 320px; height: 320px; background: #f3e1d3; bottom: -80px; right: -80px; }
.lx-hero-inner { position: relative; max-width: 820px; }
.lx-hero-title {
    font-size: clamp(32px, 8vw, 64px);
    line-height: 1.05;
    margin-bottom: 16px;
}
.lx-hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lx-hero-sub {
    font-size: clamp(15px, 2.4vw, 18px);
    color: var(--lx-ink-2);
    max-width: 560px;
    margin: 0 auto 26px;
}
.lx-hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* ---------- Trust strip ---------- */
.lx-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 24px 16px;
    background: var(--lx-surface);
    border-top: 1px solid var(--lx-line);
    border-bottom: 1px solid var(--lx-line);
}
.lx-trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; color: var(--lx-ink-2);
}
.lx-trust-item i {
    color: var(--lx-rose-deep);
    font-size: 18px;
    width: 26px; text-align: center;
}

/* ---------- Product grid ---------- */
.lx-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.lx-card {
    background: var(--lx-surface);
    border-radius: var(--lx-radius);
    overflow: hidden;
    box-shadow: var(--lx-shadow-sm);
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lx-card:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow-md); }
.lx-card-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lx-cream);
}
.lx-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.lx-card:hover .lx-card-media img { transform: scale(1.05); }
.lx-card-body {
    padding: 12px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.lx-card-title {
    font-family: var(--lx-font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--lx-ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}
.lx-quickview {
    align-self: stretch;
    font-size: 12px;
    padding: 10px 14px;
    min-height: 40px;
}

/* ---------- Catalogue toolbar ---------- */
.lx-shop-toolbar {
    display: flex; flex-direction: column; gap: 10px;
    padding: 0 4px 18px;
}
.lx-search { position: relative; }
.lx-search i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--lx-muted);
}
.lx-search input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid var(--lx-line);
    border-radius: 999px;
    font: inherit;
    background: #fff;
    min-height: 44px;
}
.lx-search input:focus { outline: 2px solid var(--lx-rose); outline-offset: 1px; }
.lx-sort {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--lx-ink-2);
}
.lx-sort select {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--lx-line);
    border-radius: 999px;
    background: #fff;
    font: inherit;
    min-height: 44px;
}

/* ---------- Promo / Visit CTA ---------- */
.lx-promo {
    margin: 24px 16px;
    padding: 36px 22px;
    text-align: center;
    border-radius: var(--lx-radius-lg);
    background: linear-gradient(135deg, #2a1c1f, #4a2f33);
    color: #fff;
    box-shadow: var(--lx-shadow-md);
}
.lx-promo h2 {
    color: #fff;
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 10px;
}
.lx-promo p {
    color: rgba(255,255,255,.85);
    margin-bottom: 22px;
    font-size: 15px;
}
.lx-promo .lx-eyebrow { color: var(--lx-gold); }

/* ---------- Modal (quick view) ---------- */
.lx-modal {
    position: fixed; inset: 0;
    background: rgba(20, 14, 16, .55);
    display: none;
    align-items: center; justify-content: center;
    z-index: 300;
    padding: 16px;
}
.lx-modal.open { display: flex; }
.lx-modal-dialog {
    background: var(--lx-surface);
    border-radius: var(--lx-radius-lg);
    width: 100%;
    max-width: 720px;
    max-height: 90dvh;
    overflow: auto;
    position: relative;
    box-shadow: var(--lx-shadow-md);
    animation: lxModalIn .25s ease both;
}
@keyframes lxModalIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.lx-modal-close {
    position: absolute; top: 10px; right: 10px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,.05);
    font-size: 20px; line-height: 1;
}
.lx-modal-body {
    display: grid; grid-template-columns: 1fr; gap: 0;
}
.lx-modal-media { background: var(--lx-cream); aspect-ratio: 1/1; }
.lx-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.lx-modal-info { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.lx-modal-info h3 { font-size: clamp(20px, 4vw, 26px); }

/* ---------- Reveal ---------- */
.lx-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.lx-reveal.in { opacity: 1; transform: none; }

/* ---------- Footer ---------- */
.lx-footer {
    background: #1a1214;
    color: #d8c8c5;
    padding: 40px 0 16px;
    margin-top: 32px;
}
.lx-footer h5 {
    font-family: var(--lx-font-body);
    color: #fff;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.lx-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.lx-footer-logo { height: 56px; width: auto; border-radius: 8px; margin-bottom: 12px; background: #fff; padding: 4px; }
.lx-footer-brand p { font-size: 14px; line-height: 1.7; max-width: 360px; }
.lx-socials { display: flex; gap: 10px; margin-top: 14px; }
.lx-socials a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08);
    transition: background .2s ease, transform .2s ease;
    color: #fff;
}
.lx-socials a:hover { background: var(--lx-rose-deep); transform: translateY(-2px); }
.lx-footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.lx-footer-col ul li a:hover { color: var(--lx-rose); }
.lx-contact i { color: var(--lx-rose); width: 18px; margin-right: 8px; }
.lx-foot-bot {
    margin-top: 28px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

/* ---------- Floating WhatsApp ---------- */
.lx-fab-whats {
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 54px; height: 54px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
    z-index: 90;
    transition: transform .2s ease;
}
.lx-fab-whats:hover { transform: scale(1.06); }

/* ============================================================
   Tablet ≥ 600px
   ============================================================ */
@media (min-width: 600px) {
    .lx-container { padding: 0 24px; }
    .lx-section { padding: 64px 0; }
    .lx-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .lx-card-title { font-size: 15px; }
    .lx-trust { grid-template-columns: repeat(4, 1fr); padding: 28px 24px; }
    .lx-shop-toolbar { flex-direction: row; align-items: center; }
    .lx-search { flex: 1; }
    .lx-sort { flex: 0 0 240px; }
    .lx-modal-body { grid-template-columns: 1fr 1fr; }
    .lx-modal-media { aspect-ratio: auto; height: 100%; }
    .lx-promo { margin: 32px auto; max-width: 1100px; padding: 56px 40px; }
    .lx-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 0 24px; }
}

/* ============================================================
   Desktop ≥ 992px
   ============================================================ */
@media (min-width: 992px) {
    :root { --lx-header-h: 76px; }
    .lx-section { padding: 80px 0; }
    .lx-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .lx-burger { display: none; }
    .lx-menu {
        display: flex; align-items: center; gap: 28px;
    }
    .lx-menu a {
        position: relative;
        font-size: 14px; font-weight: 500;
        color: var(--lx-ink-2);
        padding: 6px 9px;
        transition: color .2s ease;
    }
    .lx-menu a:hover, .lx-menu a.active { color: var(--lx-ink); }
    .lx-menu a:not(.lx-menu-cta)::after {
        content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
        height: 2px; background: linear-gradient(90deg, var(--lx-rose-deep), var(--lx-gold));
        transform: scaleX(0); transform-origin: left;
        transition: transform .25s ease;
    }
    .lx-menu a:not(.lx-menu-cta):hover::after,
    .lx-menu a.active::after { transform: scaleX(1); }
    .lx-menu-cta { color: #fff !important; }
    .lx-logo img { height: 52px; }
    .lx-card-body { padding: 16px; }
    .lx-card-title { font-size: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Contact & Quote page
   ============================================================ */
.lx-page { padding: 32px 0 64px; }
.lx-page-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.lx-h1 { font-size: clamp(28px, 6vw, 48px); margin-bottom: 12px; }
.lx-lede { color: var(--lx-ink-2); font-size: 16px; }
.lx-alert { background: var(--lx-blush); color: var(--lx-rose-deep); border-radius: var(--lx-radius); padding: 14px 18px; margin: 0 auto 24px; max-width: 760px; text-align: center; font-size: 14px; }
.lx-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.lx-ccard { background: var(--lx-surface); border-radius: var(--lx-radius-lg); padding: 24px; box-shadow: var(--lx-shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.lx-ccard h3 { font-size: 22px; }
.lx-ccard p { color: var(--lx-ink-2); font-size: 14px; }
.lx-ccard-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--lx-blush); color: var(--lx-rose-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 24px; }
.lx-ccard-icon-accent { background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold)); color: #fff; }
.lx-ccard-feature { border: 1px solid var(--lx-line); }
.lx-btn-lg { padding: 14px 26px; font-size: 15px; }
.lx-form { display: grid; gap: 14px; margin-top: 8px; }
.lx-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--lx-ink-2); }
.lx-form label span { color: var(--lx-rose-deep); }
.lx-form input, .lx-form textarea, .lx-form select { font: inherit; padding: 12px 14px; border: 1px solid var(--lx-line); border-radius: 12px; background: #fff; min-height: 44px; color: var(--lx-ink); }
.lx-form textarea { min-height: 90px; resize: vertical; }
.lx-form input:focus, .lx-form textarea:focus, .lx-form select:focus { outline: 2px solid var(--lx-rose); outline-offset: 1px; border-color: transparent; }
.lx-form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.lx-full { grid-column: 1 / -1; }
.lx-checks { border: 1px dashed var(--lx-line); border-radius: 12px; padding: 14px; display: grid; grid-template-columns: 1fr; gap: 8px; }
.lx-checks legend { padding: 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lx-ink-2); }
.lx-checks label { flex-direction: row; align-items: center; gap: 10px; font-weight: 500; color: var(--lx-ink); font-size: 14px; }
.lx-checks input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--lx-rose-deep); }
.lx-form-hint { font-size: 12px; color: var(--lx-muted); margin-top: 6px; }
@media (min-width: 600px) {
  .lx-cards { grid-template-columns: 1fr 2fr; align-items: start; }
  .lx-form-row { grid-template-columns: 1fr 1fr; }
  .lx-checks { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAB stack: WhatsApp + Back to Top
   ============================================================ */
.lx-fab-whats,
.lx-fab-top {
    position: fixed;
    right: 16px;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    z-index: 90;
    transition: transform .2s ease, opacity .25s ease, visibility .25s ease;
    text-decoration: none;
    line-height: 1;
    padding: 0;
}
.lx-fab-whats {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
}
.lx-fab-whats i { font-size: 28px; color: #fff; line-height: 1; }
.lx-fab-whats:hover, .lx-fab-top:hover { transform: scale(1.06); }

.lx-fab-top {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    background: #1a1214;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    border: none;
    cursor: pointer;
    opacity: 0; visibility: hidden;
}
.lx-fab-top.show { opacity: 1; visibility: visible; }
.lx-fab-top i { font-size: 18px; color: #fff; line-height: 1; }

/* Fallback glyph shown only if Font Awesome fails to load */
.lx-fab-fallback {
    display: none;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.no-fa .lx-fab-whats i,
.no-fa .lx-fab-top i { display: none; }
.no-fa .lx-fab-fallback { display: inline-block; }

@media (min-width: 600px) {
    .lx-fab-whats, .lx-fab-top { right: 24px; width: 58px; height: 58px; }
    .lx-fab-whats i { font-size: 30px; }
    .lx-fab-top { bottom: calc(92px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   About / Our Story — interactive collage section
   ============================================================ */
.lx-about {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(247, 232, 227, 0.7) 0%, transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(253, 244, 239, 0.9) 0%, transparent 60%),
        linear-gradient(180deg, #fffaf8 0%, #fdf4ef 100%);
}
.lx-about .lx-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    pointer-events: none;
    z-index: 0;
    animation: lxFloat 14s ease-in-out infinite;
}
.lx-blob-1 { width: 280px; height: 280px; background: #f3d4c8; top: -40px; right: -60px; }
.lx-blob-2 { width: 320px; height: 320px; background: #e8c8c8; bottom: -100px; left: -80px; animation-delay: -7s; }
@keyframes lxFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(15px,-20px) scale(1.06); }
}
.lx-sparkle {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--lx-gold);
    border-radius: 50%;
    box-shadow: 0 0 18px 4px rgba(201, 169, 110, .55);
    pointer-events: none;
    z-index: 1;
    animation: lxTwinkle 3.2s ease-in-out infinite;
}
.lx-sparkle-1 { top: 18%; left: 8%; animation-delay: 0s; }
.lx-sparkle-2 { top: 70%; right: 10%; animation-delay: -1.1s; width: 6px; height: 6px; }
.lx-sparkle-3 { top: 35%; right: 22%; animation-delay: -2s; width: 5px; height: 5px; }
@keyframes lxTwinkle {
    0%, 100% { opacity: .25; transform: scale(.8); }
    50%      { opacity: 1;   transform: scale(1.3); }
}

.lx-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.lx-about-media { position: relative; }
.lx-about-collage {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}
.lx-collage-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(28, 20, 22, 0.18);
    background: var(--lx-cream);
    transition: transform .5s ease, box-shadow .5s ease;
}
.lx-collage-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.lx-collage-img:hover img { transform: scale(1.08); }
.lx-collage-img-a { width: 64%; height: 72%; top: 0; left: 0; transform: rotate(-3deg); z-index: 2; }
.lx-collage-img-b { width: 48%; height: 48%; bottom: 0; right: 0; transform: rotate(4deg); z-index: 3; border: 6px solid #fff; }
.lx-collage-img-c { width: 38%; height: 38%; top: 6%; right: 4%; transform: rotate(6deg); z-index: 1; border: 6px solid #fff; }
.lx-about-collage:hover .lx-collage-img-a { transform: rotate(-1deg) translateY(-4px); }
.lx-about-collage:hover .lx-collage-img-b { transform: rotate(2deg) translateY(-4px); }
.lx-about-collage:hover .lx-collage-img-c { transform: rotate(3deg) translateY(-4px); }

.lx-collage-badge {
    position: absolute;
    bottom: 8px; left: 4px;
    z-index: 5;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--lx-shadow-md);
    animation: lxPulse 4s ease-in-out infinite;
}
.lx-collage-badge i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.lx-collage-badge strong { display: block; font-size: 13px; color: var(--lx-ink); font-family: var(--lx-font-display); }
.lx-collage-badge span   { display: block; font-size: 11px; color: var(--lx-muted); letter-spacing: .08em; text-transform: uppercase; }
@keyframes lxPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 12px 28px rgba(28,20,22,.14); }
    50%      { transform: translateY(-6px); box-shadow: 0 20px 36px rgba(28,20,22,.18); }
}

.lx-about-copy { text-align: center; }
.lx-about-title { font-size: clamp(28px, 6vw, 44px); line-height: 1.15; margin-bottom: 14px; }
.lx-about-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lx-about-lede { color: var(--lx-ink-2); font-size: 16px; margin-bottom: 20px; }
.lx-about-points { display: grid; gap: 10px; margin: 0 auto 22px; max-width: 480px; text-align: left; }
.lx-about-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--lx-ink);
    background: rgba(255,255,255,.7);
    padding: 10px 14px; border-radius: 12px;
    backdrop-filter: blur(4px);
}
.lx-about-points i { color: var(--lx-rose-deep); margin-top: 3px; }
.lx-about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 auto 24px; max-width: 480px; }
.lx-stat { background: #fff; border-radius: 14px; padding: 14px 8px; box-shadow: var(--lx-shadow-sm); text-align: center; }
.lx-stat-num {
    font-family: var(--lx-font-display);
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lx-stat-suffix { font-family: var(--lx-font-display); font-size: clamp(20px, 5vw, 28px); font-weight: 700; color: var(--lx-rose-deep); }
.lx-stat small { display: block; margin-top: 4px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--lx-muted); }
.lx-about-cta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

@media (min-width: 768px) {
    .lx-about { padding: 96px 0; }
    .lx-about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
    .lx-about-copy { text-align: left; }
    .lx-about-points { margin-left: 0; }
    .lx-about-stats { margin-left: 0; }
    .lx-about-cta { justify-content: flex-start; }
    .lx-about-collage { max-width: 540px; aspect-ratio: 1 / 1.05; }
}
@media (prefers-reduced-motion: reduce) {
    .lx-blob, .lx-sparkle, .lx-collage-badge { animation: none !important; }
}

/* ============================================================
   Contact info + map grid
   ============================================================ */
.lx-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
}
.lx-info-card,
.lx-map-card {
    background: var(--lx-surface);
    border-radius: var(--lx-radius-lg);
    box-shadow: var(--lx-shadow-sm);
    overflow: hidden;
}
.lx-info-card {
    padding: 22px;
    display: flex; flex-direction: column; gap: 16px;
}
.lx-info-card h3 {
    font-size: 18px;
    display: flex; align-items: center; gap: 10px;
    font-family: var(--lx-font-body);
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--lx-ink);
}
.lx-info-card h3 i { color: var(--lx-rose-deep); }
.lx-info-list { display: flex; flex-direction: column; gap: 14px; }
.lx-info-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 14px;
}
.lx-info-list strong {
    display: block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lx-muted);
    font-weight: 600;
    margin-bottom: 2px;
}
.lx-info-list a { color: var(--lx-ink); font-weight: 500; }
.lx-info-list a:hover { color: var(--lx-rose-deep); }
.lx-info-ico {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--lx-blush);
    color: var(--lx-rose-deep);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.lx-info-socials {
    display: flex; gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--lx-line);
}
.lx-info-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--lx-cream);
    color: var(--lx-rose-deep);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lx-info-socials a:hover {
    background: linear-gradient(135deg, var(--lx-rose-deep), var(--lx-gold));
    color: #fff; transform: translateY(-2px);
}
.lx-map-card { min-height: 280px; position: relative; }
.lx-map-card iframe {
    width: 100%; height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}
.lx-map-empty {
    height: 100%;
    min-height: 280px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; padding: 24px; text-align: center;
    color: var(--lx-muted);
    background: var(--lx-cream);
}
.lx-map-empty i { font-size: 32px; color: var(--lx-rose-deep); }

@media (min-width: 768px) {
    .lx-contact-grid { grid-template-columns: 1fr 1.2fr; gap: 24px; }
    .lx-map-card, .lx-map-card iframe, .lx-map-empty { min-height: 380px; }
}

/* Quote section on home */
.lx-section-quote {
    background:
        radial-gradient(700px 400px at 0% 0%, rgba(247, 232, 227, 0.55) 0%, transparent 60%),
        linear-gradient(180deg, var(--lx-bg) 0%, var(--lx-cream) 100%);
}
.lx-cards-single { grid-template-columns: 1fr !important; max-width: 820px; margin: 0 auto; }

/* ============================================================
   Toast notifications + field error states (quote form)
   ============================================================ */
.lx-toast-host {
    position: fixed;
    top: 18px; right: 18px;
    z-index: 1080;
    display: flex; flex-direction: column; gap: 10px;
    max-width: calc(100vw - 36px);
    width: 360px;
    pointer-events: none;
}
.lx-toast {
    pointer-events: auto;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 14px 12px;
    background: #fff;
    color: var(--lx-ink, #2b1d1f);
    border-radius: 14px;
    box-shadow: 0 18px 40px -12px rgba(120, 60, 70, .35), 0 4px 10px rgba(0,0,0,.06);
    border-left: 4px solid var(--lx-rose-deep, #c0556a);
    transform: translateX(20px);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}
.lx-toast.is-in { transform: translateX(0); opacity: 1; }
.lx-toast-ico {
    width: 40px; height: 40px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    background: rgba(192, 85, 106, .12);
    color: var(--lx-rose-deep, #c0556a);
}
.lx-toast-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lx-toast-body strong { font-size: 14px; line-height: 1.25; font-weight: 700; }
.lx-toast-body span { font-size: 13px; line-height: 1.35; color: var(--lx-muted, #7a6a6d); }
.lx-toast-close {
    border: 0; background: transparent;
    font-size: 22px; line-height: 1; cursor: pointer;
    color: var(--lx-muted, #7a6a6d);
    padding: 4px 6px;
}
.lx-toast-close:hover { color: var(--lx-ink, #2b1d1f); }

.lx-toast-error   { border-left-color: #d23a4a; }
.lx-toast-error   .lx-toast-ico { background: rgba(210, 58, 74, .12); color: #d23a4a; }
.lx-toast-success { border-left-color: #1f9d6a; }
.lx-toast-success .lx-toast-ico { background: rgba(31, 157, 106, .14); color: #1f9d6a; }
.lx-toast-info    { border-left-color: #3b7dd8; }
.lx-toast-info    .lx-toast-ico { background: rgba(59, 125, 216, .12); color: #3b7dd8; }

/* Field error highlight */
.lx-field-error input,
.lx-field-error textarea,
.lx-field-error select {
    border-color: #d23a4a !important;
    background: #fff5f6 !important;
    box-shadow: 0 0 0 3px rgba(210, 58, 74, .15) !important;
}
.lx-field-error > span { color: #d23a4a !important; }

@media (max-width: 480px) {
    .lx-toast-host { left: 12px; right: 12px; width: auto; top: 12px; }
}
