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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FBF5F3;
    --blush-dark: #E8D0C8;
    --cream: #FDFBF9;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-700: #5A5A5A;
    --gray-500: #8A8A8A;
    --gray-300: #C8C8C8;
    --gray-100: #F0F0F0;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-900);
    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;
}

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

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

.skip-link:focus {
    top: 0;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
    background: var(--burgundy);
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.marquee-track .dot {
    color: rgba(255, 255, 255, 0.35);
    font-size: 8px;
    align-self: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-900);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-700);
    position: relative;
    transition: color 0.25s var(--ease-out);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

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

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-900);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: calc(100vh - 72px - 48px - 80px);
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    overflow: hidden;
    background: var(--blush-light);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(123, 45, 59, 0.04) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(123, 45, 59, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
    max-width: 580px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s var(--ease-out) 0.35s forwards;
}

.hero-title .accent-italic {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 400px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s var(--ease-out) 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s var(--ease-out) 0.65s forwards;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--blush-light) 0%, transparent 30%);
    pointer-events: none;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn-large {
    padding: 18px 36px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── HERO STATS ─── */
.hero-stats {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 28px 0;
    position: relative;
    z-index: 2;
}

.hero-stats .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-100);
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-title .accent-italic {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 300;
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
}

.service-card {
    background: var(--cream);
    padding: 48px 36px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--blush-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--burgundy);
}

.service-icon svg {
    stroke: var(--burgundy);
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--blush-dark);
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-content > p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.value-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-900);
    white-space: nowrap;
}

.value-line {
    flex: 1;
    height: 1px;
    background: var(--gray-100);
}

/* ─── WORK ─── */
.work {
    padding: 120px 0;
    background: var(--cream);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.work-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.work-item:hover img {
    transform: scale(1.04);
}

.work-item--large {
    grid-column: span 7;
}

.work-item:not(.work-item--large) {
    grid-column: span 5;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 45, 59, 0);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.4s var(--ease-out);
}

.work-item:hover .work-overlay {
    background: rgba(123, 45, 59, 0.2);
}

.work-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s var(--ease-out);
}

.work-item:hover .work-tag {
    opacity: 1;
    transform: translateY(0);
}

/* ─── PROCESS ─── */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -20px;
    width: 1px;
    height: calc(100% - 48px);
    background: var(--gray-100);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--blush-dark);
    line-height: 1;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ─── CTA SECTION ─── */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--burgundy);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
                      radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-eyebrow {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-actions .btn-primary:hover {
    background: var(--blush-light);
    border-color: var(--blush-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.cta-actions .btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--blush-light);
}

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

.contact-info .section-header {
    text-align: left;
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 40px;
}

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

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.detail-value {
    font-size: 15px;
    color: var(--gray-900);
    line-height: 1.6;
}

.detail-value a {
    color: var(--burgundy);
    transition: color 0.2s;
}

.detail-value a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

/* ─── FORM ─── */
.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--gray-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-900);
    background: var(--cream);
    border: 1px solid var(--gray-100);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s var(--ease-out);
    resize: vertical;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2' aria-hidden='true'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.15);
    color: var(--burgundy);
    font-size: 14px;
    font-weight: 400;
}

.form-success svg {
    flex-shrink: 0;
    stroke: var(--burgundy);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone,
.footer-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--white);
}

.footer-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero .container {
        padding: 60px 0 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 48px;
    }

    .work-item--large,
    .work-item:not(.work-item--large) {
        grid-column: span 6;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .contact-grid {
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .marquee-strip {
        display: none;
    }

    .site-header .container {
        height: 64px;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(253, 251, 249, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease-out);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .hero {
        min-height: calc(100vh - 64px);
    }

    .hero .container {
        padding: 40px 0;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero-stats .container {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 36px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .service-card::before {
        display: none;
    }

    .service-card:hover {
        background: transparent;
    }

    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap img {
        height: 350px;
    }

    .about-image-wrap::after {
        display: none;
    }

    .work {
        padding: 80px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-item--large,
    .work-item:not(.work-item--large) {
        grid-column: span 1;
    }

    .work-item img {
        height: 280px;
    }

    .process {
        padding: 80px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        padding: 80px 0;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
