/* ============================================
   Spring Field Banquet & Conference Center
   Custom Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #0a1628;
    color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Geometric Background Shapes --- */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

.geo-circle--3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    background: radial-gradient(circle, rgba(26, 58, 110, 0.3) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite;
}

.geo-triangle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.geo-triangle--1 {
    width: 0;
    height: 0;
    top: 30%;
    left: 5%;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(212, 168, 67, 0.04);
    animation: spin 30s linear infinite;
    transform-origin: center;
}

.geo-diamond {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.geo-diamond--1 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 8%;
    background: rgba(212, 168, 67, 0.05);
    transform: rotate(45deg);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Section Labels --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4a843, transparent);
}

.section-label-text {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #d4a843;
}

/* --- Section Titles --- */
.section-title {
    color: #ffffff;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, #d4a843 0%, #e0b94f 50%, #d4a843 100%);
    color: #0a1628;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.45);
    background: linear-gradient(135deg, #e0b94f 0%, #d4a843 50%, #e0b94f 100%);
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: #d4a843;
    color: #d4a843;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
}

/* --- Navigation --- */
.nav-header {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.nav-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a843;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #d4a843;
}

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

.nav-link--cta {
    background: linear-gradient(135deg, #d4a843, #e0b94f);
    color: #0a1628;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    color: #0a1628;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.5) 50%,
        rgba(10, 22, 40, 0.9) 100%
    );
}

.hero-content {
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 100px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4a843;
}

.hero-badge-text {
    font-size: 13px;
    font-weight: 500;
    color: #d4a843;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-headline {
    display: flex;
    flex-direction: column;
}

.hero-headline-line {
    display: block;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.05;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-headline-accent {
    background: linear-gradient(135deg, #d4a843 0%, #e8ca6a 50%, #d4a843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
    gap: 16px;
}

.hero-stats {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
    font-size: clamp(28px, 4vw, 36px);
}

.hero-stat-label {
    font-size: 13px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: #d4a843;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

.hero-scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- About Section --- */
.about-section {
    position: relative;
}

.about-grid {
    position: relative;
}

.about-images {
    position: relative;
    min-height: 500px;
}

.about-img-main {
    position: relative;
    z-index: 2;
}

.about-img-main-img {
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    z-index: 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid #0a1628;
}

.about-img-secondary-img {
    display: block;
}

.about-geo-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.2), transparent);
    border-radius: 16px;
    z-index: 1;
    transform: rotate(15deg);
}

.about-experience-badge {
    position: absolute;
    top: 40px;
    right: -40px;
    z-index: 4;
    background: #d4a843;
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.3);
}

.about-experience-number {
    line-height: 1;
}

.about-experience-text {
    line-height: 1.3;
    color: #0a1628;
    font-weight: 600;
    text-align: center;
}

.about-features {
    margin-top: 40px;
}

.about-feature {
    display: flex;
    flex-direction: column;
}

.about-feature-icon {
    margin-bottom: 8px;
}

.about-feature-title {
    font-size: 15px;
}

.about-feature-desc {
    font-size: 13px;
}

/* --- Spaces Section --- */
.spaces-section {
    position: relative;
}

.spaces-grid {
    position: relative;
    z-index: 2;
}

.space-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.space-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 168, 67, 0.1);
}

.space-card-img {
    overflow: hidden;
    height: 240px;
}

.space-card-img-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.space-card:hover .space-card-img-inner {
    transform: scale(1.08);
}

.space-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 168, 67, 0.15);
    color: #d4a843;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.space-card-title {
    color: #ffffff;
}

.space-card-meta {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 12px;
}

/* --- Services Section --- */
.services-section {
    position: relative;
}

.services-grid {
    position: relative;
    z-index: 2;
}

.service-card {
    perspective: 1000px;
}

.service-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-card-inner {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a843, #e8ca6a, #d4a843);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-accent {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    margin-bottom: 4px;
}

.service-card-title {
    color: #ffffff;
}

.service-card-desc {
    line-height: 1.7;
}

/* --- Gallery Section --- */
.gallery-section {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item--wide {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f2140 0%, #152d56 50%, #0f2140 100%);
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    pointer-events: none;
}

.cta-geo--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-geo--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: 10%;
    background: radial-gradient(circle, rgba(26, 58, 110, 0.3), transparent 70%);
    border-radius: 50%;
}

.cta-geo--3 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 5%;
    border: 2px solid rgba(212, 168, 67, 0.1);
    transform: rotate(45deg);
}

.cta-gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a843, transparent);
    margin: 0 auto;
}

.cta-title {
    color: #ffffff;
}

/* --- Contact Section --- */
.contact-section {
    position: relative;
}

.contact-grid {
    position: relative;
    z-index: 2;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 11px;
    letter-spacing: 1.5px;
}

.contact-detail-value {
    font-size: 15px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a843, #e8ca6a, #d4a843);
}

.contact-form-title {
    color: #ffffff;
}

.contact-form-subtitle {
    margin-top: 4px;
}

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

.form-row {
    gap: 16px;
}

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

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: #d4a843;
    background: rgba(212, 168, 67, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23d4a843' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #0f2140;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Success message */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
}

.form-success-title {
    color: #ffffff;
}

.form-success-text {
    margin-top: 8px;
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    position: relative;
    z-index: 2;
}

.footer-logo {
    text-decoration: none;
}

.footer-logo-text {
    color: #ffffff;
}

.footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4a843;
}

.footer-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #d4a843;
}

.footer-bottom {
    position: relative;
    z-index: 2;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a843, #e0b94f);
    border: none;
    border-radius: 12px;
    color: #0a1628;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-img-secondary {
        right: 0;
    }

    .about-experience-badge {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline-line {
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 24px;
    }

    .about-images {
        min-height: 350px;
        margin-bottom: 40px;
    }

    .about-experience-badge {
        right: 10px;
        top: 20px;
        padding: 14px 18px;
    }

    .about-experience-number {
        font-size: 24px;
    }

    .about-experience-text {
        font-size: 12px;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-item--wide {
        grid-column: 1;
        grid-row: auto;
    }

    .contact-form-card {
        padding: 28px;
    }

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

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

    .footer-grid > :nth-child(1) {
        grid-column: 1 / -1;
    }
}

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

    .hero-content {
        padding-top: 60px;
    }

    .hero-badge {
        padding: 6px 12px;
    }

    .hero-badge-text {
        font-size: 11px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

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

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

    .section-title {
        font-size: 32px;
    }

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

    .footer-grid > :nth-child(1) {
        grid-column: auto;
    }
}
