*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #fdf8ef;
    --cream-100: #fdf6e3;
    --cream-200: #f5eedc;
    --cream-300: #e8dcc4;
    --ink-900: #1a1a1a;
    --ink-700: #2d2d2d;
    --ink-500: #555555;
    --ink-400: #6b6b6b;
    --ink-300: #888888;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--sans);
    background-color: var(--cream-50);
    color: var(--ink-900);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.site-header.scrolled {
    background-color: rgba(253, 248, 239, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s var(--ease-out);
}

.site-header.scrolled .container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream-50);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    transition: color 0.4s var(--ease-out);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
}

.logo-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-spring);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.site-header.scrolled .logo {
    color: var(--emerald-900);
}

/* ─── NAV ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--cream-50);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), background-color 0.4s var(--ease-out);
}

.site-header.scrolled .hamburger {
    background-color: var(--emerald-900);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(253, 248, 239, 0.85);
    padding: 8px 16px;
    border-radius: 100px;
    transition: color 0.3s, background-color 0.3s;
}

.nav-link:hover {
    color: var(--cream-50);
    background-color: rgba(253, 248, 239, 0.12);
}

.site-header.scrolled .nav-link {
    color: var(--ink-700);
}

.site-header.scrolled .nav-link:hover {
    color: var(--emerald-900);
    background-color: rgba(6, 78, 59, 0.08);
}

.nav-cta {
    background-color: var(--cream-50);
    color: var(--emerald-900) !important;
    font-weight: 600;
    margin-left: 8px;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background-color 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--cream-50) !important;
    color: var(--emerald-800) !important;
}

.site-header.scrolled .nav-cta {
    background-color: var(--emerald-900);
    color: var(--cream-50) !important;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #042f23 0%,
        #064e3b 20%,
        #0f766e 40%,
        #0d9488 55%,
        #059669 70%,
        #047857 85%,
        #065f46 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(4, 47, 35, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13, 148, 136, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(6, 78, 59, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 25h-10L30 5zM30 55L25 35h10L30 55z' fill='%23fdf8ef' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream-50), transparent);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 246, 227, 0.7);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--cream-50);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--cream-200);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(253, 246, 227, 0.8);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 246, 227, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background-color 0.3s;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--cream-50);
    color: var(--emerald-900);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background-color: var(--cream-100);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cream-50);
    border: 1.5px solid rgba(253, 246, 227, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(253, 246, 227, 0.1);
    border-color: rgba(253, 246, 227, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--emerald-700);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--ink-500);
    line-height: 1.7;
}

/* ─── MENU ─── */
.menu {
    padding: 120px 0;
    background-color: var(--cream-50);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.menu-card {
    background-color: var(--cream-100);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
}

.menu-card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.menu-card-body {
    padding: 28px 28px 32px;
}

.menu-card-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: var(--ink-500);
    line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background-color: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23fdf8ef'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 6/7;
}

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

.about-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--cream-100);
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    color: var(--cream-50);
}

.about .section-eyebrow {
    color: rgba(253, 246, 227, 0.6);
}

.about .section-title {
    color: var(--cream-50);
    text-align: left;
}

.about .section-title em {
    color: var(--cream-200);
}

.about-content > p {
    font-size: 1.05rem;
    color: rgba(253, 246, 227, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(253, 246, 227, 0.12);
}

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

.stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream-50);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(253, 246, 227, 0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ─── GALLERY ─── */
.gallery {
    padding: 120px 0;
    background-color: var(--cream-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; }
.gallery-item:nth-child(5) { grid-column: 4 / 8; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; }

/* ─── VISIT ─── */
.visit {
    padding: 120px 0;
    background-color: var(--cream-50);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-content .section-title {
    text-align: left;
}

.visit-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 48px;
}

.visit-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: var(--ink-700);
    line-height: 1.6;
}

.visit-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--emerald-700);
}

.visit-row a {
    color: var(--ink-700);
    transition: color 0.3s;
}

.visit-row a:hover {
    color: var(--emerald-700);
}

.visit-hours {
    padding: 24px 28px;
    background-color: var(--emerald-900);
    border-radius: 16px;
    color: var(--cream-50);
}

.visit-hours h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.visit-hours p {
    font-size: 0.95rem;
    color: rgba(253, 246, 227, 0.8);
    line-height: 1.6;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.map-link:hover img {
    transform: scale(1.03);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--cream-50);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.map-link:hover .map-overlay {
    background: rgba(6, 78, 59, 0.6);
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background-color: var(--cream-100);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-content .section-title {
    text-align: left;
}

.contact-content .section-desc {
    text-align: left;
    margin-bottom: 0;
}

.contact-form-wrap {
    background-color: var(--cream-50);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(6, 78, 59, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-700);
}

.form-group input,
.form-group textarea {
    font-family: var(--sans);
    font-size: 1rem;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-300);
    border-radius: 12px;
    background-color: var(--cream-100);
    color: var(--ink-900);
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-300);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    background-color: var(--cream-50);
}

.form-group textarea {
    min-height: 140px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background-color: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 12px;
    color: var(--emerald-800);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ─── FOOTER ─── */
.site-footer {
    background-color: var(--emerald-950);
    color: var(--cream-50);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(253, 246, 227, 0.1);
}

.logo-light {
    color: var(--cream-50);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(253, 246, 227, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cream-200);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 246, 227, 0.55);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--cream-50);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(253, 246, 227, 0.55);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(253, 246, 227, 0.55);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--cream-200);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(253, 246, 227, 0.35);
}

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 100px 32px 40px;
        background-color: var(--emerald-900);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 100;
    }

    .nav-list.open {
        transform: translateX(0);
    }

    .nav-link {
        color: rgba(253, 246, 227, 0.8) !important;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .nav-link:hover {
        background-color: rgba(253, 246, 227, 0.1) !important;
        color: var(--cream-50) !important;
    }

    .nav-cta {
        background-color: var(--cream-50) !important;
        color: var(--emerald-900) !important;
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .about-layout,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrap {
        aspect-ratio: 4/3;
    }

    .about-img-accent {
        display: none;
    }

    .about-content {
        order: -1;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content > p {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 1 / 2; }
    .gallery-item:nth-child(3) { grid-column: 2 / 3; }
    .gallery-item:nth-child(4) { grid-column: 1 / 2; }
    .gallery-item:nth-child(5) { grid-column: 2 / 3; }
    .gallery-item:nth-child(6) { grid-column: 1 / 3; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .menu, .about, .gallery, .visit, .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .gallery-item:nth-child(n) {
        grid-column: 1 / -1;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
