/* ============================================================
   Gascinty RECORDS — style.css
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #fafaf8;
    --gray: #f0eeea;
    --mid: #9a9690;
    --accent: #c8a96e;
    --text: #1a1a18;
    
    --bg-primary: var(--white);
    --text-primary: var(--text);
    --card-bg: var(--gray);
    --nav-bg: rgba(250, 250, 248, 0.92);
    --nav-text: var(--black);
    --border-subtle: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 48px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: padding 0.3s ease;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 34px;
    width: 34px;
    object-fit: cover;
    border-radius: 50%;
    /* Removed mix-blend-mode to ensure visibility across all themes */
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black);
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-btn {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    transition: background .2s, color .2s;
}

.nav-btn:hover {
    background: var(--accent);
    color: var(--black);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 80%), url('images/img_hero_bg_1774748003571.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Secondary Hero for sub-pages */
.hero.secondary-hero {
    height: 60vh;
    min-height: 420px;
}

.secondary-hero .hero-watermark {
    font-size: 100px;
}

.hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px,
            rgba(255, 255, 255, 1) 2px, rgba(255, 255, 255, 1) 3px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-tag::before, .hero-tag::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--black);
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.2);
    transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
    background: #d4b578;
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    border-radius: 2px;
    transition: all .2s;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-watermark {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    user-select: none;
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    right: 48px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25));
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    writing-mode: vertical-rl;
}

/* ── GENRES TICKER ─────────────────────────────────────────── */
.genres-strip {
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--gray);
}

.genres-track {
    display: flex;
    animation: scroll-x 22s linear infinite;
    white-space: nowrap;
}

.genre-item {
    padding: 18px 40px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.genre-item.acc {
    color: var(--accent);
    font-weight: 500;
}

@keyframes scroll-x {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-visual {
    background: var(--black);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ring::before {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.1);
}

.ring-letter {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.55;
}

.about-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sec-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 22px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a56;
    font-weight: 300;
    margin-bottom: 18px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.snum {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.slabel {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 4px;
}

/* ── MANAGEMENT ────────────────────────────────────────────── */
.manager-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-primary);
}

.manager-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manager-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

.manager-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a56;
    font-weight: 300;
    margin-bottom: 18px;
}

.manager-visual {
    background: #050505;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.manager-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.manager-visual:hover .manager-photo {
    transform: scale(1.04);
}

/* Alternative Layout for Management sections (Mirrored) */
.manager-sec.alt-layout {
    background: var(--gray); /* Subtle shift in background */
}

@media (min-width: 1025px) {
    .manager-sec.alt-layout .manager-text {
        order: 2;
        padding-left: 80px;
    }
    .manager-sec.alt-layout .manager-visual {
        order: 1;
    }
}

/* ── ARTISTS ───────────────────────────────────────────────── */
.artists-sec {
    padding: 100px 48px;
}

.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.sec-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--black);
}

.see-all {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.see-all::after {
    content: ' →';
}

.agrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.acard {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray);
}

.acard:not(.featured) {
    aspect-ratio: 3/4;
}

.acard.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 520px;
}

.aph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.acard:hover .aph-img {
    transform: scale(1.08);
}

.aov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 90%);
    opacity: 0;
    transition: opacity .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.acard:hover .aov {
    opacity: 1;
}

.aname {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    transform: translateY(12px);
    transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.acard:hover .aname {
    transform: translateY(0);
}

.acard.featured .aname {
    font-size: 30px;
}

.agen {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 3px;
}

.c1 {
    background: #e0dbd0;
}

.c2 {
    background: #d6d0c5;
}

.c3 {
    background: #dbd5c8;
}

.c4 {
    background: #d2ccbf;
}

.c5 {
    background: #d8d2c5;
}

/* ── RELEASES ──────────────────────────────────────────────── */
.releases-sec {
    padding: 100px 48px;
    background: var(--black);
}

.releases-sec .sec-header h2 {
    color: #fff;
}

.releases-sec .see-all {
    color: rgba(255, 255, 255, 0.35);
}

.rlist {
    display: flex;
    flex-direction: column;
}

.rrow {
    display: grid;
    grid-template-columns: 44px 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background .2s;
    border-radius: 3px;
}

.rrow:hover {
    background: rgba(255, 255, 255, 0.04);
}

.rnum {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.18);
}

.rtitle {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
}

.rartist {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
}

.rpill {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(200, 169, 110, 0.1);
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
}

.ryear {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
}

.rplay {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    transition: all .2s;
    flex-shrink: 0;
}

.rrow:hover .rplay {
    border-color: var(--accent);
    color: var(--accent);
}

.rrow.playing {
    background: rgba(200, 169, 110, 0.08);
}

.rrow.playing .rplay {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200, 169, 110, 0.15);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-sec {
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ct-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 20px;
}

.ct-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    margin-bottom: 10px;
}

.ct-meta {
    font-size: 13px;
    color: #aaa;
    margin-top: 8px;
}

.cform {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fg label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
}

.fg input,
.fg select,
.fg textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 11px 15px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 2px;
    background: var(--gray);
    color: var(--text);
    outline: none;
    transition: border-color .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--accent);
}

.fg textarea {
    resize: vertical;
    min-height: 116px;
}

.form-submit {
    align-self: flex-start;
    margin-top: 6px;
}

.file-upload-group {
    grid-column: 1 / -1;
}

.file-input {
    padding: 8px 10px !important;
    cursor: pointer;
    font-size: 13px !important;
}

.file-input::file-selector-button {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 8px 16px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.2s;
    font-weight: 500;
}

.file-input::file-selector-button:hover {
    background: var(--accent);
    color: #000;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
    background: var(--black);
    padding: 38px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.flogo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.flogo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    background: #fff;
    padding: 3px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.flogo:hover img {
    opacity: 0.8;
}

.flogo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.flogo .logo-text span {
    color: var(--accent);
}

.flinks {
    display: flex;
    gap: 26px;
}

.flinks a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition: color .2s;
}

.flinks a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.fcopy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
@media (pointer: fine) {
    * {
        cursor: none !important;
    }
    
    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: var(--accent);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10000;
        mix-blend-mode: difference;
        transition: opacity 0.3s, width 0.2s, height 0.2s;
    }

    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(200, 169, 110, 0.6);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: difference;
        transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s;
    }

    .cursor-dot.hovered {
        opacity: 0;
    }

    .cursor-outline.hovered {
        width: 64px;
        height: 64px;
        background-color: rgba(200, 169, 110, 0.1);
        border-color: rgba(200, 169, 110, 0.9);
    }
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.animate-in {
    animation: fadeUp 0.6s ease forwards;
}

.word-anim {
    display: inline-block;
    opacity: 0;
    white-space: pre-wrap;
    animation: wordReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* ── RESPONSIVE DESIGN ─────────────────────────────────────── */
.mobile-only {
    display: none;
}
.menu-toggle {
    display: none;
}

@media screen and (max-width: 1024px) {
    /* Tablet */
    .about, .manager-sec { grid-template-columns: 1fr; }
    .about-visual, .manager-visual { min-height: 480px; }
    .agrid { grid-template-columns: repeat(2, 1fr); }
    .acard.featured { grid-column: span 2; }
    .contact-sec { grid-template-columns: 1fr; gap: 40px; }
}

@media screen and (max-width: 768px) {
    /* Mobile */
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }

    nav { padding: 10px 24px !important; }
    .logo-text { font-size: 11px; }
    .logo img { height: 34px; width: 34px; }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 5px;
    }
    
    .bar {
        display: block;
        width: 20px;
        height: 2px;
        margin: 4px auto;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: var(--black);
    }
    
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px; /* nav height roughly */
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(250, 250, 248, 0.98);
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: left 0.4s ease;
        backdrop-filter: blur(12px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a { font-size: 16px; font-weight: 500; color: var(--black); }

    /* Sections Padding */
    .hero { height: auto; min-height: 80vh; padding: 120px 24px 80px; }
    .about-text, .artists-sec, .releases-sec, .contact-sec, footer { padding: 60px 24px; }
    
    /* Typography */
    .hero h1 { font-size: clamp(34px, 8vw, 46px); }
    .hero-sub { margin-bottom: 32px; max-width: 100%; }
    .sec-header h2, .about-text h2, .ct-text h2 { font-size: 30px; }
    
    /* Hero */
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    .hero-scroll { display: none; }
    .hero-watermark { font-size: 60px; right: 10px; opacity: 0.05; }
    
    /* About & Visuals */
    .about-visual, .manager-visual { min-height: 320px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 10px; }
    
    /* Artists */
    .agrid { grid-template-columns: 1fr; }
    .acard.featured { grid-column: span 1; min-height: 320px; }
    
    /* Releases */
    .rrow { grid-template-columns: 30px 1fr 30px; padding: 12px 0; }
    .rpill, .ryear { display: none; }
    
    /* Contact Form */
    .frow { grid-template-columns: 1fr; }
    
    /* Footer */
    footer { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding-bottom: 40px; }
    .flinks { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
