/* ===== CSS VARIABLES ===== */
:root {
    --espresso: #4A342A;
    --caramel: #C98A3D;
    --caramel-dark: #A66B24;
    --cream: #FBF6EF;
    --cream-2: #F3E9DA;
    --sage: #8A9A5B;
    --sage-dark: #6E7C46;
    --ink: #2E2019;

    --primary: #C98A3D;
    --primary-dark: #A66B24;
    --primary-light: #DBA75E;
    --primary-soft: #F1E2CC;
    --accent: #8A9A5B;
    --accent-dark: #6E7C46;
    --slate: #6B5A4E;
    --muted: #9A8877;
    --muted-light: #C7B8A8;
    --bg: #FBF6EF;
    --mint: #F3E9DA;
    --mint-2: #EADBC6;
    --surface: #FFFDFA;
    --white: #FFFFFF;
    --dark: #2E2019;
    --line: #EADCC9;
    --line-strong: #DDCBB3;
    --shadow-sm: 0 2px 12px rgba(74, 52, 42, 0.06);
    --shadow-md: 0 14px 38px rgba(74, 52, 42, 0.10);
    --shadow-lg: 0 26px 60px rgba(74, 52, 42, 0.14);
    --shadow-xl: 0 36px 84px rgba(74, 52, 42, 0.18);
    --shadow-primary: 0 14px 34px rgba(201, 138, 61, 0.34);
    --shadow-accent: 0 14px 34px rgba(138, 154, 91, 0.32);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--slate);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Marcellus', serif;
    color: var(--ink);
    line-height: 1.15;
    font-weight: 400;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; background: var(--bg); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
    font-size: 2.8rem; margin-bottom: 14px;
    animation: markPulse 1.1s ease-in-out infinite;
}
@keyframes markPulse {
    0%, 100% { transform: scale(1) rotate(-4deg); opacity: 0.6; }
    50% { transform: scale(1.15) rotate(4deg); opacity: 1; }
}
.preloader-text {
    font-family: 'Marcellus', serif; font-weight: 400;
    font-size: 1.8rem; letter-spacing: 1px; color: var(--ink);
}
.preloader-text span { color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(251, 246, 239, 0.92); backdrop-filter: blur(20px);
    padding: 12px 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
    width: 42px; height: 42px; border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; box-shadow: var(--shadow-primary);
}
.logo-text {
    font-family: 'Marcellus', serif; font-weight: 400; font-size: 1.5rem;
    letter-spacing: 0.5px; color: var(--ink);
}
.logo-text span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    font-size: 0.92rem; font-weight: 600; color: var(--slate);
    transition: color var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width var(--transition); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 11px 26px; background: var(--primary); color: var(--white) !important;
    border-radius: 50px; font-size: 0.9rem; font-weight: 700; transition: all var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 34px; border-radius: 50px; font-family: 'Nunito Sans', sans-serif;
    font-size: 0.94rem; font-weight: 700; cursor: pointer;
    transition: all var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-primary); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: var(--shadow-accent); }
.btn-outline { background: transparent; color: var(--primary-dark); border: 2px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--primary); background: var(--mint); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }
.btn-sm { padding: 11px 24px; font-size: 0.86rem; }

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 7px; padding: 7px 18px;
    background: var(--primary-soft); border-radius: 50px; font-size: 0.76rem;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--primary-dark); margin-bottom: 18px;
}
.section-tag.accent { background: rgba(138,154,91,0.16); color: var(--accent-dark); }
.section-tag.light { background: rgba(255,255,255,0.16); color: var(--white); }
.section-header { text-align: center; margin-bottom: 58px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 400;
    letter-spacing: 0px; margin-bottom: 16px;
}
.section-title em { color: var(--primary); font-style: italic; }
.section-desc { font-size: 1.06rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
    position: relative; padding: 150px 0 110px;
    background:
        radial-gradient(ellipse at 88% 8%, rgba(201,138,61,0.16) 0%, transparent 52%),
        radial-gradient(ellipse at 6% 92%, rgba(138,154,91,0.10) 0%, transparent 50%),
        linear-gradient(180deg, var(--mint) 0%, var(--bg) 100%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; color: var(--slate); margin-bottom: 24px;
    box-shadow: var(--shadow-sm); animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(201,138,61,0.20); }
.hero-title {
    font-size: clamp(2.6rem, 5.2vw, 4.1rem); font-weight: 400; letter-spacing: -0.5px;
    line-height: 1.08; margin-bottom: 22px; animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-title em { color: var(--primary); font-style: italic; }
.hero-subtitle {
    font-size: 1.13rem; color: var(--muted); max-width: 520px; margin-bottom: 34px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-buttons { display: flex; gap: 14px; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out 0.45s both; }
.hero-trust { display: flex; align-items: center; gap: 22px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
    width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--cream);
    margin-left: -12px; display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 0.9rem; font-family: 'Nunito Sans', sans-serif;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text strong { display: block; color: var(--ink); font-weight: 700; font-family: 'Nunito Sans', sans-serif; }
.hero-trust-text span { font-size: 0.85rem; color: var(--muted); }
.hero-trust-text .stars { color: var(--caramel); letter-spacing: 1px; }

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

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInUp 0.9s ease-out 0.4s both; }
.hero-visual-blob {
    position: absolute; inset: -6% -4% -6% 4%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; z-index: 0;
    animation: blobMorph 13s ease-in-out infinite;
}
@keyframes blobMorph {
    0%, 100% { border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; }
    50% { border-radius: 54% 46% 45% 55% / 46% 55% 45% 54%; }
}
.hero-visual-img { position: relative; z-index: 1; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-visual-img img { width: 100%; height: 480px; object-fit: cover; }
.hero-float-card {
    position: absolute; z-index: 2; background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.hero-float-card.top { top: 30px; left: -26px; animation: floatY 4s ease-in-out infinite; }
.hero-float-card.bottom { bottom: 34px; right: -22px; animation: floatY 4s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float-icon {
    width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.hero-float-icon.caramel { background: var(--primary-soft); }
.hero-float-icon.sage { background: rgba(138,154,91,0.18); }
.hero-float-card .fc-title { font-family: 'Marcellus', serif; font-weight: 400; font-size: 1.02rem; color: var(--ink); }
.hero-float-card .fc-sub { font-size: 0.74rem; color: var(--muted); }

/* ===== FEATURES ===== */
.features { padding: 90px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    padding: 34px 26px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); transition: all var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card-icon {
    width: 62px; height: 62px; border-radius: 18px; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.7rem;
}
.feature-card:nth-child(2) .feature-card-icon,
.feature-card:nth-child(4) .feature-card-icon { background: rgba(138,154,91,0.16); }
.feature-card h4 { font-size: 1.16rem; font-weight: 400; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--mint); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -26px; right: -22px; background: var(--white);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 22px 28px; text-align: center;
}
.about-badge .num { font-family: 'Marcellus', serif; font-size: 2.3rem; font-weight: 400; color: var(--primary); line-height: 1; }
.about-badge .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.about-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-list-item { display: flex; gap: 14px; align-items: flex-start; }
.about-check {
    width: 28px; height: 28px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
}
.about-list-item h4 { font-size: 1.08rem; font-weight: 400; margin-bottom: 2px; }
.about-list-item p { font-size: 0.9rem; color: var(--muted); }

/* ===== MENU ===== */
.menu { padding: 110px 0; background: var(--bg); }
.menu-block { margin-bottom: 52px; }
.menu-block:last-child { margin-bottom: 0; }
.menu-cat {
    font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 26px;
    display: flex; align-items: center; gap: 14px; padding-bottom: 16px;
    border-bottom: 2px solid var(--line);
}
.menu-cat span {
    width: 48px; height: 48px; border-radius: 14px; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; }
.menu-item { transition: all var(--transition); }
.menu-item-head { display: flex; align-items: baseline; gap: 8px; }
.mi-name { font-family: 'Marcellus', serif; font-size: 1.12rem; color: var(--ink); white-space: nowrap; }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--line-strong); transform: translateY(-4px); }
.mi-price {
    font-family: 'Marcellus', serif; font-size: 1.12rem; color: var(--primary-dark);
    font-weight: 400; white-space: nowrap;
}
.mi-desc { font-size: 0.9rem; color: var(--muted); margin-top: 5px; padding-right: 40px; }

/* ===== FRESH / FEATURED ===== */
.fresh { padding: 110px 0; background: var(--mint); }
.fresh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.fresh-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition);
}
.fresh-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.fresh-photo { height: 220px; position: relative; overflow: hidden; }
.fresh-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fresh-card:hover .fresh-photo img { transform: scale(1.07); }
.fresh-tag {
    position: absolute; top: 14px; left: 14px; padding: 6px 14px; border-radius: 50px;
    background: rgba(251,246,239,0.94); color: var(--primary-dark); font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; backdrop-filter: blur(4px);
}
.fresh-info { padding: 22px 24px 26px; }
.fresh-info h3 { font-size: 1.22rem; font-weight: 400; margin-bottom: 6px; }
.fresh-info p { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.fresh-price {
    font-family: 'Marcellus', serif; font-size: 1.3rem; color: var(--primary-dark);
    display: inline-block;
}

/* ===== STATS BAND ===== */
.stats-band { padding: 70px 0; background: var(--dark); position: relative; overflow: hidden; }
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(201,138,61,0.28) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(138,154,91,0.18) 0%, transparent 45%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-number { font-family: 'Marcellus', serif; font-size: 3rem; font-weight: 400; color: var(--white); line-height: 1; }
.stat-suffix { font-family: 'Marcellus', serif; font-size: 2.2rem; color: var(--primary-light); }
.stat-label { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.62); margin-top: 8px; letter-spacing: 0.3px; }

/* ===== GALLERY ===== */
.gallery { padding: 110px 0; background: var(--bg); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 20px;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px;
    background: linear-gradient(180deg, transparent 40%, rgba(46,32,25,0.72) 100%);
    opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white); font-family: 'Marcellus', serif; font-size: 1.1rem; letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 110px 0; background: var(--mint); }
.testimonials-slider { max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%; padding: 50px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm);
}
.testimonial-stars { font-size: 1.2rem; color: var(--caramel); letter-spacing: 4px; margin-bottom: 22px; }
.testimonial-text { font-family: 'Marcellus', serif; font-size: 1.3rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 30px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Marcellus', serif; font-weight: 400; font-size: 1.3rem;
}
.testimonial-author h4 { font-size: 1.05rem; font-weight: 400; }
.testimonial-author span { font-size: 0.83rem; color: var(--muted); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.testimonial-btn {
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--white);
    font-size: 1.1rem; color: var(--slate); cursor: pointer; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: all var(--transition); }
.testimonial-dots .dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg); }
.cta-inner {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: 72px 40px; text-align: center;
    background: linear-gradient(135deg, var(--espresso) 0%, var(--ink) 100%);
}
.cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(201,138,61,0.28) 0%, transparent 45%),
                radial-gradient(circle at 82% 85%, rgba(138,154,91,0.20) 0%, transparent 45%);
}
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content .section-tag.light { background: rgba(255,255,255,0.16); color: var(--white); }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content h2 em { font-style: italic; color: var(--primary-light); }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card {
    padding: 32px 26px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); text-align: center; transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-icon {
    width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary-dark);
}
.contact-card:nth-child(2) .contact-icon, .contact-card:nth-child(4) .contact-icon { background: rgba(138,154,91,0.16); color: var(--accent-dark); }
.contact-card h4 { font-size: 1.08rem; font-weight: 400; margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--muted-light); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    padding: 8px 16px; background: rgba(255,255,255,0.07); border-radius: 50px; font-size: 0.78rem;
    font-weight: 600; color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 1.08rem; font-weight: 400; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-light); }
.footer-newsletter h4 { color: var(--white); font-size: 1.08rem; font-weight: 400; margin-bottom: 12px; }
.footer-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 12px 16px; border: none; border-radius: 50px 0 0 50px; background: rgba(255,255,255,0.09);
    color: var(--white); font-family: 'Nunito Sans', sans-serif; font-size: 0.85rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    padding: 12px 20px; background: var(--primary); color: var(--white); border: none;
    border-radius: 0 50px 50px 0; cursor: pointer; font-size: 1rem; transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px; width: 48px; height: 48px; background: var(--primary);
    color: var(--white); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow-md);
    z-index: 100; display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 50px; font-size: 0.85rem;
    font-weight: 700; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); z-index: 100; transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { font-size: 1.2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 540px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-list { grid-template-columns: 1fr; gap: 18px; }
    .fresh-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(251,246,239,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 16px;
        box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    }
    .hero { padding: 130px 0 90px; }
    .hero-float-card.top { left: 6px; }
    .hero-float-card.bottom { right: 6px; }
    .features-grid { grid-template-columns: 1fr; }
    .fresh-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-img-main img { height: 360px; }
    .about-badge { right: 16px; bottom: -20px; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .testimonial-card { padding: 34px 24px; }
    .cta-inner { padding: 52px 26px; }
    .menu-cat { font-size: 1.4rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .whatsapp-text { display: none; }
    .hero-trust { flex-wrap: wrap; gap: 14px; }
    .mi-desc { padding-right: 0; }
}
