:root{
  --bg:#0b0b10;--surface:#15151c;--line:#2a2a35;--text:#f3f4f6;--muted:#94a3b8;--accent:#14b8a6;--gold:#c9a962;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 1.25rem}
.site-header{position:sticky;top:0;z-index:50;background:rgba(11,11,16,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:64px}
.site-brand{font-size:1.15rem;font-weight:800;color:var(--text);letter-spacing:-.02em}
.site-brand span{color:var(--gold)}
.nav{display:flex;gap:1.25rem;flex-wrap:wrap;list-style:none;margin:0;padding:0}
.nav a{color:var(--muted);font-weight:600;font-size:.92rem}
.nav a:hover,.nav .current-menu-item a{color:var(--text);text-decoration:none}
.hero{padding:2.5rem 0 1.5rem}
.hero h1{font-size:clamp(1.75rem,4vw,2.5rem;line-height:1.15;margin:0 0 .75rem;letter-spacing:-.03em}
.hero p{color:var(--muted);max-width:58ch;margin:0}
.section{padding:2rem 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:1rem;margin-bottom:1.25rem}
.section-head h2{margin:0;font-size:1.35rem}
.section-head a{font-size:.9rem;color:var(--muted)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.25rem}
.blog-card{background:var(--surface);border:1px solid var(--line);border-radius:14px;overflow:hidden}
.blog-card a{color:inherit;text-decoration:none;display:block}
.blog-card__img{width:100%;aspect-ratio:16/10;object-fit:cover}
.blog-card__body{padding:1rem}
.blog-card__body time{font-size:.78rem;color:var(--muted)}
.blog-card__body h3{margin:.35rem 0 .5rem;font-size:1.05rem}
.blog-card__body p{margin:0;color:var(--muted);font-size:.9rem}
.layout-with-sidebar{display:grid;grid-template-columns:1fr 300px;gap:2rem;padding:2rem 0}
.entry-header{margin-bottom:1.25rem}
.entry-title{font-size:clamp(1.6rem,3vw,2.2rem);line-height:1.2;margin:0 0 .5rem}
.entry-meta{color:var(--muted);font-size:.88rem}
.entry-content{line-height:1.75;color:#d1d5db}
.entry-content h2,.entry-content h3{margin-top:2rem}
.prose-sidebar .widget{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:1rem;margin-bottom:1rem}
.widget-title{margin:0 0 .75rem;font-size:1rem}
.site-footer{border-top:1px solid var(--line);padding:2rem 0;color:var(--muted);font-size:.88rem}
.site-footer .nav{justify-content:center}
.breadcrumbs{padding:.75rem 0 0;font-size:.85rem;color:var(--muted)}
.breadcrumbs__list{display:flex;flex-wrap:wrap;gap:.35rem;list-style:none;margin:0;padding:0}
.breadcrumbs__item:not(:last-child)::after{content:"/";margin-left:.35rem;color:#64748b}
.breadcrumbs a{color:var(--muted);text-decoration:none}
.breadcrumbs a:hover{color:var(--text)}
.escort-seo-internal{margin-top:2rem;padding:1rem;border:1px solid var(--line);border-radius:10px;background:var(--surface)}
@media (max-width:900px){.layout-with-sidebar{grid-template-columns:1fr}}
