/* ============================================================
   amirsportdiet.com — shared design system
   Health palette: deep forest greens + emerald/teal gradients.
   Dark "tech" hero, light clean body. Hebrew RTL, Heebo.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* greens */
    --g950: #062019;
    --g900: #0a3328;
    --g800: #0e4536;
    --emerald: #10b981;
    --teal: #14b8a6;
    --mint: #6ee7b7;
    --grad: linear-gradient(120deg, #10b981, #14b8a6 60%, #2dd4bf);
    --wa: #25d366;

    /* light surfaces */
    --bg: #f4faf7;
    --card: #ffffff;
    --line: #e2efe9;

    /* text */
    --ink: #122620;
    --body-c: #34453f;
    --muted: #61756d;

    --shadow-sm: 0 2px 10px rgba(10, 51, 40, 0.07);
    --shadow-md: 0 6px 26px rgba(10, 51, 40, 0.10);
    --shadow-lg: 0 14px 50px rgba(10, 51, 40, 0.14);
    --glow: 0 8px 30px rgba(16, 185, 129, 0.35);

    --radius: 18px;
    --radius-sm: 12px;
    --maxw: 1160px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Heebo', sans-serif;
    background: var(--bg);
    color: var(--body-c);
    line-height: 1.75;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--emerald); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR (transparent over dark hero → dark glass on scroll) ===== */
.navbar {
    position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(6, 32, 25, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.navbar-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: #fff; font-weight: 800; font-size: 20px; line-height: 1.2;
    white-space: nowrap;
}
.nav-logo .logo-dot {
    width: 40px; height: 40px; border-radius: 12px; flex: none;
    background: #fff; box-shadow: var(--glow);
    display: grid; place-items: center; color: #fff; font-size: 19px; font-weight: 900;
    overflow: hidden;
}
.nav-logo .logo-dot img { width: 90%; height: 90%; object-fit: contain; }
.nav-logo small { display: block; font-weight: 400; font-size: 12px; color: var(--mint); }

.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none; color: rgba(255, 255, 255, 0.85);
    font-weight: 500; font-size: 15px; position: relative; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; right: 0; height: 2px; width: 0;
    background: var(--grad); border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.mobile-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; transition: 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 26px; border-radius: 999px; border: 0; cursor: pointer;
    font-family: inherit; font-weight: 700; font-size: 16px; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(16, 185, 129, 0.45); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45); }
.btn-ghost { background: rgba(255, 255, 255, 0.07); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--g900); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ===== DARK HERO (shared base; pages add their own height) ===== */
.hero-dark {
    position: relative; overflow: hidden; color: #fff;
    background:
        radial-gradient(900px 420px at 85% -10%, rgba(16, 185, 129, 0.25), transparent 60%),
        radial-gradient(700px 420px at 8% 110%, rgba(20, 184, 166, 0.18), transparent 60%),
        linear-gradient(160deg, #04130e 0%, var(--g950) 35%, var(--g900) 75%, #0c3d2f 100%);
}
.hero-dark::before { /* subtle tech grid */
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(110, 231, 183, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 231, 183, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
}
.hero-dark > .container { position: relative; z-index: 1; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(110, 231, 183, 0.12); border: 1px solid rgba(110, 231, 183, 0.35);
    color: var(--mint); font-weight: 600; font-size: 14px;
    padding: 7px 16px; border-radius: 999px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* page hero (inner pages) */
.page-hero { padding: 150px 0 70px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 900; color: #fff; margin: 18px 0 12px; line-height: 1.25; }
.page-hero p.lead { max-width: 660px; margin: 0 auto; color: rgba(255, 255, 255, 0.8); font-size: 18px; }

/* ===== SECTIONS ===== */
.section { padding: 84px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.kicker {
    display: inline-block; font-size: 14px; font-weight: 700; color: var(--emerald);
    background: rgba(16, 185, 129, 0.09); border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--ink); line-height: 1.3; }
.section-header p { margin-top: 12px; color: var(--muted); font-size: 17px; }

/* ===== CARDS ===== */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card .icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: rgba(16, 185, 129, 0.1); color: var(--emerald); margin-bottom: 16px; font-size: 24px;
}
.card h3 { color: var(--ink); font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--body-c); }

/* track cards (המסלולים) */
.track-card { display: flex; flex-direction: column; }
.track-card .tag { align-self: flex-start; font-size: 13px; font-weight: 700; color: var(--teal); background: rgba(20, 184, 166, 0.1); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.track-card ul { list-style: none; margin: 14px 0 22px; flex: 1; }
.track-card ul li { padding-right: 26px; position: relative; margin-bottom: 9px; font-size: 15px; }
.track-card ul li::before { content: '✓'; position: absolute; right: 0; color: var(--emerald); font-weight: 900; }
.track-card.featured { border: 2px solid var(--emerald); box-shadow: var(--glow); position: relative; }
.track-card.featured .ribbon {
    position: absolute; top: -14px; right: 24px; background: var(--grad); color: #fff;
    font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* ===== FORM ===== */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--line); background: var(--bg);
    font-family: inherit; font-size: 15.5px; color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12); background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-status { margin-top: 12px; font-weight: 600; font-size: 15px; display: none; }
.form-status.ok { display: block; color: var(--emerald); }
.form-status.err { display: block; color: #c0392b; }
.hp { position: absolute; right: -9999px; opacity: 0; height: 0; overflow: hidden; } /* honeypot */

/* ===== FOOTER ===== */
.footer { background: var(--g950); color: rgba(255, 255, 255, 0.75); padding: 56px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer a:hover { color: var(--mint); }
.footer .brand-line { font-size: 14.5px; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 22px; text-align: center; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }

/* ===== shared SVG icon sizing ===== */
.card .icon svg { width: 26px; height: 26px; }
.point .ico svg { width: 18px; height: 18px; }

/* gradient accent under section headers */
.section-header::after {
    content: ''; display: block; width: 54px; height: 4px;
    background: var(--grad); border-radius: 999px; margin: 20px auto 0;
}

/* ===== PROCESS STEPS (nutrition page) ===== */
.steps { display: grid; gap: 0; max-width: 760px; margin: 0 auto; }
.step { display: flex; gap: 22px; position: relative; padding-bottom: 36px; }
.step:last-child { padding-bottom: 0; }
.step::before {
    content: ''; position: absolute; top: 46px; bottom: 0; right: 22px; width: 2px;
    background: linear-gradient(var(--emerald), rgba(16,185,129,0.12));
}
.step:last-child::before { display: none; }
.step .num {
    flex: none; width: 46px; height: 46px; border-radius: 14px; z-index: 1;
    background: var(--grad); color: #fff; font-weight: 900; font-size: 19px;
    display: grid; place-items: center; box-shadow: var(--glow);
}
.step h3 { color: var(--ink); font-size: 19px; font-weight: 800; margin-bottom: 6px; padding-top: 8px; }
.step p { font-size: 15.5px; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
    margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-weight: 700; color: var(--ink); font-size: 16.5px;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--emerald); font-weight: 400; transition: transform 0.25s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details .a { padding: 0 22px 20px; font-size: 15.5px; }

/* ===== BLOG / ARTICLES ===== */
.post-card { display: flex; flex-direction: column; text-decoration: none; overflow: hidden; padding: 0; }
.post-card .thumb {
    height: 170px; display: grid; place-items: center; font-size: 44px;
    background: linear-gradient(135deg, var(--g900), var(--g800));
    border-bottom: 1px solid var(--line);
}
.post-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.post-card h3 { line-height: 1.45; }
.post-card .more { margin-top: auto; padding-top: 14px; color: var(--emerald); font-weight: 700; font-size: 14.5px; }

.prose { max-width: 720px; margin: 0 auto; font-size: 17.5px; }
.prose h2 { font-size: 26px; font-weight: 900; color: var(--ink); margin: 42px 0 14px; line-height: 1.35; }
.prose h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 30px 0 10px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 24px 18px 0; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
    border-right: 4px solid var(--emerald); background: rgba(16,185,129,0.06);
    padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 18px;
    font-weight: 500; color: var(--ink);
}
.prose .takeaway {
    background: var(--g950); color: #fff; border-radius: var(--radius);
    padding: 26px 28px; margin: 36px 0;
}
.prose .takeaway h3 { color: var(--mint); margin: 0 0 10px; font-size: 17px; }
.prose .takeaway ul { margin: 0 20px 0 0; }
.prose .takeaway li { color: rgba(255,255,255,0.88); font-size: 15.5px; }
.article-meta { text-align: center; color: rgba(255,255,255,0.65); font-size: 14.5px; margin-top: 10px; }

/* ===== ABOUT TIMELINE ===== */
.creds { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.cred {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.cred .ico {
    flex: none; width: 44px; height: 44px; border-radius: 12px;
    background: rgba(16,185,129,0.1); color: var(--emerald);
    display: grid; place-items: center;
}
.cred .ico svg { width: 22px; height: 22px; }
.cred h3 { color: var(--ink); font-size: 17px; font-weight: 800; }
.cred p { font-size: 15px; }

/* ===== MUSCLE / BODY-COMPOSITION (nutrition page) ===== */
.muscle-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.comp-card { background: var(--g950); border-radius: var(--radius); padding: 34px; color: #fff; box-shadow: var(--shadow-lg); }
.comp-card h4 { font-size: 16px; font-weight: 700; color: var(--mint); margin-bottom: 22px; }
.comp-row { margin-bottom: 20px; }
.comp-row .lbl { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 7px; }
.bar { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; width: 0; transition: width 1.2s cubic-bezier(.2,.7,.3,1); }
.bar .fat { background: linear-gradient(90deg, #f59e0b, #f97316); }
.bar .mus { background: var(--grad); }
.comp-note { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; }
.muscle-text h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; color: var(--ink); line-height: 1.3; margin-bottom: 16px; }
.muscle-text p { margin-bottom: 14px; }
.muscle-text .point { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.muscle-text .point .ico { flex: none; width: 34px; height: 34px; border-radius: 10px; background: rgba(16,185,129,0.1); color: var(--emerald); display: grid; place-items: center; font-size: 17px; }
@media (max-width: 920px) { .muscle-wrap { grid-template-columns: 1fr; } }

/* ===== INSTAGRAM STRIP ===== */
.insta-strip {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 34px; box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
}
.insta-strip .ig-info { display: flex; align-items: center; gap: 16px; }
.insta-strip .ig-icon {
    width: 54px; height: 54px; border-radius: 16px; flex: none;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: grid; place-items: center; color: #fff;
}
.insta-strip .ig-icon svg { width: 28px; height: 28px; }
.insta-strip h3 { color: var(--ink); font-size: 19px; font-weight: 800; }
.insta-strip p { font-size: 14.5px; color: var(--muted); }
.btn-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff; box-shadow: 0 8px 26px rgba(220, 39, 67, 0.3);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(220, 39, 67, 0.4); }

/* ===== CTA BAND ===== */
.cta-band { text-align: center; padding: 70px 0; }
.cta-band h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed; bottom: 22px; left: 22px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-cta {
    position: fixed; bottom: 0; right: 0; left: 0; z-index: 950;
    display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(10, 51, 40, 0.12);
}
.mobile-cta .btn { flex: 1; padding: 12px 10px; font-size: 15px; }
@media (max-width: 680px) {
    .mobile-cta { display: flex; }
    body.has-ctabar { padding-bottom: 78px; }
    body.has-ctabar .wa-float { display: none; }
}

/* ===== TESTIMONIALS ===== */
.quote-card { position: relative; padding-top: 38px; }
.quote-card::before {
    content: '"'; position: absolute; top: 10px; right: 24px;
    font-size: 64px; font-weight: 900; line-height: 1; color: rgba(16, 185, 129, 0.25);
}
.quote-card p.q { font-size: 15.5px; color: var(--body-c); margin-bottom: 16px; }
.quote-card .who { display: flex; align-items: center; gap: 10px; }
.quote-card .who .avatar {
    width: 40px; height: 40px; border-radius: 50%; flex: none;
    background: var(--grad); color: #fff; font-weight: 800; font-size: 16px;
    display: grid; place-items: center;
}
.quote-card .who b { display: block; color: var(--ink); font-size: 14.5px; }
.quote-card .who span { font-size: 13px; color: var(--muted); }

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: fixed; top: -60px; right: 16px; z-index: 2000;
    background: var(--g950); color: #fff; font-weight: 700;
    padding: 12px 22px; border-radius: 0 0 12px 12px; text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid var(--emerald); outline-offset: 2px; border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    body { font-size: 16px; }
    .section { padding: 60px 0; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-cta .btn { display: none; }
    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 4px;
        background: rgba(6, 32, 25, 0.97); backdrop-filter: blur(14px);
        padding: 18px 24px 26px; transform: translateY(-130%); transition: transform 0.35s;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }
    .nav-links.open { transform: none; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 4px; font-size: 17px; }
}
