/* ===== Variables & Reset ===== */
:root {
    /* Palette: Earth & Sophisticated Wagashi */
    --c-primary: #182C4B;
    /* Kachi-iro (Deep Indigo) */
    --c-accent: #B08D45;
    /* Muted Gold */
    --c-text: #2C2C2C;
    /* Sumi (Ink) */
    --c-text-light: #555555;
    --c-bg: #F4F1EA;
    /* Washi-like Off-white */
    --c-card-bg: #FFFFFF;
    --c-white: #FFFFFF;

    /* Typography */
    --font-main: 'Zen Old Mincho', serif;
    --font-base: 'Zen Old Mincho', serif;
    /* Unified font */

    /* Spacing */
    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 32px;
    --sp-lg: 64px;
    --sp-xl: 120px;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--c-bg);
    background-image: url('images/washi_background.jpg');
    /* Restore Washi texture if available, else fallback to color */
    background-blend-mode: multiply;
    background-attachment: fixed;
    color: var(--c-text);
    line-height: 2.0;
    /* More breathing room */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Animation Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Hero Refinements */
.hero-title-span {
    display: inline-block;
}

.hero-intro-p-first {
    margin-right: 1.5em;
}

/* Mobile Menu */
.mobile-nav-link-highlight {
    color: var(--c-accent);
}

/* Split Section Variants */
.split-content-left {
    text-align: left;
}

.split-content-left .section-title {
    text-align: left;
    font-size: 2.5rem;
}

.split-content-subtitle {
    color: var(--c-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Awards Section */
.bg-white {
    background-color: var(--c-white);
}

.award-icon img {
    width: 60px;
}

.award-icon-large {
    font-size: 2rem;
}

.award-year {
    font-size: 0.8rem;
}

.award-desc {
    font-size: 0.8rem;
    margin-top: 10px;
}

.awards-footer-text {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Design Section */
.design-section-split {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0;
    background: none;
}

.design-sample-img {
    width: 100%;
    border-radius: 2px;
}

/* Packaging Section */
.packaging-split {
    gap: 60px;
    align-items: flex-start;
}

.packaging-carousel-container {
    position: relative;
    overflow: hidden;
}

.packaging-img {
    min-height: 400px;
}

/* Price Section */
.price-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-main-text {
    font-size: 1.5rem;
    color: var(--c-primary);
    margin-bottom: 20px;
}

.price-sub-text {
    margin-bottom: 30px;
}

.price-notes {
    margin-bottom: 30px;
    margin-top: 20px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-group-mt {
    margin-top: 40px;
}

.btn-icon {
    margin-right: 8px;
}

/* Order Flow */
.flow-step-desc {
    font-size: 0.9rem;
}

.flow-delivery-note {
    margin-top: 40px;
}

.flow-delivery-highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--c-accent);
}

/* Examples */
.example-desc-text {
    font-size: 0.8rem;
}

/* Footer */
.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SVG Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* ===== Mouse Stalker ===== */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--c-primary);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(24, 44, 75, 0.5);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, transform 0.1s;
}

/* Hover States for Cursor */
body.hovering #cursor {
    width: 4px;
    height: 4px;
    background-color: var(--c-accent);
}

body.hovering #cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(176, 141, 69, 0.1);
    border-color: var(--c-accent);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(244, 241, 234, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
        gap: 40px;
        align-items: center;
    }
}

.nav-link {
    font-size: 0.95rem;
    color: var(--c-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-accent);
    transition: width 0.3s ease;
}

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

.header-cta {
    display: none;
}

@media (min-width: 992px) {
    .header-cta {
        display: block;
    }
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--c-primary);
    padding: 4px 12px;
    /* Aggressively reduced padding */
    border-radius: 50px;
    color: var(--c-primary);
    font-size: 0.75rem;
    /* Aggressively reduced font size */
    font-weight: 600;
    line-height: 1;
}

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

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--c-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--c-bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    font-size: 1.5rem;
    margin: 20px 0;
    color: var(--c-primary);
}

/* ===== Hero Section (New Minimalism) ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--c-bg);
}

.hero-inner {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    flex-direction: row;
    /* Image Left, Text Right */
}

.hero-visual {
    position: relative;
    width: 68%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    order: 1;
    padding-top: 80px;
    /* Prevent header overlap */
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* Lowered position */
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-text-area {
    position: relative;
    z-index: 2;
    /* Further reduced width (was 30%) */
    height: 100%;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    /* Balanced padding */
    gap: 30px;
    order: 2;
    /* Text on Right */
    flex-direction: row-reverse;
    /* Flow items Right to Left */
    position: relative;
    /* Ensure relative positioning for scroll indicator */
}

.hero-content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    /* Right to Left: Subtitle -> Title */
    align-items: flex-start;
    justify-content: center;
    /* Center vertically relative to container (column direction in flex-reverse row?) No, it's row-reverse. justify-content centers along main axis */
    height: auto;
    /* Remove fixed height to allow centering */
    gap: 30px;
    width: 100%;
    /* Ensure full width for centering if needed */
}

.hero-title-vertical {
    writing-mode: vertical-rl;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--c-primary);
    max-height: 100%;
    line-height: 1.5;
    white-space: nowrap;
}

.hero-subtitle {
    writing-mode: vertical-rl;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--c-accent);
    white-space: nowrap;
    margin-top: 0;
    font-family: var(--font-base);
    text-transform: uppercase;
    order: -1;
    /* Ensure it's first (Left) */
}

.hero-intro-vertical {
    writing-mode: vertical-rl;
    font-size: 0.95rem;
    line-height: 2.2;
    letter-spacing: 0.15em;
    color: var(--c-primary);
    height: 60vh;
    margin-top: 40px;
    font-weight: 500;
    order: 3;
    /* Ensure it's last (Right) */
    white-space: nowrap;
    /* Prevent awkward wrapping */
}

.hero-intro-vertical p {
    margin-left: 1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 20px;
    /* Aligned to right inside text area */
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--c-primary);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--c-primary);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-visual {
        width: 100%;
        height: 50%;
        order: 1;
    }

    .hero-text-area {
        width: 100%;
        height: 50%;
        order: 2;
        padding: 40px 20px;
        background: var(--c-bg);
        gap: 20px;
    }

    .hero-content-wrapper {
        height: auto;
        max-height: 80%;
        flex-direction: row;
    }

    .hero-title-vertical {
        font-size: 2rem;
    }

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

    .hero-intro-vertical {
        display: none;
    }
}

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

.section-title {
    font-size: 2.2rem;
    color: var(--c-primary);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.section-desc {
    color: var(--c-accent);
    font-family: var(--font-base);
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}

/* ===== Cards (Washi Card) ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.washi-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.washi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 2px;
}

.card-title {
    font-size: 1.3rem;
    color: var(--c-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.9;
    text-align: justify;
}

/* ===== Packaging Section (2-Column Carousel) ===== */
#packaging .split-section {
    display: flex;
    align-items: stretch;
    /* Match height */
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#packaging .split-image-container {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

#packaging .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

#packaging .split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

#packaging .split-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    /* Added side margins/padding */
}

/* New styles for design-section-split */
.split-section.design-section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0;
    background: none;
    width: 100%;
    height: auto;
    margin-left: 0;
}

@media (max-width: 768px) {
    #packaging .split-section {
        flex-direction: column;
        gap: 30px;
    }

    #packaging .split-image-container,
    #packaging .split-content {
        width: 100%;
    }

    #packaging .split-img {
        min-height: 300px;
    }
}

/* ===== Split Section (Full Width Background) ===== */
.split-section:not(.design-section-split):not(#packaging .split-section) {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    width: 100vw;
    max-width: none;
    height: 600px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.split-section:not(.design-section-split):not(#packaging .split-section):nth-child(even) {
    flex-direction: row;
    /* Keep same direction for bg, content moves via positioning */
}

.split-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 10s ease;
}

.split-image-container:hover .split-img {
    transform: scale(1.05);
}

.split-content {
    width: 40%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px;
    z-index: 2;
    position: relative;
    margin-left: 10%;
    /* Left side content */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.split-section:nth-child(even) .split-content {
    margin-left: auto;
    margin-right: 10%;
    /* Right side content */
}


@media (max-width: 992px) {
    .split-section {
        height: auto;
        flex-direction: column;
        padding: 0;
    }

    .split-image-container {
        position: relative;
        height: 300px;
    }

    .split-content {
        width: 90%;
        margin: -40px auto 40px;
        padding: 40px;
    }

    .split-section:nth-child(even) .split-content {
        margin: -40px auto 40px;
    }
}

/* Removed duplicate media query block */

/* ===== Awards Section ===== */
.awards-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background-color: #FAFAFA;
    border: 1px solid #EEE;
    margin-top: 40px;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
}

.award-icon {
    font-size: 2.5rem;
    color: var(--c-accent);
}

.award-text {
    font-weight: 700;
    color: var(--c-primary);
    font-size: 1.1rem;
}

.award-divider {
    width: 1px;
    height: 60px;
    background-color: #DDD;
}

@media (max-width: 768px) {
    .awards-banner {
        flex-direction: column;
        gap: 30px;
    }

    .award-divider {
        display: none;
    }
}

/* ===== Design Guide ===== */
.design-guide {
    background-color: var(--c-white);
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.design-points {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
    color: var(--c-text-light);
}

.design-points li {
    margin-bottom: 10px;
}

/* ===== Order Flow ===== */
/* ===== Order Flow (Sticky Scroll & Carousel) ===== */
.flow-container-wrapper {
    width: 100%;
    position: relative;
    /* Height will be set by JS */
}

.flow-steps-container {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    height: auto;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #fff;
}

.flow-steps-track {
    display: flex;
    gap: 60px;
    padding-left: calc(50vw - 150px);
    /* Center first item (300px/2) */
    padding-right: calc(50vw - 150px);
    /* Center last item */
    width: 100%;
    margin-top: 40px;
    /* Transform will be controlled by JS on PC */
}

.flow-step {
    min-width: 300px;
    width: 300px;
    flex-shrink: 0;
    /* Existing styles... */
    background: #fff;
    padding: 30px;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    /* Default faded */
    transform: scale(0.9);
    /* Default smaller */
}

.flow-step.active {
    opacity: 1;
    transform: scale(1.1);
    /* Pop out */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

@media (max-width: 768px) {
    .flow-container-wrapper {
        height: auto;
        /* Reset height for mobile */
    }

    .flow-steps-container {
        position: relative;
        height: auto;
        top: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 40px 20px;
        align-items: stretch;
    }

    .flow-steps-track {
        padding-left: 0;
        gap: 20px;
    }

    .flow-step {
        scroll-snap-align: center;
        min-width: 280px;
    }
}

.step-number {
    font-size: 2.5rem;
    /* Larger number */
    font-weight: 700;
    color: rgba(176, 141, 69, 0.3);
    /* Faint accent color */
    margin-bottom: 0;
    line-height: 1;
    font-family: var(--font-main);
}

.flow-icon-box {
    width: 80px;
    height: 80px;
    background-color: transparent;
    /* Removed background */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: none;
    /* Removed shadow */
    border: none;
    /* Removed border */
}

.flow-step h4 {
    color: var(--c-primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

/* ===== Price Table ===== */
.price-table-container {
    margin: 30px auto;
    max-width: 600px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table th,
.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.price-table th {
    background-color: var(--c-primary);
    color: var(--c-white);
    font-weight: 500;
}

.price-table tr:last-child td {
    border-bottom: none;
}

/* ===== Examples Grid ===== */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

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

.example-img-box {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f9f9f9;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.example-img-box:hover {
    transform: scale(1.05);
}

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

.example-name {
    font-size: 1.1rem;
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    border-bottom: 1px solid var(--c-accent);
    padding-bottom: 4px;
}

.example-item p:last-child {
    color: var(--c-text-light);
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c-primary);
    color: var(--c-white);
    padding: 18px 40px;
    border-radius: 2px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    min-width: 280px;
    line-height: 1.4;
    text-align: left;
}

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

.btn-square {
    border-radius: 2px !important;
}



/* ===== Footer ===== */
.footer {
    background-color: var(--c-primary);
    color: var(--c-white);
    padding: 80px 0 20px;
    margin-top: 80px;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--c-accent);
    letter-spacing: 0.1em;
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}