/* ============================================
   THE CRYSTAL CAFE — Custom Styles
   Palette: Midnight Blue (#0a1628) + Mint (#5eead4)
   ============================================ */

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

:root {
    --midnight: #0a1628;
    --midnight-light: #1a3a5c;
    --midnight-mid: #0d1f38;
    --mint: #5eead4;
    --mint-light: #99f6e4;
    --mint-dark: #2dd4bf;
    --cream: #f8faf9;
    --cream-warm: #f0f7f4;
    --white: #ffffff;
    --text-primary: #0a1628;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
    --shadow-mint: 0 8px 30px rgba(94, 234, 212, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

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

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--mint);
    color: var(--midnight);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title--accent {
    color: var(--mint-dark);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
    box-shadow: var(--shadow-mint);
}

.btn--primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(94, 234, 212, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--midnight);
    border-color: var(--midnight);
}

.btn--ghost:hover {
    background: var(--midnight);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 250, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(248, 250, 249, 0.95);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight);
}

.logo--light .logo__text {
    color: var(--white);
}

.logo__text {
    color: var(--midnight);
}

.logo__icon {
    flex-shrink: 0;
}

/* --- Navigation --- */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--midnight);
    background: rgba(10, 22, 40, 0.06);
}

.nav__link--cta {
    background: var(--midnight);
    color: var(--mint) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--midnight-light);
    transform: translateY(-1px);
}

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

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--midnight);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    background: var(--cream);
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 16px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--midnight);
    margin-bottom: 24px;
}

.hero__headline--accent {
    color: var(--mint-dark);
    font-style: italic;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    pointer-events: none;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about__img-secondary img {
    width: 350px;
    height: 280px;
    object-fit: cover;
}

.about__img-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--midnight);
    color: var(--mint);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about__badge-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--midnight);
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Menu --- */
.menu {
    padding: 120px 0;
    background: var(--cream);
}

.menu__categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 48px 0 40px;
}

.menu__cat {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(10, 22, 40, 0.12);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.menu__cat:hover {
    border-color: var(--midnight);
    color: var(--midnight);
}

.menu__cat.active {
    background: var(--midnight);
    border-color: var(--midnight);
    color: var(--mint);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    opacity: 1;
    transform: translateY(0);
}

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

.menu-card.hidden {
    display: none;
}

.menu-card__img {
    overflow: hidden;
    height: 200px;
}

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

.menu-card:hover .menu-card__img img {
    transform: scale(1.05);
}

.menu-card__body {
    padding: 24px;
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
}

.menu-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.menu__note {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0 80px;
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    margin-top: 48px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: var(--mint-light);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--large img {
    height: 100%;
}

.gallery__item--wide {
    grid-column: span 7;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--midnight);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(80px);
    pointer-events: none;
}

.visit .section-tag {
    color: var(--mint);
}

.visit .section-title {
    color: var(--white);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.visit__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

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

.visit__detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(94, 234, 212, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    flex-shrink: 0;
}

.visit__detail-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 4px;
}

.visit__detail-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.visit__detail-value a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.visit__detail-value a:hover {
    color: var(--mint);
}

.visit__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.visit__actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.visit__actions .btn--ghost:hover {
    background: var(--white);
    color: var(--midnight);
    border-color: var(--white);
}

.visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--cream-warm);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 16px;
}

.contact__form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--mint-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.15);
}

.form__input::placeholder {
    color: var(--text-muted);
}

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

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(94, 234, 212, 0.15);
    border-radius: var(--radius-md);
    color: var(--midnight);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    background: var(--midnight);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--mint);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact a,
.footer__contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--mint);
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    gap: 16px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }
    
    .about__grid {
        gap: 60px;
    }
    
    .about__img-secondary {
        right: -20px;
        bottom: -20px;
    }
    
    .gallery__grid {
        grid-template-rows: repeat(2, 240px);
    }
    
    .gallery__item--large {
        grid-column: span 6;
        grid-row: span 2;
    }
    
    .gallery__item--wide {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 100;
    }
    
    .nav__menu.open {
        right: 0;
    }
    
    .nav__link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }
    
    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.5);
        z-index: 99;
    }
    
    .nav__overlay.show {
        display: block;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-wrapper {
        border-radius: var(--radius-lg);
    }
    
    .hero__image-wrapper img {
        height: 350px;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about__img-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        border: 4px solid var(--white);
    }
    
    .about__img-badge {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        margin-bottom: 16px;
    }
    
    .about__img-main img {
        height: 300px;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .gallery {
        padding: 80px 0 60px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery__item--large img {
        height: 200px;
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit__map {
        min-height: 300px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__form-wrapper {
        padding: 28px;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    
    .footer__brand {
        grid-column: span 2;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__stats {
        gap: 24px;
    }
    
    .menu__categories {
        gap: 6px;
    }
    
    .menu__cat {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item,
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery__item img,
    .gallery__item--large img {
        height: 220px;
    }
    
    .visit__actions {
        flex-direction: column;
    }
    
    .visit__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__brand {
        grid-column: span 1;
    }
}
