/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #0a0a0f;
    --color-darker: #05050a;
    --color-purple: #6b4ce6;
    --color-purple-light: #8b6cff;
    --color-blue: #4c6ee6;
    --color-cyan: #4ce6e6;
    --color-gold: #d4af37;
    --color-gold-light: #f4d47c;
    --color-smoke: rgba(150, 130, 180, 0.15);
    --color-smoke-dark: rgba(100, 80, 130, 0.25);
    --color-text: #e8e8f0;
    --color-text-dim: #a8a8c0;

    --font-primary: 'Noto Sans JP', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Mobile-first sizes */
    --hero-title-main: 2.5rem;
    --hero-title-sub: 1.2rem;
    --section-title: 2.5rem;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

body {
    font-family: var(--font-primary);
    background: var(--color-darker);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Improve mobile scrolling */
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

/* ===== Welcome Splash Screen with Smoke Effect ===== */
.welcome-splash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: splashFadeOut 0.5s ease 3.5s forwards;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@keyframes splashFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#smokeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block;
}

.smoke-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 2;
    white-space: nowrap;
}

.smoke-text span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    -webkit-animation: smoky 2.5s 0.5s both;
    animation: smoky 2.5s 0.5s both;
}

.smoke-text span:nth-child(even) {
    -webkit-animation-name: smoky-mirror;
    animation-name: smoky-mirror;
}

@-webkit-keyframes smoky {
    60% {
        text-shadow: 0 0 40px whitesmoke;
    }
    to {
        -webkit-transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
        transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
        text-shadow: 0 0 20px whitesmoke;
        opacity: 0;
    }
}

@keyframes smoky {
    60% {
        text-shadow: 0 0 40px whitesmoke;
    }
    to {
        -webkit-transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
        transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
        text-shadow: 0 0 20px whitesmoke;
        opacity: 0;
    }
}

@-webkit-keyframes smoky-mirror {
    60% {
        text-shadow: 0 0 40px whitesmoke;
    }
    to {
        -webkit-transform: translate3d(18rem, -8rem, 0) rotate(-40deg) skewX(-70deg) scale(2);
        transform: translate3d(18rem, -8rem, 0) rotate(-40deg) skewX(-70deg) scale(2);
        text-shadow: 0 0 20px whitesmoke;
        opacity: 0;
    }
}

@keyframes smoky-mirror {
    60% {
        text-shadow: 0 0 40px whitesmoke;
    }
    to {
        -webkit-transform: translate3d(18rem, -8rem, 0) rotate(-40deg) skewX(-70deg) scale(2);
        transform: translate3d(18rem, -8rem, 0) rotate(-40deg) skewX(-70deg) scale(2);
        text-shadow: 0 0 20px whitesmoke;
        opacity: 0;
    }
}

/* Individual character delays */
.smoke-text span:nth-of-type(1) { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }
.smoke-text span:nth-of-type(2) { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.smoke-text span:nth-of-type(3) { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }
.smoke-text span:nth-of-type(4) { -webkit-animation-delay: 0.8s; animation-delay: 0.8s; }
.smoke-text span:nth-of-type(5) { -webkit-animation-delay: 0.9s; animation-delay: 0.9s; }
.smoke-text span:nth-of-type(6) { -webkit-animation-delay: 1s; animation-delay: 1s; }
.smoke-text span:nth-of-type(7) { -webkit-animation-delay: 1.1s; animation-delay: 1.1s; }
.smoke-text span:nth-of-type(8) { -webkit-animation-delay: 1.2s; animation-delay: 1.2s; }
.smoke-text span:nth-of-type(9) { -webkit-animation-delay: 1.3s; animation-delay: 1.3s; }

/* ===== 3D Smoke Canvas Background ===== */
#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.nav-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-top: -15px;
    margin-bottom: -15px;
    margin-left: 0;
    transform: translateX(-10px);
}

.nav-logo img:hover {
    transform: translateX(-10px) scale(1.05);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-menu.active {
    right: 0;
    display: flex;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-purple));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link:active::after {
    width: 100%;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8) 0%, rgba(26, 10, 46, 0.8) 100%);
    overflow: hidden;
    padding: var(--nav-height) 1rem 2rem;
}

.hero-image {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100% - var(--nav-height));
    z-index: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: var(--hero-title-main);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(107, 76, 230, 0.3);
    animation: heroTitleIn 1.2s ease both;
    line-height: 1.3;
}

.hero-title-sub {
    font-size: var(--hero-title-sub);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-text-dim);
    animation: heroTitleIn 1.2s ease 0.2s both;
}

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

.hero-description {
    font-size: 1rem;
    margin-top: 1.5rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    animation: heroTitleIn 1.2s ease 0.4s both;
    padding: 0 1rem;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 2rem auto;
    animation: heroTitleIn 1.2s ease 0.6s both;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: heroTitleIn 1.2s ease 0.8s both;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    touch-action: manipulation; /* Better mobile touch */
    backdrop-filter: blur(10px);
}

.hero-cta:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-text-dim);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
}

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

/* ===== Common Section Styles ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
    padding: 4rem 0;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-title-en {
    font-family: var(--font-display);
    font-size: var(--section-title);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    line-height: 1.2;
}

.section-title-ja {
    font-size: 1rem;
    color: var(--color-text-dim);
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 10, 46, 0.5) 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    padding: 0 1rem;
}

.about-description {
    font-size: 1rem;
    text-align: center;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(107, 76, 230, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(107, 76, 230, 0.1);
    box-shadow: 0 20px 40px rgba(107, 76, 230, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.feature-item p {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== Menu Section ===== */
.menu {
    background: rgba(10, 10, 15, 0.8);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.menu-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    overflow: hidden;
}

.menu-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-card-overlay {
    opacity: 1;
}

.menu-card-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--color-gold);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-gold-light);
}

/* ===== Access Section ===== */
.access {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.8) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('kabe.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

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

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-label {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.info-text {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.instagram-link {
    color: var(--color-purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--color-gold);
}

.access-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.access-map iframe {
    border-radius: 15px;
}

/* ===== Contact Section ===== */
.contact {
    background: rgba(10, 10, 15, 0.9);
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn img {
    width: 280px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--color-darker);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--color-text-dim);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */

/* Tablet and up */
@media (min-width: 768px) {
    :root {
        --hero-title-main: 3.5rem;
        --hero-title-sub: 1.8rem;
        --section-title: 3rem;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        flex-direction: row;
        padding: 0;
        gap: 3rem;
        border-left: none;
    }

    .nav-toggle {
        display: none;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0;
    }

    .nav-link::after {
        bottom: -5px;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-cta {
        padding: 1rem 3rem;
        font-size: 1rem;
    }

    section {
        padding: 6rem 0;
    }

    .section-title {
        margin-bottom: 4rem;
    }

    .about-lead {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1.1rem;
        margin-bottom: 4rem;
    }

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

/* Desktop and up */
@media (min-width: 1024px) {
    :root {
        --hero-title-main: 4.5rem;
        --hero-title-sub: 2rem;
        --section-title: 3.5rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    section {
        padding: 8rem 0;
    }

    .section-title {
        margin-bottom: 5rem;
    }

    .about-lead {
        font-size: 2rem;
    }

    .about-description {
        margin-bottom: 4rem;
    }

    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .access-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Mobile specific */
@media (max-width: 767px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sisa-character {
        width: 150px;
    }

    .splash-title {
        font-size: 2rem;
    }

    .splash-subtitle {
        font-size: 1rem;
    }

    .about-features {
        gap: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

/* Small mobile */
@media (max-width: 375px) {
    :root {
        --hero-title-main: 2rem;
        --hero-title-sub: 1rem;
        --section-title: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .menu-card-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .sisa-character {
        width: 120px;
    }

    .splash-title {
        font-size: 1.8rem;
    }
}

/* Landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 1rem 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-sub {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .hero-divider {
        margin: 1rem auto;
    }

    .hero-cta {
        margin-top: 1rem;
        padding: 0.7rem 2rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-cta:active {
        transform: scale(0.95);
    }

    .menu-card-btn:active {
        transform: scale(0.95);
    }

    .contact-btn:active {
        transform: scale(0.95);
    }

    .nav-link:active {
        transform: scale(0.98);
    }
}
