/* ======================================================
   homepage-demo-3.css — Byniss Homepage Demo 3
   Mobile-first. Unified full-bleed hero.
   Same brand tokens as Demo 2 (re-skin from :root).
   ====================================================== */

/* ── Theme tokens (change these to re-skin the whole page) ── */
:root {
    /* Brand */
    --primary: #d6336c;
    --primary-rgb: 214, 51, 108;
    --primary-light: #e85d97;
    --neon: #ff3d9a;
    --neon-rgb: 255, 61, 154;
    --neon-soft: #ff8fc6;

    /* Buttons / badges */
    --btn-1: #ee5089;
    --btn-2: #d42d6c;

    /* Gold accents */
    --gold-light: #f3d784;
    --gold: #e0b85c;
    --gold-soft: #e7c272;
    --gold-mid: #bd8a3c;
    --gold-dark: #9c6c28;
    --gold-line: #cda14e;

    /* Surfaces */
    --bg: #fbe7eb;
    --bg-header: #fce4e9;
    --bg-alt: #f9ddda;
    --bg-alt-2: #f8dcd9;
    --white: #fff;
    --border-soft: #f4d4dd;

    /* Text */
    --text: #4a3636;
    --text-2: #2a2a2a;
    --text-dark: #1d1d1f;
    --text-strong: #3a2a2a;
    --text-muted: #8a7070;
    --ink: #2a1620;                 /* deep plum for dark surfaces */

    /* Layout */
    --wrap: 1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Helpers ── */
.ico-inline { font-size: .6em; vertical-align: middle; }
.ico-xs { font-size: 11px; }

.skip-link {
    position: absolute;
    left: 12px; top: -60px;
    z-index: 2000;
    background: var(--ink);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
    outline: 3px solid var(--neon);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Shared button ── */
.btn3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .6px;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn3 i { font-size: .85em; }
.btn3-primary {
    background: linear-gradient(135deg, var(--btn-1), var(--btn-2));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(var(--primary-rgb), .38);
}
.btn3-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(var(--primary-rgb), .5); color: var(--white); }
.btn3-ghost {
    background: rgba(255, 255, 255, .14);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.btn3-ghost:hover { background: rgba(255, 255, 255, .24); color: var(--white); }
.btn3-dark {
    background: var(--ink);
    color: var(--white);
}
.btn3-dark:hover { transform: translateY(-2px); color: var(--white); }

/* ── Shared divider (line · heart · line) ── */
.dl { height: 2px; width: 54px; display: block; }
.dl-l { background: linear-gradient(90deg, transparent, var(--gold-line)); }
.dl-r { background: linear-gradient(90deg, var(--gold-line), transparent); }

/* ================================================
   ANNOUNCEMENT MARQUEE
   ================================================ */
.ann3 {
    background: linear-gradient(90deg, var(--btn-1), var(--btn-2));
    color: var(--white);
    overflow: hidden;
}
.ann3-track {
    display: flex;
    width: max-content;
    padding-block: 9px;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    will-change: transform;
}
.ann3-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 46px;              /* per-item spacing keeps the -50% loop seamless */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ann3-track i { font-size: 9px; opacity: .85; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================================================
   HEADER + NAV
   ================================================ */
.hd3-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hd3 {
    background: linear-gradient(180deg, var(--bg-header) 0%, var(--bg) 100%);
    padding: clamp(10px, 2vw, 20px) clamp(16px, 4vw, 52px) clamp(6px, 1.4vw, 12px);
    box-shadow: 0 2px 20px rgba(var(--primary-rgb), .1);
}
.hd3-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hd3-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}
.hd3-burger span {
    display: block;
    width: 26px; height: 2.5px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .3s ease, opacity .3s ease;
}
.hd3-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hd3-burger.is-open span:nth-child(2) { opacity: 0; }
.hd3-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.hd3-social { display: none; gap: 14px; flex: 1; align-items: center; }
.hd3-social a { font-size: clamp(20px, 2.4vw, 25px); color: var(--text-dark); transition: color .2s; }
.hd3-social a:hover { color: var(--primary); }

.hd3-logo { flex-shrink: 0; }
.hd3-logo img {
    height: clamp(70px, 10vw, 112px);
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .08));
}

.hd3-toolbar { display: flex; gap: clamp(6px, 2vw, 16px); flex: 1; justify-content: flex-end; align-items: center; }
.hd3-toolbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; min-height: 44px;
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--text-2);
    position: relative;
    transition: color .2s;
}
.hd3-toolbar a:hover { color: var(--primary); }
.hd3-cart-count {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ── Account (authenticated) ── */
.hd3-account { position: relative; display: inline-flex; }
.hd3-account-dot {
    position: absolute; top: 7px; right: 9px;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--neon); border: 2px solid var(--bg-header);
}
.hd3-account-menu { display: none; }
/* The dropdown lives inside .hd3-toolbar, whose `a` rule (0,1,1) would otherwise
   force the menu links to 18–22px, centered, 44px tall. Scope them back down. */
.hd3-account-menu .acc-link {
    min-width: 0; min-height: 0; justify-content: flex-start;
    font-size: 13px; color: var(--text);
}
.hd3-account-menu .acc-link:hover { color: var(--primary); }
.hd3-account-menu .acc-link--logout,
.hd3-account-menu .acc-link--logout:hover { color: #a52218; }
.hd3-account-menu .hd3-avoir-chip {
    min-width: 0; min-height: 0; justify-content: space-between; font-size: 13px;
}

/* Greeting + avoir chip (shared: dropdown + mobile drawer) */
.hd3-account-hello { padding-bottom: 10px; border-bottom: 1px solid var(--border-soft); margin-bottom: 8px; }
.hd3-hello-hi { font-weight: 700; font-size: 13.5px; color: var(--text-strong); }
.hd3-hello-mail { font-size: 11.5px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hd3-avoir-chip {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 13px; margin-bottom: 8px; border-radius: 12px; font-size: 13px; color: var(--text-strong);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .1), rgba(var(--neon-rgb), .08));
    border: 1px solid var(--border-soft);
}
.hd3-avoir-chip i { color: var(--primary); margin-right: 4px; }
.hd3-avoir-chip strong { color: var(--primary); font-family: 'Cinzel', serif; letter-spacing: .5px; }

/* Account links (shared) */
.hd3-account-links { display: flex; flex-direction: column; gap: 1px; }
.acc-link {
    display: flex; align-items: center; gap: 11px; width: 100%;
    padding: 9px 10px; border-radius: 10px; font-size: 13px; font-weight: 500; color: var(--text);
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: 'Poppins', sans-serif; text-transform: none; letter-spacing: normal;
    transition: background .2s, color .2s;
}
.acc-link i { width: 17px; text-align: center; color: var(--primary); font-size: 13px; }
.acc-link:hover { background: rgba(var(--primary-rgb), .07); color: var(--primary); }
.acc-logout { margin-top: 5px; padding-top: 5px; border-top: 1px solid var(--border-soft); }
.acc-link--logout { color: #a52218; }
.acc-link--logout i { color: #a52218; }
.acc-link--logout:hover { background: rgba(165, 34, 24, .08); color: #a52218; }

/* ── Mobile account bottom-sheet (opened by the account icon < 992px) ── */
.acct-sheet-overlay {
    position: fixed; inset: 0; z-index: 1900;
    background: rgba(20, 6, 14, .5);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.acct-sheet-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.acct-sheet {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000;
    max-width: 520px; margin: 0 auto;
    background: var(--white);
    border-radius: 22px 22px 0 0;
    padding: 10px 18px calc(20px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -14px 44px rgba(20, 6, 14, .28);
    transform: translateY(100%); visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
}
.acct-sheet.is-open { transform: translateY(0); visibility: visible; }
.acct-sheet-handle { display: block; width: 42px; height: 4px; border-radius: 2px; background: var(--border-soft); margin: 6px auto 14px; }
.acct-sheet-close {
    position: absolute; top: 12px; right: 14px;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--bg-alt); border: none; cursor: pointer; color: var(--text-muted); font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.acct-sheet-close:hover { color: var(--primary); }
.acct-sheet .hd3-account-hello { text-align: left; }
.acct-sheet .hd3-account-links { margin-top: 4px; }
.acct-sheet .acc-link { font-size: 14px; padding: 12px 10px; }
.acct-sheet .hd3-avoir-chip { font-size: 13.5px; }

@media (min-width: 992px) {
    .acct-sheet, .acct-sheet-overlay { display: none !important; }
}

/* Nav — mobile drawer */
.hd3-nav {
    background: var(--bg-alt);
    border-top: 1px solid rgba(var(--primary-rgb), .14);
    border-bottom: 1px solid rgba(var(--primary-rgb), .14);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.hd3-nav.is-open { max-height: 80vh; overflow-y: auto; }
.hd3-nav ul { display: flex; flex-direction: column; padding: 6px 0; }
.hd3-nav li { width: 100%; }
.hd3-nav a {
    display: block;
    text-align: center;
    padding: 14px 8px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--text);
    transition: color .2s, background .2s;
}
.hd3-nav a:hover { color: var(--primary); }
.hd3-nav a.nav3-active { color: var(--primary); background: rgba(var(--primary-rgb), .08); border-radius: 8px; }
.hd3-nav a.nav3-contact {
    color: var(--neon);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 8px auto;
    padding: 9px 20px;
    border: 2px solid var(--neon);
    border-radius: 22px;
    box-shadow: 0 0 10px rgba(var(--neon-rgb), .35);
}

/* ================================================
   UNIFIED HERO
   ================================================ */
.hero3 {
    position: relative;
    isolation: isolate;
    min-height: 90vh;
    min-height: 90svh;
    max-height: 780px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero3-media { position: absolute; inset: 0; z-index: -1; }
.hero3-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 72% top;
}
.hero3-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 6, 14, .30) 0%, rgba(20, 6, 14, 0) 24%),
        linear-gradient(0deg, rgba(24, 7, 15, .86) 3%, rgba(38, 11, 24, .45) 32%, rgba(38, 11, 24, 0) 62%);
}

.hero3-live {
    position: absolute;
    top: clamp(14px, 3vw, 26px);
    left: clamp(14px, 4vw, 28px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 22px;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neon) 0%, var(--primary) 55%, var(--btn-2) 100%);
    border: 1px solid rgba(255, 255, 255, .6);
    color: var(--white);
    font-weight: 900;
    letter-spacing: 1.8px;
    font-size: clamp(15px, 2vw, 19px);
    text-shadow: 0 1px 4px rgba(120, 8, 50, .45);
    box-shadow:
        0 8px 24px rgba(var(--neon-rgb), .5),
        0 0 0 4px rgba(var(--neon-rgb), .16),
        inset 0 1px 1px rgba(255, 255, 255, .5);
    animation: liveGlow 2.4s ease-in-out infinite;
}
/* moving gloss sweep for the "shiny" feel */
.hero3-live::before {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: skewX(-18deg);
    animation: liveShine 3.4s ease-in-out infinite;
}
.hero3-live .dot {
    position: relative;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 8px rgba(255, 255, 255, .9);
    animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .8); }
    70%  { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@keyframes liveGlow {
    0%, 100% { box-shadow: 0 8px 24px rgba(var(--neon-rgb), .5), 0 0 0 4px rgba(var(--neon-rgb), .16), inset 0 1px 1px rgba(255, 255, 255, .5); }
    50%      { box-shadow: 0 10px 32px rgba(var(--neon-rgb), .75), 0 0 0 6px rgba(var(--neon-rgb), .22), inset 0 1px 1px rgba(255, 255, 255, .5); }
}
@keyframes liveShine {
    0%   { left: -60%; }
    55%  { left: 130%; }
    100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero3-live { animation: none; }
    .hero3-live::before { display: none; }
}

.hero3-content {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: clamp(28px, 6vw, 60px) clamp(20px, 5vw, 52px) clamp(34px, 8vw, 72px);
    color: var(--white);
}
.hero3-copy { text-align: center; }

.hero3-eyebrow {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(24px, 6.5vw, 40px);
    color: #ffdbe7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
    margin-bottom: 2px;
}
.hero3-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(62px, 17vw, 148px);
    line-height: .9;
    letter-spacing: clamp(2px, 1.4vw, 12px);
    background: linear-gradient(177deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-mid) 74%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .5));
}
.hero3-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 8px 0;
}
.hero3-divider i { color: var(--gold-soft); font-size: 13px; text-shadow: 0 1px 6px rgba(0, 0, 0, .5); }
.hero3-sub {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(28px, 8vw, 50px);
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
    margin-bottom: clamp(12px, 2.6vw, 16px);
}
.hero3-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 20px;
    margin: 0 0 clamp(18px, 4vw, 26px);
}
.hero3-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1.6vw, 14px);
    font-weight: 500;
    letter-spacing: .3px;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}
.hero3-features i {
    color: var(--primary-light);
    font-size: 1.05em;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .6));
}
.hero3-ctas { display: flex; flex-direction: column; gap: 12px; }

/* ================================================
   TRUST
   ================================================ */
.trust3 {
    background: var(--bg-alt);
    border-top: 1px solid rgba(var(--primary-rgb), .1);
    border-bottom: 1px solid rgba(var(--primary-rgb), .1);
    padding: clamp(22px, 3vw, 32px) clamp(16px, 4vw, 52px);
}
.trust3-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 26px);
}
.trust3-item { display: flex; align-items: center; gap: 13px; justify-content: center; }
.trust3-item > i { color: var(--primary); font-size: clamp(24px, 3vw, 32px); flex-shrink: 0; }
.trust3-title { font-weight: 700; font-size: clamp(13px, 1.4vw, 15px); color: var(--text-strong); }
.trust3-sub { font-size: clamp(12px, 1.2vw, 14px); color: var(--text-muted); margin-top: 1px; }

/* ================================================
   CATEGORIES
   ================================================ */
.cats3 {
    padding: clamp(38px, 5vw, 64px) clamp(16px, 4vw, 52px);
    background: var(--bg);
}
.cats3-inner { max-width: var(--wrap); margin: 0 auto; }
.cats3-heading { text-align: center; margin-bottom: clamp(26px, 3.4vw, 42px); }
.cats3-heading h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(30px, 5vw, 52px);
    letter-spacing: clamp(2px, .5vw, 6px);
    text-transform: uppercase;
    background: linear-gradient(177deg, var(--gold-soft), var(--gold-mid));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cats3-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 8px; }
.cats3-divider i { color: var(--primary); font-size: 14px; }

.cats3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 1.8vw, 22px);
}
.cats3-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 10px 26px rgba(180, 90, 120, .16);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cats3-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(180, 90, 120, .28); }
.cats3-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cats3-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(120, 40, 70, .5) 100%);
}
.cats3-label {
    position: absolute;
    left: 50%; bottom: 14px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--neon);
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: clamp(11px, 1.1vw, 14px);
    padding: 7px 16px;
    border-radius: 22px;
    white-space: nowrap;
    border: 2px solid var(--neon);
    box-shadow: 0 0 12px rgba(var(--neon-rgb), .5);
    text-shadow: 0 0 8px rgba(var(--neon-rgb), .7);
}
.cats3-cta { text-align: center; margin-top: clamp(28px, 3.4vw, 44px); }

/* ================================================
   FOLLOW / TIKTOK
   ================================================ */
.follow3 {
    padding: clamp(38px, 5vw, 64px) clamp(16px, 4vw, 52px);
    background: linear-gradient(160deg, var(--bg-alt-2), var(--bg));
}
.follow3-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: clamp(26px, 4vw, 44px);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), .12);
    text-align: center;
}
.follow3-eyebrow { font-family: 'Great Vibes', cursive; color: var(--primary-light); font-size: clamp(22px, 3vw, 30px); }
.follow3-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 38px);
    color: var(--text-strong);
    margin: 4px 0 10px;
}
.follow3-desc { color: var(--text); font-size: clamp(14px, 1.6vw, 16px); line-height: 1.6; max-width: 46ch; margin: 0 auto clamp(18px, 3vw, 24px); }
.follow3-desc strong { color: var(--primary); }
.follow3-qr { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.follow3-canvas {
    width: 148px; height: 148px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 8px 22px rgba(var(--primary-rgb), .12);
}
.follow3-canvas img, .follow3-canvas canvas { display: block; border-radius: 6px; }
.follow3-handle { font-weight: 700; color: var(--primary); letter-spacing: .5px; }

/* ================================================
   VALUES
   ================================================ */
.values3 {
    padding: clamp(24px, 3.4vw, 40px) clamp(16px, 4vw, 52px);
    background: var(--bg-alt);
    border-top: 1px solid rgba(var(--primary-rgb), .1);
}
.values3-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.value3-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    color: var(--text-strong);
    font-weight: 600;
    font-size: clamp(12px, 1.3vw, 14px);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), .08);
}
.value3-chip i { color: var(--primary); }

/* ================================================
   FOOTER
   ================================================ */
.foot3 {
    background: var(--ink);
    color: #f6e7ec;
    padding: clamp(34px, 5vw, 56px) clamp(16px, 4vw, 52px) clamp(24px, 3vw, 34px);
}
.foot3-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.foot3-logo img { height: 72px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.foot3-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
.foot3-nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f2d9e2;
    opacity: .8;
    transition: opacity .2s, color .2s;
}
.foot3-nav a:hover { opacity: 1; color: var(--neon-soft); }
/* Secondary row: CMS/info pages — quieter, sentence case, with a hairline above */
.foot3-info {
    gap: 8px 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(246, 231, 236, .14);
    max-width: 680px;
}
.foot3-info a { font-size: 12px; letter-spacing: .4px; text-transform: none; opacity: .62; font-weight: 500; }
.foot3-social { display: flex; gap: 18px; }
.foot3-social a { font-size: 22px; color: #f6e7ec; transition: color .2s; }
.foot3-social a:hover { color: var(--neon-soft); }
.foot3-copy { font-size: 12.5px; color: #cdb3bd; letter-spacing: .3px; }

/* ================================================
   TABLET  ≥ 768px
   ================================================ */
@media (min-width: 768px) {
    .trust3-inner { grid-template-columns: repeat(4, 1fr); }
    .cats3-grid { grid-template-columns: repeat(3, 1fr); }
    .hero3-ctas { flex-direction: row; justify-content: center; }

    .follow3-inner { flex-direction: row; text-align: left; justify-content: space-between; }
    .follow3-inner .follow3-text { flex: 1; }
    .follow3-eyebrow { text-align: left; }
    .follow3-desc { margin-left: 0; }
    .follow3-canvas { width: 168px; height: 168px; }
}

/* ================================================
   DESKTOP  ≥ 992px
   ================================================ */
@media (min-width: 992px) {

    /* Header swaps burger for social; nav becomes a bar */
    .hd3-burger { display: none; }
    .hd3-social { display: flex; }

    .hd3-nav {
        padding: clamp(12px, 1.6vw, 18px) 16px;
        max-height: none;
        overflow: visible;
    }
    .hd3-nav ul {
        max-width: var(--wrap);
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: clamp(16px, 3vw, 40px);
        padding: 0;
    }
    .hd3-nav li { width: auto; }
    .hd3-nav a {
        display: inline-block;
        padding: 0 0 4px;
        font-size: clamp(13px, 1.3vw, 15px);
        text-transform: uppercase;
    }
    .hd3-nav a.nav3-active { background: none; border-radius: 0; border-bottom: 2px solid var(--primary); }
    .hd3-nav a.nav3-contact { margin: 0; padding: 7px 18px; }

    /* Hero: side-weighted composition, still one full-bleed image */
    .hero3 { align-items: center; min-height: 86vh; max-height: 860px; }
    .hero3-photo { object-position: right center; }
    .hero3-scrim {
        background: linear-gradient(90deg, rgba(24, 7, 15, .74) 0%, rgba(24, 7, 15, .32) 40%, rgba(24, 7, 15, 0) 66%);
    }
    .hero3-copy { text-align: left; max-width: 600px; }
    .hero3-sub { text-align: center; }
    .hero3-divider { justify-content: center; }
    .hero3-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
    }
    .hero3-features li { font-size: 15px; }
    .hero3-ctas { flex-direction: row; }

    .cats3-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}

/* ================================================
   LARGE  ≥ 1280px
   ================================================ */
@media (min-width: 1280px) {
    .hero3-copy { max-width: 640px; }
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ann3-track { animation: none; transform: none; }
    .hero3-live .dot { animation: none; }
    *, *::before, *::after { transition-duration: .001ms !important; }
}

/* ================================================
   ACCOUNT DROPDOWN — desktop only (≥ 992px)
   ================================================ */
@media (min-width: 992px) {
    .hd3-nav-account { display: none; }

    .hd3-account-menu {
        display: block;
        position: absolute; top: calc(100% + 10px); right: 0;
        width: 268px; padding: 14px;
        background: var(--white); border: 1px solid var(--border-soft); border-radius: 16px;
        box-shadow: 0 20px 44px rgba(var(--primary-rgb), .2);
        z-index: 1600;
        opacity: 0; visibility: hidden; transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
    }
    /* transparent bridge so the gap below the icon doesn't drop the hover */
    .hd3-account-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
    .hd3-account:hover .hd3-account-menu,
    .hd3-account:focus-within .hd3-account-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
