/* ==========================================================================
   SofaSet.pk — Main Stylesheet
   Premium Pakistani sofa brand · Charcoal + Brown + Gold + Cream palette
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --c-bg:           #FAF7F2;     /* warm off-white page background */
    --c-surface:      #FFFFFF;     /* cards, panels */
    --c-surface-alt:  #F4ECE0;     /* cream — alternating sections */
    --c-muted:        #E8DDCB;     /* beige dividers */
    --c-ink:          #1F1B16;     /* charcoal — primary text */
    --c-ink-soft:     #4A4540;     /* secondary text */
    --c-brown:        #4A2E1F;     /* deep brown — accents */
    --c-brown-light:  #8B6F5C;     /* hover states */
    --c-gold:         #B8894A;     /* premium gold — CTAs, highlights */
    --c-gold-light:   #D4A85F;     /* gold hover */
    --c-line:         #E5DCC9;     /* hairline borders */
    --c-whatsapp:     #25D366;     /* WhatsApp green */
    --c-whatsapp-dk:  #128C7E;     /* darker WhatsApp */
    --c-success:      #2D7A3E;
    --c-error:        #B23A3A;

    /* Typography */
    --f-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --fs-xs:   0.75rem;    /* 12 */
    --fs-sm:   0.875rem;   /* 14 */
    --fs-base: 1rem;       /* 16 */
    --fs-lg:   1.125rem;   /* 18 */
    --fs-xl:   1.375rem;   /* 22 */
    --fs-2xl:  1.75rem;    /* 28 */
    --fs-3xl:  2.25rem;    /* 36 */
    --fs-4xl:  2.75rem;    /* 44 */
    --fs-5xl:  3.5rem;     /* 56 */

    /* Spacing scale */
    --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
    --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
    --s-9: 96px;  --s-10: 128px;

    /* Radii */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-pill: 999px;

    /* Shadows */
    --sh-1: 0 2px 8px rgba(31,27,22,0.06);
    --sh-2: 0 6px 20px rgba(31,27,22,0.08);
    --sh-3: 0 14px 40px rgba(31,27,22,0.12);
    --sh-gold: 0 8px 24px rgba(184,137,74,0.25);

    /* Transitions */
    --t-fast: 150ms cubic-bezier(.4,0,.2,1);
    --t-base: 250ms cubic-bezier(.4,0,.2,1);
    --t-slow: 400ms cubic-bezier(.4,0,.2,1);

    /* Layout */
    --container: 1240px;
    --gutter:    24px;
    --header-h:  88px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--f-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { font-style: italic; background-repeat: no-repeat; }

a { color: var(--c-brown); text-decoration: none; transition: color var(--t-fast); }
a:hover, a:focus { color: var(--c-gold); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

ul, ol { padding: 0; margin: 0 0 var(--s-5); }

::selection { background: var(--c-gold); color: #fff; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 var(--s-4);
}
h1 { font-size: clamp(2rem, 4.5vw, var(--fs-5xl));   font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.25rem, 2.2vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 var(--s-4); }
.lede { font-size: var(--fs-lg); color: var(--c-ink-soft); }

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.section { padding: var(--s-9) 0; }
.section--sm { padding: var(--s-7) 0; }
.section--alt { background: var(--c-surface-alt); }
.section--ink { background: var(--c-ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
    display: inline-block;
    font-family: var(--f-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: var(--s-3);
}

/* Accessibility */
.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--c-ink); color: #fff;
    padding: var(--s-3) var(--s-4);
    z-index: 9999;
}
.skip-link:focus { top: 0; }

.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
    height: 1px; width: 1px; margin: -1px; overflow: hidden;
    padding: 0; position: absolute !important; word-wrap: normal !important;
}

*:focus-visible {
    outline: 3px solid var(--c-gold);
    outline-offset: 2px;
    border-radius: var(--r-sm);
}

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

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 14px 24px;
    font-family: var(--f-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: var(--r-md);
    border: 2px solid transparent;
    transition: all var(--t-base);
    cursor: pointer;
    white-space: nowrap;
}
.btn--sm  { padding: 10px 18px; font-size: var(--fs-xs); }
.btn--lg  { padding: 18px 32px; font-size: var(--fs-base); }
.btn--block { display: flex; width: 100%; }

.btn--primary {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}
.btn--primary:hover {
    background: var(--c-brown);
    border-color: var(--c-brown);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sh-2);
}

.btn--gold {
    background: var(--c-gold);
    color: #fff;
    border-color: var(--c-gold);
}
.btn--gold:hover {
    background: var(--c-gold-light);
    border-color: var(--c-gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

.btn--whatsapp {
    background: var(--c-whatsapp);
    color: #fff;
    border-color: var(--c-whatsapp);
}
.btn--whatsapp:hover {
    background: var(--c-whatsapp-dk);
    border-color: var(--c-whatsapp-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-ink);
}
.btn--ghost:hover {
    background: var(--c-ink);
    color: #fff;
}

.btn--secondary {
    background: var(--c-surface);
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn--secondary:hover {
    border-color: var(--c-ink);
    color: var(--c-ink);
}

/* --------------------------------------------------------------------------
   6. SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
}

/* Topbar */
.topbar {
    background: var(--c-ink);
    color: #E8DDCB;
    font-size: var(--fs-xs);
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
}
.topbar__left { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: #D4C5AA; }
.topbar__item svg { color: var(--c-gold); }
.topbar__phone { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.topbar__phone:hover { color: var(--c-gold); }
@media (max-width: 720px) {
    .topbar__item--hide-mobile { display: none; }
    .topbar__left { gap: var(--s-3); }
}

/* Main header */
.header-main { padding: var(--s-4) 0; }
.header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-5);
}

/* Brand */
.site-branding { flex-shrink: 0; }
.custom-logo { max-height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text__main {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: var(--fs-2xl);
    color: var(--c-ink);
    letter-spacing: -0.02em;
}
.brand-text__dot { color: var(--c-gold); }
.brand-text__tag {
    font-size: 11px;
    color: var(--c-ink-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

/* Primary nav */
.primary-navigation { flex: 1; display: flex; justify-content: center; }
.primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}
.primary-menu .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 13px;
    color: var(--c-ink);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--r-md);
    transition: all var(--t-fast);
    position: relative;
    white-space: nowrap;
    line-height: 1.2;
}
.primary-menu .menu-link:hover,
.primary-menu .current-menu-item > .menu-link {
    color: var(--c-brown);
    background: var(--c-surface-alt);
}
.menu-caret { transition: transform var(--t-fast); flex-shrink: 0; }
.has-submenu:hover .menu-caret { transform: rotate(180deg); }

/* Sub-menu (desktop dropdown) */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-top: 3px solid var(--c-gold);
    border-radius: 0 0 var(--r-md) var(--r-md);
    box-shadow: 0 18px 45px rgba(31,27,22,0.16);
    padding: 10px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t-base);
    z-index: 200;
}
.primary-menu .has-submenu { position: relative; }
.primary-menu .has-submenu:hover > .sub-menu,
.primary-menu .has-submenu:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu .menu-item { margin: 0; }
.primary-menu .sub-menu .menu-link {
    padding: 11px 14px;
    border-radius: var(--r-sm);
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink-soft);
    border-left: 2px solid transparent;
    transition: all var(--t-fast);
}
.primary-menu .sub-menu .menu-link:hover {
    background: var(--c-surface-alt);
    color: var(--c-brown);
    border-left-color: var(--c-gold);
    padding-left: 18px;
}
/* Keep dropdown open when hovering the gap between parent and menu */
.primary-menu .has-submenu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

/* When many menu items, allow horizontal compaction below large screens */
@media (max-width: 1140px) {
    .primary-menu .menu-link { padding: 8px 10px; font-size: 14px; }
    .header-cta .btn-label,
    .header-cta span:not(.wa-icon) { display: none; }
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.header-cta { display: inline-flex; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--c-surface-alt);
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
}
.menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: all var(--t-fast);
}
@media (max-width: 1024px) {
    .primary-navigation { display: none; }
    .header-cta span { display: none; }
    .header-cta { padding: 10px; }
    .menu-toggle { display: flex; }
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed; inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mobile-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}
.mobile-drawer__overlay {
    position: absolute; inset: 0;
    background: rgba(31,27,22,0.5);
    opacity: 0;
    transition: opacity var(--t-base);
}
.mobile-drawer.is-open .mobile-drawer__overlay { opacity: 1; }
.mobile-drawer__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    background: var(--c-bg);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    box-shadow: var(--sh-3);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-5);
    border-bottom: 1px solid var(--c-line);
}
.mobile-drawer__brand {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: var(--fs-xl);
    color: var(--c-ink);
}
.mobile-drawer__close {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--r-md);
    background: var(--c-surface-alt);
    color: var(--c-ink);
}
.mobile-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--s-4) var(--s-5);
}
.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu .menu-link {
    display: block;
    padding: 14px 0;
    color: var(--c-ink);
    font-size: var(--fs-base);
    font-weight: 500;
    border-bottom: 1px solid var(--c-line);
}
.mobile-menu .menu-link:hover { color: var(--c-gold); }
.mobile-menu .sub-menu {
    list-style: none;
    padding-left: var(--s-4);
    border-left: 2px solid var(--c-gold);
    margin: var(--s-2) 0 var(--s-3);
}
.mobile-menu .sub-menu .menu-link {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--c-ink-soft);
    border-bottom: 0;
    padding: 8px 0;
}
.mobile-drawer__foot {
    padding: var(--s-5);
    border-top: 1px solid var(--c-line);
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.mobile-drawer__phone {
    text-align: center;
    color: var(--c-ink-soft);
    font-size: var(--fs-sm);
}

/* --------------------------------------------------------------------------
   7. PRE-FOOTER CTA + FOOTER
   -------------------------------------------------------------------------- */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--c-brown) 0%, var(--c-ink) 100%);
    color: #fff;
    padding: var(--s-9) 0;
    position: relative;
    overflow: hidden;
}
.pre-footer-cta::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,137,74,0.18), transparent 60%);
    pointer-events: none;
}
.pre-footer-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s-7);
    align-items: center;
}
.pre-footer-cta__eyebrow {
    color: var(--c-gold);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin: 0 0 var(--s-3);
}
.pre-footer-cta__title {
    color: #fff;
    margin-bottom: var(--s-4);
}
.pre-footer-cta__lede {
    color: #D4C5AA;
    font-size: var(--fs-lg);
    margin: 0;
}
.pre-footer-cta__actions {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.pre-footer-cta__actions .btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.pre-footer-cta__actions .btn--ghost:hover {
    background: #fff;
    color: var(--c-ink);
    border-color: #fff;
}
@media (max-width: 880px) {
    .pre-footer-cta__inner { grid-template-columns: 1fr; }
}

.site-footer {
    background: var(--c-ink);
    color: #C9BDA8;
    padding: var(--s-9) 0 var(--s-5);
    font-size: var(--fs-sm);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--s-7);
    margin-bottom: var(--s-7);
}
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand__main {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: var(--fs-2xl);
    color: #fff;
    display: block;
    margin-bottom: var(--s-3);
}
.footer-col__desc { color: #A89A82; line-height: 1.7; margin-bottom: var(--s-4); }
.footer-col__title {
    color: #fff;
    font-family: var(--f-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--s-4);
}
.footer-col__note { color: #8B7E68; font-size: var(--fs-xs); margin-top: var(--s-3); }

.footer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-menu a, .footer-menu li {
    color: #C9BDA8;
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: color var(--t-fast);
}
.footer-menu a:hover { color: var(--c-gold); }
.footer-menu--cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { color: var(--c-gold); flex-shrink: 0; }
.footer-contact a { color: #C9BDA8; }
.footer-contact a:hover { color: var(--c-gold); }

.footer-bottom {
    padding-top: var(--s-5);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-3);
}
.footer-bottom__copy { margin: 0; color: #8B7E68; font-size: var(--fs-xs); }
.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--s-4); }
.footer-legal a { color: #8B7E68; font-size: var(--fs-xs); }
.footer-legal a:hover { color: var(--c-gold); }

/* --------------------------------------------------------------------------
   8. STICKY WHATSAPP FAB
   -------------------------------------------------------------------------- */
.wa-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Greeting bubble */
.wa-sticky__bubble {
    position: relative;
    max-width: 260px;
    background: #fff;
    color: var(--c-ink);
    padding: 14px 36px 14px 16px;
    border-radius: 14px 14px 4px 14px;
    box-shadow: var(--sh-3);
    font-size: var(--fs-sm);
    line-height: 1.4;
    animation: waBubbleIn 0.6s ease-out 2s both;
    transition: opacity var(--t-base), transform var(--t-base);
}
.wa-sticky__bubble.is-hidden {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    visibility: hidden;
}
.wa-sticky__bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}
.wa-sticky__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-surface-alt);
    color: var(--c-ink-soft);
}
.wa-sticky__close:hover { background: var(--c-line); color: var(--c-ink); }
.wa-sticky__greet { font-weight: 600; margin: 0 0 2px; color: var(--c-ink); }
.wa-sticky__sub { margin: 0; color: var(--c-ink-soft); font-size: var(--fs-xs); }

@keyframes waBubbleIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* The FAB */
.wa-sticky__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    background: var(--c-whatsapp);
    color: #fff;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: all var(--t-base);
}
.wa-sticky__btn:hover {
    background: var(--c-whatsapp-dk);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.wa-sticky__label { font-weight: 600; }

/* Pulse animation */
.wa-sticky__pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--r-pill);
    border: 2px solid var(--c-whatsapp);
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    100% { transform: scale(1.4);  opacity: 0; }
}

@media (max-width: 560px) {
    .wa-sticky { bottom: 16px; right: 16px; }
    .wa-sticky__bubble { max-width: calc(100vw - 100px); }
    .wa-sticky__btn { padding: 12px 18px 12px 14px; font-size: var(--fs-xs); }
    .wa-sticky__label { display: none; }
    .wa-sticky__btn { padding: 14px; border-radius: 50%; }
}

/* --------------------------------------------------------------------------
   8b. PAGE HERO + TRUST BAR
   -------------------------------------------------------------------------- */
.page-hero {
    padding: var(--s-8) 0 var(--s-7);
    background: linear-gradient(180deg, var(--c-surface-alt) 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,137,74,0.08), transparent 65%);
    pointer-events: none;
}
.page-hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-7);
    align-items: center;
    position: relative;
}
.page-hero__title {
    margin-bottom: var(--s-4);
}
.page-hero__lede {
    color: var(--c-ink-soft);
    margin-bottom: var(--s-6);
    max-width: 560px;
}
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
}
.page-hero__media {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-3);
    aspect-ratio: 4 / 3;
    background: var(--c-muted);
}
.page-hero__image { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
    .page-hero__inner { grid-template-columns: 1fr; }
    .page-hero__media { aspect-ratio: 16 / 10; }
}

/* Trust bar */
.trust-bar {
    padding: var(--s-5) 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.trust-bar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s-3);
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--c-ink);
}
.trust-bar__icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-surface-alt);
    color: var(--c-gold);
    border-radius: 50%;
}
.trust-bar__icon svg { width: 18px; height: 18px; }
@media (max-width: 960px) {
    .trust-bar__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .trust-bar__list { grid-template-columns: 1fr; }
}

/* Container narrow variant for body text */
.container--narrow { max-width: 880px; }
.entry-content { font-size: var(--fs-lg); line-height: 1.75; color: var(--c-ink-soft); }
.entry-content h2 { margin-top: var(--s-7); }
.entry-content h3 { margin-top: var(--s-6); }
.entry-content a { color: var(--c-brown); text-decoration: underline; text-decoration-color: var(--c-gold); text-underline-offset: 4px; }
.entry-content a:hover { color: var(--c-gold); }

/* --------------------------------------------------------------------------
   9. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-gold   { color: var(--c-gold); }
.bg-cream    { background: var(--c-surface-alt); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* --------------------------------------------------------------------------
   10. 404 PAGE
   -------------------------------------------------------------------------- */
.error-404 { padding: var(--s-10) 0; }
.error-404__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.error-404__eyebrow {
    color: var(--c-gold);
    font-size: var(--fs-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--s-3);
}
.error-404__title {
    font-size: clamp(2rem, 5vw, var(--fs-4xl));
    margin-bottom: var(--s-4);
}
.error-404__lede {
    color: var(--c-ink-soft);
    font-size: var(--fs-lg);
    margin-bottom: var(--s-6);
}
.error-404__actions {
    display: flex;
    justify-content: center;
    gap: var(--s-3);
    flex-wrap: wrap;
    margin-bottom: var(--s-6);
}
