/* ==========================================================
   Droomkwartier — basisstijl
   Kleuren: oranje accent #E96215, grijze body-tekst #777
   Fonts: Manrope (body/UI), Dancing Script (script-accenten)
   ========================================================== */

:root {
    --accent: #e96215;
    --accent-dark: #c74f0d;
    --ink: #222222;
    --body-text: #777777;
    --bg-light: #f7f5f3;
    --bg-gray: #f2f0ee;
    --white: #ffffff;
    --radius: 10px;
    --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, "system-ui", "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--body-text);
    background: var(--white);
    line-height: 1.65;
}

h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 .5em;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    font-size: 13px;
    color: var(--body-text);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 2px;
    background: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--accent); }

.script-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--accent);
}

/* ---------- Header ---------- */
.site-header {
    position: relative;
    z-index: 50;
    width: 100%;
}
.header--transparent {
    position: absolute;
    top: 0; left: 0;
    background: transparent;
}
.header--solid {
    background: var(--white);
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.header__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 18px 24px;
    gap: 20px;
}
.header__logo { flex-shrink: 0; justify-self: start; }
.header__logo img { height: 44px; width: auto; }

.header__nav { justify-self: center; }
.header__nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(14px, 2vw, 32px);
    margin: 0;
    padding: 0;
}
.header__nav li { flex-shrink: 0; }
.header__nav a {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}
.header--transparent .header__nav a { color: var(--white); }
.header__nav a:hover,
.header__nav a.is-active { color: var(--accent); }
.header--transparent .header__nav a:hover,
.header--transparent .header__nav a.is-active { color: var(--white); text-decoration: underline; }

.header__extras {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}
.header__phone-icon { width: 16px; height: 16px; flex-shrink: 0; }
.header--transparent .header__phone { color: var(--white); }

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
}
.header__burger span {
    display: block;
    height: 2px;
    background: var(--ink);
}
.header--transparent .header__burger span { background: var(--white); }

/* ---------- Hero ---------- */
.hero-wrap {
    position: relative;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    padding: 108px 0 40px;
}
.hero-slides {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.hero-slides__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(.65,0,.35,1);
    will-change: transform;
}
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,12,6,.55) 0%, rgba(20,12,6,.15) 45%, rgba(20,12,6,0) 70%);
}
.hero-slide__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.hero-slide__inner .hero-slide__text {
    max-width: 640px;
}
.hero-slide h1 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--white);
    font-size: clamp(40px, 5.5vw, 72px);
    margin-bottom: 24px;
    line-height: 1.15;
}

/* ---------- Voorvertoning-banner (concept/gepland, alleen zichtbaar voor ingelogde beheerder) ---------- */
.preview-banner {
    background: #fff3cd;
    color: #7a5b00;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    padding: 90px 24px 60px;
    text-align: center;
}
.page-banner .eyebrow { color: rgba(255,255,255,.85); justify-content: center; }
.page-banner .eyebrow::before { background: var(--white); }
.page-banner h1 { color: var(--white); font-size: clamp(32px, 5vw, 48px); }

/* ---------- Section basics ---------- */
section { padding: 90px 0; }
.section-gray { background: var(--bg-gray); }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Welkom / intro ---------- */
.intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
    background-image: url('../img/circle-dots.webp');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 320px;
}
.intro__photo img { border-radius: var(--radius); }
.intro .wordmark {
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: .01em;
}
.intro .wordmark span { color: var(--accent); }
.intro .wordmark small {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--ink);
    margin-top: 6px;
}
.intro p { max-width: 640px; }
.intro .signature { height: 180px; margin-top: 24px; transform: rotate(-13deg); transform-origin: left center; }

/* ---------- Waarom Droomkwartier ---------- */
.waarom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.waarom-photos { margin-top: 32px; }
.waarom-photos__single {
    width: 100%;
    max-width: 420px;
}
.waarom-features { display: grid; gap: 32px; }
.waarom-feature { display: flex; gap: 18px; align-items: flex-start; }
.waarom-feature__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.waarom-feature__icon svg { width: 24px; height: 24px; }
.waarom-feature h3 { font-size: 18px; margin-bottom: 6px; }
.waarom-feature p { margin: 0; font-size: 15px; }

/* ---------- Diensten ---------- */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dienst-card {
    display: block;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 32px 28px;
    color: var(--body-text);
    transition: box-shadow .2s ease, transform .2s ease;
}
.dienst-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    transform: translateY(-4px);
    color: var(--body-text);
}
.dienst-card h3 { font-size: 20px; margin-bottom: 10px; }
.dienst-card .num {
    display: inline-block;
    color: var(--accent);
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    margin-bottom: 8px;
}

.diensten-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin: 0 -4px;
}
.diensten-carousel .dienst-card {
    scroll-snap-align: start;
    flex: 0 0 280px;
    background: var(--white);
}

/* ---------- CTA banner ---------- */
.cta-banner {
    position: relative;
    background-color: var(--accent-dark);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    padding: 56px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(233,98,21,.88), rgba(30,15,5,.75));
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 24px; }

/* ---------- Portfolio ---------- */
.portfolio-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}
.portfolio-filter button {
    background: none;
    border: 2px solid #e6e6e6;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    color: var(--ink);
}
.portfolio-filter button.is-active,
.portfolio-filter button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}
.portfolio-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,10,5,.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
}
.portfolio-card__cat {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
}
.portfolio-card__title { font-size: 22px; font-weight: 800; color: var(--white); }

/* ---------- Project detail ---------- */
.project-hero {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.project-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.65));
}
.project-hero h1 { position: relative; z-index: 2; color: var(--white); padding: 40px 0; margin: 0 24px; }

.project-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 32px;
    margin: 40px 0;
}
.project-meta div span {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
}
.project-meta div strong { color: var(--ink); font-size: 17px; }

/* ---------- Dienst-detail ---------- */
.service-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}
.service-sidebar { display: grid; gap: 28px; }
.service-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
}
.service-nav li + li { border-top: 1px solid #eee; }
.service-nav a {
    display: block;
    padding: 14px 18px;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
}
.service-nav a:hover,
.service-nav a.is-active { background: var(--bg-gray); color: var(--accent); }
.service-sidebar__title { font-size: 16px; margin-bottom: 12px; }
.service-traits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.service-traits li {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding-left: 24px;
}
.service-traits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}
.contact-box {
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.contact-box__icon { width: 30px; height: 30px; margin: 0 auto 10px; }
.contact-box__title { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.contact-box p { color: rgba(255,255,255,.9); margin: 0; font-size: 14px; }
.contact-box__phone { display: block; color: var(--white); font-weight: 700; font-size: 16px; margin-top: 4px; }
.contact-box__phone:hover { color: var(--white); text-decoration: underline; }
.service-body p { margin-bottom: 20px; }

/* ---------- Over mij ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}
.about-grid img { border-radius: var(--radius); }

.about-photos__main {
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.traits { display: flex; gap: 28px; margin: 28px 0; flex-wrap: wrap; }
.trait { font-weight: 700; color: var(--ink); font-size: 17px; position: relative; padding-left: 22px; }
.trait::before {
    content: "";
    position: absolute; left: 0; top: 8px;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--body-text);
}
.blog-card:hover { color: var(--body-text); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.blog-card__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-card__body { display: flex; flex-direction: column; padding: 28px; flex: 1; }
.blog-card time {
    display: block;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}
.blog-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--ink); }
.blog-card p { font-size: 15px; }
.blog-card .readmore {
    display: inline-block;
    margin-top: auto;
    padding-top: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--accent);
}
.post-featured-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 32px;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.blog-tags a {
    background: var(--bg-gray);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 6px 14px;
    border-radius: 20px;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}
.share-box__label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
}
.share-box__links { display: flex; gap: 10px; }
.share-box__links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-box__links a svg { width: 17px; height: 17px; }
.share-box__links a:hover { background: var(--accent); color: var(--white); }
article.post-body ul { padding-left: 20px; }
article.post-body li { margin-bottom: 8px; }

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 1fr;
    gap: 56px;
    align-items: start;
}
.post-main { min-width: 0; }
.post-sidebar {
    position: sticky;
    top: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 28px;
}
.post-sidebar h2 { font-size: 18px; margin-bottom: 20px; }
.post-sidebar-list { display: grid; gap: 18px; }
.post-sidebar-item {
    display: flex;
    gap: 14px;
    color: var(--body-text);
}
.post-sidebar-item:hover { color: var(--body-text); }
.post-sidebar-item__img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.post-sidebar-item__body time {
    display: block;
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}
.post-sidebar-item__body h3 {
    font-size: 14px;
    line-height: 1.35;
    color: var(--ink);
    margin: 0;
}
.post-sidebar-item:hover .post-sidebar-item__body h3 { color: var(--accent); }
.post-sidebar-alle {
    display: block;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e4e0dc;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--accent);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
}
.contact-form { display: grid; gap: 18px; }
.contact-form label {
    display: block;
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-info h3 { margin-top: 28px; }
.contact-info h3:first-child { margin-top: 0; }
.form-notice {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
}
.form-notice.success { background: #e8f7ee; color: #1e7d43; }
.form-notice.error { background: #fdecea; color: #b3261e; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Legal pages ---------- */
.legal-doc-cover {
    display: inline-block;
    margin-top: 24px;
    text-align: center;
    color: var(--ink);
    font-weight: 700;
}
.legal-doc-cover img {
    width: 220px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
    margin-bottom: 14px;
    transition: transform .2s ease;
}
.legal-doc-cover:hover img { transform: translateY(-4px); }
.legal-doc-cover:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
    background: #1c1c1c;
    color: #bbb;
    padding-top: 70px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { height: 40px; margin-bottom: 18px; }
.footer__about p { font-size: 14px; max-width: 380px; }
.footer__kvk { font-size: 13px; color: #888; }
.footer__col h3 {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { color: #bbb; font-size: 14px; }
.footer__col a:hover { color: var(--accent); }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
    color: #ccc;
}
.footer__socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer__bottom {
    padding: 22px 0;
    font-size: 13px;
    color: #777;
}
.footer__bottom a { color: #999; }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .diensten-grid, .portfolio-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .intro, .service-grid, .waarom-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .intro__photo { order: -1; max-width: 420px; }
    .about-photos { max-width: 420px; }
    .waarom-photos { max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
    .header__inner { display: flex; }
    .header__nav { display: none; }
    .header__extras { margin-left: auto; gap: 12px; }
    .header__phone span { display: none; }
    .header__burger { display: flex; }
    .diensten-grid, .portfolio-grid, .blog-grid, .project-meta { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; padding-bottom: 30px; }
    .hero-slides { height: 460px; }
    .hero-slide__inner { padding: 0 28px; }
}

/* ---------- Mobiel menu (volledig paneel) ---------- */
.mobile-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 998;
}
.mobile-panel-overlay.is-open { display: block; }

.mobile-panel {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 85%;
    max-width: 380px;
    background: #1c1c1c;
    z-index: 999;
    padding: 32px 32px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
}
.mobile-panel.is-open { transform: translateX(0); }

.mobile-panel__close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    margin-bottom: 10px;
}
.mobile-panel__logo { display: block; margin: 0 auto 32px; }
.mobile-panel__logo img { height: 40px; }
.mobile-panel__nav { display: flex; flex-direction: column; }
.mobile-panel__nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.mobile-panel__nav a:first-child { border-top: 1px solid rgba(255,255,255,.15); }
.mobile-panel__nav a.is-active,
.mobile-panel__nav a:hover { color: var(--accent); }
.mobile-panel__desc { color: #999; font-size: 14px; margin-top: 28px; }
.mobile-panel__socials { display: flex; gap: 10px; margin-top: 14px; }
.mobile-panel__socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}
.mobile-panel__socials a svg { width: 18px; height: 18px; }
.mobile-panel__socials a:hover { background: var(--accent); border-color: var(--accent); }

@media (min-width: 721px) {
    .mobile-panel, .mobile-panel-overlay { display: none !important; }
}
