/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --slate-750: #1e293b;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--slate-750);
    background: #fff;
    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;
}

ul {
    list-style: none;
}

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

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.nav__container {
    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;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.nav.scrolled .nav__logo {
    color: var(--teal-700);
}

.nav__logo-icon {
    color: var(--teal-400);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

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

.nav__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav__link {
    color: var(--slate-750);
}

.nav.scrolled .nav__link:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav__link--cta {
    background: var(--teal-500);
    color: #fff !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--teal-600);
}

.nav.scrolled .nav__link--cta {
    background: var(--teal-600);
}

.nav.scrolled .nav__link--cta:hover {
    background: var(--teal-700);
}

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

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav.scrolled .nav__toggle-bar {
    background: var(--slate-750);
}

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

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

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

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-600) 35%, #0ea5e9 65%, var(--teal-500) 100%);
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--amber-400);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--teal-300);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 40%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero__shape--4 {
    width: 120px;
    height: 120px;
    background: var(--amber-500);
    bottom: 25%;
    right: 15%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--amber-400);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.btn--primary {
    background: var(--amber-500);
    color: var(--slate-900);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn--primary:hover {
    background: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

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

.hero__highlights {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero__highlight-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== SECTION TAGS & TITLES ========== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-600);
    background: var(--teal-100);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-title--light {
    color: #fff;
}

.text-teal { color: var(--teal-600); }
.text-amber { color: var(--amber-600); }

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
    background: #fff;
}

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

.about__visual {
    position: relative;
}

.about__image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__image-wrap:hover img {
    transform: scale(1.03);
}

.about__accent-block {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 140px;
    height: 140px;
    background: var(--teal-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.35);
}

.about__accent-circle {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.about__accent-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.about__feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.teal-bg { background: var(--teal-600); }
.amber-bg { background: var(--amber-500); }
.slate-bg { background: var(--slate-750); }

.about__feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-900);
    margin-bottom: 2px;
}

.about__feature-desc {
    font-size: 0.9rem;
    color: #64748b;
}

/* ========== MENU ========== */
.menu {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.menu__deco-top,
.menu__deco-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
}

.menu__deco-top {
    top: 0;
    background: linear-gradient(to bottom, #fff, transparent);
}

.menu__deco-bottom {
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}

.menu__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.menu__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.menu-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.menu-card__emoji {
    font-size: 2rem;
    line-height: 1;
}

.menu-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.menu-card__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-card__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-card__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-card__list li span:first-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.menu-card__list li span:last-child {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
}

.menu__note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

/* ========== VIBE ========== */
.vibe {
    padding: 120px 0;
    background: #fff;
}

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

.vibe__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    grid-template-rows: 200px 280px;
}

.vibe__image-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vibe__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vibe__image-item--1 {
    grid-column: 1 / -1;
    grid-row: 1;
}

.vibe__image-item--2 {
    grid-column: 1;
    grid-row: 2;
}

.vibe__image-item--3 {
    grid-column: 2;
    grid-row: 2;
}

.vibe__content {
    padding: 20px 0;
}

.vibe__text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
}

.vibe__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.vibe__stat {
    text-align: center;
}

.vibe__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal-600);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.vibe__stat-label {
    font-size: 0.82rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.vibe__stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* ========== VISIT ========== */
.visit {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-600) 50%, #0ea5e9 100%);
    position: relative;
    overflow: hidden;
}

.visit__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.visit__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.visit__shape--1 {
    width: 500px;
    height: 500px;
    background: var(--amber-400);
    top: -200px;
    left: -150px;
}

.visit__shape--2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -80px;
    right: 10%;
}

.visit__shape--3 {
    width: 150px;
    height: 150px;
    background: var(--amber-500);
    top: 20%;
    right: 5%;
}

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

.visit__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.visit__detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
}

.visit__detail-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    margin-bottom: 4px;
}

.visit__detail-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

.visit__map-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.visit__map-icon {
    color: var(--amber-400);
    margin-bottom: 16px;
}

.visit__map-placeholder p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 24px;
}

.visit__map-btn {
    display: inline-flex;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    background: var(--teal-50);
}

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

.contact__text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-top: 16px;
}

.contact__form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

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

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contact__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--slate-750);
}

.contact__input,
.contact__textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate-750);
    background: var(--teal-50);
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s;
    width: 100%;
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--teal-500);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.contact__success {
    text-align: center;
    padding: 48px 36px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.contact__success-icon {
    margin-bottom: 16px;
}

.contact__success-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.contact__success-text {
    font-size: 0.95rem;
    color: #64748b;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.7);
}

.footer__top {
    padding: 80px 0 48px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--teal-400);
}

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

.footer__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 20px;
}

.footer__links ul,
.footer__hours-list,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--teal-400);
}

.footer__contact span {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
}

.footer__day {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__time {
    font-size: 0.9rem;
    color: var(--teal-400);
    font-weight: 500;
}

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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) {
    .about__grid,
    .vibe__showcase,
    .visit__card,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .about__accent-block {
        right: 16px;
        bottom: -16px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--slate-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        color: rgba(255, 255, 255, 0.8) !important;
        width: 100%;
        padding: 12px 16px;
    }

    .nav__link:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #fff !important;
    }

    .nav__link--cta {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero__highlights {
        gap: 16px;
    }

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

    .vibe__image-grid {
        grid-template-rows: 180px 200px 200px;
        grid-template-columns: 1fr;
    }

    .vibe__image-item--1 {
        grid-column: 1;
        grid-row: 1;
    }

    .vibe__image-item--2 {
        grid-column: 1;
        grid-row: 2;
    }

    .vibe__image-item--3 {
        grid-column: 1;
        grid-row: 3;
    }

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

    .vibe__stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .contact__form {
        padding: 28px;
    }

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

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

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

    .container {
        padding: 0 20px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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