/* ═══════════════════════════════════════════════════════════════════════════
   Lekkie SEO — main.css
   Typografia · Sekcje · Komponenty · Szablony · Responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── TYPOGRAFIA ────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6{font-family:var(--font-head);font-weight:700;line-height:1.2;color:var(--dark);letter-spacing:-.03em}
h1{font-size:clamp(2rem,5vw,3.25rem);font-weight:800}
h2{font-size:clamp(1.6rem,3.5vw,2.25rem)}
h3{font-size:clamp(1.1rem,2vw,1.4rem)}
p{margin-bottom:1.25rem}
p:last-child{margin-bottom:0}
ul,ol{padding-left:1.4rem;margin-bottom:1.25rem}
li{margin-bottom:.4rem}
blockquote{border-left:3px solid var(--accent);padding:.75rem 1.5rem;margin:2rem 0;background:var(--gray-100);border-radius:0 var(--radius) var(--radius) 0;font-style:italic}
code{font-family:monospace;background:var(--gray-100);padding:.15rem .4rem;border-radius:4px;font-size:.875em}
pre{background:var(--dark);color:var(--white);padding:1.5rem;border-radius:var(--radius);overflow-x:auto;margin-bottom:1.5rem}
pre code{background:none;padding:0;color:inherit}
hr{border:none;border-top:1px solid var(--gray-200);margin:2.5rem 0}
strong{font-weight:700}

/* ── LAYOUT HELPERS ─────────────────────────────────────────────────────────── */
.section{padding-block:clamp(3.5rem,8vw,6rem)}
.section-header{text-align:center;max-width:640px;margin-inline:auto;margin-bottom:3rem}
.section-title{margin-bottom:.75rem}
.section-sub{color:var(--gray-500);font-size:1.05rem;line-height:1.65}
.section-footer{text-align:center;margin-top:2.5rem}

/* ── HERO (HOMEPAGE) ────────────────────────────────────────────────────────── */
.hero{background:var(--dark);padding-block:clamp(4rem,10vw,7rem) clamp(3.5rem,8vw,6rem);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,212,184,.07), transparent);pointer-events:none}
.hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem 4rem;align-items:center}
@media(max-width:900px){.hero-inner{grid-template-columns:1fr}}
.hero-visual{order:2}
@media(max-width:900px){.hero-visual{display:none}}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(0,212,184,.12);border:1px solid rgba(0,212,184,.25);color:var(--accent);font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.35rem 1rem;border-radius:50px;margin-bottom:1.5rem}
.hero-headline{color:var(--white);font-size:clamp(2.1rem,5.5vw,3.5rem);font-weight:800;line-height:1.1;margin-bottom:1.25rem}
.hero-sub{color:rgba(255,255,255,.7);font-size:clamp(1rem,2vw,1.15rem);margin-bottom:2rem;max-width:480px}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-stats{display:flex;gap:2rem;flex-wrap:wrap}
.stat{display:flex;flex-direction:column}
.stat-num{font-family:var(--font-head);font-size:1.8rem;font-weight:800;color:var(--accent);line-height:1}
.stat-label{font-size:.78rem;color:rgba(255,255,255,.5);margin-top:.25rem;text-transform:uppercase;letter-spacing:.05em}
/* Hero Card */
.hero-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);padding:1.5rem;backdrop-filter:blur(8px)}
.hc-row{display:flex;align-items:center;gap:.75rem;padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.hc-row:last-of-type{border-bottom:none}
.hc-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}
.hc-dot.green{background:#00D4B8} .hc-dot.blue{background:#3B82F6} .hc-dot.teal{background:#818CF8}
.hc-label{color:rgba(255,255,255,.65);font-size:.85rem;flex:1}
.hc-val{font-weight:700;font-size:.85rem}
.hc-val.up{color:#00D4B8}
.hc-val.ok{color:#818CF8}
.hc-chart{margin-top:1rem}
.hc-chart svg{width:100%;height:auto}

/* ── SERVICES GRID ──────────────────────────────────────────────────────────── */
.services-section{background:var(--white)}
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.service-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:2rem;transition:all var(--transition);position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,212,184,.03),transparent);opacity:0;transition:opacity var(--transition)}
.service-card:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.service-card:hover::before{opacity:1}
.sc-icon{font-size:2rem;margin-bottom:1rem;display:block}
.sc-title{margin-bottom:.65rem;font-size:1.15rem}
.sc-title a{color:var(--dark);text-decoration:none}
.sc-title a:hover{color:var(--accent)}
.sc-desc{color:var(--gray-500);font-size:.9rem;margin-bottom:1rem;line-height:1.6}
.sc-more{color:var(--accent);font-size:.875rem;font-weight:600}
.sc-more:hover{text-decoration:underline}

/* ── WHY SECTION ─────────────────────────────────────────────────────────────── */
.why-section{background:var(--dark)}
.why-section .section-title{color:var(--white)}
.why-section .section-sub{color:rgba(255,255,255,.6)}
.why-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:2rem}
.why-item{padding:2rem;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-lg)}
.why-icon{font-size:2.5rem;margin-bottom:1rem}
.why-item .why-title{color:var(--white);font-size:1.1rem;margin-bottom:.65rem}
.why-item .why-desc{color:rgba(255,255,255,.6);font-size:.9rem;line-height:1.6;margin-bottom:0}

/* ── LOCATIONS GRID ─────────────────────────────────────────────────────────── */
.locations-section{background:var(--gray-100)}
.locations-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem}
.location-card{display:flex;align-items:center;gap:.75rem;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1rem 1.25rem;text-decoration:none;color:var(--dark);transition:all var(--transition);font-weight:600;font-size:.9rem}
.location-card:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px);box-shadow:var(--shadow);text-decoration:none}
.lc-pin{flex-shrink:0}
.lc-name{flex:1}
.lc-arrow{margin-left:auto;color:var(--accent);transition:transform var(--transition)}
.location-card:hover .lc-arrow{transform:translateX(4px)}

/* ── BLOG GRID ──────────────────────────────────────────────────────────────── */
.blog-section{background:var(--white)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}
.blog-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition)}
.blog-card:hover{border-color:var(--gray-200);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.bc-thumb-link{display:block;overflow:hidden;aspect-ratio:3/2}
.bc-thumb{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.blog-card:hover .bc-thumb{transform:scale(1.04)}
.bc-body{padding:1.5rem}
.bc-meta{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.bc-date{font-size:.8rem;color:var(--gray-500)}
.cat-label{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--accent);background:rgba(0,212,184,.1);padding:.2rem .6rem;border-radius:50px;text-decoration:none}
.cat-label:hover{background:var(--accent);color:var(--dark);text-decoration:none}
.bc-title{font-size:1.05rem;margin-bottom:.65rem;line-height:1.35}
.bc-title a{color:var(--dark);text-decoration:none}
.bc-title a:hover{color:var(--accent)}
.bc-excerpt{color:var(--gray-500);font-size:.875rem;margin-bottom:1rem;line-height:1.6}
.bc-read-more{color:var(--accent);font-size:.875rem;font-weight:600}

/* ── CTA SECTION ─────────────────────────────────────────────────────────────── */
.cta-section{background:var(--dark)}
.cta-box{background:linear-gradient(135deg,rgba(0,212,184,.1),rgba(0,212,184,.03));border:1px solid rgba(0,212,184,.2);border-radius:var(--radius-lg);padding:clamp(2.5rem,6vw,4rem);display:flex;align-items:center;justify-content:space-between;gap:2.5rem;flex-wrap:wrap}
.cta-headline{color:var(--white);font-size:clamp(1.5rem,3vw,2rem);margin-bottom:.65rem}
.cta-sub{color:rgba(255,255,255,.65);font-size:1rem;margin-bottom:0}
.cta-actions{display:flex;gap:1rem;flex-wrap:wrap;flex-shrink:0}
.cta-inline{background:var(--gray-100);padding-block:3rem}
.cta-inline .cta-box{background:var(--white);border-color:var(--gray-200)}
.cta-inline .cta-headline{color:var(--dark)}
.cta-inline .cta-sub{color:var(--gray-500)}
.cta-inline .btn-ghost{color:var(--dark);border-color:var(--gray-200)}

/* ── BREADCRUMBS ─────────────────────────────────────────────────────────────── */
.breadcrumbs{margin-bottom:2rem}
.bc-list{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:.25rem;align-items:center;font-size:.825rem;color:var(--gray-500)}
.bc-item a{color:var(--gray-500);text-decoration:none}
.bc-item a:hover{color:var(--accent)}
.bc-sep{margin-inline:.2rem;color:var(--gray-200)}

/* ── SINGLE POST ─────────────────────────────────────────────────────────────── */
.single-main{padding-block:3rem 5rem}
.single-wrap{display:grid;grid-template-columns:1fr 340px;gap:3rem;align-items:start}
@media(max-width:1024px){.single-wrap{grid-template-columns:1fr}}
.single-sidebar{position:sticky;top:calc(var(--header-h) + 1.5rem)}
@media(max-width:1024px){.single-sidebar{position:static}}
.article-header{margin-bottom:2rem}
.article-cats{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.article-title{font-size:clamp(1.6rem,4vw,2.6rem);margin-bottom:1rem}
.article-meta{display:flex;flex-wrap:wrap;align-items:center;gap:1rem;font-size:.825rem;color:var(--gray-500)}
.article-featured-img{border-radius:var(--radius-lg);overflow:hidden;margin-bottom:2rem;aspect-ratio:16/9}
.article-thumb{width:100%;height:100%;object-fit:cover}
/* Entry content styles */
.entry-content h2{margin:2.5rem 0 1rem}
.entry-content h3{margin:2rem 0 .75rem}
.entry-content p{margin-bottom:1.4rem}
.entry-content ul,.entry-content ol{margin-bottom:1.4rem;padding-left:1.6rem}
.entry-content img{border-radius:var(--radius);margin-block:1.5rem}
.entry-content a{color:var(--accent);text-decoration:underline}
.entry-content table{width:100%;border-collapse:collapse;margin-bottom:1.5rem;font-size:.9rem}
.entry-content th,.entry-content td{padding:.75rem 1rem;border:1px solid var(--gray-200);text-align:left}
.entry-content th{background:var(--gray-100);font-weight:700}
.article-footer{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--gray-200)}
.article-tags{display:flex;flex-wrap:wrap;gap:.5rem}
.tag-label{font-size:.8rem;color:var(--gray-500);background:var(--gray-100);padding:.25rem .75rem;border-radius:50px;text-decoration:none}
.tag-label:hover{background:var(--accent);color:var(--dark);text-decoration:none}
/* Post navigation */
.post-navigation{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:3rem;padding-top:2rem;border-top:1px solid var(--gray-200)}
@media(max-width:600px){.post-navigation{grid-template-columns:1fr}}
.post-nav-link{display:flex;flex-direction:column;gap:.3rem;padding:1rem 1.25rem;background:var(--gray-100);border-radius:var(--radius);text-decoration:none;transition:all var(--transition)}
.post-nav-link:hover{background:var(--accent);text-decoration:none}
.post-nav-link:hover .pnl-dir,.post-nav-link:hover .pnl-title{color:var(--dark)}
.post-nav-next{text-align:right}
.pnl-dir{font-size:.78rem;color:var(--gray-500);font-weight:700;text-transform:uppercase;letter-spacing:.06em}
.pnl-title{font-size:.9rem;font-weight:600;color:var(--dark);line-height:1.35}
/* Sidebar */
.widget{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:1.5rem;margin-bottom:1.5rem}
.widget-title{font-size:1rem;margin-bottom:1rem;padding-bottom:.75rem;border-bottom:1px solid var(--gray-200)}
.related-posts{list-style:none;padding:0;margin:0}
.related-posts li{padding:.75rem 0;border-bottom:1px solid var(--gray-200);display:flex;flex-direction:column;gap:.2rem}
.related-posts li:last-child{border-bottom:none}
.related-posts a{color:var(--dark);font-size:.9rem;font-weight:500;text-decoration:none}
.related-posts a:hover{color:var(--accent)}
.related-posts time{font-size:.775rem;color:var(--gray-500)}
.sidebar-cta{background:var(--dark);border-radius:var(--radius-lg);padding:1.75rem;margin-bottom:1.5rem}
.sc-title{color:var(--white);font-family:var(--font-head);font-weight:700;font-size:1.1rem;margin-bottom:.65rem}
.sidebar-cta p{color:rgba(255,255,255,.6);font-size:.875rem;margin-bottom:1.25rem}

/* ── LOKALIZACJA TEMPLATE ─────────────────────────────────────────────────────── */
.lokalizacja-main{padding-block:3rem 5rem}
.lok-hero{display:grid;grid-template-columns:1fr 320px;gap:3rem 2.5rem;align-items:start;margin-bottom:4rem}
@media(max-width:900px){.lok-hero{grid-template-columns:1fr}}
.lok-headline{font-size:clamp(1.8rem,4vw,2.75rem);margin-bottom:1rem}
.lok-intro{color:var(--gray-500);font-size:1.05rem;margin-bottom:1.75rem;max-width:540px}
.lok-actions{display:flex;flex-wrap:wrap;gap:1rem}
/* Info card */
.lok-info-card{background:var(--dark);border-radius:var(--radius-lg);padding:1.75rem;color:var(--white)}
.lic-header{font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--accent);margin-bottom:1.25rem;text-transform:uppercase;letter-spacing:.06em;font-size:.8rem}
.lic-list{list-style:none;padding:0;margin:0 0 1.5rem}
.lic-list li{display:flex;align-items:flex-start;gap:.75rem;padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:.875rem;color:rgba(255,255,255,.75)}
.lic-list li:last-child{border-bottom:none}
.lic-list a{color:rgba(255,255,255,.85);text-decoration:none}
.lic-list a:hover{color:var(--accent)}
/* Services lok */
.lok-services{margin-bottom:4rem}
.lok-services h2{margin-bottom:1.5rem}
.lok-services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem}
.lok-service-item{display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);text-decoration:none;transition:all var(--transition)}
.lok-service-item:hover{border-color:var(--accent);transform:translateY(-2px);box-shadow:var(--shadow);text-decoration:none}
.lsi-title{font-weight:600;color:var(--dark);font-size:.9rem}
.lsi-city{font-size:.8rem;color:var(--gray-500);margin-left:.25rem}
.lsi-arrow{margin-left:auto;color:var(--accent)}
/* Lok content */
.lok-content{margin-bottom:3.5rem;max-width:780px}
.lok-other{margin-bottom:3rem}
.lok-other h2{margin-bottom:1.5rem}

/* ── USŁUGA TEMPLATE ─────────────────────────────────────────────────────────── */
.usluga-main{padding-block:3rem 5rem}
.usl-hero{display:grid;grid-template-columns:1fr 300px;gap:3rem 2.5rem;align-items:start;margin-bottom:4rem}
@media(max-width:900px){.usl-hero{grid-template-columns:1fr}}
.usl-headline{font-size:clamp(1.8rem,4vw,2.75rem);margin-bottom:1rem}
.usl-intro{color:var(--gray-500);font-size:1.05rem;margin-bottom:1.75rem;max-width:540px}
.usl-actions{display:flex;flex-wrap:wrap;gap:1rem}
.usl-contact-card{background:var(--dark);border-radius:var(--radius-lg);padding:1.75rem;margin-bottom:1.5rem}
.ucc-title{font-family:var(--font-head);font-weight:700;color:var(--white);margin-bottom:1rem;font-size:1rem}
.ucc-list{list-style:none;padding:0;margin:0}
.ucc-list li{color:rgba(255,255,255,.75);font-size:.875rem;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.08)}
.ucc-list li:last-child{border-bottom:none}
.ucc-list a{color:rgba(255,255,255,.9);text-decoration:none}
.ucc-list a:hover{color:var(--accent)}
.usl-areas-card{background:var(--gray-100);border-radius:var(--radius-lg);padding:1.5rem}
.uac-title{font-weight:700;font-size:.875rem;text-transform:uppercase;letter-spacing:.06em;color:var(--gray-500);margin-bottom:.75rem}
.uac-list{list-style:none;padding:0;margin:0;font-size:.875rem;color:var(--color-text)}
.uac-list li{padding:.35rem 0}
.usl-content-wrap{max-width:780px;margin-bottom:3.5rem}
.usl-locations{margin-bottom:3rem}
.usl-locations h2{margin-bottom:1.5rem}

/* ── PAGE TEMPLATE ──────────────────────────────────────────────────────────── */
.page-main{padding-block:3rem 5rem}
.page-wrap{max-width:820px}
.page-header{margin-bottom:2rem}
.page-title{font-size:clamp(1.6rem,4vw,2.5rem)}
.page-featured-img{border-radius:var(--radius-lg);overflow:hidden;margin-bottom:2rem;aspect-ratio:16/9}
.page-thumb{width:100%;height:100%;object-fit:cover}

/* ── ARCHIVE / BLOG ──────────────────────────────────────────────────────────── */
.archive-main{padding-block:3rem 5rem}
.archive-header{margin-bottom:2.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--gray-200)}
.archive-title{font-size:clamp(1.5rem,3.5vw,2.25rem);margin-bottom:.5rem}
.archive-desc{color:var(--gray-500);font-size:1rem}
/* Pagination */
.pagination{margin-top:3rem;display:flex;justify-content:center}
.pagination .nav-links{display:flex;gap:.5rem;flex-wrap:wrap;align-items:center}
.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--radius);border:1px solid var(--gray-200);color:var(--dark);text-decoration:none;font-size:.875rem;font-weight:600;transition:all var(--transition)}
.pagination .page-numbers:hover,.pagination .page-numbers.current{background:var(--accent);color:var(--dark);border-color:var(--accent);text-decoration:none}
.pagination .page-numbers.dots{border:none;background:none;width:auto}
.pagination .prev,.pagination .next{width:auto;padding-inline:.75rem;font-size:.8rem}

/* ── 404 PAGE ──────────────────────────────────────────────────────────────── */
.error404-main{padding-block:6rem}
.error-wrap{text-align:center;max-width:520px;margin-inline:auto}
.error-visual{font-family:var(--font-head);font-size:clamp(5rem,15vw,10rem);font-weight:800;color:var(--gray-200);line-height:1;margin-bottom:1rem}
.error-title{font-size:2rem;margin-bottom:.75rem}
.error-desc{color:var(--gray-500);margin-bottom:2rem}
.error-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:1rem;margin-bottom:2rem}
.error-search{max-width:380px;margin-inline:auto}
.error-search .search-form{display:flex;gap:.5rem}
.error-search input[type=search]{flex:1;padding:.6rem 1rem;border:1px solid var(--gray-200);border-radius:var(--radius);font-size:.9rem;outline:none}
.error-search input[type=search]:focus{border-color:var(--accent)}
.error-search button{padding:.6rem 1.25rem;background:var(--accent);color:var(--dark);border:none;border-radius:var(--radius);font-weight:600;cursor:pointer;transition:background var(--transition)}
.error-search button:hover{background:#00bfa5}

/* ── FAQ SHORTCODE ──────────────────────────────────────────────────────────── */
.faq-section{margin:2.5rem 0}
.faq-item{border-bottom:1px solid var(--gray-200);padding:1.25rem 0}
.faq-item:last-child{border-bottom:none}
.faq-q{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:.65rem;cursor:pointer;position:relative;padding-right:2rem}
.faq-q::after{content:'＋';position:absolute;right:0;top:0;font-size:1.2rem;color:var(--accent);font-weight:400;transition:transform var(--transition)}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{color:var(--gray-500);font-size:.9rem;line-height:1.7;display:none}
.faq-item.open .faq-a{display:block}

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-footer{background:var(--dark);color:rgba(255,255,255,.75)}
.footer-top{padding-block:clamp(3rem,6vw,5rem)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem 2rem}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{font-family:var(--font-head);font-size:1.3rem;font-weight:800;color:var(--white);display:block;margin-bottom:.75rem}
.footer-logo{max-height:36px;width:auto;margin-bottom:.75rem;filter:brightness(0) invert(1)}
.footer-tagline{color:rgba(255,255,255,.5);font-size:.875rem;margin-bottom:1.25rem;line-height:1.6}
.footer-address{font-style:normal;font-size:.875rem;line-height:1.9}
.footer-tel,.footer-email{color:rgba(255,255,255,.7);text-decoration:none}
.footer-tel:hover,.footer-email:hover{color:var(--accent)}
.footer-col-title{font-family:var(--font-head);font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.4);margin-bottom:1rem}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:.5rem}
.footer-links a{color:rgba(255,255,255,.65);font-size:.875rem;text-decoration:none;transition:color var(--transition)}
.footer-links a:hover{color:var(--accent)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-block:1.25rem}
.footer-bottom-inner{display:flex;align-items:center;flex-wrap:wrap;gap:1rem;justify-content:space-between}
.footer-copy{font-size:.8rem;color:rgba(255,255,255,.4);margin-bottom:0}
.footer-social{display:flex;gap:.75rem}
.social-link{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;background:rgba(255,255,255,.07);border-radius:8px;font-size:.7rem;font-weight:700;color:rgba(255,255,255,.6);text-decoration:none;transition:all var(--transition)}
.social-link:hover{background:var(--accent);color:var(--dark);text-decoration:none}
.footer-legal-list{list-style:none;padding:0;margin:0;display:flex;gap:1.25rem;flex-wrap:wrap}
.footer-legal-list a{font-size:.8rem;color:rgba(255,255,255,.4);text-decoration:none}
.footer-legal-list a:hover{color:var(--accent)}

/* ── ACCESSIBILITY ────────────────────────────────────────────────────────────── */
.skip-link:focus{position:fixed;top:1rem;left:1rem;z-index:9999;padding:.5rem 1rem;background:var(--accent);color:var(--dark);border-radius:var(--radius);font-weight:700}
*:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

/* ── PRINT ────────────────────────────────────────────────────────────────────── */
@media print{
  .site-header,.site-footer,.sidebar-cta,.cta-section,.hero-visual,.lok-info-card,.usl-sidebar{display:none}
  .single-wrap,.lok-hero,.usl-hero{grid-template-columns:1fr}
  body{background:#fff;color:#000}
}

/* ── MISC WP CLASSES ─────────────────────────────────────────────────────────── */
.alignnone,.aligncenter,.alignright,.alignleft{margin-block:.75rem}
.aligncenter{display:block;margin-inline:auto}
.alignright{float:right;margin-left:1.5rem}
.alignleft{float:left;margin-right:1.5rem}
.wp-caption{max-width:100%}
.wp-caption-text{font-size:.8rem;color:var(--gray-500);text-align:center;margin-top:.3rem}
.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;margin-block:1.5rem}
.gallery-item img{width:100%;height:auto;border-radius:var(--radius)}

/* ── NO-JS FALLBACK ──────────────────────────────────────────────────────────── */
.no-js .faq-a{display:block}
