:root {
    --saffron: #E85F0C;
    --turmeric: #D4A017;
    --deep-red: #8B1A1A;
    --cream: #FAF5EC;
    --warm-white: #FFFDF8;
    --bark: #27170C;
    --charcoal: #1C1410;
    --sage: #6B7C5C;
    --light-spice: #F3E8D0;
    --border: rgba(61, 43, 31, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 64px;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: slideDown 0.6s ease both;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.nav-company {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 64px;
}

.nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--bark);
    letter-spacing: 0.02em;
    margin-left: 20px;
}

.nav-name span {
    color: var(--saffron);
}

.nav-links {
    display: flex;
    gap: 40px;
    
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bark);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--saffron);
}

#languages {
    position: fixed;
    top: 86px;
    right: 64px;
    padding: 6px 12px;
    font-size: 1.0rem;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 4px;
    z-index: 100;
    opacity: 0.5;
}

#languages:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--deep-red);
    color: #fff !important;
    padding: 9px 22px !important;
    
    border-radius: 2px;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--saffron) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 80px 96px 96px;
    
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 24px;
    
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--bark);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s 0.35s ease both;
}

.hero-h1 em {
    font-style: italic;
    color: var(--deep-red);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5a4233;
    max-width: 380px;
    margin-bottom: 40px;
    
    animation: fadeUp 0.8s 0.5s ease both;
}

.hero-delivery {
    font-size: 1.2rem;
    color: var(--saffron);
}

.hero-actions {
    display: flex;
    gap: 16px;
    
    align-items: center;
    animation: fadeUp 0.8s 0.65s ease both;
}

.btn-primary {
    display: inline-block;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 35px;
    
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--saffron);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    color: var(--bark);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 29px;
    
    border: 1.5px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.25s, color 0.25s;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
}

/* Spice pattern background */
.hero-spice-bg {
    background:
        radial-gradient(ellipse at 30% 20%, #E8890C18 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, #8B1A1A15 0%, transparent 50%),
        #F5EDD8;
    width: 100%;
}

.spice-collage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Large decorative spice mandala */
.mandala {
    position: absolute;
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    animation: spinSlow 60s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero image boxes */
.img-stack {
    position: relative;
    height: 440px;
    animation: fadeUp 1s 0.4s ease both;
}

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

.hero-badge {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    box-shadow: 0 12px 30px rgba(61, 43, 31, 0.12);
    z-index: 3;
    animation: fadeUp 1s 0.7s ease both;
    max-width: 180px;
}

.hero-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--saffron);
    line-height: 1;
}

.hero-badge-text {
    font-size: 1.0rem;
    color: #7a5c44;
    line-height: 1.3;
    margin-top: 0.3rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ── MARQUEE ── */
.marquee-wrap {
    background: var(--deep-red);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    animation: marquee 80s linear infinite;
    white-space: nowrap;
    width: fit-content;
}

.marquee-item {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 2.5rem;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--saffron);
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ── SECTION BASE ── */
section {
    position: relative;
    z-index: 1;
}

.section-pad {
    padding: 112px 96px;
}


.section-pad-sm {
    padding: 80px 96px;
    
}

.section-label {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--bark);
    margin-bottom: 1.2rem;
}

.section-title em {
    font-style: italic;
    color: var(--deep-red);
}

.section-body {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.85;
    color: #5a4233;
    max-width: 560px;
}

/* ── PILLARS / WHY ── */
.pillars {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillars-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pillar-left {
    padding: 112px 80px 112px 96px;
    
    border-right: 1px solid var(--border);
}

.pillar-right {
    padding: 112px 96px 112px 80px;
    
    gap: 40px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.pillar-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pillar-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pillar-item:nth-child(2) {
    transition-delay: 0.1s;
}

.pillar-item:nth-child(3) {
    transition-delay: 0.2s;
}

.pillar-item:nth-child(4) {
    transition-delay: 0.3s;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.4rem;
}

.pillar-content p {
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.7;
    color: #6b4f3a;
}

/* ── PRODUCTS ── */
.products-section {
    background: var(--warm-white);
}

/* .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
} */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(2) {
    transition-delay: 0.1s;
}

.product-card:nth-child(3) {
    transition-delay: 0.2s;
}

.product-card:nth-child(4) {
    transition-delay: 0.3s;
}

.product-card:nth-child(5) {
    transition-delay: 0.1s;
}

.product-card:nth-child(6) {
    transition-delay: 0.2s;
}

.product-card:nth-child(7) {
    transition-delay: 0.3s;
}

.product-card:nth-child(8) {
    transition-delay: 0.4s;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(61, 43, 31, 0.15);
}

.product-img {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
}

.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(61, 43, 31, 0.08) 100%);
}

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

.product-info {
    padding: 19px;
    
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.35rem;
}

.product-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.55;
    color: #7a5c44;
}

.product-tags {
    display: flex;
    justify-content: space-between;
}

.product-tag {
    display: inline-block;
    margin-top: 0.7rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #27341C;
    background: rgba(107, 124, 92, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

/* ── CATEGORIES SPLIT ── */
.categories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 400px;
}

.cat-panel {
    padding: 64px 56px;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 380px;
}

.cat-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.cat-panel:hover::before {
    transform: scale(1.04);
}

.cat-panel-1::before {
    background: linear-gradient(145deg, #c8530a, #8b2500);
}

.cat-panel-2::before {
    /* background: linear-gradient(145deg, #d4a017, #7a5c00); */
    background: linear-gradient(145deg, #e3b70c, #c07e00)
}

.cat-panel-3::before {
    /* background: linear-gradient(145deg, #3d5c3a, #1c2e1a); */
    background: linear-gradient(145deg, #589933, #1d4111);
}

.cat-emoji {
    font-size: 4rem;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    opacity: 0.35;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1;
}

.cat-panel:hover .cat-emoji {
    opacity: 0.6;
    transform: scale(1.1) rotate(-5deg);
}

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

.cat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
}

.cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.cat-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.cat-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.cat-link:hover {
    color: #fff;
    border-color: #fff;
}

/* ── ABOUT ── */
.about-section {
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-visual {
    position: relative;
    height: 800px;
}

.about-visual img {
    height: 800px;
    object-fit: cover;
    width: 100%;
    border-radius: 24px;
}

.about-quote {
    position: absolute;
    top: 40px;
    left: 80%;
    transform: translate(-20%, -50%);
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(61, 43, 31, 0.12);
    z-index: 3;
    width: 212px;
}

.about-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--bark);
}

.about-quote cite {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-top: 0.6rem;
}

.about-right .section-body {
    max-width: 100%;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    
    margin-top: 40px;
    
    padding-top: 40px;
    
    border-top: 1px solid var(--border);
}

.about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--saffron);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: #7a5c44;
    margin-top: 0.3rem;
}

/* ── CTA / ORDER ── */
.cta-section {
    background: var(--bark);
    padding: 112px 96px;
    
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 137, 12, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-left .section-label {
    color: var(--turmeric);
}

.cta-left .section-title {
    color: #fff;
}

.cta-left .section-body {
    color: rgba(255, 255, 255, 0.65);
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 21px 29px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: background 0.25s, border-color 0.25s;
}

.cta-btn:hover {
    background: rgba(232, 137, 12, 0.15);
    border-color: var(--saffron);
}

.cta-btn-text {
    font-size: 1.4rem;
    font-weight: 400;
}

.cta-btn-sub {
    font-size: 1.0rem;
    opacity: 0.55;
    margin-top: 0.15rem;
}

.cta-divider {
    text-align: center;
    font-size: 1.0rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ── DELIVERY NOTE ── */
.delivery-strip {
    background: var(--light-spice);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 26px 96px;
}

.delivery-strip-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #5a4233;
}

.delivery-strip-text strong {
    font-weight: 500;
    color: var(--bark);
}

.delivery-strip-text:first-child {
    margin-bottom: 20px;
}

.delivery-strip-icon {
    font-size: 1.4rem;
}

/* ── CONTACT ── */
.contact-section {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 20px;
}

.contact-block h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.contact-block p,
.contact-block a {
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.8;
    color: #6b4f3a;
    text-decoration: none;
    display: block;
}

.contact-block a:hover {
    color: var(--saffron);
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 300;
    color: #6b4f3a;
    line-height: 2;
}

.contact-hours-row span:last-child {
    color: #9a7a60;
}

/* ── FOOTER ── */
footer {
    background: var(--charcoal);
    padding: 2rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo span {
    color: var(--saffron);
}

.footer-copy {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    nav {
        padding: 24px 40px;
    }

    #languages {
        top: 74px;
        right: 15px;
    }

    .section-pad,
    .section-pad-sm {
        padding: 80px 48px;
    }

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

    .hero-left {
        padding: 144px 48px 64px;
    }

    .hero-right {
        min-height: 400px;
    }

    .pillars-inner,
    .about-inner,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .pillar-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 64px 48px;
    }

    .pillar-right {
        padding: 64px 48px;
    }

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

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

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

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 32px;
    }

    .delivery-strip {
        padding: 22px 32px;
    }

    .nav-links {
        display: none;
    }

    .about-visual {
        height: 320px;
    }

    .about-visual img {
        height: 350px;
        border-radius: 24px;
    }

    .cta-section {
        padding: 64px 40px;
    }
}
@media (max-width: 600px) {
    nav {
        padding: 12px 12px 20px;
    }
    .nav-logo {
        margin-bottom: 10px;
    }
    .nav-name {
        font-size: 2.0rem;
        margin-left: 10px;
        letter-spacing: 0.01em;
        margin-bottom: 20px;
    }
    #languages {
        top: 68px;
    }
    .hero-left {
        padding: 120px 24px 32px;
    }
    .hero-badge {
        left: 100px;
    }
    .pillar-left,
    .pillar-right {
        padding: 32px 24px;
    }
    .section-pad {
        padding: 40px 24px;
    }
    .products-header a {
        padding: 12px 4px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .cat-panel {
        padding: 32px 28px;
    }
    .about-quote {
        top: 40px;
        left: 52%;
    }
    .cta-section {
        padding: 32px 20px;
    }
    .cta-btn {
        padding: 20px 16px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    footer {
        padding: 12px;
    }
    .footer-copy {
        font-size: 0.8rem;
    }
}