/* =========================================
   ANANDA FINE INDIAN CUISINE — STYLESHEET
   ========================================= */

/* --- CSS VARIABLES --- */
:root {
    --c-saffron: #FF9933;
    --c-gold: #D4AF37;
    --c-green: #228B22;
    --c-cream: #FFF8E7;
    --c-dark: #2B2B2B;
    --c-white: #FFFFFF;
    
    --f-head: 'Playfair Display', serif;
    --f-body: 'Noto Sans', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    color: var(--c-dark);
    background-color: var(--c-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-head);
    font-weight: 600;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--c-saffron);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--c-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--c-gold);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--f-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background-color: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before { width: 100%; }

.btn-primary {
    background-color: var(--c-saffron);
    color: var(--c-white);
}
.btn-primary:hover {
    background-color: #e68a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--c-gold);
    color: var(--c-gold);
}
.btn-outline:hover {
    background-color: var(--c-gold);
    color: var(--c-white);
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background-color: var(--c-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

nav.scrolled .logo { color: var(--c-dark); }
nav.scrolled .nav-links a { color: var(--c-dark); }
nav.scrolled .hamburger span { background: var(--c-dark); }

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

.logo {
    font-family: var(--f-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-white);
    transition: var(--transition);
}
.logo span { color: var(--c-saffron); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--c-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background-color: var(--c-saffron);
    transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--c-saffron) !important; }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 30px; height: 2px;
    background: var(--c-white);
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--c-white);
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--f-body);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 20px;
    display: block;
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Spice Particles */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--c-saffron);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatUp linear infinite;
}

.particle:nth-child(even) {
    background: var(--c-gold);
    border-radius: 2px;
    transform: rotate(45deg);
}

@keyframes floatUp {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.about-img::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 2px solid var(--c-gold);
    pointer-events: none;
    opacity: 0.8;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--c-saffron);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.signature {
    font-family: var(--f-head);
    font-size: 1.8rem;
    color: var(--c-gold);
    margin-top: 30px;
    font-style: italic;
}

/* --- FEATURES / WHY DINE HERE --- */
.features {
    background-color: var(--c-white);
    background-image: radial-gradient(var(--c-cream) 1px, transparent 1px);
    background-size: 20px 20px;
}

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

.feature-card {
    background: var(--c-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-saffron);
}

.feature-icon {
    width: 70px; height: 70px;
    background: var(--c-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--c-saffron);
}

.feature-icon svg { width: 35px; height: 35px; fill: currentColor; }
.feature-card h4 { font-size: 1.4rem; margin-bottom: 15px; }
.feature-card p { color: #666; font-size: 0.95rem; }

/* --- MENU SECTION --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.menu-card {
    background: var(--c-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-img-wrap img { transform: scale(1.1); }

.veg-indicator {
    position: absolute;
    top: 15px; right: 15px;
    width: 24px; height: 24px;
    background: white;
    border: 2px solid var(--c-green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veg-indicator::after {
    content: '';
    width: 12px; height: 12px;
    background: var(--c-green);
    border-radius: 50%;
}

.non-veg-indicator { border-color: #D32F2F; }
.non-veg-indicator::after { background: #D32F2F; }

.menu-content { padding: 25px; }

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-title {
    font-size: 1.4rem;
    font-family: var(--f-head);
    color: var(--c-dark);
}

.menu-price {
    font-weight: 600;
    color: var(--c-saffron);
    font-size: 1.2rem;
}

.menu-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 45px;
}

.spice-level { display: flex; gap: 4px; color: #ccc; }
.spice-level svg { width: 16px; height: 16px; fill: currentColor; }
.spice-active { color: #D32F2F; }

/* --- REGIONAL CUISINE --- */
.regional {
    background: var(--c-dark);
    color: var(--c-white);
}

.regional .section-title { color: var(--c-white); }
.regional .section-title::after { background-color: var(--c-saffron); }

.region-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}

.region-item:nth-child(even) { flex-direction: row-reverse; }

.region-img {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.region-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.region-name {
    position: absolute;
    bottom: 20px; left: 20px;
    font-family: var(--f-head);
    font-size: 2rem;
    color: var(--c-gold);
}

.region-content { flex: 1; }
.region-content h3 { font-size: 2.5rem; margin-bottom: 15px; color: var(--c-saffron); }
.region-content p { font-size: 1.1rem; color: #ddd; margin-bottom: 20px; }

.dish-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
    background: rgba(255,255,255,0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--c-gold);
    color: var(--c-cream);
}

/* --- DINING EXPERIENCES (3D TILT) --- */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.tilt-card {
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.tilt-card:hover { box-shadow: var(--shadow-lg); }

.tilt-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.tilt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
    z-index: 2;
}

.tilt-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    transform: translateZ(50px);
    color: var(--c-white);
}

.tilt-content h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--c-gold); }
.tilt-content p { font-size: 0.95rem; opacity: 0.9; }

/* --- GALLERY & LIGHTBOX --- */
.gallery { background-color: var(--c-white); }

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '+';
    position: absolute;
    inset: 0;
    background: rgba(255, 153, 51, 0.7);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::before { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* --- EVENTS SECTION --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--c-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.event-date {
    background: var(--c-saffron);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--f-head);
}

.event-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.event-content p { color: #666; margin-bottom: 20px; flex: 1; }

/* --- RESERVATION SECTION --- */
.reservation {
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(43, 43, 43, 0.85);
}

.res-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: var(--c-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.res-container .section-title { color: var(--c-dark); }
.res-container .section-title::after { background-color: var(--c-saffron); }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }

label { font-size: 0.9rem; font-weight: 600; color: #555; }

input, select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--f-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--c-saffron);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-msg {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
    font-weight: 600;
}

.form-msg.success { background: #d4edda; color: #155724; display: block; border: 1px solid #c3e6cb; }
.form-msg.error   { background: #f8d7da; color: #721c24; display: block; border: 1px solid #f5c6cb; }

/* --- MERCHANDISE SECTION --- */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.merch-card {
    background: var(--c-white);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.merch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--c-gold); }

.merch-img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    mix-blend-mode: multiply;
}

.merch-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.merch-price { color: var(--c-saffron); font-weight: bold; font-size: 1.2rem; margin-bottom: 15px; }

/* --- LOCATION SECTION --- */
.location { background: var(--c-white); }

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.loc-info {
    background: var(--c-dark);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-info h3 { color: var(--c-gold); font-size: 2rem; margin-bottom: 20px; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item svg { width: 24px; height: 24px; fill: var(--c-saffron); flex-shrink: 0; }
.info-item p { margin-bottom: 5px; color: #ccc; }
.info-item strong { color: white; display: block; font-size: 1.1rem; }

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* --- FOOTER --- */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 80px 0 20px;
    border-top: 5px solid var(--c-saffron);
}

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

.footer-logo {
    font-family: var(--f-head);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}
.footer-logo span { color: var(--c-saffron); }

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: var(--c-gold);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--c-saffron); padding-left: 5px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }

.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a svg { width: 20px; height: 20px; fill: white; transition: var(--transition); }
.social-links a:hover { background: var(--c-saffron); }
.social-links a:hover svg { transform: scale(1.2); }

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

/* --- UTILITY & ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

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

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

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--c-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    border-left: 4px solid var(--c-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3000;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .section-title { font-size: 2.4rem; }
    .hero-title { font-size: 3.5rem; }
    .about-grid, .region-item, .loc-grid { gap: 30px; }
    .res-container { padding: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: var(--c-white);
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        text-align: center;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { color: var(--c-dark); display: inline-block; padding: 10px; }
    .hamburger { display: flex; }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { order: -1; }

    .region-item,
    .region-item:nth-child(even) { flex-direction: column; }
    .region-img { width: 100%; height: 300px; }

    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .loc-grid { grid-template-columns: 1fr; }

    /* Disable tilt on mobile */
    .tilt-card { transform: none !important; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; gap: 10px; }
    .section-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
