/* ============================================
   THE HAIR BARR — Custom Stylesheet
   Deep Navy + Warm Gold | Fresh & Airy
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy-950: #0a0f1e;
    --navy-900: #0d1526;
    --navy-800: #111d35;
    --navy-700: #162544;
    --navy-600: #1a2d54;
    --navy-500: #1e3566;
    --gold-500: #c9952e;
    --gold-400: #d4a843;
    --gold-300: #e0be6a;
    --gold-200: #ebd494;
    --gold-100: #f5eabb;
    --gold-50:  #faf3dc;
    --cream:    #fdf8f0;
    --cream-2:  #fefcf7;
    --blush:    #f7ecef;
    --lavender: #f0eef7;
    --mint:     #eef6f4;
    --peach:    #fdf0ea;
    --text-dark:    #0f172a;
    --text-mid:     #334155;
    --text-light:   #64748b;
    --text-white:   #f8fafc;
    --white:        #ffffff;
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --shadow-sm:  0 1px 3px rgba(10, 15, 30, 0.06), 0 1px 2px rgba(10, 15, 30, 0.04);
    --shadow-md:  0 4px 16px rgba(10, 15, 30, 0.08), 0 2px 6px rgba(10, 15, 30, 0.04);
    --shadow-lg:  0 12px 40px rgba(10, 15, 30, 0.10), 0 4px 12px rgba(10, 15, 30, 0.05);
    --shadow-xl:  0 20px 60px rgba(10, 15, 30, 0.12), 0 8px 20px rgba(10, 15, 30, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--navy-900); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 1000; font-size: 14px;
}
.skip-link:focus { top: 16px; }

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

/* --- Header --- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 149, 46, 0.1);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 20px;
    font-weight: 600; color: var(--navy-900);
}
.logo-icon { color: var(--gold-500); }
.logo-light { color: var(--white); }

.nav ul { display: flex; gap: 8px; }
.nav a {
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--text-mid);
    transition: var(--transition);
}
.nav a:hover { color: var(--navy-900); background: rgba(201, 149, 46, 0.08); }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-xl);
    font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
    transition: var(--transition); white-space: nowrap;
}
.btn-primary {
    background: var(--navy-900); color: var(--white);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold {
    background: var(--gold-500); color: var(--white);
}
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
    background: rgba(255,255,255,0.2); color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.3); }
.btn-outline-light {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.mobile-toggle {
    display: none; color: var(--navy-900);
    padding: 8px; border-radius: var(--radius-sm);
}
.mobile-toggle:hover { background: rgba(201, 149, 46, 0.08); }

.mobile-overlay {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(10, 15, 30, 0.5);
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #0a0f1e 0%, #111d35 40%, #162544 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(201, 149, 46, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201, 149, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 50px;
    background: rgba(201, 149, 46, 0.12);
    border: 1px solid rgba(201, 149, 46, 0.25);
    color: var(--gold-300); font-size: 13px; font-weight: 500;
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700; line-height: 1.08;
    color: var(--white); margin-bottom: 24px;
}
.hero-headline em {
    font-style: italic; color: var(--gold-400);
}
.hero-sub {
    font-size: 17px; line-height: 1.7;
    color: rgba(248, 250, 252, 0.7);
    max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; position: relative;
}
.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px; backdrop-filter: blur(8px);
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.stat-card--1 { grid-column: 1; grid-row: 1 / 3; padding: 32px 24px; }
.stat-card--1 .stat-card-number { font-size: 52px; }
.stat-card--2 { grid-column: 2; grid-row: 1; }
.stat-card--3 { grid-column: 2; grid-row: 2; }
.stat-card-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.stat-card--1 .stat-card-icon { background: rgba(201, 149, 46, 0.15); color: var(--gold-400); }
.stat-card--2 .stat-card-icon { background: rgba(147, 197, 253, 0.12); color: #93c5fd; }
.stat-card--3 .stat-card-icon { background: rgba(251, 191, 36, 0.12); color: #fbbf24; }
.stat-card--4 .stat-card-icon { background: rgba(167, 243, 208, 0.12); color: #6ee7b7; }
.stat-card-icon { color: var(--gold-400); }
.stat-card-icon svg { width: 22px; height: 22px; }
.stat-card-number {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 700;
    color: var(--white); line-height: 1;
    margin-bottom: 8px;
}
.stat-card-label {
    font-size: 13px; color: rgba(248,250,252,0.55);
    font-weight: 400; line-height: 1.4;
}
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* --- Section Shared --- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold-500);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700; line-height: 1.15;
    color: var(--navy-900); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-500); }
.section-desc { font-size: 16px; color: var(--text-light); line-height: 1.7; }

/* --- Services --- */
.services { padding: 100px 0; background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.service-card-visual {
    height: 200px; overflow: hidden;
}
.service-card-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-visual img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--gold-100) 100%);
    color: var(--gold-500);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    color: var(--navy-900); margin-bottom: 10px;
}
.service-card-body p {
    font-size: 14px; color: var(--text-light);
    line-height: 1.7;
}

/* --- About --- */
.about { padding: 100px 0; background: var(--cream-2); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute; bottom: -32px; right: -32px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-2);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
    position: absolute; top: -20px; left: -20px;
    background: var(--navy-900); color: var(--white);
    border-radius: var(--radius-lg); padding: 20px 24px;
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-exp-number {
    display: block; font-family: var(--font-display);
    font-size: 36px; font-weight: 700; color: var(--gold-400);
    line-height: 1;
}
.about-exp-text {
    display: block; font-size: 12px; color: rgba(248,250,252,0.6);
    margin-top: 4px; line-height: 1.3;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text {
    font-size: 15px; color: var(--text-mid);
    line-height: 1.8; margin-bottom: 16px;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px 24px; margin: 28px 0 32px;
}
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: var(--text-dark);
}
.about-feature-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--gold-50); color: var(--gold-500);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon svg { width: 12px; height: 12px; }

/* --- Gallery --- */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer; position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.3) 0%, transparent 50%);
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #111d35 100%);
    position: relative; overflow: hidden;
}
.testimonials::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,149,46,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.testimonials .section-header { position: relative; z-index: 1; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-desc { color: rgba(248,250,252,0.5); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; position: relative; z-index: 1;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex; gap: 4px; margin-bottom: 20px;
    color: var(--gold-400);
}
.testimonial-text {
    font-size: 15px; line-height: 1.8;
    color: rgba(248,250,252,0.75);
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    color: var(--white); font-weight: 600; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-name {
    font-weight: 600; font-size: 14px; color: var(--white);
}
.testimonial-location {
    font-size: 13px; color: rgba(248,250,252,0.45);
}

/* --- CTA --- */
.cta { padding: 80px 0; background: var(--cream-2); }
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; line-height: 1.15;
    color: var(--navy-900); margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--gold-500); }
.cta-text { font-size: 16px; color: var(--text-light); line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Contact --- */
.contact { padding: 100px 0 60px; background: var(--cream); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; margin-bottom: 48px;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; }
.contact-desc { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
    display: flex; gap: 16px; align-items: flex-start;
}
.contact-detail-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--gold-50); color: var(--gold-500);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail strong {
    display: block; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--navy-900); margin-bottom: 4px;
}
.contact-detail p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.contact-detail a { color: var(--gold-500); transition: var(--transition); }
.contact-detail a:hover { color: var(--gold-400); text-decoration: underline; }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl); padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    color: var(--navy-900); margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--text-dark); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #e2e8f0; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--text-dark);
    background: var(--cream-2);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 149, 46, 0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none; align-items: center; gap: 10px;
    padding: 14px 18px; border-radius: var(--radius-sm);
    background: #f0fdf4; border: 1px solid #bbf7d0;
    color: #166534; font-size: 14px; font-weight: 500;
    margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: #22c55e; flex-shrink: 0; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* --- Footer --- */
.footer {
    background: var(--navy-950); color: rgba(248,250,252,0.6);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(248,250,252,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4 {
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--white); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 14px; color: rgba(248,250,252,0.5);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-400); }
.footer-links address { font-style: normal; font-size: 14px; line-height: 1.8; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; font-size: 13px; color: rgba(248,250,252,0.35);
    flex-wrap: wrap; gap: 12px;
}

/* --- Mobile Navigation --- */
@media (max-width: 900px) {
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(201, 149, 46, 0.1);
        padding: 16px 24px 24px;
        transform: translateY(-120%); opacity: 0;
        transition: var(--transition);
        z-index: 95;
    }
    .nav.open { transform: translateY(0); opacity: 1; }
    .nav ul { flex-direction: column; gap: 4px; }
    .nav a { display: block; padding: 12px 16px; font-size: 15px; }
    .header .btn { display: none; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-cards { max-width: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 480px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline { font-size: clamp(36px, 8vw, 52px); }
    .hero-cards { grid-template-columns: 1fr 1fr; }
    .stat-card--1 { grid-row: auto; }
    .stat-card--1 .stat-card-number { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-img-accent { right: -12px; bottom: -16px; }
    .about-exp-badge { top: -12px; left: -12px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--tall { grid-row: span 1; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 50px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-cards { gap: 12px; }
    .stat-card { padding: 18px; }
    .stat-card-number { font-size: 28px; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item--wide { grid-column: span 1; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

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