/* ============================================
   SEPON KULTA — Design System CSS
   Dark + Gold Premium Theme
   Mobile-first, 8px grid
   ============================================ */

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* === Variables === */
:root {
    --bg: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-input: #242424;
    --bg-subtle: #2a2a2a;
    --gold: #c9a84c;
    --gold-hover: #d4b85c;
    --gold-muted: #8a7435;
    --text: #e8e0d4;
    --text-muted: #a09888;
    --text-heading: #ffffff;
    --text-dark: #1a1a1a;
    --success: #4a9e6d;
    --error: #c94c4c;
    --light-bg: #f5f0e8;
    --light-card: #ffffff;
    --light-text: #2a2420;
    --border: #2a2a2a;
    --border-hover: #3a3a3a;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);
    --transition: all 0.2s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* === Base === */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg); opacity: 1;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
}
h1 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
p { margin-bottom: 16px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.lead { font-size: 1.125rem; color: var(--text-muted); line-height: 1.7; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
}
.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--text-dark);
}
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* === Header === */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15,15,15,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(15,15,15,0.98);
    border-bottom-color: rgba(201,168,76,0.2);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo { display: flex; align-items: center; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 0.08em;
}
.logo-gold { color: var(--gold); }

.header-nav {
    display: none;
    gap: 32px;
}
.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.nav-link:hover::after { transform: scaleX(1); }

.header-cta {
    display: none;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.header-cta:hover { background: var(--gold-hover); }

/* Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) {
    .header-nav { display: flex; }
    .header-cta { display: inline-block; }
    .menu-toggle { display: none; }
}

/* Mobile nav overlay */



/* === Hero === */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.6) 50%, rgba(15,15,15,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.hero .lead {
    font-size: 1.125rem;
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .hero .lead { font-size: 1.25rem; }
}

/* === Price Bar === */
.price-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: -40px auto 48px;
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.price-item {
    text-align: center;
}
.price-metal {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.price-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-heading);
}
.price-unit {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* === Sections === */
.section {
    padding: 64px 0;
}
.section-light {
    background: var(--light-bg);
    color: var(--light-text);
}
.section-light h2, .section-light h3 { color: var(--light-text); }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

@media (min-width: 768px) {
    .section { padding: 96px 0; }
}

/* === Cards === */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}
.card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.25rem;
}

/* Grid layouts */
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 24px; }
.grid-4 { display: grid; gap: 24px; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Calculator === */
.calculator {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 32px;
}
.calc-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-heading);
}
.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.calc-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.calc-field select,
.calc-field input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}
.calc-field select:focus,
.calc-field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.2);
}
.calc-result {
    text-align: center;
    padding: 24px;
    margin-top: 16px;
    background: rgba(201,168,76,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,168,76,0.2);
}
.calc-result-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.calc-result-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}
.calc-result-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

@media (max-width: 480px) {
    .calc-row { grid-template-columns: 1fr; }
}

/* === Form === */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: var(--transition);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.2);
}
.form-error { color: var(--error); font-size: 0.8125rem; margin-top: 4px; }
.form-success {
    background: rgba(74,158,109,0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    color: var(--success);
}
.hp-field { position: absolute; left: -9999px; }

/* === Price Table === */
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th {
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 12px 16px;
    border-bottom: 2px solid var(--gold-muted);
}
.price-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}
.price-table tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.price-table tr:hover { background: rgba(201,168,76,0.05); }
.price-table .price-highlight {
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* === Steps === */
.steps {
    display: grid;
    gap: 32px;
    counter-reset: step;
}
.step {
    position: relative;
    padding-left: 72px;
}
.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}
.step h3 { margin-bottom: 8px; }

@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
    .step { padding-left: 0; padding-top: 72px; text-align: center; }
    .step::before { left: 50%; transform: translateX(-50%); }
}

/* === Trust === */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.trust-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === What We Buy Cards === */
.buy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.buy-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.buy-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.buy-card-body {
    padding: 24px;
}
.buy-card-body h3 { color: var(--gold); margin-bottom: 8px; }
.buy-card-body p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 16px; }

/* === Reviews === */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.review-stars { color: var(--gold); font-size: 1.125rem; margin-bottom: 12px; }
.review-text { font-size: 0.9375rem; font-style: italic; margin-bottom: 12px; color: var(--text); }
.review-author { font-size: 0.8125rem; color: var(--text-muted); }

/* === Location Cards === */
.location-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}
.location-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.location-card h3 { color: var(--gold); font-size: 1.125rem; margin-bottom: 4px; }
.location-card .city { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* === Footer === */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid var(--gold-muted);
}
.footer-top { padding: 64px 0; }
.footer-grid {
    display: grid;
    gap: 32px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* === Utilities === */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.pt-0 { padding-top: 0; }

/* === Lazy images === */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* === Breadcrumb === */
.breadcrumb {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-top: 96px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* === Page header (subpages) === */
.page-header {
    padding: 120px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, rgba(201,168,76,0.05) 0%, transparent 100%);
}
.page-header h1 { margin-bottom: 12px; }
.page-header .lead { max-width: 640px; margin: 0 auto; }



/* === Mobile Menu Overlay === */
.header-nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0f0f0f !important;
    z-index: 99990 !important;
    padding: 100px 32px 32px !important;
    overflow-y: auto !important;
    gap: 0 !important;
}
.header-nav.open .nav-link {
    font-size: 1.25rem !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #2a2a2a !important;
    color: #e8e0d4 !important;
    display: block !important;
}
.header-nav.open .nav-link:hover {
    color: #c9a84c !important;
}
.header-nav.open .nav-link::after {
    display: none !important;
}
.site-header {
    z-index: 99999 !important;
}

/* === Responsive Fixes === */
@media (max-width: 768px) {
    /* Contact page 2-column grid → stack */
    [style*='grid-template-columns: 1fr 1fr'],
    [style*='grid-template-columns:1fr 1fr'] {
        grid-template-columns: 1fr !important;
    }

    /* Calculator 2-column rows → stack */
    .calc-row {
        grid-template-columns: 1fr !important;
    }

    /* Hero text smaller */
    .hero h1 {
        font-size: 1.75rem !important;
    }
    .hero .lead {
        font-size: 1rem !important;
    }

    /* Hero buttons stack */
    .hero [style*='display: flex'] {
        flex-direction: column !important;
    }

    /* Price bar wrap */
    .price-bar {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 16px !important;
    }
    .price-item {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .price-metal {
        margin-bottom: 0 !important;
    }

    /* Footer grid stack */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    /* Section padding reduce */
    .section {
        padding: 48px 0 !important;
    }
    .page-header {
        padding: 96px 0 32px !important;
    }

    /* Steps stack vertically */
    .steps {
        grid-template-columns: 1fr !important;
    }
    .step {
        padding-left: 72px !important;
        padding-top: 0 !important;
        text-align: left !important;
    }
    .step::before {
        left: 0 !important;
        transform: none !important;
    }

    /* Grid cards stack */
    .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
    }
    .grid-2 {
        grid-template-columns: 1fr !important;
    }

    /* Container padding */
    .container {
        padding: 0 16px !important;
    }

    /* Trust grid 2 columns on mobile */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .trust-number {
        font-size: 1.75rem !important;
    }

    /* Buy card images smaller */
    .buy-card-img {
        height: 160px !important;
    }

    /* Review cards single column */
    .review-card {
        margin-bottom: 16px;
    }

    /* Header */
    .header-inner {
        height: 60px !important;
        padding: 0 16px !important;
    }
    .logo-text {
        font-size: 1rem !important;
    }
    .header-cta {
        display: none !important;
    }
    .header-nav {
        display: none;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding-top: 76px !important;
    }

    /* Page header adjust for shorter header */
    .page-header {
        padding-top: 80px !important;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.25rem !important; }
    .calc-result-value { font-size: 2rem !important; }
    .btn-lg { padding: 14px 24px !important; font-size: 0.875rem !important; }
}

/* === Button Text Fix === */
.btn-primary, .btn-primary:hover, .btn-primary span,
a.btn-primary, button.btn-primary {
    color: #0f0f0f !important;
}
.footer-col .btn-primary {
    color: #0f0f0f !important;
}
.btn-sm {
    color: #0f0f0f !important;
}

/* === Outline Button Fix === */
.btn-outline, a.btn-outline, span.btn-outline {
    border: 2px solid #c9a84c !important;
    color: #c9a84c !important;
    background: transparent !important;
}
.btn-outline:hover, a.btn-outline:hover {
    background: #c9a84c !important;
    color: #0f0f0f !important;
}
/* Buy card buttons */
.buy-card .btn-outline, .buy-card-body .btn-outline {
    border: 2px solid #c9a84c !important;
    color: #c9a84c !important;
    background: transparent !important;
}
.buy-card:hover .btn-outline {
    background: #c9a84c !important;
    color: #0f0f0f !important;
}

/* === Polish Fixes === */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for all interactive elements */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    box-shadow: var(--shadow-gold);
}
.nav-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.card:focus-visible, .location-card:focus-visible, .buy-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-color: var(--gold);
}

/* Skip to content link */
#skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: var(--bg);
    padding: 12px 24px;
    font-weight: 600;
    z-index: 100001;
    border-radius: var(--radius-sm);
    transition: top 0.2s;
}
#skip-to-content:focus {
    top: 8px;
}

/* Touch target minimum 44px */
.nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.footer-col a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Image lazy load fade */
img[loading="lazy"] {
    opacity: 1;
}

/* Smooth scroll only when not reduced motion */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

/* Fix: remove scroll-behavior from base */
html { scroll-behavior: auto; }
