/* ============================================================
   CAENHEBO — Quiet Luxury Design (from audit mockup)
   ============================================================ */
:root {
    --bg-dark:    #0A0A0A;
    --bg-dark2:   #111111;
    --bg-dark3:   #1A1A1A;
    --bg-dark4:   #242424;
    --gold:       #C9A84C;
    --gold-light: #E8C96A;
    --gold-grad:  linear-gradient(135deg, #E8C96A 0%, #C9A84C 100%);
    --white:      #FFFFFF;
    --gray:       #888888;
    --gray-light: #CCCCCC;
    --cyan:       #06BEFB;
    --green:      #52C47A;
    --font:       "Helvetica Neue", Helvetica, Arial, sans-serif;
    --max-w:      1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-dark);
    color: var(--white);
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}
.w-full { width: 100%; position: relative; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 200; letter-spacing: -1px; line-height: 1.1; }
h1 em { font-style: italic; color: var(--gold); font-weight: 500; font-family: Georgia, serif; }
h2 { font-size: clamp(1.8rem, 3vw, 3.5rem); font-weight: 300; color: var(--white); margin-bottom: 20px; }
h3 { font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 12px; }
h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; display: block; }

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-gold { background: var(--gold-grad); color: var(--bg-dark); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.25); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HEADER ── */
header {
    padding: 14px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.nav-flex { display: flex; align-items: center; gap: 0; }
.logo-img { max-height: 70px; width: auto; display: block; flex-shrink: 0; }
.mobile-nav-controls { display: none; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1002; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: 0.3s; }
/* Nav ocupa todo el espacio entre el logo y el borde derecho */
#navbar { flex: 1; margin-left: 32px; }
nav ul { display: flex; justify-content: space-between; align-items: center; list-style: none; flex-wrap: nowrap; white-space: nowrap; width: 100%; }
nav li { white-space: nowrap; }
nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; transition: 0.2s; white-space: nowrap; }
nav a:hover { color: var(--gold); }
nav a.btn-outline { padding: 8px 14px; font-size: 0.65rem; }
.desktop-login a { color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.desktop-login a:hover { color: var(--gold); }

/* DROPDOWN */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(10,10,10,0.98);
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 1001;
    padding: 8px 0;
    border-top: 1px solid var(--gold);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
}
.dropdown-content a { color: rgba(255,255,255,0.7); padding: 10px 16px; display: block; text-align: center; font-size: 0.78rem; }
.dropdown-content a:hover { color: var(--gold); }
@media (min-width: 769px) { .dropdown:hover .dropdown-content { display: block; } }
.dropdown-submenu { position: relative; }
.dropdown-submenu-content {
    display: none;
    position: absolute;
    top: 0; left: 100%;
    background: rgba(10,10,10,0.98);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 1002;
    border-left: 1px solid var(--gold);
    border-radius: 0 4px 4px 0;
}
.dropdown-submenu-content a { padding: 10px 18px !important; text-align: left !important; font-size: 0.78rem !important; }
@media (min-width: 769px) { .dropdown-submenu:hover .dropdown-submenu-content { display: block; } }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #050505 0%, #0D0800 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 40%);
    pointer-events: none;
}
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-url);
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.hero-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px 40px;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    animation-delay: 0.2s;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.hero h1 {
    max-width: 680px;
    margin-bottom: 20px;
    animation-delay: 0.4s;
}
.hero .hero-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation-delay: 0.6s;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation-delay: 0.8s;
}
.hero-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
.hero-trust span {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.8;
}

/* ── CRYPTO TICKER (inside hero, bottom) ── */
.hero-ticker {
    position: relative;
    z-index: 2;
    background: rgba(201,168,76,0.06);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}
.ticker-label { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 0.84rem; white-space: nowrap; flex-shrink: 0; }
.ticker-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.ticker-asset { color: var(--gray); font-size: 0.89rem; font-weight: 600; letter-spacing: 1px; }
.ticker-price { color: var(--white); font-weight: 600; font-size: 0.97rem; }
.ticker-change { font-size: 0.87rem; }
.ticker-change.up { color: var(--green); }
.ticker-change.down { color: #E05252; }
.ticker-min-prop { margin-left: auto; display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 0.7rem; color: var(--gray); }
.ticker-min-prop strong { color: var(--gold); font-weight: 700; }

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--bg-dark4);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-item { padding: 0 20px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.stat-num { font-size: 1.7rem; color: var(--gold); font-weight: 700; }
.stat-lbl { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 40px 0; }
.section-dark { background: var(--bg-dark2); }
.section-tag { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section h2 span { color: var(--gold); }

/* ── GRID CARDS (Why / Process) ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); margin-top: 24px; }
.card {
    background: var(--bg-dark3);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
}
.card:hover { background: var(--bg-dark4); border-color: rgba(201,168,76,0.15); }
.svg-icon { width: 44px; height: 44px; margin-bottom: 24px; fill: var(--gold); }
.step-count { position: absolute; top: 20px; right: 20px; font-size: 1.8rem; font-weight: 800; color: rgba(255,255,255,0.03); }
.process-section { padding: 30px 0; }
.value-section { padding: 80px 0; }

/* ── PROPERTY CARDS (grid) ── */
.prop-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-top: 32px; }
.prop-card {
    background: var(--bg-dark3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.prop-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.prop-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark4);
}
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prop-card:hover .prop-img img { transform: scale(1.05); }

/* Slideshow inside prop-img */
.slideshow-container { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1s ease-in-out; z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.slider-nav { position: absolute; bottom: 12px; right: 12px; display: flex; gap: 8px; z-index: 10; }
.slider-btn { background: rgba(10,10,10,0.75); border: 1px solid var(--gold); color: var(--gold); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; border-radius: 2px; }
.slider-btn:hover { background: var(--gold); color: var(--bg-dark); }
.prop-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--bg-dark); font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; z-index: 10; }
.prop-badge.sold { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.crypto-badge { position: absolute; bottom: 48px; right: 12px; background: rgba(10,10,10,0.8); color: var(--gold); font-size: 0.62rem; font-weight: 700; padding: 4px 10px; border-radius: 2px; border: 1px solid rgba(201,168,76,0.3); z-index: 10; }
.prop-info { padding: 20px; }
.prop-location { font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.prop-title { font-size: 1.05rem; color: var(--white); font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.prop-price { font-size: 1.4rem; color: var(--white); font-weight: 300; }
.prop-price-btc { font-size: 0.75rem; color: var(--gold); font-weight: 400; margin-left: 4px; }
.prop-specs { display: flex; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.prop-specs span { font-size: 0.72rem; color: var(--gray); }
.prop-cta { display: block; margin-top: 16px; text-align: center; padding: 10px; border: 1px solid rgba(201,168,76,0.25); color: var(--gold); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all 0.2s; border-radius: 2px; }
.prop-cta:hover { background: var(--gold); color: var(--bg-dark); }

/* ── COUNTRY DIVIDER ── */
.country-divider {
    padding: 24px 0 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 24px;
}
.country-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    line-height: 1;
    opacity: 0.9;
}

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery-item { position: relative; overflow: hidden; border-right: 1px solid rgba(255,255,255,0.05); height: 420px; }
.gallery-item:first-child, .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease, filter 1s ease; filter: grayscale(40%) brightness(0.5); }
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0%) brightness(0.9); }
.gallery-overlay { position: absolute; bottom: 32px; left: 32px; z-index: 2; pointer-events: none; }
.gallery-overlay h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.gallery-overlay p { color: var(--gold); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.7rem; font-weight: 700; }

/* ── FORM ── */
.form-section { padding: 50px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.form-section h2 { margin-bottom: 12px; }
.form-section p { color: var(--gray); font-size: 0.95rem; margin-bottom: 40px; }

/* ── FOOTER ── */
footer { padding: 40px 0; text-align: center; background: var(--bg-dark2); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-legal { margin-top: 40px; color: rgba(255,255,255,0.3); font-size: 0.82rem; line-height: 1.8; }
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; margin: 0 8px; }
.footer-legal a:hover { color: var(--gold); }

/* ── COMPLIANCE STRIP ── */
.compliance-strip {
    border-bottom: 1px solid rgba(201,168,76,0.12);
    background: rgba(201,168,76,0.03);
    padding: 10px 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    opacity: 0.75;
}
.compliance-strip span.sep { color: rgba(201,168,76,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .prop-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-item, .gallery-item:first-child, .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: span 1; height: 300px; }
}
@media (max-width: 768px) {
    header { padding: 16px 0; }
    .mobile-nav-controls { display: flex; align-items: center; gap: 16px; z-index: 1002; }
    .desktop-login { display: none !important; }
    .hamburger { display: flex; }
    .logo-img { height: 50px; }
    nav { position: fixed; top: 0; right: -100%; width: 78%; height: 100vh; background: rgba(10,10,10,0.98); backdrop-filter: blur(16px); padding-top: 80px; border-left: 1px solid rgba(201,168,76,0.2); transition: right 0.3s ease; display: block; overflow-y: auto; }
    nav.active { right: 0; }
    nav ul { flex-direction: column; align-items: flex-end; width: 100%; gap: 0; padding: 0 24px; }
    nav a { display: block; padding: 14px 0; font-size: 1rem; width: 100%; text-align: right; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .dropdown-content, .dropdown-submenu-content { position: static; transform: none; box-shadow: none; border: none; background: transparent; }
    .hero-content-wrap { padding: 40px 20px 24px; }
    h1 { font-size: 2.2rem; }
    .hero-ticker { gap: 16px; padding: 10px 20px; flex-wrap: wrap; }
    .ticker-min-prop { display: none; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 20px; }
    .grid-3 { grid-template-columns: 1fr; }
    .prop-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .gallery { grid-template-columns: 1fr; }
    .gallery-item { height: 250px; }
    .compliance-strip { padding: 16px 20px; font-size: 0.68rem; }
}

/* ── SOLD PROPERTY STATE ── */
.prop-card-sold { opacity: 0.82; }
.prop-card-sold:hover { transform: none; border-color: rgba(255,255,255,0.06); }
.sold-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.sold-stamp {
    border: 2px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 6px;
    padding: 8px 20px;
    transform: rotate(-12deg);
    text-transform: uppercase;
}
.price-sold {
    text-decoration: line-through;
    color: var(--gray) !important;
    font-size: 1.1rem !important;
    opacity: 0.6;
}

/* ── SIMILAR PROPERTIES (inside SOLD card) ── */
.similar-props { margin-top: 16px; }
.similar-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0.8;
}
.similar-list { display: flex; flex-direction: column; gap: 8px; }
.similar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 8px 10px;
    transition: border-color 0.2s, background 0.2s;
}
.similar-item:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.similar-item img {
    width: 52px;
    height: 38px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.similar-no-img {
    width: 52px;
    height: 38px;
    background: var(--bg-dark4);
    border-radius: 3px;
    flex-shrink: 0;
}
.similar-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.similar-title { font-size: 0.78rem; color: var(--white); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.similar-price { font-size: 0.7rem; color: var(--gold); }

/* ── PROPERTY SEARCH BAR ── */
.prop-search-bar {
    background: var(--bg-dark2);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
    position: sticky;
    top: 98px;
    z-index: 90;
    backdrop-filter: blur(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.prop-search-bar.search-hidden {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
}
.search-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.search-field label {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.search-text {
    flex: 1;
    min-width: 180px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 8px 14px;
    color: rgba(255,255,255,0.4);
    transition: border-color 0.2s;
}
.search-text:focus-within { border-color: rgba(201,168,76,0.4); color: var(--gold); }
.search-text svg { flex-shrink: 0; opacity: 0.5; }
.search-text input {
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.85rem;
    width: 100%;
    font-family: var(--font);
}
.search-text input::placeholder { color: rgba(255,255,255,0.3); }
.prop-search-bar select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 7px 12px;
    color: var(--white);
    font-size: 0.78rem;
    font-family: var(--font);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    width: auto;
}
.prop-search-bar select:focus { border-color: rgba(201,168,76,0.4); }
.prop-search-bar select option { background: #1A1A1A; }
.filter-tabs { display: flex; gap: 4px; }
.ftab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.15s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.ftab:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.ftab.active {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
}
.search-meta { margin-left: auto; gap: 12px; }
.filter-count {
    font-size: 0.72rem;
    color: var(--gold);
    opacity: 0.8;
    white-space: nowrap;
}
.filter-reset {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.2s;
}
.filter-reset:hover { border-color: var(--gold); color: var(--gold); }
/* Hidden card when filtered out */
.prop-card.filtered-out {
    display: none !important;
}
/* Hidden country section when all cards are filtered out */
.country-section-hidden { display: none !important; }
/* No results */
.no-results-msg { background: var(--bg-dark); }
@media (max-width: 768px) {
    .prop-search-bar { top: 90px; padding: 12px 0; }
    .search-inner { gap: 8px; }
    .search-text { min-width: 100%; width: 100%; }
    .search-field { flex-wrap: wrap; }
    .search-meta { margin-left: 0; width: 100%; justify-content: space-between; }
}

/* ── PRESS LOGOS STRIP ── */
.press-strip {
    background: var(--bg-dark2);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}
.press-strip .container {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.press-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    white-space: nowrap;
    flex-shrink: 0;
}
.press-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    flex: 1;
}
.press-logo-item {
    text-decoration: none;
    transition: opacity 0.2s;
}
.press-logo-item span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    transition: color 0.2s;
}
.press-logo-item:hover span { color: var(--gold); opacity: 1; }

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--bg-dark);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 36px;
}
.testimonials-header h2 {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.testimonial-card {
    background: var(--bg-dark3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(201,168,76,0.2);
}
.t-stars {
    display: flex;
    gap: 3px;
}
.t-stars span {
    color: var(--gold);
    font-size: 0.9rem;
}
.t-quote {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    flex: 1;
    border-left: 2px solid rgba(201,168,76,0.3);
    padding-left: 14px;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}
.t-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}
.t-role {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 2px;
}
.t-property {
    font-size: 0.7rem;
    color: rgba(201,168,76,0.6);
    margin-top: 3px;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .press-logos { gap: 16px; }
}

/* ── BTC CALCULATOR ── */
.btc-calc-section {
    background: linear-gradient(180deg, var(--bg-dark2) 0%, var(--bg-dark) 100%);
    padding: 48px 0;
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.calc-header { text-align: center; margin-bottom: 36px; }
.calc-header h2 { font-size: clamp(1.4rem,2.8vw,2.2rem); font-weight: 300; margin-bottom: 10px; }
.calc-header h2 em { font-style: italic; color: var(--gold); font-weight: 400; font-family: Georgia, serif; }
.calc-sub { font-size: 0.88rem; color: rgba(255,255,255,0.4); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* Input row */
.calc-input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.calc-amount-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.calc-amount-wrap:focus-within { border-color: var(--gold); }
.calc-currency-icon {
    padding: 0 14px;
    font-size: 1.2rem;
    color: var(--gold);
    border-right: 1px solid rgba(201,168,76,0.2);
    height: 54px;
    display: flex;
    align-items: center;
}
.calc-btc-input {
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--font);
    width: 120px;
    padding: 0 12px;
    text-align: center;
    -moz-appearance: textfield;
}
.calc-btc-input::-webkit-outer-spin-button,
.calc-btc-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-currency-label {
    padding: 0 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    border-left: 1px solid rgba(201,168,76,0.2);
    height: 54px;
    display: flex;
    align-items: center;
}
.calc-arrow {
    font-size: 1.4rem;
    color: rgba(201,168,76,0.4);
}
.calc-eur-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 12px 20px;
    min-width: 200px;
    justify-content: center;
}
.calc-eur-symbol { font-size: 1.2rem; color: var(--gold); opacity: 0.6; }
.calc-eur-display {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    transition: opacity 0.2s;
}
.calc-price-ref {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
}
.calc-price-ref strong { color: rgba(255,255,255,0.55); }

/* Presets */
.calc-presets {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.calc-preset {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.15s;
    letter-spacing: 0.5px;
}
.calc-preset:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.calc-preset.active {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 500;
}

/* Results */
.calc-results { min-height: 80px; }
.calc-results-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    justify-content: center;
}
#calc-match-count {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
}
.calc-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
/* Mini property card inside calculator */
.calc-prop-card {
    background: var(--bg-dark3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.calc-prop-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.calc-prop-img {
    height: 140px;
    background: var(--bg-dark4);
    background-size: cover;
    background-position: center;
    position: relative;
}
.calc-prop-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: rgba(201,168,76,0.85);
    color: #0A0A0A;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
}
.calc-btc-badge {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(10,10,10,0.85);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 2px;
}
.calc-prop-info { padding: 12px 14px; }
.calc-prop-loc { font-size: 0.62rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.calc-prop-title { font-size: 0.88rem; color: var(--white); font-weight: 500; line-height: 1.3; margin-bottom: 8px; }
.calc-prop-price { font-size: 1rem; color: var(--white); font-weight: 300; }
.calc-prop-btc { font-size: 0.72rem; color: var(--gold); margin-left: 6px; }
.calc-prop-specs { display: flex; gap: 10px; margin-top: 8px; font-size: 0.7rem; color: var(--gray); }
.calc-no-match {
    text-align: center;
    padding: 32px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 6px;
}
.calc-no-match a { color: var(--gold); text-decoration: none; }
.calc-no-match a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .calc-input-row { gap: 12px; }
    .calc-btc-input { width: 80px; font-size: 1.3rem; }
    .calc-eur-display { font-size: 1.3rem; }
    .calc-eur-wrap { min-width: 160px; }
    .calc-props-grid { grid-template-columns: 1fr 1fr; }
}

/* ── TRANSACTIONS DASHBOARD ── */
.tx-section { background: var(--bg-dark2); padding: 48px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.tx-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.tx-header h2 { font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 300; margin-bottom: 0; }
.tx-header h2 em { font-style: italic; color: var(--gold); font-weight: 400; font-family: Georgia, serif; }
.tx-totals { display: flex; gap: 32px; align-items: center; flex-shrink: 0; }
.tx-total-item { text-align: right; }
.tx-total-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: -0.5px; }
.tx-total-lbl { display: block; font-size: 0.62rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.tx-live-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.tx-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.tx-feed { display: flex; flex-direction: column; gap: 8px; }
.tx-loading { color: var(--gray); font-size: 0.85rem; padding: 20px 0; }
.tx-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px 20px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-dark3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: border-color 0.2s;
    animation: txSlideIn 0.4s ease forwards;
}
@keyframes txSlideIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.tx-row:hover { border-color: rgba(201,168,76,0.15); }
.tx-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.tx-details {}
.tx-buyer { font-size: 0.82rem; color: var(--white); font-weight: 500; }
.tx-property { font-size: 0.72rem; color: var(--gray); margin-top: 2px; }
.tx-amount { font-size: 0.9rem; font-weight: 600; color: var(--white); text-align: right; white-space: nowrap; }
.tx-method { font-size: 0.65rem; font-weight: 700; padding: 3px 9px; border-radius: 3px; letter-spacing: 1px; white-space: nowrap; }
.tx-method.btc  { background: rgba(247,147,26,0.12); color: #F7931A; border: 1px solid rgba(247,147,26,0.2); }
.tx-method.eth  { background: rgba(98,126,234,0.12); color: #627EEA; border: 1px solid rgba(98,126,234,0.2); }
.tx-method.sol  { background: rgba(20,241,149,0.1); color: #14F195; border: 1px solid rgba(20,241,149,0.2); }
.tx-method.eur  { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.tx-date { font-size: 0.7rem; color: rgba(255,255,255,0.25); text-align: right; grid-column: 4; }
.tx-type-badge { font-size: 0.6rem; color: var(--green); text-transform: uppercase; letter-spacing: 1px; }
.tx-type-badge.reservation { color: #06BEFB; }
.tx-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.2); margin-top: 16px; font-style: italic; }
@media (max-width: 768px) {
    .tx-row { grid-template-columns: auto 1fr auto; }
    .tx-date { display: none; }
    .tx-header { flex-direction: column; }
    .tx-totals { justify-content: flex-start; }
    .tx-total-item { text-align: left; }
}

/* ── ONBOARDING MODAL ── */
.ob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 20px;
}
.ob-overlay.active { display: flex; }
.ob-modal {
    background: var(--bg-dark2);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 36px 32px;
    animation: obSlideUp 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes obSlideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.ob-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.ob-progress-fill {
    height: 100%;
    background: var(--gold-grad);
    width: 25%;
    transition: width 0.4s ease;
}
.ob-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
}
.ob-close:hover { color: var(--white); }
.ob-step { display: none; animation: obFadeIn 0.3s ease; }
.ob-step.active { display: block; }
@keyframes obFadeIn { from { opacity:0; } to { opacity:1; } }
.ob-icon { font-size: 2.5rem; margin-bottom: 16px; display: flex; justify-content: center; align-items: center; min-height: 52px; }
.ob-logo-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.ob-logo { height: 52px; width: auto; display: block; background: rgba(255,255,255,0.06); padding: 8px 16px; border-radius: 8px; }
.ob-title { font-size: 1.4rem; font-weight: 300; margin-bottom: 12px; }
.ob-title em { font-style: italic; color: var(--gold); font-family: Georgia, serif; }
.ob-text { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.ob-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.ob-badges span { font-size: 0.7rem; padding: 5px 12px; border-radius: 20px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); color: var(--gold); letter-spacing: 0.5px; }
/* Options grid */
.ob-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.ob-option {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 16px 14px;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.15s;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
}
.ob-option:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }
.ob-option.selected { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.ob-option-icon { font-size: 1.4rem; }
.ob-option small { font-size: 0.7rem; color: var(--gold); font-weight: 400; }
/* Buttons */
.ob-btn-primary {
    width: 100%;
    background: var(--gold-grad);
    color: #0A0A0A;
    border: none;
    border-radius: 4px;
    padding: 14px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: var(--font);
    transition: opacity 0.2s, transform 0.2s;
    margin-bottom: 10px;
}
.ob-btn-primary:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.ob-btn-primary:disabled { opacity: 0.35; cursor: not-allowed; }
.ob-btn-skip { width: 100%; background: none; border: none; color: rgba(255,255,255,0.3); font-size: 0.78rem; cursor: pointer; font-family: var(--font); padding: 6px; transition: color 0.2s; }
.ob-btn-skip:hover { color: rgba(255,255,255,0.6); }
/* Mini steps */
.ob-steps-mini { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ob-step-mini { display: flex; align-items: flex-start; gap: 14px; }
.ob-mini-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ob-step-mini strong { display: block; font-size: 0.88rem; color: var(--white); margin-bottom: 2px; }
.ob-step-mini p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
/* Dots */
.ob-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.ob-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: background 0.2s; }
.ob-dot.active { background: var(--gold); }
/* Floating trigger */
.ob-trigger {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 900;
    background: var(--gold-grad);
    color: #0A0A0A;
    border: none;
    border-radius: 28px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font);
}
.ob-trigger:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.4); }
.ob-trigger.hidden { display: none; }
@media (max-width: 480px) {
    .ob-modal { padding: 32px 24px 24px; }
    .ob-options { grid-template-columns: 1fr; }
}

/* ── Cookie consent banner ─────────────────────────────────── */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; background: rgba(10,10,10,0.97); border-top: 1px solid rgba(201,168,76,0.35); box-shadow: 0 -4px 24px rgba(0,0,0,0.4); backdrop-filter: blur(6px); }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1 1 420px; min-width: 260px; }
.cookie-text strong { display: block; color: var(--gold); font-size: 0.9rem; letter-spacing: 0.5px; margin-bottom: 4px; }
.cookie-text p { color: rgba(255,255,255,0.7); font-size: 0.8rem; line-height: 1.5; margin: 0; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { cursor: pointer; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 10px 22px; border-radius: 3px; border: 1px solid transparent; transition: opacity 0.2s, background 0.2s; }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.cookie-reject:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.cookie-accept { background: var(--gold); color: var(--bg-dark); }
.cookie-accept:hover { opacity: 0.88; }
@media (max-width: 600px) {
  .cookie-banner-inner { padding: 14px 16px; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 12px; }
}

/* ── Tally contact form: reserve space + loading skeleton ───── */
.tally-wrap { position: relative; min-height: 582px; }
.tally-wrap iframe { position: relative; z-index: 1; display: block; width: 100%; border: 0; }
.tally-loading { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,0.55); font-size: 0.85rem; letter-spacing: 0.5px; pointer-events: none; }
.tally-spinner { width: 34px; height: 34px; border: 3px solid rgba(201,168,76,0.25); border-top-color: var(--gold); border-radius: 50%; animation: tally-spin 0.9s linear infinite; }
@keyframes tally-spin { to { transform: rotate(360deg); } }
