/* ============================================================
   SNACKIT — multi-page shell + new page styles
   (loads after style.css; extends the same design system)
   ============================================================ */

/* ============ NAV — styles live in css/nav.css (injected by components.js) ============ */
/* Legacy dropdown rules removed to avoid fighting the redesigned navbar. */

/* mobile nav groups (base; mobile.css enhances ≤1024) */
.navm__groups { display: grid; gap: 1.4rem; }
.navm__group { display: grid; gap: .15rem; }
.navm__group-k { font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.navm__group a { color: var(--text); font-size: 1.02rem; padding: .55rem 0; opacity: .9; border-bottom: 1px solid rgba(255,255,255,0.06); transition: padding-left .3s var(--ease), color .3s; }
.navm__group a:active, .navm__group a.is-active { color: var(--gold-bright); padding-left: .4rem; }

/* ============ FLOATING DOCK ============ */
.dock {
    position: fixed; z-index: 820;
    right: calc(env(safe-area-inset-right, 0px) + clamp(1rem, 2vw, 1.6rem));
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 2vw, 1.6rem));
    display: flex; flex-direction: column; gap: .7rem; align-items: center;
}
.dock__contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
}
.dock__contact-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.92);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .35s var(--ease-expo), visibility .3s;
}
.dock__contact.is-open .dock__contact-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}
.dock__btn {
    position: relative; width: 52px; height: 52px; border-radius: 50%;
    border: 0; display: grid; place-items: center; color: #fff;
    background: var(--surface-2); border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform .35s var(--ease), background .35s, box-shadow .35s, color .35s;
}
.dock__btn svg { width: 24px; height: 24px; }
.dock__btn:hover { transform: translateY(-3px) scale(1.05); }
.dock__btn--trigger {
    background: var(--surface-2);
    color: var(--gold-bright);
    z-index: 1;
}
.dock__btn--trigger:hover {
    background: var(--gold);
    color: #0a0a0a;
    box-shadow: 0 14px 36px var(--glow-g);
}
.dock__trigger-close { display: none; }
.dock__contact.is-open .dock__btn--trigger {
    background: var(--gold);
    color: #0a0a0a;
}
.dock__contact.is-open .dock__trigger-ico { display: none; }
.dock__contact.is-open .dock__trigger-close { display: block; }
.dock__btn--wa { background: #25D366; border-color: rgba(255,255,255,0.25); color: #fff; }
.dock__btn--wa:hover { box-shadow: 0 14px 36px rgba(37,211,102,0.5); }
.dock__btn--mail { color: var(--gold-bright); }
.dock__btn--mail:hover { background: var(--gold); color: #0a0a0a; box-shadow: 0 14px 36px var(--glow-g); }
.dock__btn--chat { background: var(--gold); color: #0a0a0a; border-color: transparent; }
.dock__btn--chat:hover { background: var(--gold-bright); box-shadow: 0 14px 36px var(--glow-g); }
.dock__btn--chat.is-active { background: var(--gold-bright); }
.dock__btn--top {
    opacity: 0; transform: translateY(14px) scale(.7); pointer-events: none;
    height: 0; width: 0; padding: 0; border-width: 0; margin: 0;
}
.dock.is-scrolled .dock__btn--top {
    opacity: 1; transform: none; pointer-events: auto;
    height: 52px; width: 52px; border-width: 1px;
}
.dock__ping { position: absolute; top: 2px; right: 2px; width: 11px; height: 11px; border-radius: 50%; background: #ff5a5a; border: 2px solid var(--bg); }
.dock__btn--chat.is-active .dock__ping { display: none; }
.dock__btn[data-tip]::after {
    content: attr(data-tip); position: absolute; right: calc(100% + 12px); top: 50%;
    transform: translateY(-50%) translateX(6px);
    white-space: nowrap; font-size: .76rem; font-weight: 600; color: var(--text);
    background: rgba(16,14,12,0.96); border: 1px solid rgba(212,175,55,0.25);
    padding: .4rem .7rem; border-radius: 8px; pointer-events: none;
    opacity: 0; transition: opacity .25s, transform .25s var(--ease);
}
.dock__btn[data-tip]:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (hover: none), (pointer: coarse) {
    .dock__btn[data-tip]::after { display: none; }
    .dock__btn { width: 50px; height: 50px; }
}

/* ============ CHATBOT — premium AI assistant ============ */
.chat {
    position: fixed; z-index: 840;
    right: calc(env(safe-area-inset-right, 0px) + clamp(1rem, 2vw, 1.6rem));
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(5.5rem, 9vw, 6.5rem));
    width: min(94vw, 420px); height: min(78vh, 640px);
    display: flex; flex-direction: column; overflow: hidden;
    background: linear-gradient(165deg, rgba(22,20,14,0.98) 0%, rgba(12,11,9,0.99) 100%);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 26px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 50px 100px rgba(0,0,0,0.65),
        0 0 80px rgba(212,175,55,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden;
    transform: translateY(28px) scale(.94);
    transform-origin: bottom right;
    transition: opacity .4s var(--ease), transform .5s var(--ease-expo), visibility .4s;
}
.chat__glow {
    position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    opacity: 0; transition: opacity .35s;
}
.chat.is-open .chat__glow { opacity: 1; }
.chat.is-open { opacity: 1; visibility: visible; transform: none; }
.dock__btn--chat.has-unread .dock__ping,
.dock__ping.is-alert {
    display: block;
    background: #ff5a5a;
    box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.55);
    animation: dockPing 1.6s ease-out infinite;
}
@keyframes dockPing {
    0% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(255, 90, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0); }
}
.dock__btn--chat.is-offline {
    opacity: .55;
    filter: grayscale(.35);
}

.chat__error {
    display: grid; gap: .55rem;
    padding: .75rem .85rem; border-radius: 14px;
    background: rgba(255, 90, 90, 0.08);
    border: 1px solid rgba(255, 90, 90, 0.28);
}
.chat__error p {
    margin: 0; font-size: .8rem; color: var(--muted); line-height: 1.45;
}
.chat__error-retry {
    justify-self: start;
    border: 1px solid rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.12);
    color: var(--gold-bright);
    font-size: .76rem; font-weight: 600;
    padding: .4rem .75rem; border-radius: 100px; cursor: pointer;
    transition: background .25s, transform .25s;
}
.chat__error-retry:hover {
    background: rgba(212,175,55,0.22);
    transform: translateY(-1px);
}

.chat.is-busy .chat__send { opacity: .5; pointer-events: none; }
.chat.is-busy .chat__chip { pointer-events: none; opacity: .6; }
.chat__input input[readonly] { opacity: .85; }

.chat__head {
    position: relative; z-index: 2; flex-shrink: 0;
    display: flex; align-items: center; justify-content: space-between; gap: .75rem;
    padding: 1rem 1rem 1rem 1.15rem;
    background: linear-gradient(125deg, var(--gold-deep) 0%, var(--gold) 55%, var(--gold-bright) 100%);
    color: #0a0a0a;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}
.chat__progress {
    position: relative; z-index: 2; flex-shrink: 0;
    height: 28px; display: flex; align-items: center;
    padding: 0 .95rem;
    background: rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.chat__progress[hidden] { display: none !important; }
.chat__progress-bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(212,175,55,0.45), rgba(232,197,71,0.7));
    transition: width .4s cubic-bezier(.22,1,.36,1);
}
.chat__progress-label {
    position: relative; z-index: 1;
    font-size: .68rem; letter-spacing: .04em; color: var(--gold-bright);
    font-weight: 500;
}
.chat__head-id { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.chat__avatar {
    position: relative; flex: none;
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
    background: #0a0a0a; color: var(--gold-bright);
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.chat__avatar-ring {
    position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid rgba(245,214,122,0.35);
}
.chat__head-meta { display: grid; gap: .15rem; line-height: 1.2; min-width: 0; }
.chat__head-meta strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.01em; }
.chat__head-meta span { font-size: .7rem; opacity: .82; display: inline-flex; align-items: center; gap: .35rem; min-width: 0; }
.chat__status-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat__head-meta span[data-state="offline"] .chat__online { background: #c9a227; box-shadow: 0 0 8px #e8c547; }
.chat__online { width: 7px; height: 7px; border-radius: 50%; background: #0a7d2c; box-shadow: 0 0 8px #15c04a; flex: none; }
.chat__head-actions { display: flex; align-items: center; gap: .35rem; flex: none; }
.chat__icon-btn, .chat__close {
    background: rgba(0,0,0,0.1); border: 0; width: 34px; height: 34px; border-radius: 50%;
    color: #0a0a0a; display: grid; place-items: center; cursor: pointer;
    transition: background .25s, transform .25s;
}
.chat__icon-btn svg, .chat__close svg { width: 17px; height: 17px; }
.chat__icon-btn:hover, .chat__close:hover { background: rgba(0,0,0,0.22); transform: scale(1.05); }

.chat__body {
    position: relative; z-index: 1;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat__scroll {
    flex: 1 1 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding: 1rem 0.65rem 1rem 1rem;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.55) rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(80% 50% at 100% 0%, rgba(212,175,55,0.06), transparent 50%),
        radial-gradient(60% 40% at 0% 100%, rgba(212,175,55,0.04), transparent 45%);
}

.chat__scroll::-webkit-scrollbar { width: 8px; }
.chat__scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    margin: 4px 0;
}
.chat__scroll::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
}
.chat__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.65);
    background-clip: padding-box;
}

.chat__scroll > * + * { margin-top: 0.85rem; }

/* welcome screen */
.chat__welcome {
    text-align: center; padding: 1.2rem .5rem 1.5rem;
}
.chat__welcome.is-hidden { display: none; }
.chat__welcome-icon {
    width: 48px; height: 48px; margin: 0 auto .9rem; border-radius: 16px;
    display: grid; place-items: center; font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.25); color: var(--gold-bright);
}
.chat__welcome h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); margin-bottom: .45rem; }
.chat__welcome h3 em { font-family: var(--font-serif); font-style: italic; color: var(--gold-bright); text-transform: lowercase; }
.chat__welcome p { font-size: .86rem; color: var(--muted); line-height: 1.55; max-width: 28ch; margin: 0 auto 1.1rem; }
.chat__welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.chat__welcome-card {
    text-align: left; padding: .75rem .8rem; border-radius: 14px; cursor: pointer;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.chat__welcome-card:hover { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.35); transform: translateY(-2px); }
.chat__welcome-card-ico { font-size: 1.1rem; display: block; margin-bottom: .35rem; }
.chat__welcome-card strong { display: block; font-size: .82rem; color: var(--text); font-weight: 600; }
.chat__welcome-card small { display: block; font-size: .7rem; color: var(--muted); margin-top: .15rem; }

/* message rows */
.chat__row {
    display: flex; gap: .55rem; align-items: flex-end;
    max-width: 100%;
    flex-shrink: 0;
}
.chat__row--user { flex-direction: row-reverse; align-self: flex-end; }
.chat__row--bot, .chat__row--typing { align-self: flex-start; }
.chat__bubble-avatar {
    flex: none; width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center; font-size: .72rem; font-weight: 700;
    font-family: var(--font-display); background: #0a0a0a; color: var(--gold-bright);
    border: 1px solid rgba(212,175,55,0.3); margin-bottom: 1.1rem;
}
.chat__row--user .chat__bubble-avatar { display: none; }
.chat__bubble-wrap { display: grid; gap: .25rem; max-width: 88%; }
.chat__row--user .chat__bubble-wrap { align-items: flex-end; }
.chat__time { font-size: .62rem; color: var(--muted); padding: 0 .2rem; }

.chat__msg {
    padding: .75rem .95rem; border-radius: 18px;
    font-size: .88rem; line-height: 1.55; word-break: break-word;
}
.chat__msg strong { font-weight: 700; }
.chat__msg code { font-size: .82em; background: rgba(0,0,0,0.25); padding: .1em .35em; border-radius: 4px; }
.chat__msg--bot {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--text);
    border-bottom-left-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.chat__msg--user {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: #0a0a0a; font-weight: 500;
    border-bottom-right-radius: 6px;
    box-shadow: 0 6px 24px rgba(212,175,55,0.25);
}
.chat__msg--bot a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.chat__msg--rich { background: transparent; border: 0; padding: 0; box-shadow: none; }
.chat__cursor {
    display: inline-block; width: 2px; height: 1em; margin-left: 2px;
    background: var(--gold-bright); vertical-align: text-bottom;
    animation: chatBlink .8s step-end infinite;
}
@keyframes chatBlink { 50% { opacity: 0; } }
.chat__row.is-streaming .chat__msg--bot { border-color: rgba(212,175,55,0.2); }

.chat__typing { display: inline-flex; gap: 5px; align-items: center; padding: .85rem 1rem; }
.chat__typing span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--muted);
    animation: chatdot 1s infinite;
}
.chat__typing span:nth-child(2) { animation-delay: .15s; }
.chat__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatdot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }

.chat__cta-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.chat__cta {
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--gold); color: #0a0a0a; font-weight: 600; font-size: .8rem;
    padding: .5rem .85rem; border-radius: 100px; text-decoration: none !important;
    transition: transform .25s, box-shadow .25s;
}
.chat__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.chat__cta svg { width: 14px; height: 14px; }
.chat__cta--ghost { background: rgba(255,255,255,0.06); color: var(--gold-bright); border: 1px solid rgba(212,175,55,0.3); }

.chat__lead-form {
    display: grid; gap: .65rem; width: 100%; max-width: 100%;
    padding: .85rem; border-radius: 14px;
    background: rgba(0,0,0,0.35); border: 1px solid rgba(212,175,55,0.28);
}
.chat__lead-title {
    margin: 0 0 .15rem; font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.45;
}
.chat__lead-field { display: grid; gap: .3rem; }
.chat__lead-field span {
    font-size: .68rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--muted);
}
.chat__lead-field input {
    width: 100%; padding: .55rem .7rem; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
    color: var(--text); font-size: .84rem;
}
.chat__lead-field input:focus {
    outline: none; border-color: rgba(212,175,55,0.45);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}
.chat__lead-submit {
    margin-top: .25rem; padding: .6rem .9rem; border: 0; border-radius: 100px;
    background: var(--gold); color: #0a0a0a; font-weight: 700; font-size: .82rem;
    cursor: pointer; transition: transform .25s, box-shadow .25s;
}
.chat__lead-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.chat__lead-form.is-sent .chat__lead-field { opacity: .55; pointer-events: none; }
.chat__lead-form.is-sent .chat__lead-submit { background: rgba(212,175,55,0.35); color: var(--text); }

.chat__links { display: grid; gap: .45rem; width: 100%; }
.chat__link-card {
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
    padding: .65rem .85rem; border-radius: 12px; text-decoration: none !important;
    background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.22);
    color: var(--gold-bright); font-size: .82rem; font-weight: 600;
    transition: background .25s, transform .25s;
}
.chat__link-card:hover { background: rgba(212,175,55,0.16); transform: translateX(3px); }
.chat__link-card svg { width: 15px; height: 15px; flex: none; opacity: .8; }

.chat__quick {
    position: relative; z-index: 2; flex-shrink: 0;
    display: flex; flex-wrap: nowrap; gap: .4rem;
    padding: .5rem .85rem .65rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    background: rgba(0,0,0,0.15);
}
.chat__quick::-webkit-scrollbar { display: none; }
.chat__chip {
    flex: none; white-space: nowrap;
    background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.28);
    color: var(--gold-bright); font-size: .76rem; font-weight: 500;
    padding: .42rem .75rem; border-radius: 100px; cursor: pointer;
    transition: background .25s, transform .25s, border-color .25s;
}
.chat__chip:hover { background: rgba(212,175,55,0.18); border-color: rgba(212,175,55,0.45); transform: translateY(-1px); }

.chat__input {
    position: relative; z-index: 2; flex-shrink: 0;
    padding: .65rem .85rem .75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.28);
}
.chat__input-wrap {
    display: flex; gap: .5rem; align-items: center;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; padding: .35rem .35rem .35rem 1rem;
    transition: border-color .3s, box-shadow .3s;
}
.chat__input-wrap:focus-within {
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.chat__input input {
    flex: 1; background: transparent; border: 0; outline: none;
    color: var(--text); font-size: 16px; min-width: 0;
}
.chat__input input::placeholder { color: var(--muted); }
.chat__send {
    flex: none; width: 42px; height: 42px; border-radius: 50%; border: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #0a0a0a; display: grid; place-items: center; cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}
.chat__send svg { width: 18px; height: 18px; }
.chat__send:hover { transform: scale(1.06); box-shadow: 0 6px 22px rgba(212,175,55,0.4); }
.chat__footnote {
    margin: .45rem 0 0; text-align: center;
    font-size: .72rem; color: var(--muted); letter-spacing: .02em;
}

@media (max-width: 480px) {
    .chat { width: calc(100vw - 1.2rem); right: .6rem; height: min(82vh, 680px); border-radius: 22px; }
    .chat__welcome-grid { grid-template-columns: 1fr; }
}

/* touch devices — chat controls and filter chips meet the 44px minimum */
@media (hover: none), (pointer: coarse) {
    .chat__icon-btn, .chat__close { width: 44px; height: 44px; }
    .chat__send { width: 44px; height: 44px; }
    .pfilter button { min-height: 44px; font-size: .9rem; padding: .6rem 1.15rem; }
}
@media (hover: hover) and (pointer: fine) {
    .chat__icon-btn, .chat__close, .chat__chip, .chat__send, .chat__welcome-card, .chat__input input { cursor: none; }
}

/* ============ INNER PAGE HERO ============ */
.phero { position: relative; overflow: hidden; padding: clamp(8rem, 16vh, 12rem) 0 clamp(3.5rem, 8vw, 6rem); background: var(--bg); }
.phero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(70% 60% at 85% 0%, rgba(212,175,55,0.20), transparent 58%),
        radial-gradient(60% 55% at 0% 100%, rgba(212,175,55,0.10), transparent 55%);
}
.phero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.phero--center .phero__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.phero__eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.phero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 12px var(--gold-bright); animation: pulse 2s infinite; }
.phero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 0.96; letter-spacing: -0.035em; text-transform: uppercase; color: var(--white); }
.phero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: lowercase; color: var(--gold-bright); }
.phero__sub { margin-top: clamp(1.2rem, 3vw, 1.8rem); max-width: 56ch; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.7; color: var(--muted); }
.phero--center .phero__sub { margin-inline: auto; }
.phero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.phero--center .phero__actions { justify-content: center; }
.phero__media { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.phero__media img, .phero__media video { width: 100%; height: 100%; object-fit: cover; }
.phero__crumbs { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; }
.phero__crumbs a { color: var(--muted); transition: color .25s; }
.phero__crumbs a:hover { color: var(--gold-bright); }
.phero__crumbs span { color: var(--gold); }

/* buttons reusable */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; padding: .85rem 1.5rem; border-radius: 100px; transition: transform .4s var(--ease), background .4s, box-shadow .4s, border-color .4s; }
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--gold); color: #0a0a0a; }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 36px var(--glow-g); }
.btn--ghost { color: var(--white); border: 1.5px solid rgba(244,241,251,0.3); background: rgba(255,255,255,0.04); }
.btn--ghost:hover { border-color: var(--gold-bright); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.section--light .btn--ghost { color: var(--ink); border-color: rgba(20,18,16,0.2); background: rgba(20,18,16,0.02); }
.section--light .btn--ghost:hover { border-color: var(--gold-deep); background: rgba(20,18,16,0.05); }

/* ============ GENERIC SECTION ============ */
.sec { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.sec--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.7; color: var(--muted); max-width: 62ch; }
.section--light .lead { color: var(--ink-soft); }

/* ============ FEATURE / VALUE GRID (reusable cards) ============ */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cards2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.icard {
    position: relative; overflow: hidden; padding: 1.9rem; border-radius: 22px;
    background: linear-gradient(170deg, rgba(212,175,55,0.08), rgba(255,255,255,0.015));
    border: 1px solid rgba(212,175,55,0.16);
    display: flex; flex-direction: column; gap: 1.1rem;
    transition: transform .5s var(--ease), border-color .5s, box-shadow .5s, background .5s;
}
.icard:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 30px 60px rgba(0,0,0,0.4); background: linear-gradient(170deg, rgba(212,175,55,0.16), rgba(212,175,55,0.03)); }
.icard__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-bright); background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); transition: background .5s, color .5s, transform .5s var(--ease); }
.icard__ico svg { width: 26px; height: 26px; }
.icard:hover .icard__ico { background: var(--gold); color: #0a0a0a; transform: rotate(-8deg); }
.icard h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--white); }
.icard p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.icard__num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: rgba(212,175,55,0.4); }
.section--light .icard { background: linear-gradient(170deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)); border-color: rgba(212,175,55,0.22); box-shadow: 0 14px 40px rgba(20,18,16,0.06); }
.section--light .icard:hover { box-shadow: 0 24px 56px rgba(212,175,55,0.14); background: #fff; }
.section--light .icard h3 { color: var(--ink); }
.section--light .icard p { color: var(--ink-soft); }
.section--light .icard__ico { color: var(--gold-deep); }
.section--light .icard:hover .icard__ico { background: var(--gold-deep); color: #fff; }

/* ============ SPLIT FEATURE ROW (image + copy alternating) ============ */
.splits { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.split__media img, .split__media video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split:hover .split__media img { transform: scale(1.05); }
.split__k { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: inline-block; }
.split__t { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.split__t em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-bright); }
.split p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.split__list { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.split__list li { position: relative; padding-left: 1.8rem; color: var(--text); font-size: .98rem; line-height: 1.5; }
.split__list li::before { content: '✦'; position: absolute; left: 0; top: .1em; color: var(--gold); }
.section--light .split__t { color: var(--ink); }
.section--light .split p { color: var(--ink-soft); }
.section--light .split__list li { color: var(--ink); }

/* ============ TWO-COLUMN "give / get" ============ */
.give { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.give__col { padding: clamp(1.8rem, 3vw, 2.4rem); border-radius: 24px; border: 1px solid rgba(212,175,55,0.18); background: var(--surface); }
.give__col--alt { background: linear-gradient(170deg, rgba(212,175,55,0.12), rgba(255,255,255,0.02)); }
.give__col h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--white); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.give__col h3 span { color: var(--gold-bright); }
.give__list { list-style: none; display: grid; gap: .9rem; }
.give__list li { position: relative; padding-left: 1.9rem; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.give__list li::before { content: ''; position: absolute; left: 0; top: .25em; width: 18px; height: 18px; border-radius: 50%; background: rgba(212,175,55,0.14); border: 1px solid var(--gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5d67a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; }

/* ============ MEDIA SLOT — self-upgrading image/video placeholder ============
   Drop a real file at the path shown in the hint and the placeholder
   disappears automatically (img.onerror toggles [data-media-slot].is-empty).
   Until then it renders as an intentional, on-brand "coming soon" card —
   never a broken-image icon. Shimmer is transform-only (compositor cost). */
.media-slot { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid rgba(212,175,55,0.18); background: var(--surface); }
.media-slot__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-slot__placeholder {
    position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center;
    gap: .65rem; text-align: center; padding: 1.5rem; overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 50% 15%, rgba(212,175,55,0.16), transparent 60%),
        linear-gradient(165deg, #17140d, #0d0b07 75%);
}
.media-slot__placeholder::before {
    content: ''; position: absolute; inset: 10px; border: 1px dashed rgba(212,175,55,0.3); border-radius: 14px; pointer-events: none;
}
.media-slot__placeholder::after {
    content: ''; position: absolute; top: 0; left: -30%; width: 55%; height: 100%; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(212,175,55,0.16), transparent);
    transform: translateX(-40%);
    animation: mediaSlotShimmer 3.6s ease-in-out infinite;
}
@keyframes mediaSlotShimmer { 0%, 45% { transform: translateX(-40%); } 100% { transform: translateX(280%); } }
.media-slot.is-empty .media-slot__img { display: none; }
.media-slot.is-empty .media-slot__placeholder { display: flex; }
.media-slot__icon { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--gold-bright); background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.35); }
.media-slot__icon svg { width: 21px; height: 21px; }
.media-slot__label { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--text); max-width: 22ch; line-height: 1.35; }
.media-slot__hint { position: relative; z-index: 1; font-size: .66rem; color: var(--muted-2); letter-spacing: .01em; word-break: break-all; max-width: 26ch; }
@media (prefers-reduced-motion: reduce) { .media-slot__placeholder::after { animation: none; } }

/* ============ USE-CASES / CHIPS GRID ============ */
.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.usecase { display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.4rem; border-radius: 18px; background: var(--surface); border: 1px solid rgba(212,175,55,0.16); transition: transform .4s var(--ease), border-color .4s, background .4s; }
.usecase:hover { transform: translateY(-4px); border-color: var(--gold); background: linear-gradient(170deg, rgba(212,175,55,0.12), rgba(255,255,255,0.02)); }
.usecase__ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--gold-bright); background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); }
.usecase__ico svg { width: 24px; height: 24px; }
.usecase span { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text); }

/* ============ OUR PRESENCE — shared map + locations page (dark) ============ */

/* Interactive presence UI must be visible immediately (no scroll-reveal hide) */
.presence-home [data-fade],
.presence-explorer [data-fade],
.presence-hero [data-fade],
.presence-directory [data-fade],
.presence-hq-section [data-fade] {
    opacity: 1;
    transform: none;
}

/* --- interactive map (always dark, high contrast) --- */
.presence-map {
    position: relative;
    width: 100%;
    min-height: clamp(340px, 42vh, 560px);
    border-radius: 24px;
    background:
        radial-gradient(ellipse 80% 70% at 50% 45%, rgba(212,175,55,0.06), transparent 65%),
        linear-gradient(180deg, #0c0c0c 0%, #121010 100%);
    border: 1px solid rgba(212,175,55,0.28);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(212,175,55,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.presence-map--teaser { max-width: none; }
.presence-map--full { min-height: clamp(400px, 52vh, 640px); }
.presence-map__img {
    width: 100%;
    height: auto;
    max-height: min(480px, 50vh);
    display: block;
    margin-inline: auto;
    position: relative;
    z-index: 1;
    filter: brightness(1.05) contrast(1.08) drop-shadow(0 0 28px rgba(212,175,55,0.15));
    opacity: .92;
}
.presence-map__img.is-hidden { display: none; }
.presence-map.is-static {
    display: block;
    min-height: auto;
    padding: clamp(1rem, 2vw, 1.5rem);
}
.presence-map__svg {
    width: 100%;
    height: auto;
    max-height: min(480px, 50vh);
    display: block;
    overflow: visible;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.presence-map path {
    fill: rgba(255,255,255,0.07);
    stroke: rgba(212,175,55,0.28);
    stroke-width: 0.7;
    transition: fill .45s var(--ease), stroke .45s, opacity .45s, filter .45s;
    cursor: pointer;
    outline: none;
}
.presence-map path.is-on {
    fill: rgba(212,175,55,0.32);
    stroke: rgba(212,175,55,0.65);
}
.presence-map path.is-active {
    fill: rgba(212,175,55,0.55);
    stroke: var(--gold-bright);
    stroke-width: 1.2;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.45));
}
.presence-map path.is-dim { opacity: .18; pointer-events: none; }
.presence-map path:focus-visible { stroke: var(--gold-bright); stroke-width: 1.4; }
.presence-map__marker {
    fill: var(--gold-bright);
    stroke: #0a0a0a;
    stroke-width: 1.6;
    cursor: pointer;
    transition: r .35s var(--ease), fill .35s;
    filter: drop-shadow(0 0 6px rgba(245,214,122,0.6));
}
.presence-map__marker.is-active { fill: #fff; stroke: var(--gold-deep); stroke-width: 2.2; }
.presence-map__pulse {
    fill: var(--gold);
    opacity: .45;
    transform-box: fill-box;
    transform-origin: center;
    animation: presence-pulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes presence-pulse {
    0% { transform: scale(.5); opacity: .6; }
    80%, 100% { transform: scale(3); opacity: 0; }
}
.presence-map__tip {
    position: absolute;
    z-index: 5;
    transform: translate(-50%, -130%);
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(212,175,55,0.5);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 600;
    padding: .45rem .85rem;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.presence-map__tip.is-on { opacity: 1; }
.presence-map__hint {
    text-align: center;
    font-size: .82rem;
    color: var(--gold-bright);
    opacity: .75;
    margin-top: .85rem;
}
.presence-map__fallback { color: var(--muted); text-align: center; padding: 2.5rem 1rem; font-size: .92rem; }
.presence-map__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.1rem;
    justify-content: center;
}
.presence-map__legend span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--muted);
}
.presence-map__legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.presence-map__legend-dot--state { background: rgba(212,175,55,0.35); border: 1px solid rgba(212,175,55,0.65); }
.presence-map__legend-dot--hub { background: var(--gold-bright); box-shadow: 0 0 8px rgba(245,214,122,0.5); }

/* --- locations hero --- */
.presence-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(8rem, 16vh, 11rem) 0 clamp(2.5rem, 6vw, 4rem);
    background: var(--bg);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}
.presence-hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 80% at 20% 20%, rgba(212,175,55,0.14), transparent 55%),
        radial-gradient(50% 70% at 85% 60%, rgba(212,175,55,0.08), transparent 50%);
}
.presence-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    justify-items: center;
    text-align: center;
}
.presence-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: var(--white);
    max-width: 14ch;
}
.presence-hero__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
}
.presence-hero__sub {
    max-width: 54ch;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.7;
    color: var(--muted);
}
.presence-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(.65rem, 2vw, 1rem);
    justify-content: center;
}
.presence-hero__stat {
    display: grid;
    gap: .15rem;
    padding: 1rem 1.35rem;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(212,175,55,0.2);
    min-width: 7rem;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.presence-hero__stat:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.presence-hero__stat .presence-stat__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1;
    background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.presence-hero__stat > span:last-child {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* --- map explorer --- */
.presence-explorer {
    position: relative;
    background: var(--bg);
    padding-block: clamp(3rem, 7vw, 5.5rem);
    overflow: hidden;
}
.presence-explorer__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(212,175,55,0.07), transparent 60%);
}
.presence-explorer .wrap { position: relative; z-index: 1; }
.presence-explorer__head {
    max-width: 52rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.presence-explorer__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: .75rem;
}
.presence-explorer__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
}
.presence-explorer__head p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 48ch;
}
.presence-explorer__layout {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}
.presence-sidebar {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-height: 0;
}
.presence-sidebar__label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    flex: none;
}
.presence-sidebar__cta { width: 100%; justify-content: center; margin-top: .25rem; flex: none; }

/* search */
.presence-search-wrap { position: relative; flex: none; }
.presence-search__ico {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}
.presence-search {
    width: 100%;
    padding: .85rem 1rem .85rem 2.65rem;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.22);
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}
.presence-search::placeholder { color: var(--muted-2); }
.presence-search:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* region filters */
.presence-filters { display: flex; flex-wrap: wrap; gap: .4rem; flex: none; }
.presence-filter {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .76rem;
    padding: .45rem .85rem;
    border-radius: 100px;
    border: 1px solid rgba(212,175,55,0.2);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    transition: all .3s var(--ease);
}
.presence-filter:hover { color: var(--text); border-color: var(--gold); }
.presence-filter.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
    font-weight: 600;
}

/* hub list — scrollable, always visible on laptop */
.presence-hub-list {
    display: grid;
    gap: .4rem;
    overflow-y: auto;
    padding-right: .35rem;
    min-height: 200px;
    max-height: min(420px, 45vh);
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.4) transparent;
}
.presence-hub {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    text-align: left;
    padding: .8rem .95rem;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.14);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: transform .35s var(--ease), border-color .35s, background .35s;
    flex: none;
}
.presence-hub:hover { transform: translateX(4px); border-color: rgba(212,175,55,0.4); }
.presence-hub.is-active {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.16), var(--surface));
}
.presence-hub.is-hidden { display: none; }
.presence-hub__dot {
    flex: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .5;
    transition: opacity .3s, transform .3s, box-shadow .3s;
}
.presence-hub.is-active .presence-hub__dot {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--gold-bright);
}
.presence-hub__body { flex: 1; min-width: 0; display: grid; gap: .12rem; }
.presence-hub__body strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    color: var(--white);
}
.presence-hub__body span {
    font-size: .78rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.presence-hub__arrow {
    flex: none;
    width: 16px;
    height: 16px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .3s, transform .3s;
}
.presence-hub:hover .presence-hub__arrow,
.presence-hub.is-active .presence-hub__arrow { opacity: 1; transform: none; }

/* map stage + detail card */
.presence-map-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.presence-detail {
    position: absolute;
    left: clamp(.75rem, 2vw, 1.25rem);
    bottom: clamp(3.5rem, 8vw, 4.5rem);
    max-width: 22rem;
    z-index: 3;
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212,175,55,0.32);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55);
    transition: opacity .35s, transform .35s var(--ease);
}
.presence-detail.is-updating { opacity: .65; transform: translateY(6px); }
.presence-detail .presence-spotlight__title { font-size: 1.25rem; }
.presence-detail .presence-spotlight__blurb { font-size: .85rem; margin-bottom: .75rem; }
.presence-detail .presence-spotlight__meta { margin-bottom: .75rem; padding-top: .65rem; grid-template-columns: 1fr 1fr; }
.presence-detail .presence-spotlight__top { margin-bottom: .4rem; }
.presence-detail .presence-spotlight__badge { font-size: .58rem; padding: .22rem .45rem; }

/* city directory (dark) */
.presence-directory {
    background: var(--bg-2);
    padding-block: clamp(3.5rem, 8vw, 6rem);
    border-top: 1px solid rgba(212,175,55,0.08);
}
.presence-directory__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.presence-directory__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: .75rem;
}
.presence-directory__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
}
.presence-directory__sub {
    margin-top: .75rem;
    color: var(--muted);
    font-size: .98rem;
}
.presence-directory__head .presence-search-wrap { min-width: min(100%, 320px); }
.presence-directory__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
    gap: .75rem;
}
.presence-city {
    padding: 1.1rem 1.15rem;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid rgba(212,175,55,0.14);
    display: grid;
    gap: .35rem;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.presence-city:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.presence-city.is-hidden { display: none; }
.presence-city h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}
.presence-city p { font-size: .82rem; color: var(--muted); }
.presence-city__link {
    justify-self: start;
    margin-top: .25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .78rem;
    color: var(--gold-bright);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color .25s;
}
.presence-city__link:hover { color: var(--gold); }
.presence-city__soon {
    font-size: .72rem;
    font-weight: 500;
    color: var(--muted-2);
    margin-top: .25rem;
}

/* HQ section */
.presence-hq-section {
    background: var(--bg);
    padding-block: clamp(3rem, 7vw, 5rem);
    border-top: 1px solid rgba(212,175,55,0.08);
}
.presence-hq {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* google map embed */
.gmap { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 24px 60px rgba(0,0,0,0.4); aspect-ratio: 16/9; }
.gmap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }
.hqcard { display: grid; gap: 1rem; align-content: center; }
.hqcard h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--white); }
.hqcard address { font-style: normal; color: var(--muted); line-height: 1.7; font-size: 1rem; }
.hqcard .btn { width: fit-content; }

/* ============ GALLERY GRID + LIGHTBOX ============ */
.ggrid { columns: 3; column-gap: 1.1rem; }
.ggrid figure { break-inside: avoid; margin: 0 0 1.1rem; position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; box-shadow: 0 18px 44px rgba(0,0,0,0.35); }
.ggrid img { width: 100%; height: auto; display: block; transition: transform .9s var(--ease); }
.ggrid figure:hover img { transform: scale(1.06); }
.ggrid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem .9rem; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .98rem; background: linear-gradient(180deg, transparent, rgba(10,10,10,0.85)); opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.ggrid figure:hover figcaption { opacity: 1; transform: none; }
.lightbox { position: fixed; inset: 0; z-index: 950; display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); background: rgba(8,8,8,0.92); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: 14px; box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.lightbox__close { position: absolute; top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.4); background: rgba(20,18,16,0.8); color: var(--text); display: grid; place-items: center; cursor: pointer; }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.4); background: rgba(20,18,16,0.8); color: var(--text); display: grid; place-items: center; cursor: pointer; }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: clamp(.5rem,2vw,2rem); } .lightbox__nav--next { right: clamp(.5rem,2vw,2rem); }

/* ============ AWARDS ============ */
.awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.award { padding: 2rem 1.8rem; border-radius: 22px; background: var(--surface); border: 1px solid rgba(212,175,55,0.18); transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; display: grid; gap: .8rem; }
.award:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 26px 56px rgba(0,0,0,0.4); }
.award__medal { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 32% 28%, var(--gold-bright), var(--gold) 60%, var(--gold-deep)); color: #0a0a0a; }
.award__medal svg { width: 28px; height: 28px; }
.award__year { font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .12em; color: var(--gold); }
.award h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--white); line-height: 1.15; }
.award p { color: var(--muted); font-size: .92rem; line-height: 1.55; }
/* press pills row (legacy) */
.press-pills { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.press-pills span { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: var(--muted); padding: .6rem 1.4rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; transition: color .35s, border-color .35s; }
.press-pills span:hover { color: var(--gold-bright); border-color: rgba(212,175,55,0.4); }

/* ============ FAQ ACCORDION ============ */
.faq { display: grid; gap: .8rem; max-width: 880px; }
.faq__item { border: 1px solid rgba(212,175,55,0.18); border-radius: 16px; background: var(--surface); overflow: hidden; transition: border-color .4s; }
.faq__item.is-open { border-color: var(--gold); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; background: none; border: 0; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: clamp(1.02rem, 1.6vw, 1.2rem); padding: 1.3rem 1.4rem; cursor: pointer; }
.faq__q-ico {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    position: relative;
    transition: background .35s, border-color .35s, transform .35s var(--ease);
}
/* Down chevron arrow (not +) */
.faq__q-ico::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .35s var(--ease);
    background: none;
}
.faq__q-ico::after { content: none; display: none; }
.faq__item.is-open .faq__q-ico { background: var(--gold); color: #0a0a0a; }
.faq__item.is-open .faq__q-ico::before { transform: rotate(225deg) translateY(-1px); }

/* Answers fully hidden until .is-open */
.faq__a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.4s var(--ease),
        opacity 0.28s var(--ease),
        visibility 0.28s var(--ease);
}
.faq__item.is-open .faq__a {
    max-height: 40rem;
    opacity: 1;
    visibility: visible;
}
.faq__a p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.7;
    padding: 0 1.4rem 1.3rem;
}
.section--light .faq__item { background: #fff; }
.section--light .faq__q { color: var(--ink); }
.section--light .faq__a p { color: var(--ink-soft); }

/* ============ FEEDBACK / RATING ============ */
.rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .3rem; }
.rating input { position: absolute; opacity: 0; width: 0; height: 0; }
.rating label { font-size: 2rem; color: rgba(255,255,255,0.18); cursor: pointer; transition: color .2s, transform .2s; line-height: 1; }
.rating label:hover, .rating label:hover ~ label,
.rating input:checked ~ label { color: var(--gold-bright); }
.rating label:hover { transform: scale(1.15); }

/* ============ HELP CENTRE ============ */
.help2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.helpcard { padding: clamp(2rem, 4vw, 3rem); border-radius: 24px; background: var(--surface); border: 1px solid rgba(212,175,55,0.18); display: grid; gap: 1.2rem; align-content: start; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; }
.helpcard:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 26px 56px rgba(0,0,0,0.4); }
.helpcard__ico { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: var(--gold-bright); background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); }
.helpcard__ico svg { width: 30px; height: 30px; }
.helpcard h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--white); }
.helpcard p { color: var(--muted); line-height: 1.65; }
.helpcard ul { list-style: none; display: grid; gap: .7rem; }
.helpcard ul li { position: relative; padding-left: 1.6rem; color: var(--text); font-size: .96rem; line-height: 1.5; }
.helpcard ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* ============ LEGAL / PROSE HIGH-END DESIGN SYSTEM ============ */
.legal-page {
    position: relative;
    padding-bottom: 6rem;
}
.legal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.8rem;
    align-items: start;
}
@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.legal-sidebar {
    position: sticky;
    top: 6.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}
.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.6rem;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
@media (max-width: 992px) {
    .legal-sidebar {
        position: static;
    }
    .legal-nav {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 100px;
    }
}
.legal-nav a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.75rem 1.1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .legal-nav a {
        border-radius: 100px;
        padding: 0.5rem 1.1rem;
    }
}
.legal-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}
.legal-nav a.is-active {
    color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
}

/* Prose Luxury Card Container */
.prose-container {
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px;
    padding: clamp(1.8rem, 4.5vw, 3.5rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.prose {
    max-width: 100%;
}
.prose__meta-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 2.5rem;
}
.prose__meta-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    flex-shrink: 0;
}
.prose__meta-icon svg {
    width: 20px;
    height: 20px;
}
.prose__meta-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.5;
}
.prose__meta-text strong {
    color: var(--gold-bright);
}
.prose h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    color: var(--white);
    margin: 2.8rem 0 1.2rem;
    letter-spacing: -0.01em;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prose h2:first-of-type {
    margin-top: 0;
}
.prose h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--gold-bright);
    margin: 1.8rem 0 0.8rem;
}
.prose p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}
.prose ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}
.prose ul li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.96rem;
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}
.prose ol {
    margin: 0 0 1.5rem 1.4rem;
    display: grid;
    gap: 0.75rem;
}
.prose ol li {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.96rem;
}
.prose strong {
    color: var(--white);
    font-weight: 600;
}
.prose a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
    transition: border-color 0.3s, color 0.3s;
}
.prose a:hover {
    color: #fff;
    border-bottom-color: var(--gold-bright);
}

/* Contact Box in Legal Pages */
.legal-contact-box {
    margin-top: 3rem;
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.85), rgba(16, 16, 16, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 1.8rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.legal-contact-box h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.2rem;
}
.legal-contact-box p {
    margin: 0;
    font-size: 0.94rem;
}
.legal-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.legal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.3s var(--ease);
}
.legal-btn--gold {
    background: var(--gold);
    color: #0a0a0a !important;
    font-weight: 600;
}
.legal-btn--gold:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
.legal-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.legal-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.4) !important;
}

/* ============ REPORT / SUPPORT CARDS ============ */
.support3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.supcard { padding: 1.9rem; border-radius: 20px; background: var(--surface); border: 1px solid rgba(212,175,55,0.16); display: grid; gap: .8rem; text-align: center; justify-items: center; transition: transform .45s var(--ease), border-color .45s; }
.supcard:hover { transform: translateY(-5px); border-color: var(--gold); }
.supcard__ico { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: var(--gold-bright); background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); }
.supcard__ico svg { width: 28px; height: 28px; }
.supcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--white); }
.supcard p { color: var(--muted); font-size: .92rem; line-height: 1.5; }

/* ============ CTA BAND ============ */
.ctaband { position: relative; overflow: hidden; background: var(--bg-2); border-top: 1px solid rgba(212,175,55,0.14); }
.ctaband::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, rgba(212,175,55,0.16), transparent 60%); pointer-events: none; }
.ctaband__inner { position: relative; z-index: 1; text-align: center; display: grid; gap: 1.5rem; justify-items: center; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.ctaband h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.03em; text-transform: uppercase; color: var(--white); }
.ctaband h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: lowercase; color: var(--gold-bright); }
.ctaband p { color: var(--muted); max-width: 52ch; font-size: 1.05rem; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ============ STEP STRIP (how) reusable ============ */
.steps3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; counter-reset: step; }
.stepc { padding: 2rem 1.8rem; border-radius: 22px; background: var(--surface); border: 1px solid rgba(212,175,55,0.16); position: relative; }
.stepc__n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--gold); margin-bottom: 1rem; }
.stepc h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--white); margin-bottom: .5rem; }
.stepc p { color: var(--muted); font-size: .96rem; line-height: 1.6; }

/* ============ PRODUCT CATEGORY FILTER ============ */
.pfilter { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.2rem; }
.pfilter button { background: var(--surface); border: 1px solid rgba(212,175,55,0.2); color: var(--muted); font-size: .86rem; font-weight: 500; padding: .55rem 1.1rem; border-radius: 100px; cursor: pointer; transition: all .3s; }
.pfilter button:hover { color: var(--text); border-color: var(--gold); }
.pfilter button.is-active { background: var(--gold); color: #0a0a0a; border-color: var(--gold); font-weight: 600; }
.section--light .pfilter button { background: #fff; color: var(--ink-soft); }
.section--light .pfilter button.is-active { background: var(--gold); color: #0a0a0a; }
.phidden { display: none !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .nav__links { display: none; }
    .phero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .phero__media { order: -1; max-width: 460px; }
    .cards3, .usecases, .awards, .support3, .steps3 { grid-template-columns: repeat(2, 1fr); }
    .presence-explorer__layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .presence-sidebar { order: 2; }
    .presence-map-stage { order: 1; }
    .presence-hub-list { max-height: 320px; }
    .presence-hq { grid-template-columns: 1fr; }
    .split, .split--rev .split__media { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .split--rev .split__media { order: -1; }
    .split__media { order: -1; }
    .give, .help2 { grid-template-columns: 1fr; }
    .ggrid { columns: 2; }
}
@media (max-width: 720px) {
    .cards3, .cards2, .usecases, .awards, .support3, .steps3 { grid-template-columns: 1fr; }
    .phero { padding-top: clamp(6.5rem, 22vw, 8rem); }
    .ggrid { columns: 2; column-gap: 0.75rem; }
    .ggrid figure { margin-bottom: 0.75rem; border-radius: 12px; }
    .ggrid figcaption { padding: 1rem 0.75rem 0.5rem; font-size: 0.85rem; }
    .chat { width: calc(100vw - 1.5rem); right: .75rem; height: min(70vh, 520px); bottom: calc(env(safe-area-inset-bottom, 0px) + 5rem); }
    .dock { gap: .55rem; }
    .presence-map { padding: 0.5rem; }
    .presence-detail {
        position: static;
        max-width: none;
        margin-top: -3.5rem;
        margin-bottom: .5rem;
        margin-inline: .75rem;
    }
    .presence-map--full { min-height: 360px; }
    .legal-nav { gap: .4rem; }
    .lightbox__nav { display: none; }
    .lightbox { padding: 0.5rem; }
    .lightbox img { border-radius: 8px; }
}

@media (hover: none), (pointer: coarse) {
    .icard:hover, .usecase:hover, .award:hover, .helpcard:hover, .supcard:hover, .split:hover .split__media img { transform: none; }
}

/* ============ ABOUT THE MACHINE PAGE ============ */
.page-machine {
    background: #050505;
}

.page-machine .nav {
    background: transparent;
}

.page-machine .nav.is-scrolled {
    background: transparent;
}

.machine-unfold--page {
    min-height: 100svh;
    --story-progress: 0;
    --frame-w: min(65vw, 1025px, calc(77.5svh * 16 / 9));
    --frame-half-w: calc(var(--frame-w) / 2);
    --frame-half-h: calc(var(--frame-w) * 9 / 32);
    --caption-edge: 10%;
    --frame-touch: min(6.5vw, 103px);
}

.machine-unfold--page .machine-unfold__pin {
    padding-top: 0;
}

.machine-unfold--page .machine-unfold__stage {
    isolation: isolate;
}

.machine-unfold--page .machine-unfold__stage::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 46% 42% at 50% 46%, rgba(212, 175, 55, 0.11), transparent 72%),
        radial-gradient(ellipse 90% 80% at 50% 50%, rgba(255, 255, 255, 0.03), transparent 55%);
}

.machine-unfold--page .machine-unfold__media {
    --media-zoom: 1;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1;
    pointer-events: none;
}

.machine-unfold--page .machine-unfold__canvas,
.machine-unfold--page .machine-unfold__vignette {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
    width: var(--frame-w);
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: clamp(12px, 1.4vw, 16px);
    transform: scale(var(--media-zoom));
    transform-origin: center center;
    will-change: transform;
    overflow: hidden;
}

.machine-unfold--page .machine-unfold__canvas {
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 50px rgba(0, 0, 0, 0.35);
    background: #050505;
}

.machine-unfold--page .machine-unfold__vignette {
    border-radius: inherit;
    opacity: 0.28;
    background:
        radial-gradient(ellipse 88% 78% at 50% 50%, transparent 50%, rgba(5, 5, 5, 0.4) 100%);
    pointer-events: none;
}

.machine-unfold--page .machine-unfold__captions {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.machine-unfold--page .machine-unfold__caption {
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    opacity: 0;
    visibility: hidden;
}

.machine-unfold__caption-inner {
    position: relative;
    --caption-scrim: 0;
    transform-origin: center center;
    will-change: transform, opacity, filter;
}

.machine-unfold__caption-inner::before {
    content: '';
    position: absolute;
    inset: -0.75rem -0.9rem;
    border-radius: clamp(12px, 1.5vw, 18px);
    background: linear-gradient(145deg, rgba(8, 8, 8, 0.78), rgba(18, 16, 12, 0.62));
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px) saturate(1.15);
    opacity: var(--caption-scrim);
    z-index: -1;
    pointer-events: none;
    transition: opacity .2s linear;
}

.machine-unfold--page .machine-unfold__caption-inner::before {
    display: block;
    inset: -0.7rem -0.85rem;
    border-radius: clamp(12px, 1.4vw, 16px);
    background: linear-gradient(145deg, rgba(8, 8, 8, 0.82), rgba(14, 12, 10, 0.68));
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px) saturate(1.12);
}

.machine-unfold__caption[data-pos="hero"],
.machine-unfold__caption[data-pos="finale"] {
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%, -50%);
    width: min(320px, calc(var(--frame-w) - 2.5rem));
    max-width: calc(100% - var(--caption-edge) * 2);
    text-align: center;
}

.machine-unfold__caption[data-pos="hero"] .machine-unfold__caption-inner,
.machine-unfold__caption[data-pos="finale"] .machine-unfold__caption-inner {
    transform-origin: center center;
}

.machine-unfold__caption[data-pos="hero"] .machine-unfold__caption-title {
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.machine-unfold__caption[data-pos="rail"] {
    top: 50%;
    left: var(--caption-edge);
    right: auto;
    transform: translateY(-50%);
    width: auto;
    max-width: calc(50% - var(--frame-half-w) - var(--caption-edge) + var(--frame-touch));
}

.machine-unfold__caption[data-pos="feature"] {
    top: 50%;
    right: var(--caption-edge);
    left: auto;
    transform: translateY(-50%);
    width: auto;
    max-width: calc(50% - var(--frame-half-w) - var(--caption-edge) + var(--frame-touch));
    text-align: left;
}

.machine-unfold__caption[data-pos="feature"] .machine-unfold__caption-inner {
    transform-origin: center left;
}

.machine-unfold__caption[data-pos="feature"] .machine-unfold__stat-row {
    justify-content: flex-start;
}

.machine-unfold__caption[data-pos="finale"] .machine-unfold__caption-lead {
    margin-inline: auto;
}

.machine-unfold__caption[data-pos="finale"] .machine-unfold__caption-title {
    font-size: clamp(1.2rem, 1.9vw, 1.55rem);
    margin-bottom: 0.45rem;
}

.machine-unfold--page .machine-unfold__caption-title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.45rem;
}

.machine-unfold--page .machine-unfold__caption-k {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.45rem;
}

.machine-unfold--page .machine-unfold__caption-lead {
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.65rem;
}

.machine-unfold--page .machine-unfold__caption-btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.78rem;
    gap: 0.4rem;
}

.machine-unfold--page .machine-unfold__caption-btn svg {
    width: 0.95rem;
    height: 0.95rem;
}

.machine-unfold--page .machine-unfold__hint {
    margin-top: 0.85rem;
    padding: 0.4rem 0.7rem 0.4rem 0.6rem;
    font-size: 0.65rem;
}

.machine-unfold__story-ui {
    position: absolute;
    top: clamp(5.75rem, 13vh, 7rem);
    right: clamp(1.25rem, 4vw, 3.5rem);
    z-index: 6;
    pointer-events: none;
}

.machine-unfold__counter {
    display: flex;
    align-items: baseline;
    gap: .55rem;
    padding: .55rem 1rem .55rem .85rem;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.machine-unfold__counter-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0;
}

.machine-unfold__counter-sep {
    color: rgba(255, 255, 255, 0.25);
}

.machine-unfold__counter-label {
    color: rgba(255, 255, 255, 0.55);
    max-width: 18ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.machine-unfold__topbar {
    position: absolute;
    top: clamp(5.75rem, 13vh, 7rem);
    left: clamp(1.25rem, 5vw, 4rem);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.machine-unfold__crumb {
    color: rgba(255, 255, 255, 0.55);
    pointer-events: auto;
    transition: color .25s;
}

.machine-unfold__crumb:hover {
    color: var(--gold-bright);
}

.machine-unfold__crumb-current {
    color: var(--gold);
}

.machine-unfold__chapters {
    position: absolute;
    left: clamp(.85rem, 2vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    pointer-events: none;
    opacity: .85;
}

.machine-unfold__chapters-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.machine-unfold__chapter {
    display: block;
    width: 1px;
    height: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
    pointer-events: none;
}

.machine-unfold__chapter span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    transition: background .45s var(--ease), transform .45s var(--ease), height .45s var(--ease);
}

.machine-unfold__chapter.is-passed span {
    background: rgba(212, 175, 55, 0.35);
}

.machine-unfold__chapter.is-active span {
    height: 32px;
    width: 2px;
    margin-left: -.5px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-bright));
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.machine-unfold__stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.65rem, 1.5vw, 1rem);
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.machine-unfold__stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.machine-unfold__stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
}

.machine-unfold__stat--hero .machine-unfold__stat-num {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    background: linear-gradient(120deg, #fff 20%, var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.machine-unfold__stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}


/* Tag pills replacing the old stat number cards */
.machine-unfold__tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.75rem;
}

.machine-unfold__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.72rem;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.07);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.machine-unfold--page .machine-unfold__progress--bottom {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
}

.machine-unfold--page .machine-unfold__progress--bottom .machine-unfold__progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.55);
    transition: width .08s linear;
}

.machine-unfold--page .machine-unfold__hint {
    margin-top: 1.75rem;
    animation: machineStoryHint 2.4s var(--ease) infinite;
}

@keyframes machineStoryHint {
    0%, 100% { transform: translateY(0); opacity: .85; }
    50% { transform: translateY(6px); opacity: 1; }
}

.machine-specs {
    padding-block: clamp(3rem, 6vw, 4.5rem);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.machine-specs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
}

.machine-specs__item {
    text-align: center;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.machine-specs__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: .35rem;
}

.machine-specs__label {
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.showcase__explore {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1.75rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--gold-deep);
    transition: gap .3s var(--ease), color .3s;
}

.showcase__explore svg {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform .3s var(--ease);
}

.showcase__explore:hover {
    color: var(--gold);
    gap: .75rem;
}

.showcase__explore:hover svg {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .machine-unfold--page {
        --frame-w: min(92vw, 650px, calc(60svh * 16 / 9));
        --frame-half-w: calc(var(--frame-w) / 2);
        --frame-half-h: calc(var(--frame-w) * 9 / 32);
        --frame-touch: min(10.75vw, 65px);
    }

    .machine-unfold__caption[data-pos="hero"],
    .machine-unfold__caption[data-pos="finale"] {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(320px, calc(100vw - 2.5rem));
        max-width: none;
        text-align: center;
    }

    .machine-unfold__caption[data-pos="rail"],
    .machine-unfold__caption[data-pos="feature"] {
        top: auto;
        bottom: clamp(1.5rem, 5vh, 2.75rem);
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(340px, calc(100vw - 2rem));
        max-width: none;
        text-align: center;
    }

    .machine-unfold__caption .machine-unfold__stat-row {
        justify-content: center;
    }

    .machine-unfold__caption[data-pos="feature"] .machine-unfold__caption-inner,
    .machine-unfold__caption[data-pos="finale"] .machine-unfold__caption-inner,
    .machine-unfold__caption[data-pos="hero"] .machine-unfold__caption-inner,
    .machine-unfold__caption[data-pos="rail"] .machine-unfold__caption-inner {
        transform-origin: center center;
    }

    .machine-unfold__story-ui {
        top: auto;
        bottom: clamp(1.25rem, 5vh, 2rem);
        right: 1.25rem;
    }

    .machine-unfold__chapters {
        top: auto;
        bottom: clamp(6.5rem, 20vh, 9rem);
        transform: none;
    }

    .machine-unfold__topbar {
        display: none;
    }

    .machine-unfold--page .machine-unfold__caption-title {
        font-size: clamp(1.1rem, 4.5vw, 1.45rem);
    }

    .machine-unfold__caption[data-pos="finale"] .machine-unfold__caption-title {
        font-size: clamp(1.05rem, 4vw, 1.35rem);
    }

    .machine-specs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .machine-unfold__counter-label {
        display: none;
    }

    .machine-specs__grid {
        grid-template-columns: 1fr 1fr;
    }

    .chat {
        width: 100%;
        height: 100%;
        height: 100dvh;
        right: 0;
        bottom: 0;
        border-radius: 0;
        border: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .machine-unfold__chapter span,
    .machine-unfold--page .machine-unfold__media {
        transition: none;
    }

    .machine-unfold--page .machine-unfold__hint {
        animation: none;
    }
}

/* ============================================================
   ABOUT PAGE — cinematic, video-led editorial
   Scoped to .page-about / .ahero* so other pages stay untouched
   ============================================================ */

.page-about {
    --about-veil: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.28) 38%,
        rgba(10, 10, 10, 0.72) 72%,
        rgba(10, 10, 10, 0.96) 100%
    );
}

/* --- Full-bleed video hero --- */
.ahero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(7.5rem, 14vh, 10rem) 0 clamp(4.5rem, 9vh, 6.5rem);
    overflow: hidden;
    background: #0a0a0a;
    color: var(--text);
}

.ahero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0a0a0a;
}

.ahero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ahero__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(55% 50% at 70% 35%, rgba(212, 175, 55, 0.14), transparent 62%),
        var(--about-veil);
    pointer-events: none;
}

.ahero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    pointer-events: none;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.ahero__inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    padding-bottom: 0.5rem;
}

.ahero__crumbs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.ahero__crumbs a {
    color: var(--muted);
    transition: color 0.25s;
}

.ahero__crumbs a:hover { color: var(--gold-bright); }
.ahero__crumbs span:last-child { color: var(--gold); }

.ahero__brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3.4rem, 11vw, 8.5rem);
    line-height: 0.86;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 clamp(0.85rem, 2vw, 1.35rem);
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.ahero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.55rem, 3.6vw, 2.85rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: rgba(240, 236, 226, 0.92);
    margin: 0;
}

.ahero__line {
    display: block;
    overflow: hidden;
}

.ahero__line > span {
    display: inline-block;
}

.ahero__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
    letter-spacing: -0.02em;
}

.ahero__sub {
    margin-top: clamp(1.25rem, 2.8vw, 1.85rem);
    max-width: 40ch;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    color: rgba(156, 150, 138, 0.95);
}

.ahero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: clamp(1.6rem, 3.5vw, 2.25rem);
}

.ahero__scroll {
    position: absolute;
    z-index: 2;
    right: var(--pad);
    bottom: clamp(1.75rem, 4vh, 2.75rem);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.35s var(--ease);
}

.ahero__scroll:hover { color: var(--gold-bright); }

.ahero__scroll-line {
    display: block;
    width: 1px;
    height: 3.25rem;
    background: linear-gradient(180deg, var(--gold-bright), transparent);
    transform-origin: top;
    animation: aheroScroll 2.2s var(--ease) infinite;
}

@keyframes aheroScroll {
    0% { transform: scaleY(0.35); opacity: 0.35; }
    45% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.35); opacity: 0.2; }
}

[data-ahero-reveal] {
    opacity: 0;
    transform: translateY(1.15rem);
}

.ahero.is-ready [data-ahero-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

.ahero.is-ready .ahero__brand { transition-delay: 0.08s; }
.ahero.is-ready .ahero__line:nth-child(1) > span { transition-delay: 0.2s; }
.ahero.is-ready .ahero__line:nth-child(2) > span { transition-delay: 0.32s; }
.ahero.is-ready .ahero__sub { transition-delay: 0.46s; }
.ahero.is-ready .ahero__actions { transition-delay: 0.58s; }

/* --- Manifesto --- */
.amanifesto {
    position: relative;
    padding-block: clamp(4.5rem, 10vw, 8.5rem);
    background:
        radial-gradient(70% 55% at 0% 0%, rgba(212, 175, 55, 0.1), transparent 55%),
        var(--bg);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.amanifesto__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: end;
}

.amanifesto__index {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.15rem;
}

.amanifesto__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.8vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.amanifesto__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
}

.amanifesto__lead {
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 1.75rem;
}

.amanifesto__quote {
    margin: 0;
    padding: 0 0 0 1.35rem;
    border-left: 3px solid var(--gold);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.1vw, 1.7rem);
    line-height: 1.4;
    color: var(--text);
    max-width: 28ch;
}

/* --- Stats rail --- */
.astats {
    padding-block: 0 clamp(3.5rem, 7vw, 5.5rem);
    background: var(--bg);
}

.astats__rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.astat {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-right: 0.5rem;
}

.astat__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--gold-bright);
}

.astat__label {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}

/* --- Purpose rows --- */
.apurpose {
    background:
        radial-gradient(60% 50% at 100% 0%, rgba(212, 175, 55, 0.08), transparent 55%),
        var(--bg-2);
}

.apurpose__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.apurpose__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: var(--white);
}

.apurpose__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
}

.apurpose__rows {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.apurpose__row {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
    padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    transition: background 0.45s var(--ease);
}

.apurpose__row:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent 70%);
}

.apurpose__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--gold);
    padding-top: 0.35rem;
}

.apurpose__body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    color: var(--white);
    margin-bottom: 0.55rem;
}

.apurpose__body p {
    margin: 0;
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* --- Principles --- */
.aprinciples {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4rem, 9vw, 7.5rem);
    background:
        radial-gradient(80% 60% at 100% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
        radial-gradient(50% 40% at 0% 100%, rgba(212, 175, 55, 0.07), transparent 50%),
        var(--lavender);
}

.aprinciples__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(20, 18, 16, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, #000 15%, transparent 95%);
}

.aprinciples .section-head,
.aprinciples__list { position: relative; z-index: 1; }

.aprinciples__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin: 0;
    padding: 0;
}

.aprinciples__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    padding: clamp(1.6rem, 2.5vw, 2.1rem);
    border-radius: 22px;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 14px 40px rgba(20, 18, 16, 0.06);
    transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}

.aprinciples__item:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 24px 56px rgba(212, 175, 55, 0.14);
}

.aprinciples__mark {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.55rem;
    color: rgba(184, 144, 42, 0.55);
    line-height: 1;
}

.aprinciples__item h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.aprinciples__item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* --- Ownership split --- */
.aown {
    background: var(--bg);
}

.aown__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.25rem, 5vw, 4.5rem);
    align-items: center;
}

.aown__visual {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    background: #141210;
}

.aown__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.aown__grid:hover .aown__visual img { transform: scale(1.04); }

.aown__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.85));
}

.aown__k {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.aown__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1.1rem;
}

.aown__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--gold-bright);
}

.aown__copy > p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 42ch;
    margin: 0;
}

.aown__list {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.aown__list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.5;
}

.aown__list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.05em;
    color: var(--gold);
}

.aown__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

/* --- About page responsive --- */
@media (max-width: 1024px) {
    .amanifesto__grid,
    .aown__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aown__visual {
        aspect-ratio: 16 / 11;
        max-height: 420px;
    }

    .aprinciples__list {
        grid-template-columns: 1fr;
    }

    .astats__rail {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.25rem;
    }
}

@media (max-width: 720px) {
    .ahero {
        min-height: 92svh;
        padding: clamp(6.5rem, 12vh, 8rem) 0 clamp(3.5rem, 8vh, 4.5rem);
        justify-content: flex-end;
    }

    .ahero__brand {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .ahero__title {
        font-size: clamp(1.35rem, 5.8vw, 1.85rem);
    }

    .ahero__scroll {
        display: none;
    }

    .ahero__video {
        object-position: center center;
    }

    .apurpose__row {
        grid-template-columns: 3rem 1fr;
        gap: 0.85rem;
    }

    .astats__rail {
        grid-template-columns: 1fr 1fr;
    }

    .astat__num {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .aown__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ahero__scroll-line { animation: none; }
    [data-ahero-reveal] {
        opacity: 1;
        transform: none;
    }
    .ahero.is-ready [data-ahero-reveal] { transition: none; }
    .aprinciples__item:hover,
    .apurpose__row:hover { transform: none; }
    .aown__grid:hover .aown__visual img { transform: none; }
}
