/* =============================================
   RESET
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:after, *:before {
    box-sizing: border-box;
}

/* =============================================
   VARIABLES
   ============================================= */
:root {
    --primary:       #1a1208;
    --primary-light: #2b1c0d;
    --accent:        #c9a96e;
    --accent-hover:  #a8813a;
    --accent-light:  #f5d894;
    --text:          #2a1f0e;
    --text-muted:    #7a6a50;
    --bg:            #ffffff;
    --bg-alt:        #fffbf0;
    --bg-warm:       #fff8e8;
    --border:        #ede0c4;
    --white:         #ffffff;
    --max-width:     1200px;
    --header-h:      72px;
    --radius:        10px;
}

/* =============================================
   BASE
   ============================================= */
body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover {
    background: var(--accent-hover);
    color: var(--white);
}
.btn-large {
    padding: 16px 40px;
    font-size: 15px;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--accent-light);
}
.btn-login {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(201, 169, 110, 0.5);
    padding: 10px 22px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 13px;
}
.btn-login:hover {
    background: rgba(201, 169, 110, 0.12);
    border-color: var(--accent);
}
.btn-signup {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 22px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 13px;
}
.btn-signup:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--primary);
    height: var(--header-h);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    text-decoration: none;
    font-family: Georgia, serif;
}
.logo em {
    color: var(--white);
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Desktop nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    list-style: none;
}
.nav-menu li a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.nav-menu li a:hover {
    color: var(--accent);
    background: rgba(201, 169, 110, 0.08);
}

.nav-cta-item {
    display: none;
}

.desktop-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO  — left-aligned (template variation)
   ============================================= */
.hero {
    background: url("../images/banner.jpg") no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 100px 0 110px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 18, 8, 0.88) 0%, rgba(26, 18, 8, 0.42) 70%, rgba(26, 18, 8, 0.15) 100%);
    z-index: 0;
}
.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}
.hero h1 {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 22px;
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
}
.hero p {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================
   FEATURES STRIP  (template variation)
   ============================================= */
.features-strip {
    background: var(--primary);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 20px 0;
}
.features-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
}
.strip-item::before {
    content: '◆';
    color: var(--accent);
    font-size: 9px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: var(--bg-alt);
    padding: 40px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-item {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   SECTION BASE
   ============================================= */
section {
    padding: 68px 0;
}

section h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.18;
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', serif;
}

section h3 {
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

section p {
    font-size: 15px;
    line-height: 1.82;
    color: var(--text);
    margin-bottom: 12px;
}
section p:last-child {
    margin-bottom: 0;
}

section ul {
    margin: 8px 0 14px;
}
section ul li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}
section ul li::before {
    content: '◆';
    position: absolute;
    left: 2px;
    color: var(--accent);
    font-size: 8px;
    top: 6px;
}

.section-intro {
    font-size: 17px !important;
    color: var(--text-muted) !important;
    margin-bottom: 36px !important;
    font-style: italic;
}

.gold-rule {
    width: 56px;
    height: 3px;
    background: var(--accent);
    margin: 14px 0 28px;
    border-radius: 2px;
}

/* =============================================
   INTRO
   ============================================= */
.intro {
    background: var(--bg);
}
.intro .container {
    max-width: 860px;
}
.intro p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* =============================================
   GOLD TRENDS — 3-col cards
   ============================================= */
.gold-trends {
    background: var(--bg-alt);
}
.trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 8px;
}
.trend-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 30px 26px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

/* =============================================
   RESIDENTIAL ROOMS — 2×2 grid (template variation)
   ============================================= */
.residential {
    background: var(--bg);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.room-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

/* =============================================
   COMMERCIAL — dark section
   ============================================= */
.commercial {
    background: var(--primary);
}
.commercial h2 {
    color: var(--white);
}
.commercial h3 {
    color: var(--accent-light);
}
.commercial p {
    color: rgba(255, 255, 255, 0.8);
}
.commercial .section-intro {
    color: rgba(255, 255, 255, 0.55) !important;
}
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.commercial-card {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: var(--radius);
    padding: 28px 22px;
}

/* =============================================
   FINISHES
   ============================================= */
.finishes {
    background: var(--bg-alt);
}
.finishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.finish-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

/* =============================================
   LIGHTING
   ============================================= */
.lighting {
    background: var(--primary-light, #2b1c0d);
}
.lighting h2 {
    color: var(--white);
}
.lighting h3 {
    color: var(--accent-light);
}
.lighting p {
    color: rgba(255, 255, 255, 0.8);
}
.lighting .gold-rule {
    background: rgba(201, 169, 110, 0.4);
}
.lighting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.lighting-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: var(--radius);
    padding: 26px 22px;
}

/* =============================================
   CRAFTSMANSHIP
   ============================================= */
.craftsmanship {
    background: var(--bg);
}
.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.craft-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 26px 22px;
    border: 1px solid var(--border);
    text-align: center;
}
.craft-card h3 {
    text-align: left;
}

/* =============================================
   PROCESS — horizontal steps (template variation)
   ============================================= */
.process {
    background: var(--bg-alt);
}
.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 32px;
    position: relative;
}
.process-row::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: Georgia, serif;
}
.process-step h3 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 15px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =============================================
   WHY CHOOSE
   ============================================= */
.why-choose {
    background: var(--bg);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 8px;
}
.why-card {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 28px 26px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

/* =============================================
   CITIES
   ============================================= */
.cities-section {
    background: var(--primary);
}
.cities-section h2 {
    color: var(--white);
}
.cities-section p {
    color: rgba(255, 255, 255, 0.8);
}
.cities-section .section-intro {
    color: rgba(255, 255, 255, 0.55) !important;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 28px 0;
}
.city-card {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 6px;
    padding: 14px 10px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.city-card span {
    display: block;
    font-size: 11px;
    color: var(--accent);
    font-weight: 400;
    margin-top: 3px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, #2b1c0d 0%, #1a1208 60%, #0d0805 100%);
    text-align: center;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(24px, 3.2vw, 42px);
}
.cta-section p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.cta-section .gold-rule {
    margin: 14px auto 28px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background: var(--bg-alt);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 26px 28px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}
.faq-item h3 {
    margin-bottom: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--primary);
    padding: 56px 0 28px;
    border-top: 1px solid rgba(201, 169, 110, 0.18);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.footer-brand .logo {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    align-items: center;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.footer-nav a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* =============================================
   DOC CONTENT  (converted from docx)
   ============================================= */
.doc-content {
    background: var(--bg);
}
.doc-content .container {
    max-width: 1400px;
}

/* Table scroll wrapper — full width, scrolls on mobile */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Tables inside any section (incl. doc-content) */
section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    min-width: 420px;
}
.table-wrap table {
    margin: 0;
    border-radius: 0;
    border: none;
}
section table thead tr th {
    background: var(--primary);
    color: var(--accent-light);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    border: 1px solid var(--primary);
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}
section table tbody tr td {
    padding: 11px 16px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
    color: var(--text);
}
section table tbody tr:nth-child(even) td {
    background: var(--bg-alt);
}
section table tbody tr:hover td {
    background: var(--bg-warm);
}

@media (max-width: 768px) {
    .table-wrap {
        border-radius: 6px;
    }
    section table thead tr th,
    section table tbody tr td {
        padding: 9px 12px;
        font-size: 14px;
    }
}

/* =============================================
   RESPONSIVE — HAMBURGER FROM 1024px
   ============================================= */
@media (max-width: 1024px) {

    .hamburger {
        display: flex;
    }
    .desktop-cta {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: -24px;
        right: -24px;
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        z-index: 100;
        margin-left: 0;
        border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-menu li a {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 0;
    }
    .nav-menu li a:hover {
        background: rgba(201, 169, 110, 0.07);
    }
    .nav-cta-item {
        display: block;
        padding: 10px 24px;
        border-bottom: none !important;
    }
    .nav-cta-item .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Layout */
    .trends-grid {
        grid-template-columns: 1fr;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .commercial-grid {
        grid-template-columns: 1fr;
    }
    .finishes-grid {
        grid-template-columns: 1fr;
    }
    .lighting-grid {
        grid-template-columns: 1fr;
    }
    .craft-grid {
        grid-template-columns: 1fr;
    }
    .process-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .process-row::before {
        display: none;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 52px 0;
    }
    .hero {
        padding: 72px 0 80px;
    }
    .process-row {
        grid-template-columns: 1fr;
    }
    .features-strip-inner {
        gap: 14px;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .features-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}
