/* Dialoq — A Reader's Review of Mobile Plans in Sri Lanka
   Palette: tea-leaf emerald (#0e6b46) + cinnamon (#a64a1e) on warm coconut cream (#f6efdc)
   Body: Crimson Pro · UI: IBM Plex Sans
*/

:root {
    --emerald: #0e6b46;
    --emerald-deep: #0a4a31;
    --cinnamon: #a64a1e;
    --cinnamon-deep: #7a3315;
    --gold: #d4a854;
    --cream: #f6efdc;
    --cream-warm: #ede2c2;
    --paper: #fdf9eb;
    --ink: #1a1612;
    --ink-soft: #45382c;
    --ink-muted: #6b5d4f;
    --line: #d8c9a3;
    --shadow-sm: 0 1px 2px rgba(10, 74, 49, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 74, 49, 0.10);
    --shadow-lg: 0 20px 50px rgba(10, 74, 49, 0.14);
    --radius: 3px;
    --radius-lg: 8px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--cinnamon); }
h1, h2, h3, h4 { font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 600; color: var(--emerald-deep); line-height: 1.25; margin: 0 0 .55em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 13px 26px; border-radius: var(--radius);
    font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; font-size: .95rem;
    text-decoration: none; cursor: pointer; border: 1px solid transparent;
    transition: all .2s; letter-spacing: .01em;
}
.btn-primary { background: var(--emerald); color: var(--cream); }
.btn-primary:hover { background: var(--emerald-deep); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--cream); }
.btn-outline { background: transparent; color: var(--emerald-deep); border-color: var(--emerald-deep); }
.btn-outline:hover { background: var(--emerald-deep); color: var(--cream); }

/* ===== TOPBAR ===== */
.topbar { background: var(--emerald-deep); color: var(--cream-warm); font-family: 'IBM Plex Sans', sans-serif; font-size: .82rem; padding: 9px 0; letter-spacing: .01em; }
.topbar-inner { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-sep { opacity: .4; }

/* ===== HEADER ===== */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; background: var(--cinnamon); color: var(--cream);
    font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 1rem;
    border-radius: var(--radius); letter-spacing: .04em;
    box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--cinnamon);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--emerald-deep); letter-spacing: -0.01em; }
.logo-tag { font-family: 'Crimson Pro', serif; font-style: italic; font-size: .82rem; color: var(--ink-muted); }
.footer-brand .logo-mark { width: 36px; height: 36px; font-size: .82rem; box-shadow: none; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; color: var(--cream); font-size: 1.1rem; margin-bottom: 14px; }

.nav { display: flex; gap: 30px; font-family: 'IBM Plex Sans', sans-serif; }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; text-decoration: none; position: relative; padding: 4px 0; }
.nav a:hover { color: var(--cinnamon); }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--cinnamon); transform: scaleX(0); transition: transform .2s; transform-origin: left; }
.nav a:hover::after { transform: scaleX(1); }

.burger { display: none; background: none; border: 0; width: 36px; height: 36px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.burger span { display: block; height: 2px; background: var(--emerald-deep); transition: all .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 580px; display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.5); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(10,74,49,.85) 0%, rgba(14,107,70,.55) 60%, rgba(166,74,30,.4) 100%); }
.hero-inner { position: relative; padding: 100px 24px; max-width: 880px; }
.hero-eyebrow { display: inline-block; font-family: 'IBM Plex Sans', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-bottom: 22px; font-weight: 600; }
.hero h1 { color: var(--cream); margin-bottom: 22px; font-family: 'Crimson Pro', serif; font-weight: 700; letter-spacing: -0.01em; }
.hero-lede { font-family: 'Crimson Pro', serif; font-size: 1.22rem; line-height: 1.6; color: rgba(255,255,255,.92); max-width: 760px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 32px; flex-wrap: wrap; font-family: 'IBM Plex Sans', sans-serif; font-size: .9rem; color: rgba(255,255,255,.85); }
.hero-meta strong { color: var(--gold); font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-warm); }
.section-head { max-width: 760px; margin: 0 auto 56px; padding-left: 24px; border-left: 4px solid var(--cinnamon); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }
.eyebrow { display: inline-block; font-family: 'IBM Plex Sans', sans-serif; font-size: .76rem; text-transform: uppercase; letter-spacing: .2em; color: var(--cinnamon); margin-bottom: 12px; font-weight: 600; }

/* ===== OPERATORS STRIP (homepage) ===== */
.operators-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); }
.operators-strip > div { padding: 28px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.operators-strip > div:last-child { border-right: 0; }
.operators-strip .op-name { font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--emerald-deep); }
.operators-strip .op-meta { font-family: 'IBM Plex Sans', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cinnamon); font-weight: 600; }
.operators-strip p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.operators-strip a { color: var(--emerald-deep); font-family: 'IBM Plex Sans', sans-serif; font-size: .88rem; font-weight: 500; align-self: flex-start; margin-top: 4px; text-decoration: none; border-bottom: 1px solid var(--cinnamon); padding-bottom: 1px; }
.operators-strip a:hover { color: var(--cinnamon); }

/* ===== ARTICLE CARDS ===== */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 36px; }
.article-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--emerald); }
.article-image { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--cream-warm); }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-image img { transform: scale(1.04); }
.article-category { position: absolute; top: 14px; left: 14px; background: var(--emerald-deep); color: var(--cream); padding: 5px 11px; font-family: 'IBM Plex Sans', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border-radius: 100px; }
.article-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.article-body h3 { margin-bottom: 14px; font-family: 'Crimson Pro', serif; font-size: 1.45rem; line-height: 1.25; font-weight: 700; }
.article-body h3 a { color: var(--emerald-deep); text-decoration: none; }
.article-body h3 a:hover { color: var(--cinnamon); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-body p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 18px; flex: 1; }
.article-meta { display: flex; gap: 8px; flex-wrap: wrap; color: var(--ink-muted); font-family: 'IBM Plex Sans', sans-serif; font-size: .82rem; padding-top: 14px; border-top: 1px dashed var(--line); }

/* ===== ABOUT PREVIEW ===== */
.about-preview { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.about-preview-text p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.8; }
.about-preview-stats { display: grid; grid-template-columns: 1fr; gap: 0; }
.stat { background: var(--paper); padding: 26px 30px; border-bottom: 1px solid var(--line); border-left: 4px solid var(--cinnamon); }
.stat:last-child { border-bottom: 1px solid var(--line); }
.stat-num { display: block; font-family: 'Crimson Pro', serif; font-size: 2.2rem; color: var(--emerald-deep); font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: 'IBM Plex Sans', sans-serif; font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; }
.feature { text-align: left; padding-left: 18px; border-left: 2px solid var(--gold); }
.feature h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--emerald-deep); }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--emerald-deep); color: var(--cream); }
.newsletter h2 { color: var(--cream); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.newsletter p { color: rgba(255,255,255,.85); margin-bottom: 0; font-size: 1.05rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.10); color: var(--cream); font-family: 'IBM Plex Sans', sans-serif; font-size: .95rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus { outline: 2px solid var(--gold); background: rgba(255,255,255,.15); }
.newsletter-form .btn-primary { background: var(--gold); color: var(--emerald-deep); }
.newsletter-form .btn-primary:hover { background: var(--cream); color: var(--emerald-deep); }
.newsletter-note { grid-column: 1 / -1; font-family: 'IBM Plex Sans', sans-serif; font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 16px; }
.newsletter-note a { color: var(--gold); }

/* ===== ARTICLE PAGE ===== */
.article-hero { background: var(--emerald-deep); color: var(--cream); padding: 80px 0 60px; position: relative; }
.article-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--cinnamon) 0%, var(--gold) 100%); }
.article-hero .breadcrumbs { margin-bottom: 18px; font-family: 'IBM Plex Sans', sans-serif; font-size: .85rem; color: rgba(255,255,255,.7); }
.article-hero .breadcrumbs a { color: var(--gold); text-decoration: none; }
.article-hero .breadcrumbs a:hover { text-decoration: underline; }
.article-hero .article-subtitle { font-family: 'IBM Plex Sans', sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.article-hero h1 { color: var(--cream); margin-bottom: 18px; font-family: 'Crimson Pro', serif; }
.article-hero .lede { font-family: 'Crimson Pro', serif; font-size: 1.2rem; color: rgba(255,255,255,.88); max-width: 800px; line-height: 1.6; }
.article-hero .meta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-family: 'IBM Plex Sans', sans-serif; font-size: .88rem; color: rgba(255,255,255,.85); }
.article-hero .meta-row img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.article-hero .meta-row .author-name { color: var(--gold); font-weight: 600; }

.article-body-wrap { padding: 60px 0 80px; }
.article-content { max-width: 720px; margin: 0 auto; font-size: 1.15rem; line-height: 1.8; color: var(--ink); }
.article-content h2 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.5rem; margin: 2em 0 .55em; color: var(--emerald-deep); padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.article-content h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.18rem; margin: 1.7em 0 .45em; color: var(--cinnamon-deep); }
.article-content p { margin-bottom: 1.15em; }
.article-content figure { margin: 2em 0; }
.article-content figure img { border-radius: var(--radius-lg); width: 100%; }
.article-content figcaption { font-size: .85rem; color: var(--ink-muted); text-align: center; margin-top: 10px; font-style: italic; }
.article-content blockquote { border-left: 4px solid var(--gold); padding: .4em 0 .4em 22px; margin: 1.6em 0; font-family: 'Crimson Pro', serif; font-size: 1.2rem; color: var(--emerald-deep); font-style: italic; }
.article-content ul, .article-content ol { margin: 0 0 1.2em 1.2em; }
.article-content li { margin-bottom: .55em; }
.article-content strong { color: var(--emerald-deep); }
.article-content table { width: 100%; border-collapse: collapse; margin: 2em 0; font-family: 'IBM Plex Sans', sans-serif; font-size: .95rem; background: var(--paper); }
.article-content table th { background: var(--emerald-deep); color: var(--cream); padding: 12px 14px; text-align: left; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.article-content table td { padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.article-content table tr:last-child td { border-bottom: 0; }

.notice-box { background: var(--cream-warm); border: 1px solid var(--line); border-left: 4px solid var(--cinnamon); padding: 22px 26px; border-radius: var(--radius); margin: 0 0 2em; font-family: 'IBM Plex Sans', sans-serif; }
.notice-box .notice-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--cinnamon-deep); font-weight: 600; margin-bottom: 8px; }
.notice-box p { font-size: .95rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }

.author-box { max-width: 720px; margin: 50px auto 0; background: var(--cream-warm); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 22px; align-items: flex-start; border-left: 4px solid var(--emerald); }
.author-box img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box h4 { margin: 0 0 4px; font-family: 'IBM Plex Sans', sans-serif; font-size: 1.08rem; color: var(--emerald-deep); }
.author-box .role { font-family: 'IBM Plex Sans', sans-serif; font-size: .78rem; color: var(--cinnamon); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; font-weight: 600; }
.author-box p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

.related { max-width: var(--container); margin: 70px auto 0; padding: 0 24px; }
.related h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.4rem; margin-bottom: 30px; padding-bottom: 12px; border-bottom: 2px solid var(--cinnamon); display: inline-block; color: var(--emerald-deep); }

/* ===== BLOG LISTING ===== */
.page-head { background: var(--cream-warm); padding: 70px 0 50px; }
.page-head .container { max-width: 920px; }
.page-head h1 { margin-bottom: 14px; font-family: 'Crimson Pro', serif; font-weight: 700; }
.page-head p { color: var(--ink-soft); max-width: 720px; font-size: 1.06rem; }
.category-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; font-family: 'IBM Plex Sans', sans-serif; }
.category-filter a { background: transparent; padding: 7px 16px; font-size: .85rem; color: var(--ink-soft); border: 1px solid var(--line); text-decoration: none; transition: all .2s; border-radius: 100px; }
.category-filter a.active, .category-filter a:hover { background: var(--emerald-deep); color: var(--cream); border-color: var(--emerald-deep); }

/* ===== CONTACT / ABOUT PAGES ===== */
.content-wrap { padding: 60px 0 80px; }
.content-narrow { max-width: 760px; margin: 0 auto; font-size: 1.08rem; }
.content-narrow h2 { margin-top: 1.8em; font-family: 'IBM Plex Sans', sans-serif; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.content-narrow h3 { font-family: 'IBM Plex Sans', sans-serif; }
.content-narrow p { color: var(--ink); line-height: 1.78; }
.content-narrow ul li { color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; margin-top: 20px; }
.contact-form { font-family: 'IBM Plex Sans', sans-serif; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: .88rem; color: var(--ink); margin-bottom: 6px; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-family: inherit; font-size: .95rem; background: var(--paper); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.contact-form textarea { min-height: 150px; resize: vertical; font-family: 'Crimson Pro', serif; font-size: 1rem; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.consent input { width: auto; margin-top: 3px; }
.contact-info { background: var(--cream-warm); padding: 32px; border-radius: var(--radius-lg); border-top: 4px solid var(--cinnamon); }
.contact-info h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.1rem; margin-bottom: 18px; color: var(--emerald-deep); }
.contact-info dl { margin: 0; }
.contact-info dt { font-family: 'IBM Plex Sans', sans-serif; font-size: .76rem; color: var(--cinnamon); text-transform: uppercase; letter-spacing: .12em; margin-top: 16px; margin-bottom: 4px; font-weight: 700; }
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd { margin: 0; color: var(--ink); font-size: .96rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 30px; }
.team-card { background: var(--paper); padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); text-align: left; border-top: 3px solid var(--emerald); }
.team-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.team-card h4 { margin: 0 0 4px; font-family: 'IBM Plex Sans', sans-serif; font-size: 1.05rem; color: var(--emerald-deep); }
.team-card .role { font-family: 'IBM Plex Sans', sans-serif; font-size: .78rem; color: var(--cinnamon); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; font-weight: 600; }
.team-card p { color: var(--ink-soft); font-size: .95rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 60px 0 24px; font-family: 'IBM Plex Sans', sans-serif; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 40px; }
.footer-col h4 { color: var(--gold); font-family: 'IBM Plex Sans', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-desc { color: rgba(255,255,255,.62); font-family: 'Crimson Pro', serif; font-size: .96rem; line-height: 1.65; margin-bottom: 14px; }
.footer-address { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.6; margin: 0; }
.contact-list span { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom span:first-child { max-width: 760px; }
.footer-legal-links a { color: rgba(255,255,255,.6); }
.footer-legal-links a:hover { color: var(--gold); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: var(--cream); padding: 18px 0; z-index: 200; border-top: 3px solid var(--gold); font-family: 'IBM Plex Sans', sans-serif; }
.cookie-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.85); flex: 1; min-width: 260px; }
.cookie-banner a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 20px; font-size: .88rem; }
.cookie-banner .btn-ghost { color: var(--cream); }
.cookie-banner .btn-primary { background: var(--gold); color: var(--ink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-preview, .contact-grid, .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .operators-strip { grid-template-columns: 1fr 1fr; }
    .operators-strip > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .operators-strip > div:nth-child(2n) { border-right: 0; }
    .operators-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
    .hero-meta { gap: 22px; }
}
@media (max-width: 720px) {
    .section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; gap: 0; padding: 20px; box-shadow: var(--shadow-md); border-top: 1px solid var(--line); }
    .nav.open { display: flex; }
    .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
    .nav a:last-child { border-bottom: 0; }
    .burger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .operators-strip { grid-template-columns: 1fr; }
    .operators-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .operators-strip > div:last-child { border-bottom: 0; }
    .articles-grid { gap: 24px; }
    .hero { min-height: 520px; }
    .hero-inner { padding: 70px 24px; }
    .topbar-inner { font-size: .75rem; }
    .article-content table { font-size: .85rem; }
    .article-content table th, .article-content table td { padding: 8px 10px; }
}
