@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

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

:root {
  --navy: #0f1923;
  --navy2: #1a2535;
  --gold: #d4a843;
  --gold-light: #f0c96a;
  --text: #1e2530;
  --text-muted: #6b7280;
  --bg: #f5f4f0;
  --white: #ffffff;
  --border: #e5e2d9;
  --red: #e03c31;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-date { letter-spacing: .04em; }
.topbar-links a {
  color: rgba(255,255,255,0.55);
  margin-left: 18px;
  font-size: 12px;
  transition: color .2s;
}
.topbar-links a:hover { color: var(--gold); }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* LOGO */
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-svg { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* NAV */
nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 4px;
  transition: all .2s;
  letter-spacing: .01em;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
nav.main-nav a.cat-tech { border-bottom: 2px solid #4ea8de; }
nav.main-nav a.cat-health { border-bottom: 2px solid #52c28a; }
nav.main-nav a.cat-finance { border-bottom: 2px solid var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-subscribe {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .1s;
}
.btn-subscribe:hover { background: var(--gold-light); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: var(--navy2);
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: block; }

/* ── WRAP ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HERO / FEATURED ── */
.hero {
  background: var(--navy2);
  padding: 48px 0 56px;
  margin-bottom: 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.hero-main { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #2a3547;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2535 0%, #2a3a4f 100%);
}
.hero-body { margin-top: 20px; }
.category-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.badge-tech { background: #4ea8de22; color: #4ea8de; border: 1px solid #4ea8de44; }
.badge-health { background: #52c28a22; color: #52c28a; border: 1px solid #52c28a44; }
.badge-finance { background: #d4a84322; color: var(--gold); border: 1px solid #d4a84344; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-title a { color: var(--white); }
.hero-title a:hover { color: var(--gold-light); }
.hero-excerpt { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.hero-meta { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.hero-meta span + span::before { content: ' · '; }

/* HERO SIDEBAR */
.hero-sidebar { display: flex; flex-direction: column; gap: 2px; }
.side-card {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: opacity .2s;
}
.side-card:last-child { border-bottom: none; }
.side-card:hover { opacity: .85; }
.side-card-img {
  width: 80px;
  height: 64px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: #2a3547;
}
.side-card-img img { width: 100%; height: 100%; object-fit: cover; }
.side-card-body { flex: 1; }
.side-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 5px;
}
.side-card-title a:hover { color: var(--gold-light); }
.side-card-meta { font-size: 11.5px; color: rgba(255,255,255,0.38); }

/* ── SECTION TITLE ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  position: relative;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.view-all {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s;
}
.view-all:hover { color: var(--text); }

/* ── ARTICLE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8e5dc;
  position: relative;
}
.card-img a { display: block; width: 100%; height: 100%; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.article-card:hover .card-img img { transform: scale(1.04); }
.side-card-img a { display: block; width: 100%; height: 100%; }
.side-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.side-card:hover .side-card-img img { transform: scale(1.05); }
.hero-img-wrap a { display: block; width: 100%; height: 100%; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; transition: transform .4s; }
.hero-main:hover .hero-img-wrap img { transform: scale(1.03); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-body .category-badge { margin-bottom: 8px; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
}
.card-title a:hover { color: var(--gold); }
.card-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.card-meta {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-meta .dot { width: 3px; height: 3px; background: #d1d5db; border-radius: 50%; }
.read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .02em;
  transition: color .2s;
}
.read-more:hover { color: var(--text); }
.read-more::after { content: ' →'; }

/* ── FEATURED WIDE CARD ── */
.featured-wide {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  margin-bottom: 52px;
  transition: box-shadow .25s;
}
.featured-wide:hover { box-shadow: var(--shadow-hover); }
.featured-wide .card-img { aspect-ratio: unset; min-height: 260px; }
.featured-wide .card-body { padding: 32px; justify-content: center; }
.featured-wide .card-title { font-size: 24px; margin-bottom: 12px; }
.featured-wide .card-excerpt { font-size: 15px; }

/* ── NEWSLETTER STRIP ── */
.newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, #162032 100%);
  border-radius: var(--radius);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 6px;
}
.newsletter-text p { color: rgba(255,255,255,0.6); font-size: 14.5px; }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter-form input[type="email"] {
  padding: 12px 18px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  width: 260px;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── TAGS CLOUD ── */
.tags-wrap { margin-bottom: 52px; }
.tags-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}
.tag:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  margin-bottom: 18px;
}
.footer-contact { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── ARTICLE PAGE ── */
.article-header {
  background: var(--navy2);
  padding: 52px 0 48px;
}
.article-header .category-badge { margin-bottom: 14px; }
.article-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 820px;
  margin-bottom: 18px;
}
.article-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.article-meta-row span + span::before { content: '·'; margin-right: 18px; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  padding: 48px 0;
  align-items: start;
}
.article-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/9;
  background: #ddd;
}
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 34px 0 14px;
  color: var(--text);
}
.article-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 26px 0 10px;
  color: var(--text);
}
.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 22px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
  list-style: disc;
}
.article-body li { font-size: 16px; line-height: 1.75; color: #374151; margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 14px 22px;
  background: #fffbf0;
  margin: 28px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  border-radius: 0 6px 6px 0;
}

/* SIDEBAR */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.sidebar-recent-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-thumb {
  width: 68px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.sidebar-item-title a:hover { color: var(--gold); }
.sidebar-item-meta { font-size: 11.5px; color: var(--text-muted); margin-top: 4px; }

.sidebar-subscribe-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  padding: 13px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}
.sidebar-subscribe-btn:hover { background: var(--gold-light); }

/* SHARE */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.share-row span { font-weight: 600; font-size: 14px; margin-right: 6px; }
.share-btn {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-fb { background: #1877f2; color: #fff; }
.share-tw { background: #000; color: #fff; }
.share-li { background: #0a66c2; color: #fff; }
.share-copy { background: #e5e7eb; color: var(--text); }

/* RELATED */
.related-section { margin-top: 52px; padding-top: 36px; border-top: 2px solid var(--border); }

/* ── STATIC PAGES ── */
.page-header {
  background: var(--navy2);
  padding: 52px 0;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,0.55); font-size: 15px; }

.page-content {
  max-width: 860px;
  margin: 52px auto 72px;
  padding: 0 20px;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 40px 0 14px;
  color: var(--text);
}
.page-content h3 { font-size: 18px; font-weight: 600; margin: 26px 0 10px; }
.page-content p { font-size: 16px; line-height: 1.8; color: #374151; margin-bottom: 18px; }
.page-content ul { padding-left: 22px; margin-bottom: 18px; list-style: disc; }
.page-content li { font-size: 15.5px; line-height: 1.75; color: #374151; margin-bottom: 5px; }
.page-content a { color: var(--gold); }
.page-content a:hover { text-decoration: underline; }
.updated-note { font-size: 13px; color: var(--text-muted); margin-bottom: 36px; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 13.5px; line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-accept-all {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
}
.btn-accept-all:hover { background: var(--gold-light); }
.btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.btn-reject:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-manage {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: none;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
  transition: color .2s;
}
.btn-manage:hover { color: var(--gold); }

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#cookie-modal.open { opacity: 1; pointer-events: all; }
.cookie-modal-box {
  background: var(--white);
  border-radius: 10px;
  max-width: 560px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.cookie-modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.cookie-modal-box > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.cookie-toggle-info p { font-size: 12.5px; color: var(--text-muted); }
/* toggle switch */
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 24px;
  cursor: pointer;
  transition: background .25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: .6; cursor: not-allowed; }

.cookie-modal-actions { display: flex; gap: 10px; margin-top: 26px; }
.btn-save-prefs {
  flex: 1;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.btn-save-prefs:hover { background: var(--gold-light); }
.btn-accept-modal {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.btn-accept-modal:hover { background: var(--navy2); }

/* ── SUBSCRIBE MODAL ── */
#subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#subscribe-modal.open { opacity: 1; pointer-events: all; }
.subscribe-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 500px;
  width: 95%;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
}
.subscribe-box .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: color .2s;
}
.subscribe-box .close-modal:hover { color: var(--text); }
.subscribe-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 6px;
}
.subscribe-box > p { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.plans-row { display: flex; gap: 10px; margin-bottom: 22px; }
.plan-card {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.plan-card.selected { border-color: var(--gold); background: #fffbf0; }
.plan-card.popular::after {
  content: 'Popular';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: .04em;
}
.plan-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.plan-price { font-size: 20px; font-weight: 800; color: var(--gold); }
.plan-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.plan-features { font-size: 11px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }

.sub-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.sub-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color .2s;
}
.sub-form input[type="email"]:focus { border-color: var(--gold); }
.sub-form .checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sub-form .checkbox-row input { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }
.sub-form .checkbox-row a { color: var(--gold); text-decoration: underline; }
.btn-sub-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-sub-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px 0 72px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  margin-bottom: 16px;
  transition: border-color .2s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.btn-send {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.btn-send:hover { background: var(--gold-light); }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-icon { font-size: 20px; margin-top: 2px; }
.info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.info-item a:hover { color: var(--gold); }

/* COOKIE SETTINGS PAGE */
.cookie-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-category-head h3 { font-size: 17px; font-weight: 600; }
.cookie-category p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.save-cookie-settings {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: background .2s;
}
.save-cookie-settings:hover { background: var(--gold-light); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .newsletter { padding: 32px; }
  .newsletter-form input[type="email"] { width: 200px; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: relative; top: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-wide { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input[type="email"] { width: 100%; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-title { font-size: 26px; }
  .article-h1 { font-size: 28px; }
  .plans-row { flex-direction: column; }
}

@media (max-width: 520px) {
  .cards-grid { grid-template-columns: 1fr; }
  .topbar .wrap { flex-direction: column; gap: 4px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .subscribe-box { padding: 26px 18px; }
  .cookie-modal-box { padding: 24px 18px; }
}
