/* ----- Hero ----- */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, #005570 30%, #0D8C8C 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    animation: floatUp 8s infinite ease-in-out;
}

.bubble:nth-child(1) {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: 10%;
    animation-duration: 9s;
}

.bubble:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: -40px;
    right: 35%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.bubble:nth-child(3) {
    width: 240px;
    height: 240px;
    bottom: -80px;
    right: 58%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    bottom: -30px;
    right: 75%;
    animation-delay: 3.5s;
    animation-duration: 8s;
}

.bubble:nth-child(5) {
    width: 130px;
    height: 130px;
    bottom: -50px;
    right: 88%;
    animation-delay: 0.8s;
    animation-duration: 10s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: .07;
    }
    50% {
        transform: translateY(-40px) scale(1.05);
        opacity: .12;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: .07;
    }
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 5vw 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-text .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.hero-text .eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--teal);
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-text h1 span {
    color: var(--teal);
}

.hero-text p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: .8rem 1.8rem;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 6px 24px rgba(13, 179, 179, .35);
    cursor: pointer
}

.btn-primary:hover {
    background: var(--ocean-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(13, 179, 179, .45);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}

.btn-secondary .play-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    transition: border-color .2s;
}

.btn-secondary:hover {
    color: var(--white);
}

.btn-secondary:hover .play-icon {
    border-color: var(--teal);
    box-shadow: 0 10px 32px rgba(13, 179, 179, .45);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.stat-item .stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-deep);
}

.stat-item .stat-num span {
    color: var(--teal);
}

.stat-item .stat-label {
    font-size: .78rem;
    color: var(--ocean-deep);
    letter-spacing: .05em;
    margin-top: .15rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 179, 179, .25) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: .7;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.food-card {
    position: relative;
    z-index: 2;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(13, 179, 179, .4);
    box-shadow: 0 0 0 14px rgba(13, 179, 179, .1), 0 30px 80px rgba(0, 0, 0, .4);
    animation: floatCard 5s ease-in-out infinite;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

.floating-badge {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: 14px;
    padding: .6rem .9rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-dark);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge.badge-top {
    top: 10%;
    left: -20px;
    animation-delay: .5s;
}

.floating-badge.badge-bottom {
    bottom: 14%;
    right: -25px;
    animation-delay: 1.5s;
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.badge-dot.orange {
    background: #F4883A;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ----- Waves ----- */
.wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 160px;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
}

.wave-1 {
    animation: waveMove 8s linear infinite;
    opacity: 1;
    bottom: 0;
}

.wave-2 {
    animation: waveMove 12s linear infinite reverse;
    opacity: .55;
    bottom: 8px;
}

.wave-3 {
    animation: waveMove 16s linear infinite;
    opacity: .3;
    bottom: 16px;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ----- About ----- */
.about {
    background: var(--cream);
    padding: 6rem 5vw;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(13, 179, 179, .08);
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    pointer-events: none;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-frame {
    position: relative;
    width: 480px;
    height: 480px;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 38% 62% 55% 45% / 48% 42% 58% 52%;
    border: 3px solid rgba(13, 179, 179, .35);
    animation: morphBorder 6s ease-in-out infinite;
}

.about-img-frame::after {
    content: '';
    position: absolute;
    inset: -28px;
    border-radius: 55% 45% 38% 62% / 52% 58% 42% 48%;
    border: 1.5px solid rgba(13, 179, 179, .15);
    animation: morphBorder 6s ease-in-out infinite reverse;
}

@keyframes morphBorder {
    0%, 100% {
        border-radius: 38% 62% 55% 45% / 48% 42% 58% 52%;
    }
    50% {
        border-radius: 55% 45% 42% 58% / 38% 62% 48% 52%;
    }
}

.about-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 35% 65% 50% 50% / 45% 40% 60% 55%;
    overflow: hidden;
    animation: morphImg 6s ease-in-out infinite;
}

@keyframes morphImg {
    0%, 100% {
        border-radius: 35% 65% 50% 50% / 45% 40% 60% 55%;
    }
    50% {
        border-radius: 50% 50% 38% 62% / 55% 45% 50% 50%;
    }
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 10px;
    left: -20px;
    background: var(--ocean-deep);
    color: var(--white);
    border-radius: 14px;
    padding: .7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 61, 79, .25);
    z-index: 2;
}

.about-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.about-text .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.about-text .eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--teal);
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1.1rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--ocean-deep-light);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 440px;
}

.about-text .btn-primary {
    display: block;
    width: fit-content;
    margin-right: auto;
}

.about-divider {
    width: 48px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 1.8rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(13, 179, 179, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .15rem;
}

.about-feature-text span {
    font-size: .9rem;
    color: var(--ocean-deep-light);
}

/* section divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 5vw;
    background: var(--cream);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to left, transparent, rgba(13, 179, 179, .5));
}

.divider-line:last-child {
    background: linear-gradient(to right, transparent, rgba(13, 179, 179, .5));
}

.divider-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    flex-shrink: 0;
}

.divider-icon img {
    width: 70px;
    height: 70px;
}

/* ----- Menu ----- */
.menu-preview {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 1rem 5vw 2rem;
}

.menu-empty {
    text-align: center;
    color: var(--ocean-deep-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 3rem 0;
    display: none;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--ocean-deep);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tab {
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    color: var(--teal-dark);
    transition: all .2s;
}

.tab:hover, .tab.active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 50px;
}

.menu-card {
    background: linear-gradient(175deg, #005570 0%, #003D4F 100%);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 30, 45, .3);
    transition: opacity .25s ease, transform .25s ease, box-shadow .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 1.6rem;
    position: relative;
    justify-content: space-between;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 30, 45, .4);
}

.menu-card.card-hidden {
    display: none;
}

.menu-card-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #006B8F 0%, #0DB3B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-top: -50px;
    border: 5px solid #F5E6C8;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.menu-card-body {
    padding: .9rem 1.3rem .8rem;
    text-align: center;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-category {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.menu-card-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: .4rem;
    line-height: 1.3;
}

.menu-card-desc {
    font-size: .8rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.menu-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: 0 1.3rem;
}

.menu-card-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: .01em;
}

.btn-details {
    background: var(--white);
    color: var(--ocean-deep);
    border: none;
    border-radius: 14px;
    padding: .65rem 0;
    font-size: .88rem;
    font-weight: 900;
    cursor: pointer;
    width: 80%;
    transition: background .2s, color .2s, transform .2s;
    letter-spacing: .02em;
}

.btn-details:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
}

.menu-cta .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ----- Chef Special ----- */
.chef-special {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
    padding: 6rem 5vw 4rem;
}

.chef-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--teal-dark);
    margin-bottom: 2rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--teal-dark);
}

.section-h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--ocean-deep);
    margin-bottom: .4rem;
}

.section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--ocean-deep-light);
    margin-bottom: 3rem;
}

.peek-slider {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.peek-track {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    gap: 0;
}

.peek-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all .6s cubic-bezier(.4, 0, .2, 1);
    flex-shrink: 0;
    width: 240px;
}

.peek-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(13, 179, 179, .25);
    background: linear-gradient(135deg, #006B8F, #003D4F);
    flex-shrink: 0;
}

.peek-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.peek-item.active .peek-circle {
    width: 240px;
    height: 240px;
    border-color: rgba(13, 179, 179, .8);
    box-shadow: 0 0 50px rgba(13, 179, 179, .2);
}

.peek-item.near .peek-circle {
    width: 155px;
    height: 155px;
    border-color: rgba(13, 179, 179, .3);
    opacity: .6;
}

.peek-item.far .peek-circle {
    width: 105px;
    height: 105px;
    border-color: rgba(13, 179, 179, .12);
    opacity: .28;
}

.peek-info {
    margin-top: 1rem;
    text-align: center;
    transition: all .3s;
    min-height: 110px;
}

.peek-item:not(.active) .peek-info {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.peek-name {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--ocean-deep);
    margin-bottom: .25rem;
}

.peek-desc {
    font-size: .78rem;
    color: var(--ocean-deep-light);
    margin-bottom: .85rem;
}

.peek-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.peek-order {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: .5rem 1.6rem;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(13, 179, 179, .3);
}

.peek-order:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.peek-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 2.5rem;
}

.peek-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 107, 143, 0.4);
    cursor: pointer;
    transition: all .3s;
}

.peek-dot.active {
    background: var(--ocean-deep);
    width: 22px;
    border-radius: 4px;
}

.peek-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    background: none;
}

.peek-arrow {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.peek-arrow img{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}
.peek-arrow:hover {
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 107, 143,.4);
    transition: background .2s;

}


/* ----- Gallery ----- */
.gallery-section {
    background: var(--cream-dark);
    padding: 0 5vw 10rem;
    position: relative;
    overflow: hidden;
}

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.fan-stage {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}

.fan-stack-wrap {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    cursor: pointer;
}

.fan-card {
    position: absolute;
    width: 350px;
    height: 400px;
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .65);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.fan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fan-card-a {
    background: linear-gradient(135deg, #006B8F, #003D4F);
    top: 18px;
    right: 28px;
    transform: rotate(-10deg);
    z-index: 1;
}

.fan-card-b {
    background: linear-gradient(135deg, #005570, #003D4F);
    top: 9px;
    right: 16px;
    transform: rotate(-3deg);
    z-index: 2;
}

.fan-card-c {
    background: linear-gradient(135deg, #0DB3B3, #006B8F);
    top: 0;
    right: 4px;
    transform: rotate(5deg);
    z-index: 3;
}

.fan-card-a,
.fan-card-b {
    filter: brightness(0.6) brightness(0.6) brightness(1);
}

.fan-card-c {
    filter: none;
}

.fan-stack-wrap:hover .fan-card-a {
    transform: rotate(-18deg) translateX(-12px);
}

.fan-stack-wrap:hover .fan-card-b {
    transform: rotate(0deg);
}

.fan-stack-wrap:hover .fan-card-c {
    transform: rotate(15deg) translateX(12px);
}

.fan-info {
    max-width: 240px;
}

.fan-info-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ocean-deep);
    margin-bottom: .5rem;
}

.fan-info-sub {
    font-size: .85rem;
    color: var(--ocean-deep-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.fan-thumbs {
    display: flex;
    gap: 9px;
    margin-bottom: .8rem;
    flex-wrap: wrap;
}

.fan-thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: transform .2s, border-color .2s;
    background: linear-gradient(135deg, #005570, #003D4F);
    padding: 0;
}

.fan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fan-thumb:hover {
    transform: scale(1.12);
}

.fan-thumb.active-t {
    border-color: var(--teal);
    box-shadow: 0 0 14px rgba(13, 179, 179, .4);
}

.fan-counter {
    font-size: .78rem;
    color: var(--ocean-deep-light);
    margin-bottom: 5rem;
}

.fan-counter span {
    font-weight: 700;
    color: var(--teal-dark);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    /* --- Hero ---*/
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 130px;
        padding-bottom: 3rem;
    }

    .hero-image {
        display: none;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item .stat-num {
        color: var(--white);
    }

    .stat-item .stat-label {
        color: rgba(255, 255, 255, .75);
    }

    /* --- About --- */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about::before {
        display: none;
    }

    .about-img-frame {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .about-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -16px;
    }

    .about-text p {
        max-width: 100%;
    }

    .about-divider {
        margin: 0 auto 1.8rem;
    }

    .about-feature-item {
        text-align: right;
    }

    .about-text .btn-primary {
        margin: 3rem auto 0;
    }
    /* --- Menu --- */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 60px;
        max-width: 380px;
    }
    /* --- Chef special ---*/
     .chef-special {
        padding: 5rem 25vw 0;
    }

    .section-eyebrow {
        font-size: .82rem;
    }

    .peek-track {
        gap: 20px;
    }

    .peek-item {
        width: 180px;
    }

    .peek-item.active .peek-circle {
        width: 180px;
        height: 180px;
    }

    .peek-item.near .peek-circle {
        width: 115px;
        height: 115px;
    }

    .peek-item.far .peek-circle {
        width: 75px;
        height: 75px;
    }

    .peek-slider {
        padding: 0 2rem;
        overflow: hidden;
        box-sizing: border-box;
    }

    .peek-order {
        margin-bottom: 2rem;
    }

    .gallery-section {
        padding: 5rem 5vw 6rem;
    }

    .fan-stage {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .fan-stack-wrap {
        width: 250px;
        height: 300px;
    }

    .fan-card {
        width: 200px;
        height: 240px;
    }

    .fan-info {
        max-width: 240px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .fan-info-sub {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

}

@media (max-width: 480px) {
    /* --- Hero --- */
    .hero-inner {
        padding-top: 100px;
        padding-bottom: 2rem;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: .9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: .75rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: .75rem 1.5rem;
    }

    .hero-stats {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item .stat-num {
        font-size: 1.4rem;
    }

    /* --- About --- */
    .about {
        padding: 4rem 5vw;
    }

    .about-inner {
        gap: 2rem;
    }

    .about-img-frame {
        width: 240px;
        height: 240px;
    }

    .about-badge {
        font-size: .75rem;
        padding: .5rem .8rem;
        bottom: -20px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-features {
        gap: 1rem;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* --- Menu --- */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        padding-top: 60px;
        max-width: 250px;
    }

    .category-tabs {
        gap: .4rem;
    }

    .tab {
        font-size: .78rem;
        padding: .4rem .9rem;
    }

    .menu-card-name {
        font-size: 1.05rem;
    }

    /* --- Chef Special --- */
    .chef-special {
        padding: 4rem 5vw 0;
    }

    .section-h2 {
        font-size: 1.4rem;
    }

    .peek-track {
        gap: 10px;
    }

    .peek-item {
        width: 130px;
    }

    .peek-item.active .peek-circle {
        width: 130px;
        height: 130px;
    }

    .peek-item.near .peek-circle {
        width: 85px;
        height: 85px;
    }

    .peek-item.far .peek-circle {
        width: 55px;
        height: 55px;
    }

    .peek-name {
        font-size: .9rem;
    }

    .peek-desc {
        font-size: .72rem;
    }

    .peek-price {
        font-size: 1rem;
    }

    .peek-order {
        font-size: .75rem;
        padding: .4rem 1.2rem;
    }

    /* --- Gallery --- */
    .gallery-section {
        padding: 3rem 5vw 5rem;
    }

    .fan-stack-wrap {
        width: 200px;
        height: 240px;
    }

    .fan-card {
        width: 160px;
        height: 200px;
    }

    .fan-info-title {
        font-size: 1rem;
    }

    .fan-info-sub {
        font-size: .8rem;
    }

    .fan-thumb {
        width: 36px;
        height: 36px;
    }
}