/* ========================================
   Energia Smoothie Bar — Styles
   Classic & Elegant · Plum + Amber
   ======================================== */

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

:root {
    --plum-deep: #3D1247;
    --plum: #7B2D8E;
    --plum-mid: #9B4DAA;
    --plum-light: #C97DC4;
    --plum-pale: #F3E8F7;
    --plum-ghost: #FBF7FD;
    
    --amber: #D4A017;
    --amber-light: #E8C05A;
    --amber-pale: #FDF3D7;
    --amber-warm: #B8860B;
    
    --cream: #FDF9F4;
    --cream-dark: #F5EDE3;
    --white: #FFFFFF;
    --black: #1A0A1E;
    --gray-900: #2D1F33;
    --gray-700: #5A4A5C;
    --gray-500: #8A7A8C;
    --gray-300: #C4B8C8;
    --gray-100: #EDE6F0;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(61, 18, 71, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 18, 71, 0.08);
    --shadow-lg: 0 12px 40px rgba(61, 18, 71, 0.12);
    --shadow-xl: 0 20px 60px rgba(61, 18, 71, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--plum-deep);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 45, 142, 0.3);
}

.btn--primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 142, 0.4);
}

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

.btn--outline:hover {
    background: var(--white);
    color: var(--plum-deep);
    border-color: var(--white);
}

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

/* ---------- Section Header ---------- */
.section-header__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--plum-deep);
    margin-bottom: 16px;
}

.section-header__title--light {
    color: var(--white);
}

.section-header__subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 520px;
    line-height: 1.8;
}

.section-header__title--light + .section-header__subtitle,
.section-header__eyebrow + .section-header__title--light ~ p {
    color: rgba(255, 255, 255, 0.7);
}

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

.nav.scrolled {
    background: rgba(253, 249, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-md);
}

.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;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo {
    color: var(--plum-deep);
}

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

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

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

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

.nav.scrolled .nav__link {
    color: var(--gray-700);
}

.nav.scrolled .nav__link:hover {
    color: var(--plum);
}

.nav__cta {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--white);
    color: var(--plum-deep);
    border-color: var(--white);
}

.nav.scrolled .nav__cta {
    color: var(--plum);
    border-color: var(--plum);
}

.nav.scrolled .nav__cta:hover {
    background: var(--plum);
    color: var(--white);
}

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

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav.scrolled .nav__toggle-line {
    background: var(--plum-deep);
}

.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(--plum-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    opacity: 0.8;
    transition: opacity var(--transition);
}

.mobile-menu__link:hover {
    opacity: 1;
    color: var(--amber-light);
}

.mobile-menu__cta {
    font-size: 1rem;
    color: var(--amber);
    font-weight: 500;
    margin-top: 12px;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--plum-deep) 0%, #5A1D6B 50%, var(--plum) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(123, 45, 142, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.hero__headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__headline-accent {
    color: var(--amber-light);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520/640;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(61, 18, 71, 0.4) 100%);
    border-radius: var(--radius-xl);
}

/* Floating Stat Cards */
.stat-card {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.stat-card__number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-card--1 {
    top: 12%;
    left: -30px;
    animation-delay: 0s;
}

.stat-card--2 {
    bottom: 28%;
    left: -20px;
    animation-delay: 1.3s;
}

.stat-card--3 {
    bottom: 8%;
    right: -16px;
    animation-delay: 2.6s;
}

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

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ---------- Menu Section ---------- */
.menu {
    padding: 120px 0;
    background: var(--cream);
}

.menu .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.menu .section-header__subtitle {
    margin: 0 auto;
}

/* Category Filters */
.menu__categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.menu__cat {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.menu__cat:hover {
    border-color: var(--plum-light);
    color: var(--plum);
}

.menu__cat.active {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

/* Menu Grid */
.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.menu-item__body {
    padding: 24px;
}

.menu-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.menu-item__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum-deep);
}

.menu-item__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-warm);
    background: var(--amber-pale);
    padding: 4px 10px;
    border-radius: 50px;
}

.menu-item__desc {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ---------- About Section ---------- */
.about {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 500px 500px at 90% 10%, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/620;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--plum-deep);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/380;
}

.about__img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

.about__value-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-sm);
    color: var(--amber-light);
    flex-shrink: 0;
}

.about__value span:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* ---------- Experience Section ---------- */
.experience {
    padding: 120px 0;
    background: var(--cream-dark);
}

.experience__header {
    text-align: center;
    margin-bottom: 64px;
}

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

.experience__card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.experience__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    opacity: 0;
    transition: opacity var(--transition);
}

.experience__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.experience__card:hover::before {
    opacity: 1;
}

.experience__card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--plum-pale);
    line-height: 1;
    margin-bottom: 16px;
}

.experience__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: 12px;
}

.experience__card-text {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ---------- Visit Section ---------- */
.visit {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 400px 400px at 10% 90%, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.visit__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.visit__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.visit__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-sm);
    color: var(--amber-light);
    flex-shrink: 0;
}

.visit__detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.visit__detail p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.visit__detail a {
    color: var(--amber-light);
    transition: color var(--transition);
}

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

.visit__hours {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visit__hours strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.visit__hours p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Contact Form */
.visit__form-wrap {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.visit__form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--gray-900);
    background: var(--cream);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition);
}

.form-input:focus {
    border-color: var(--plum-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.08);
}

.form-input::placeholder {
    color: var(--gray-300);
}

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

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--plum-pale);
    color: var(--plum);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* ---------- Footer ---------- */
.footer {
    background: #1A0A1E;
    padding: 64px 0 32px;
}

.footer__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 260px;
    line-height: 1.6;
}

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

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--amber-light);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--plum-deep);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer__bottom a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--amber-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }
    
    .about__layout {
        gap: 48px;
    }
    
    .about__img-secondary {
        right: -20px;
        bottom: -24px;
    }
    
    .visit__layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-card--1 {
        left: -10px;
    }
    
    .stat-card--2 {
        left: -10px;
    }
    
    .stat-card--3 {
        right: -10px;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .menu__grid {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about__layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about__img-secondary {
        right: 0;
        bottom: -20px;
    }
    
    .experience {
        padding: 80px 0;
    }
    
    .experience__grid {
        grid-template-columns: 1fr;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit__form-wrap {
        padding: 28px;
    }
    
    .footer__top {
        flex-direction: column;
        gap: 28px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stat-card {
        padding: 12px 16px;
    }
    
    .stat-card__number {
        font-size: 1.2rem;
    }
    
    .stat-card--1 {
        top: 8%;
        left: 0;
    }
    
    .stat-card--2 {
        bottom: 32%;
        left: 0;
    }
    
    .stat-card--3 {
        bottom: 4%;
        right: 0;
    }
    
    .menu__categories {
        gap: 6px;
    }
    
    .menu__cat {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .experience__card {
        padding: 28px 24px;
    }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
