﻿@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #faf6f1;
    --surface: #ffffff;
    --surface-2: #f0e9df;
    --cream: #f5ede0;
    --brown-1: #2c1f15;
    --brown-2: #4a3528;
    --brown-3: #7a5d44;
    --accent: #c08552;
    --accent-2: #b87333;
    --green: #5a6e3e;
    --text: #2c1f15;
    --text-2: #5a4738;
    --text-3: #8a7560;
    --border: rgba(44,31,21,0.1);
    --border-2: rgba(44,31,21,0.18);
}

.cf * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.cf {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ HEADER ============ */
.cf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,246,241,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.cf-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cf-logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brown-1);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cf-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--brown-1);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 16px;
}

.cf-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

    .cf-nav a {
        color: var(--text-2);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.3px;
        padding: 8px 16px;
        border-radius: 999px;
        transition: all 0.15s;
    }

        .cf-nav a:hover {
            color: var(--brown-1);
            background: var(--surface-2);
        }

        .cf-nav a.on {
            color: var(--brown-1);
            background: var(--surface-2);
        }

.cf-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cf-phone {
    font-size: 13px;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .cf-phone:hover {
        color: var(--brown-1);
    }

.cf-cta-btn {
    padding: 10px 20px;
    background: var(--brown-1);
    color: var(--bg);
    border: none;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.15s;
    text-decoration: none;
    display: inline-block;
}

    .cf-cta-btn:hover {
        opacity: 0.85;
    }

.cf-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    cursor: pointer;
}

    .cf-hamburger span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: var(--brown-1);
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
    }

    .cf-hamburger.open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .cf-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .cf-hamburger.open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

.cf-drawer {
    display: none;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 2px;
}

    .cf-drawer.open {
        display: flex;
    }

    .cf-drawer a {
        color: var(--text-2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 14px;
        border-radius: 8px;
    }

        .cf-drawer a:hover {
            background: var(--surface-2);
            color: var(--brown-1);
        }

/* ============ HERO ============ */
.cf-hero {
    position: relative;
    padding: 80px 32px 100px;
    overflow: hidden;
}

.cf-hero-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,133,82,0.12), transparent 70%);
    pointer-events: none;
}

.cf-hero-bg-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90,110,62,0.08), transparent 70%);
    pointer-events: none;
}

.cf-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cf-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--surface-2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brown-2);
    margin-bottom: 24px;
}

    .cf-hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
    }

.cf-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--brown-1);
    margin-bottom: 24px;
}

    .cf-hero-title em {
        font-style: italic;
        font-weight: 400;
        color: var(--accent);
    }

.cf-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-2);
    max-width: 480px;
    margin-bottom: 32px;
}

.cf-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cf-btn-primary {
    padding: 14px 28px;
    background: var(--brown-1);
    color: var(--bg);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

    .cf-btn-primary:hover {
        background: var(--brown-2);
        transform: translateY(-2px);
    }

.cf-btn-secondary {
    padding: 14px 28px;
    background: transparent;
    color: var(--brown-1);
    border: 1.5px solid var(--brown-1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

    .cf-btn-secondary:hover {
        background: var(--brown-1);
        color: var(--bg);
    }

.cf-hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 500px;
    justify-self: center;
    width: 100%;
}

.cf-hero-circle {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b6f4e, #5a4738);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    overflow: hidden;
}

    .cf-hero-circle::before {
        content: '';
        position: absolute;
        inset: 20px;
        border: 1px dashed rgba(255,255,255,0.15);
        border-radius: 50%;
    }

.cf-hero-circle-icon {
    font-size: 64px;
    margin-bottom: 12px;
}

.cf-hero-circle-text {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cf-hero-badge {
    position: absolute;
    background: var(--bg);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(44,31,21,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cf-hero-badge-1 {
    top: 10%;
    right: -10%;
    animation: floatY 4s ease-in-out infinite;
}

.cf-hero-badge-2 {
    bottom: 15%;
    left: -12%;
    animation: floatY 4s ease-in-out infinite reverse;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cf-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--surface-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cf-badge-text {
    display: flex;
    flex-direction: column;
}

.cf-badge-title {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
}

.cf-badge-value {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--brown-1);
}

/* ============ SHOWCASE ============ */
.cf-showcase {
    padding: 64px 32px;
    background: var(--brown-1);
    color: var(--bg);
}

.cf-showcase-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cf-showcase-head {
    text-align: center;
    margin-bottom: 48px;
}

.cf-showcase-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.cf-showcase-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--bg);
}

.cf-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cf-feature-card {
    text-align: center;
    padding: 24px 16px;
}

.cf-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cf-feature-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--bg);
    margin-bottom: 8px;
}

.cf-feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ============ MENU ============ */
.cf-menu {
    padding: 96px 32px 80px;
}

.cf-menu-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cf-menu-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.cf-menu-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.cf-menu-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--brown-1);
    margin-bottom: 16px;
}

    .cf-menu-title em {
        font-style: italic;
        color: var(--accent);
    }

.cf-menu-desc {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
}

.cf-menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cf-menu-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid var(--border-2);
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .cf-menu-tab:hover {
        border-color: var(--brown-1);
        color: var(--brown-1);
    }

    .cf-menu-tab.active {
        background: var(--brown-1);
        border-color: var(--brown-1);
        color: var(--bg);
    }

.cf-menu-section {
    display: none;
}

    .cf-menu-section.active {
        display: block;
    }

.cf-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}

.cf-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: background 0.2s;
    cursor: pointer;
}

    .cf-menu-item:hover {
        background: var(--surface-2);
    }

.cf-menu-item-img {
    width: 80px;
    height: 80px;
    background: var(--surface-2);
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-3);
    border: 1px dashed var(--border-2);
}

.cf-menu-item-body {
    flex: 1;
    min-width: 0;
}

.cf-menu-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.cf-menu-item-name {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brown-1);
    letter-spacing: -0.3px;
}

.cf-menu-item-line {
    flex: 1;
    height: 1px;
    border-bottom: 2px dotted var(--border);
    align-self: flex-end;
    margin-bottom: 6px;
    min-width: 20px;
}

.cf-menu-item-price {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.cf-menu-item-desc {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.55;
    margin-bottom: 8px;
}

.cf-menu-item-tags {
    display: flex;
    gap: 6px;
}

.cf-menu-item-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

.cf-tag-new {
    background: rgba(192,133,82,0.15);
    color: var(--accent);
}

.cf-tag-popular {
    background: rgba(44,31,21,0.1);
    color: var(--brown-1);
}

.cf-tag-vegan {
    background: rgba(90,110,62,0.15);
    color: var(--green);
}

/* ============ ABOUT ============ */
.cf-about {
    padding: 96px 32px;
    background: var(--surface-2);
}

.cf-about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cf-about-visual {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #6b4e35, #3d2817);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

    .cf-about-visual::before {
        content: '';
        position: absolute;
        inset: 24px;
        border: 1px dashed rgba(255,255,255,0.1);
        border-radius: 16px;
        pointer-events: none;
    }

.cf-about-visual-icon {
    font-size: 72px;
    margin-bottom: 12px;
}

.cf-about-visual-text {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cf-about-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.cf-about-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--brown-1);
    margin-bottom: 20px;
}

    .cf-about-title em {
        font-style: italic;
        color: var(--accent);
    }

.cf-about-desc {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.cf-stat-value {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--brown-1);
    letter-spacing: -1px;
    line-height: 1;
}

.cf-stat-label {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 4px;
}

/* ============ HOURS / CONTACT ============ */
.cf-info {
    padding: 80px 32px;
}

.cf-info-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cf-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.cf-info-card-icon {
    width: 56px;
    height: 56px;
    background: var(--brown-1);
    color: var(--bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.cf-info-card-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--brown-1);
    margin-bottom: 18px;
}

.cf-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cf-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

    .cf-hours-item:last-child {
        border-bottom: none;
    }

.cf-hours-day {
    color: var(--text-2);
    font-weight: 500;
}

.cf-hours-time {
    color: var(--brown-1);
    font-weight: 600;
}

.cf-hours-closed {
    color: var(--text-3);
    font-style: italic;
}

.cf-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cf-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cf-contact-icon {
    width: 36px;
    height: 36px;
    background: var(--surface-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cf-contact-label {
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.cf-contact-value {
    font-size: 15px;
    color: var(--brown-1);
    font-weight: 500;
}

/* ============ FOOTER ============ */
.cf-footer {
    background: var(--brown-1);
    color: rgba(255,255,255,0.6);
    padding: 56px 32px 28px;
}

.cf-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.cf-footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    color: var(--bg);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cf-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.cf-footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    margin-bottom: 16px;
}

.cf-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .cf-footer-links a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.15s;
    }

        .cf-footer-links a:hover {
            color: var(--bg);
        }

.cf-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.cf-social {
    display: flex;
    gap: 8px;
}

.cf-social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s;
}

    .cf-social-icon:hover {
        background: var(--accent);
        color: var(--bg);
    }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .cf-hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }

    .cf-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cf-hero-buttons {
        justify-content: center;
    }

    .cf-hero-visual {
        max-width: 380px;
    }

    .cf-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cf-menu-grid {
        grid-template-columns: 1fr;
    }

    .cf-about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cf-about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .cf-info-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf-header-inner {
        padding: 0 16px;
    }

    .cf-nav, .cf-cta-btn, .cf-phone {
        display: none;
    }

    .cf-hamburger {
        display: flex;
    }

    .cf-hero {
        padding: 48px 16px 64px;
    }

    .cf-hero-badge-1 {
        right: -5%;
    }

    .cf-hero-badge-2 {
        left: -5%;
    }

    .cf-hero-badge {
        padding: 10px 14px;
    }

    .cf-badge-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .cf-badge-value {
        font-size: 14px;
    }

    .cf-showcase {
        padding: 56px 16px;
    }

    .cf-showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cf-feature-card {
        padding: 16px 8px;
    }

    .cf-feature-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .cf-menu {
        padding: 64px 16px 56px;
    }

    .cf-menu-tabs {
        gap: 6px;
        padding: 0 8px;
    }

    .cf-menu-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .cf-menu-grid {
        gap: 8px;
    }

    .cf-menu-item {
        padding: 12px;
        gap: 12px;
    }

    .cf-menu-item-img {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    .cf-menu-item-name {
        font-size: 16px;
    }

    .cf-menu-item-price {
        font-size: 16px;
    }

    .cf-about {
        padding: 64px 16px;
    }

    .cf-stats {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 24px;
        margin-top: 24px;
    }

    .cf-info {
        padding: 56px 16px;
    }

    .cf-info-card {
        padding: 28px;
    }

    .cf-footer {
        padding: 40px 16px 24px;
    }

    .cf-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .cf-footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cf-showcase-grid {
        grid-template-columns: 1fr;
    }
}
