/* ===== Bugaboo Style for TQH - Complete Design System ===== */
/* Premium B2B Design with elegant typography and spacing */

:root {
    /* Colors - Warm, sophisticated palette */
    --primary: #1a1a1a;
    --primary-dark: #0a0a0a;
    --primary-light: #f5f5f5;
    --accent: #c9a96e;
    --accent-hover: #b8985f;
    --accent-light: #faf7f2;
    --text: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-warm: #faf8f5;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    
    /* Shadows - Soft, elegant */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-2xl: 120px;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Layout ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--space-2xl) 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand a {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.logo {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--primary);
}

.tagline {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-white {
    background: white;
    border-color: white;
    color: var(--primary);
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.6);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 13px;
}

.btn-outline {
    border-color: var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 50%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201,169,110,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-title .highlight {
    font-weight: 400;
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--border);
    margin: 16px auto 0;
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Brand Story ===== */
.brand-story {
    background: var(--bg);
    padding: var(--space-2xl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.story-card {
    text-align: center;
    padding: 48px 32px;
}

.story-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: var(--accent-light);
    border-radius: 50%;
}

.story-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* ===== Categories ===== */
.categories {
    background: var(--bg-warm);
    padding: var(--space-2xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.category-link:hover {
    color: var(--accent-hover);
}

/* ===== Factory Section ===== */
.why-us {
    background: var(--bg);
    padding: var(--space-2xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-item {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--accent-light);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== OEM Section ===== */
.oem-section {
    background: var(--bg-warm);
    padding: var(--space-2xl) 0;
}

.oem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.oem-content .section-title {
    text-align: left;
}

.oem-desc {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.oem-list {
    list-style: none;
    margin-bottom: 40px;
}

.oem-list li {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.oem-list li:last-child {
    border-bottom: none;
}

.check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.oem-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 500;
}

.oem-list p {
    font-size: 14px;
    color: var(--text-light);
}

.oem-process {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.oem-process h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-warm);
    border-radius: var(--radius);
    transition: var(--transition);
}

.step:hover {
    background: var(--accent-light);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    font-weight: 500;
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 8px;
    display: inline-block;
}

.footer-brand .tagline {
    display: block;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer h4 {
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Product Page ===== */
.product-hero {
    background: var(--bg-warm);
    padding: 140px 0 80px;
    text-align: center;
}

.product-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.product-hero p {
    font-size: 18px;
    color: var(--text-light);
}

.product-section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.product-section:nth-child(even) {
    background: var(--bg-warm);
}

.product-section h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.product-section > .container > p {
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 700px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    aspect-ratio: 4/3;
    background: var(--bg-warm);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== About Page ===== */
.about-hero {
    background: var(--bg-warm);
    padding: 140px 0 80px;
    text-align: center;
}

.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 800px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.about-grid h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.about-grid p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.stat-box .number {
    font-size: 36px;
    font-weight: 200;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.stat-box .label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Certifications ===== */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.cert-item {
    background: var(--bg-warm);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.cert-item:hover {
    background: var(--accent-light);
}

.cert-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.cert-item strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.cert-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== OEM Page ===== */
.oem-hero {
    background: var(--bg-warm);
    padding: 140px 0 80px;
    text-align: center;
}

.oem-services {
    padding: 80px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== Contact Page ===== */
.contact-hero {
    background: var(--bg-warm);
    padding: 140px 0 80px;
    text-align: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-card a {
    color: var(--accent);
}

.contact-card a:hover {
    color: var(--accent-hover);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .oem-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar .container { height: 64px; }
    .nav-menu { display: none; }
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 32px; }
    
    .story-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    
    .cta-buttons { flex-direction: column; align-items: center; }
    
    .section-title { font-size: 28px; }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
