/* ===== GORDON'S WALLPAPER INSTALLATION — STYLE SYSTEM ===== */
/* European Heritage Modern — Timeless, Refined, Sophisticated */

/* --- CSS RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #F5F0E8;
    --bg-secondary: #E8E0D4;
    --bg-light: #FAF7F2;
    --text-light: #F5F0E8;
    --text-dark: #3B2A1A;
    --accent-gold: #B8965A;
    --accent-gold-hover: #A07D45;
    --border-warm: #D4C8B8;
    --shadow-soft: rgba(59, 42, 26, 0.08);
    --shadow-medium: rgba(59, 42, 26, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Suisse Intl', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Canela', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent-gold-hover); }

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TOP BAR --- */
.top-bar {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.875rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a {
    color: var(--text-light);
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--accent-gold); }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }

/* --- HEADER / NAVIGATION --- */
.site-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-warm);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px var(--shadow-soft);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Canela', 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.logo span { color: var(--accent-gold); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
    color: var(--text-dark);
    font-size: 0.925rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}
.main-nav a:hover { color: var(--accent-gold); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--accent-gold);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,42,26,0.82) 0%, rgba(59,42,26,0.55) 100%);
}
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
}
.hero-content h2 {
    color: rgba(245,240,232,0.85);
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.trust-badges {
    display: flex;
    gap: 24px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
}

/* --- FORM STYLES --- */
.feedback-form-container {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border-warm);
}
.feedback-form-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group { margin-bottom: 0; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 14px;
}
.form-submit { text-align: center; }
.submit-btn {
    background: var(--accent-gold);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.03em;
}
.submit-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
}
#form-success p {
    text-align: center;
    color: var(--accent-gold);
    font-weight: 500;
    padding: 20px;
}

/* --- SECTION STYLES --- */
.section {
    padding: var(--section-padding);
}
.section-light { background: var(--bg-light); }
.section-beige { background: var(--bg-primary); }
.section-dark {
    background: var(--text-dark);
    color: var(--text-light);
}
.section-dark h2,
.section-dark h3 { color: var(--text-light); }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header p {
    color: rgba(59,42,26,0.7);
    font-size: 1.05rem;
}
.section-dark .section-header p {
    color: rgba(245,240,232,0.7);
}

/* --- B2B / COMMERCIAL BLOCK --- */
.commercial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.commercial-features {
    list-style: none;
    padding: 0;
}
.commercial-features li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-warm);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.commercial-features li:last-child { border-bottom: none; }
.commercial-features strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 2px;
}
.commercial-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow-medium);
}
.commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--shadow-medium);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(184,150,90,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-gold);
}
.service-card h3 { font-size: 1.2rem; }
.service-card p {
    font-size: 0.92rem;
    color: rgba(59,42,26,0.7);
}

/* --- PORTFOLIO / GALLERY --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 16px var(--shadow-soft);
    border: 3px solid var(--border-warm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- BEFORE/AFTER SLIDER --- */
.ba-slider-section { padding: 60px 0; }
.ba-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 4px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow-medium);
}
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}
.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-slider .ba-after {
    clip-path: inset(0 50% 0 0);
}
.ba-slider .ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
}
.ba-slider .ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ba-slider .ba-handle::after {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    z-index: 4;
    letter-spacing: 4px;
}
.ba-labels {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
}

/* --- PROCESS / HOW WE WORK --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Canela', serif;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: rgba(59,42,26,0.7); }

/* --- REVIEWS --- */
.reviews-section { text-align: center; }

/* --- SEO CONTENT BLOCK --- */
.seo-content {
    padding: 60px 0;
    background: var(--bg-secondary);
}
.seo-content .container {
    max-width: 900px;
}
.seo-content h2 { margin-bottom: 1.5rem; }
.seo-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(59,42,26,0.8);
}

/* --- STATS --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    padding: 40px 0;
}
.stat-item .stat-number {
    font-family: 'Canela', serif;
    font-size: 2.8rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}
.stat-item .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(59,42,26,0.7);
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border-warm);
    padding: 24px 0;
}
.faq-question {
    font-family: 'Canela', serif;
    font-size: 1.15rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(59,42,26,0.75);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 16px;
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-block { padding: 20px 0; }
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-warm);
}
.contact-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-item strong { display: block; margin-bottom: 4px; }
.contact-info-item a { color: var(--text-dark); }
.contact-info-item a:hover { color: var(--accent-gold); }

/* --- SERVICE AREA PAGES --- */
.area-hero {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
}
.area-content { padding: 60px 0; }
.area-content p { max-width: 800px; margin: 0 auto 1.2rem; }

/* --- SERVICE PAGES --- */
.service-hero {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
}
.service-content {
    padding: 60px 0;
}
.service-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.service-sidebar {
    background: var(--bg-light);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 30px;
    position: sticky;
    top: 100px;
}
.service-sidebar h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.service-sidebar ul {
    list-style: none;
    padding: 0;
}
.service-sidebar ul li { padding: 10px 0; border-bottom: 1px solid var(--border-warm); }
.service-sidebar ul li:last-child { border-bottom: none; }
.service-sidebar ul li a {
    color: var(--text-dark);
    font-size: 0.92rem;
}
.service-sidebar ul li a:hover { color: var(--accent-gold); }

/* --- FOOTER --- */
.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col p {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(245,240,232,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-bottom {
    border-top: 1px solid rgba(245,240,232,0.15);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245,240,232,0.5);
}

/* --- STICKY QUOTE BUTTON --- */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-gold);
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(184,150,90,0.4);
    z-index: 999;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border: none;
}
.sticky-quote-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184,150,90,0.5);
    color: #fff;
}

/* --- MODAL --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(59,42,26,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    background: none;
    border: none;
    line-height: 1;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--accent-gold); }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--accent-gold);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-gold-hover);
    color: #fff;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-warm);
}
.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* --- SERVICE AREA CARDS --- */
.area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.area-card {
    background: var(--bg-light);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}
.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-medium);
    border-color: var(--accent-gold);
}
.area-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.area-card a {
    color: var(--text-dark);
    text-decoration: none;
}
.area-card a:hover { color: var(--accent-gold); }

/* --- VALUE PROPS --- */
.value-props {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(59,42,26,0.75);
}
.value-prop svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
    flex-shrink: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: 2.2rem; }
    .commercial-block { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-content .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    :root { --section-padding: 60px 0; }

    .main-nav { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-warm);
        box-shadow: 0 8px 24px var(--shadow-medium);
        gap: 16px;
    }
    .main-nav.active { display: flex; }
    .nav-toggle { display: flex; }
    .site-header .container { position: relative; }

    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; gap: 20px; }

    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 40px);
        text-align: center;
    }
    .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }

    .top-bar .container { justify-content: center; }
    .top-bar-right { display: none; }
}

@media (max-width: 480px) {
    .hero { min-height: 500px; padding: 50px 0; }
    .hero-content h1 { font-size: 1.8rem; }
    .feedback-form-container { padding: 24px 18px; }
    .trust-badges { gap: 12px; }
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
