/* ============================================
   Dyaloni Foods - Premium Stylesheet
   ============================================ */
:root {
    --green-900: #123524;
    --green-800: #1a4a32;
    --green-700: #226644;
    --green-600: #2e7d54;
    --green-100: #e4f0e9;
    --green-50:  #f0f7f3;
    --gold-500:  #c8973f;
    --gold-600:  #b28434;
    --gold-100:  #f7ecd9;
    --cream:     #faf7f1;
    --white:     #ffffff;
    --ink:       #17140f;
    --ink-soft:  #4c473e;
    --ink-mute:  #7a746a;
    --line:      #e9e3d8;
    --radius:    16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(23, 20, 15, 0.06);
    --shadow-md: 0 8px 30px rgba(23, 20, 15, 0.1);
    --shadow-lg: 0 20px 50px rgba(23, 20, 15, 0.14);
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-600); }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--green-900); color: #fff; padding: 10px 18px; z-index: 2000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
    font-family: var(--font-body); cursor: pointer; border: 2px solid transparent;
    transition: background .3s cubic-bezier(.4,0,.2,1), color .3s cubic-bezier(.4,0,.2,1),
                border-color .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
.btn-primary { background: var(--green-800); color: #fff; }
.btn-primary:hover { background: var(--green-900); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: #fff; }
.btn-gold:hover { background: var(--gold-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-outline:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green-900); }
.btn-light:hover { background: var(--gold-100); color: var(--green-900); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb856; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(250, 247, 241, 0.97);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}
/* Blur only on desktop: backdrop-filter turns the header into a containing
   block for position:fixed children, which breaks the mobile nav drawer. */
@media (min-width: 861px) {
    .site-header {
        background: rgba(250, 247, 241, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand-logo { height: 46px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    display: block; padding: 10px 14px; font-weight: 500; font-size: 0.93rem;
    color: var(--ink-soft); border-radius: 8px;
}
.main-nav a:hover { color: var(--green-800); background: var(--green-50); }
.main-nav a.active { color: var(--green-800); font-weight: 600; }
.main-nav a.active:not(.btn) { background: var(--green-100); }
.nav-cta-item { margin-left: 10px; }
.nav-cta-item .btn { color: #fff; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 11px; background: var(--green-800);
    border: none; border-radius: 12px; cursor: pointer; z-index: 1102;
}
.hamburger span { display: block; width: 100%; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(18, 53, 36, 0.45);
    z-index: 990; opacity: 0; transition: opacity .3s;
}
.nav-overlay.show { display: block; opacity: 1; }

/* ---------- Hero Slider ---------- */
.hero { position: relative; overflow: hidden; background: var(--green-900); }
.hero-slider { position: relative; }
.hero-slide {
    display: none; position: relative; min-height: calc(100vh - var(--header-h));
    max-height: 780px; align-items: center;
    background: radial-gradient(ellipse 90% 70% at 75% 20%, rgba(200,151,63,.22), transparent 60%),
                radial-gradient(ellipse 70% 60% at 15% 90%, rgba(46,125,84,.35), transparent 60%),
                linear-gradient(150deg, var(--green-900) 0%, var(--green-800) 55%, #0d2a1c 100%);
}
.hero-slide.active { display: flex; animation: heroFade .9s ease both; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero-slide.has-image { background-size: cover; background-position: center; }
.hero-slide.has-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,32,22,.85) 20%, rgba(13,32,22,.45) 70%, rgba(13,32,22,.25)); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 90px 0; }
.hero-content > * { animation: heroUp .8s ease both; }
.hero-content .hero-badge { animation-delay: .05s; }
.hero-content h1 { animation-delay: .15s; }
.hero-content p { animation-delay: .25s; }
.hero-content .hero-actions { animation-delay: .35s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: rgba(200,151,63,.16); border: 1px solid rgba(200,151,63,.45);
    color: #ecd9b4; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-content h1 { color: #fff; margin-bottom: 18px; }
.hero-content h1 em { font-style: italic; color: var(--gold-500); }
.hero-content p { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 580px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dots button {
    width: 34px; height: 5px; border-radius: 4px; border: none; cursor: pointer;
    background: rgba(255,255,255,.3); transition: background .3s;
}
.hero-dots button.active { background: var(--gold-500); }
.hero-decor {
    position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
    width: 520px; height: 520px; z-index: 1; opacity: .95; pointer-events: none;
}
@media (max-width: 900px) { .hero-decor { display: none; } }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--white); }
.section-green { background: linear-gradient(150deg, var(--green-900), var(--green-800)); }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-label {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold-600); margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-mute); }
.section-green .section-head h2, .section-green h2 { color: #fff; }
.section-green .section-head p { color: rgba(255,255,255,.75); }
.section-green .section-label { color: var(--gold-500); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 34px 28px; transition: transform .35s, box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card-icon {
    width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center;
    justify-content: center; background: var(--green-50); color: var(--green-700); margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-mute); font-size: 0.95rem; }
.card.card-gold .card-icon { background: var(--gold-100); color: var(--gold-600); }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-content .section-label { margin-bottom: 10px; }
.split-content h2 { margin-bottom: 18px; }
.split-content p { color: var(--ink-soft); margin-bottom: 16px; }
.split-visual { position: relative; }
.split-visual .visual-frame {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3.4; background: linear-gradient(150deg, var(--green-800), var(--green-900));
    display: flex; align-items: center; justify-content: center;
}
.split-visual .visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.split-visual::after {
    content: ""; position: absolute; inset: 24px -24px -24px 24px; border-radius: var(--radius-lg);
    background: var(--gold-100); z-index: -1;
}

/* ---------- Stats ---------- */
.stats-band { background: var(--green-900); border-radius: var(--radius-lg); padding: 46px 30px; margin-top: 70px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--gold-500); }
.stat-label { color: rgba(255,255,255,.75); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Brand feature ---------- */
.brand-hero {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; box-shadow: var(--shadow-sm);
}
.brand-hero-media {
    background: radial-gradient(ellipse 80% 80% at 30% 20%, rgba(200,151,63,.25), transparent 55%),
                linear-gradient(160deg, #f5ecdd, var(--gold-100));
    display: flex; align-items: center; justify-content: center; padding: 40px; min-height: 380px;
}
.brand-hero-media img, .brand-hero-media svg { max-height: 360px; width: auto; }
.brand-hero-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.brand-hero-body .badge {
    align-self: flex-start; background: var(--green-100); color: var(--green-800);
    padding: 6px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.brand-hero-body h2, .brand-hero-body h3 { margin-bottom: 6px; }
.brand-tagline { color: var(--gold-600); font-weight: 600; margin-bottom: 16px; }
.brand-hero-body p { color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
    background: radial-gradient(ellipse 80% 100% at 80% 0%, rgba(200,151,63,.28), transparent 55%),
                linear-gradient(150deg, var(--green-900), var(--green-800));
    border-radius: var(--radius-lg); padding: 70px 40px; text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: radial-gradient(ellipse 70% 90% at 85% 10%, rgba(200,151,63,.2), transparent 55%),
                linear-gradient(150deg, var(--green-900), var(--green-800));
    padding: 84px 0 70px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .85rem; margin-bottom: 18px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--gold-500); }

/* ---------- Content pages ---------- */
.content-page { max-width: 820px; margin: 0 auto; }
.content-page h2 { margin: 34px 0 14px; font-size: 1.5rem; }
.content-page h3 { margin: 26px 0 10px; }
.content-page p { margin-bottom: 16px; color: var(--ink-soft); }
.content-page ul { margin: 0 0 16px 22px; list-style: disc; color: var(--ink-soft); }
.content-page li { margin-bottom: 8px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(140deg, var(--green-100), var(--gold-100)); position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.blog-card-img .img-placeholder svg { width: 64px; height: 64px; opacity: .5; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 12px; align-items: center; font-size: 0.8rem; color: var(--ink-mute); margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat { background: var(--green-50); color: var(--green-700); padding: 3px 12px; border-radius: 999px; font-weight: 600; }
.blog-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--green-700); }
.blog-card p { color: var(--ink-mute); font-size: 0.92rem; flex: 1; }
.blog-card .read-more { margin-top: 16px; font-weight: 600; font-size: 0.9rem; color: var(--gold-600); }

.blog-single { max-width: 800px; margin: 0 auto; }
.blog-single-head { text-align: center; margin-bottom: 40px; }
.blog-single-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 14px 0; }
.blog-single-content h2 { margin: 36px 0 14px; font-size: 1.5rem; }
.blog-single-content h3 { margin: 28px 0 10px; }
.blog-single-content p { margin-bottom: 18px; color: var(--ink-soft); }
.blog-single-content ul { margin: 0 0 18px 22px; list-style: disc; color: var(--ink-soft); }
.blog-single-content li { margin-bottom: 8px; }
.blog-single-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; }
.blog-nav-back { margin-bottom: 30px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span {
    min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px; border: 1px solid var(--line); background: #fff; font-weight: 600; padding: 0 14px;
}
.pagination .current { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.pagination a:hover { border-color: var(--green-700); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--green-900); color: #fff; border-radius: var(--radius-lg); padding: 40px 34px; position: sticky; top: 100px; }
.contact-info-card h3 { color: #fff; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item .ci-icon {
    width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(200,151,63,.18);
    color: var(--gold-500); display: flex; align-items: center; justify-content: center;
}
.contact-info-item .ci-icon svg { width: 22px; height: 22px; }
.contact-info-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-500); }
.contact-info-item a, .contact-info-item span.ci-val { color: rgba(255,255,255,.85); word-break: break-word; }
.contact-info-item a:hover { color: var(--gold-500); }

.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { color: var(--ink-mute); margin-bottom: 24px; font-size: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
    font-family: var(--font-body); font-size: 0.95rem; background: var(--cream);
    transition: border-color .25s, background .25s; color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--green-700); background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.map-embed { margin-top: 60px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #0d2418; color: rgba(255,255,255,.75); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: 70px 0 50px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 0.92rem; }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center; color: #fff; transition: background .3s, transform .3s;
}
.footer-social a:hover { background: var(--gold-500); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: 0.88rem; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 990;
    width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45); transition: transform .3s;
    animation: waPulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
    0% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
    70% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Founder ---------- */
.founder-card {
    display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px;
}
.founder-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: linear-gradient(140deg, var(--green-100), var(--gold-100)); display:flex; align-items:center; justify-content:center; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo svg { width: 90px; height: 90px; color: var(--green-700); opacity: .5; }
.founder-designation { color: var(--gold-600); font-weight: 600; margin: 4px 0 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split, .brand-hero, .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .section { padding: 64px 0; }
    .hamburger { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
        background: var(--white); z-index: 1100; padding: 90px 24px 30px;
        transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
        overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.15);
        visibility: hidden;
    }
    .main-nav.open { transform: translateX(0); visibility: visible; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .main-nav a { padding: 14px 16px; font-size: 1rem; border-radius: 12px; }
    .nav-cta-item { margin: 14px 0 0; }
    .nav-cta-item .btn { width: 100%; }
    body.nav-locked { overflow: hidden; }
}

@media (max-width: 560px) {
    .grid-2, .grid-3, .grid-4, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .founder-card { grid-template-columns: 1fr; padding: 26px; }
    .founder-photo { max-width: 240px; }
    .hero-content { padding: 70px 0 90px; }
    .hero-slide { min-height: 78vh; }
    .container { padding: 0 18px; }
    .cta-band { padding: 50px 24px; }
    .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
    .brand-hero-body { padding: 30px 24px; }
    .brand-hero-media { min-height: 260px; }
}
