/* ============================================
   Aloha Acai — Port Aransas Café & Bar
   Classic & Elegant · Midnight Blue + Mint
   ============================================ */

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

:root {
    --midnight: #0a1628;
    --midnight-light: #132238;
    --midnight-mid: #1a2f4a;
    --mint: #5fb8a0;
    --mint-light: #a8e6cf;
    --mint-pale: #d4f5e9;
    --cream: #f5f0eb;
    --cream-dark: #ebe4dc;
    --gold: #c9a96e;
    --gold-light: #dfc08a;
    --text-primary: #0a1628;
    --text-secondary: #3d5a78;
    --text-muted: #7a9bb5;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

/* ── Typography ── */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 24px;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--midnight);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--midnight-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

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

.btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav__logo-icon {
    color: var(--mint-light);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mint-light);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 9px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    color: var(--white);
    transition: all 0.3s var(--ease-out);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--mint-light);
}

.mobile-menu__link--cta {
    margin-top: 8px;
    padding: 12px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    font-family: var(--font-sans);
    font-size: 1rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.8) 70%),
        linear-gradient(180deg, 
            rgba(10, 22, 40, 0.3) 0%, 
            rgba(26, 47, 74, 0.6) 40%, 
            rgba(95, 184, 160, 0.3) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.2) 0%,
        rgba(10, 22, 40, 0.1) 40%,
        rgba(10, 22, 40, 0.4) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__headline em {
    font-style: italic;
    color: var(--mint-light);
}

.hero__sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    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: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ── Featured ── */
.featured {
    padding: 100px 0;
    background: var(--cream);
}

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

.featured__card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
    transition: all 0.4s var(--ease-out);
}

.featured__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}

.featured__card-img {
    height: 240px;
    overflow: hidden;
}

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

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

.featured__card-body {
    padding: 28px;
}

.featured__card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
    background: var(--mint-pale);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.featured__card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--midnight);
    margin-bottom: 10px;
}

.featured__card-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Menu ── */
.menu {
    padding: 100px 0;
    background: var(--midnight);
}

.menu__header {
    text-align: center;
    margin-bottom: 48px;
}

.menu__header .section-label {
    color: var(--mint-light);
}

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

.menu__header .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu__tab {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 10px 28px;
    border-radius: 60px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.menu__tab:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

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

.menu__panel {
    display: none;
    animation: fadeIn 0.4s var(--ease-out);
}

.menu__panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.menu__item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.menu__item-info {
    flex: 1;
}

.menu__item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.menu__item-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

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

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

.about__images {
    position: relative;
    height: 600px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

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

.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
    border: 6px solid var(--cream);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.15;
    z-index: -1;
}

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

.about__values {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about__value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mint-pale);
    color: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--midnight);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

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

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
}

.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--wide {
    grid-column: span 7;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 5;
}

.gallery__item:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
}

.gallery__item:nth-child(3) {
    grid-column: 1 / span 5;
    grid-row: 2;
}

.gallery__item:nth-child(4) {
    grid-column: 6 / span 6;
    grid-row: 2;
}

.gallery__item:nth-child(5) {
    grid-column: span 7;
    grid-row: 2;
}

/* ── Visit ── */
.visit {
    padding: 100px 0;
    background: var(--cream);
}

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

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

.visit__detail {
    display: flex;
    gap: 20px;
}

.visit__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 70px;
    padding-top: 2px;
}

.visit__detail-value {
    font-size: 1rem;
    color: var(--midnight);
    line-height: 1.6;
}

.visit__detail-value--link {
    color: var(--mint);
    transition: color 0.3s;
}

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

.visit__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.1);
}

.visit__map-placeholder {
    background: var(--midnight);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.visit__map-placeholder svg {
    color: var(--mint-light);
    opacity: 0.6;
}

.visit__map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--midnight);
}

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

.contact__text .section-label {
    color: var(--mint-light);
}

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

.contact__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 440px;
}

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

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact__label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact__input,
.contact__textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s;
    outline: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--mint);
    background: rgba(255, 255, 255, 0.08);
}

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

.contact__success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(95, 184, 160, 0.15);
    border: 1px solid rgba(95, 184, 160, 0.3);
    color: var(--mint-light);
    font-size: 0.95rem;
}

.contact__success.show {
    display: flex;
}

.contact__success svg {
    color: var(--mint-light);
    flex-shrink: 0;
}

/* ── Footer ── */
.footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--mint-light);
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 320px;
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 0;
    transition: color 0.3s;
    line-height: 1.5;
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured__grid .featured__card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about__layout {
        gap: 48px;
    }

    .about__images {
        height: 480px;
    }

    .gallery__grid {
        grid-template-rows: repeat(3, 220px);
    }

    .gallery__item--wide,
    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 6;
    }

    .gallery__item:nth-child(1) { grid-column: span 12; }
    .gallery__item:nth-child(2) { grid-column: span 6; grid-row: 2; }
    .gallery__item:nth-child(3) { grid-column: span 6; grid-row: 2; }
    .gallery__item:nth-child(4) { grid-column: span 6; grid-row: 3; }
    .gallery__item:nth-child(5) { grid-column: span 12; grid-row: 3; }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .featured__grid {
        grid-template-columns: 1fr;
    }

    .featured__grid .featured__card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .menu__grid {
        grid-template-columns: 1fr;
    }

    .about__layout {
        grid-template-columns: 1fr;
    }

    .about__images {
        height: 400px;
        order: -1;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item,
    .gallery__item--wide,
    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 1;
        grid-row: auto;
        height: 240px;
    }

    .visit__layout {
        grid-template-columns: 1fr;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .menu__tabs {
        gap: 6px;
    }

    .menu__tab {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .about__values {
        flex-direction: column;
        gap: 16px;
    }

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