:root {
    --emerald-primary: #0d5c4f;
    --emerald-light: #1a7d68;
    --emerald-dark: #084438;
    --plum-deep: #4a1942;
    --plum-light: #6b2a5e;
    --gold-accent: #d4a853;
    --gold-light: #e8c77b;
    --gold-dark: #b8923d;
    --cream-light: #faf8f5;
    --cream-warm: #f5f0e8;
    --charcoal-dark: #1a1a1a;
    --charcoal-medium: #2d2d2d;
    --white-pure: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-brutalist: 4px 4px 0 var(--gold-accent);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--cream-light);
    color: var(--charcoal-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, p, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}


h1, h2, h3, h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
}

.display-serif {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--emerald-primary));
}

.text-gold {
    color: var(--gold-accent);
}

.text-emerald {
    color: var(--emerald-primary);
}

.text-plum {
    color: var(--plum-deep);
}


.btn-brutalist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid var(--charcoal-dark);
    background-color: var(--gold-accent);
    color: var(--charcoal-dark);
    box-shadow: var(--shadow-brutalist);
    transition: var(--transition-bounce);
    white-space: nowrap;
    min-height: 52px;
}

.btn-brutalist:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--charcoal-dark);
}

.btn-brutalist:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--charcoal-dark);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--gold-accent);
    background-color: transparent;
    color: var(--gold-accent);
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 48px;
}

.btn-outline-gold:hover {
    background-color: var(--gold-accent);
    color: var(--charcoal-dark);
}

.btn-primary-emerald {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    background-color: var(--emerald-primary);
    color: var(--white-pure);
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 52px;
}

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

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--glass-border);
    background-color: var(--glass-bg);
    color: var(--white-pure);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 48px;
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--gold-accent);
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

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

.glass-card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.glass-card-light:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}


.brutalist-card {
    background-color: var(--white-pure);
    border: 3px solid var(--charcoal-dark);
    padding: 28px;
    transition: var(--transition-smooth);
    position: relative;
}

.brutalist-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--charcoal-dark);
}

.brutalist-card-dark {
    background-color: var(--plum-deep);
    border: 3px solid var(--charcoal-dark);
    padding: 28px;
    transition: var(--transition-smooth);
    position: relative;
}

.brutalist-card-dark:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--gold-accent);
}


.section-dark {
    background-color: var(--charcoal-dark);
    color: var(--white-pure);
    padding: 100px 0;
}

.section-dark .glass-card {
    background: rgba(255, 255, 255, 0.05);
}

.section-emerald {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: var(--white-pure);
    padding: 100px 0;
}

.section-plum {
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-light) 100%);
    color: var(--white-pure);
    padding: 100px 0;
}

.section-cream {
    background-color: var(--cream-light);
    padding: 100px 0;
}

.section-cream-warm {
    background-color: var(--cream-warm);
    padding: 100px 0;
}

.section-gold-accent {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    padding: 80px 0;
}


.container-custom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}


.header-main {
    background-color: var(--charcoal-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-pure);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-accent), var(--emerald-primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.nav-link {
    color: var(--cream-light);
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-radius: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-accent);
    background-color: rgba(212, 168, 83, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white-pure);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--plum-deep) 100%);
    padding: 120px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,168,83,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white-pure);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cream-light);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    border: 4px solid var(--gold-accent);
    padding: 12px;
    background: var(--charcoal-dark);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-image-frame:hover {
    transform: rotate(0deg);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-pure);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.section-emerald .service-card h3 {
    color: var(--charcoal-dark);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-primary);
    margin-top: 16px;
}

.service-price-note {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}


.testimonial-card {
    background-color: var(--cream-warm);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--charcoal-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--charcoal-dark);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}


.contact-form-wrapper {
    background-color: var(--white-pure);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-medium);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal-dark);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: var(--cream-light);
    transition: var(--transition-smooth);
    color: var(--charcoal-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--emerald-primary);
    box-shadow: 0 0 0 4px rgba(13, 92, 79, 0.1);
}

.form-control::placeholder {
    color: #999;
}


.footer-main {
    background-color: var(--charcoal-dark);
    color: var(--cream-light);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-brand .logo-text {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-title {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background-color: var(--charcoal-dark);
    border: 2px solid var(--gold-accent);
    border-radius: 16px;
    padding: 28px;
    z-index: 9999;
    box-shadow: var(--shadow-medium);
    display: block;
}

.cookie-consent-banner h4 {
    color: var(--gold-accent);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.cookie-consent-banner p {
    color: var(--cream-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 120px;
}

.cookie-btn-accept {
    background-color: var(--emerald-primary);
    color: var(--white-pure);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--emerald-light);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--cream-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--cream-light);
}


@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--charcoal-dark);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .section-dark, .section-emerald, .section-plum, .section-cream, .section-cream-warm {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 767px) {
    .container-custom {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .display-serif {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-brutalist,
    .hero-buttons .btn-outline-gold {
        width: 100%;
    }

    .footer-main {
        padding: 60px 0 30px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}


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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}


.faq-item {
    background-color: var(--white-pure);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: var(--cream-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--emerald-primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--cream-light);
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--charcoal-medium);
    line-height: 1.8;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    background-color: var(--cream-warm);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white-pure);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    color: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -16px;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-primary), rgba(13, 92, 79, 0.2));
    z-index: 0;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 32px;
    background-color: var(--white-pure);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--charcoal-dark);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 8px;
}

.team-role {
    color: var(--emerald-primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-card {
    background-color: var(--white-pure);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-dark));
    color: var(--white-pure);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
    color: var(--white-pure);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald-primary);
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--charcoal-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--emerald-primary);
    font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--gold-accent);
}


.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-frame {
    border: 4px solid var(--gold-accent);
    padding: 8px;
    background: var(--white-pure);
    border-radius: 8px;
}

.team-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
    border: 4px solid var(--gold-accent);
    padding: 4px;
    background: var(--white-pure);
}


.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background-color: var(--gold-accent);
    color: var(--charcoal-dark);
}

.badge-emerald {
    background-color: var(--emerald-primary);
    color: var(--white-pure);
}

.badge-plum {
    background-color: var(--plum-deep);
    color: var(--white-pure);
}