/* ===== Reset & base ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter','Roboto',sans-serif;
  font-size:17px;
  line-height:1.7;
  color:#1f2330;
  background:#f4f1ea;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;border-radius:14px}
a{color:#b8332a;text-decoration:none;transition:color .2s ease}
a:hover{color:#7a1f17}
h1,h2,h3,h4{font-family:'Montserrat','Inter',sans-serif;color:#15171f;line-height:1.25;margin-bottom:.6em}
h1{font-size:2.4rem;font-weight:800;letter-spacing:-.5px}
h2{font-size:1.6rem;font-weight:700;margin-top:1.6em}
h3{font-size:1.25rem;font-weight:700;margin-top:1.2em}
p{margin-bottom:1.1em}
ul,ol{margin:0 0 1.2em 1.4em}
li{margin-bottom:.4em}

/* ===== Layout ===== */
.container{max-width:1240px;margin:0 auto;padding:0 24px}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,253,248,.92);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid #ece6d8;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.logo{display:flex;align-items:center;gap:10px;font-family:'Montserrat',sans-serif;font-weight:800;font-size:1.3rem;color:#15171f}
.logo-mark{
  width:38px;height:38px;border-radius:10px;
  background:linear-gradient(135deg,#d23b2a 0%,#f0a830 100%);
  display:grid;place-items:center;color:#fff;font-weight:800;
  box-shadow:0 6px 16px rgba(210,59,42,.25);
}
.nav{display:flex;gap:6px;flex-wrap:wrap}
.nav a{
  color:#3a3f4d;font-weight:500;font-size:.95rem;
  padding:8px 14px;border-radius:10px;
}
.nav a:hover{background:#f0e9d8;color:#b8332a}

/* ===== Hero ===== */
.hero{
  position:relative;
  margin:32px 0 48px;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(135deg,#1a2440 0%,#3d2c52 100%);
  color:#fff;
  min-height:420px;
  display:flex;align-items:center;
  isolation:isolate;
}
.hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:url('https://images.unsplash.com/photo-1547448415-e9f5b28e570d?w=1600') center/cover no-repeat;
  opacity:.35;
}
.hero-content{padding:64px 56px;max-width:760px}
.hero-eyebrow{display:inline-block;padding:6px 14px;border-radius:999px;background:rgba(255,255,255,.15);font-size:.85rem;letter-spacing:1px;text-transform:uppercase;margin-bottom:18px}
.hero h1{color:#fff;font-size:2.8rem;margin-bottom:18px}
.hero p{font-size:1.15rem;color:#e8e4d8;max-width:600px}

/* ===== Section heading ===== */
.section-title{display:flex;align-items:baseline;justify-content:space-between;margin:48px 0 24px}
.section-title h2{margin:0;font-size:1.9rem}
.section-title .meta{color:#7a7e8b;font-size:.95rem}

/* ===== Cards grid ===== */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px}
.card{
  background:#fffdf8;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(20,23,36,.06);
  transition:transform .35s ease,box-shadow .35s ease;
  display:flex;flex-direction:column;
  border:1px solid #ece6d8;
}
.card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(20,23,36,.12)}
.card-img{aspect-ratio:16/10;overflow:hidden;background:#eee}
.card-img img{width:100%;height:100%;object-fit:cover;border-radius:0;transition:transform .6s ease}
.card:hover .card-img img{transform:scale(1.06)}
.card-body{padding:22px 24px 26px;flex:1;display:flex;flex-direction:column}
.card-tag{display:inline-block;font-size:.75rem;letter-spacing:1.2px;text-transform:uppercase;color:#b8332a;font-weight:700;margin-bottom:10px}
.card h3{font-size:1.2rem;margin:0 0 10px;color:#15171f}
.card p{color:#5a5f6e;font-size:.97rem;margin-bottom:16px;flex:1}
.card-link{font-weight:600;color:#b8332a;font-size:.95rem}
.card-link::after{content:" →";transition:margin-left .2s ease;display:inline-block}
.card:hover .card-link::after{margin-left:6px}

/* ===== Intro block ===== */
.intro{
  background:#fffdf8;border-radius:20px;padding:40px 44px;margin-bottom:48px;
  border:1px solid #ece6d8;
  display:grid;grid-template-columns:1.4fr 1fr;gap:40px;align-items:center;
}
.intro h2{margin-top:0}
.intro-stats{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.stat{background:#f4f1ea;border-radius:14px;padding:18px}
.stat-num{font-family:'Montserrat',sans-serif;font-weight:800;font-size:1.7rem;color:#b8332a}
.stat-label{font-size:.85rem;color:#5a5f6e;margin-top:4px}

/* ===== Article layout ===== */
.article-layout{
  display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:48px;
  margin:40px 0 64px;
}
.article-main{
  background:#fffdf8;border-radius:20px;padding:48px 56px;
  border:1px solid #ece6d8;
}
.article-main img{margin:24px 0;box-shadow:0 8px 24px rgba(20,23,36,.08)}
.article-meta{display:flex;gap:14px;color:#7a7e8b;font-size:.9rem;margin-bottom:18px}
.article-meta .tag{background:#f0e9d8;color:#b8332a;padding:4px 12px;border-radius:999px;font-weight:600}
.article-main h1{margin-bottom:18px}
.article-main h2{font-size:1.5rem;border-left:4px solid #d23b2a;padding-left:14px}
.article-main blockquote{
  margin:24px 0;padding:18px 24px;
  background:#f4f1ea;border-left:4px solid #f0a830;border-radius:10px;
  font-style:italic;color:#3a3f4d;
}

/* ===== Sidebar ===== */
.sidebar{display:flex;flex-direction:column;gap:24px}
.widget{background:#fffdf8;border:1px solid #ece6d8;border-radius:18px;padding:24px}
.widget h3{margin-top:0;font-size:1.05rem;text-transform:uppercase;letter-spacing:1.2px;color:#7a7e8b}
.widget ul{list-style:none;margin:0;padding:0}
.widget li{margin-bottom:12px;padding-bottom:12px;border-bottom:1px solid #f0e9d8}
.widget li:last-child{border:0;margin:0;padding:0}
.widget li a{color:#15171f;font-weight:500;font-size:.95rem}
.widget li a:hover{color:#b8332a}

/* ===== Ads ===== */
.ad{
  background:linear-gradient(135deg,#fff7e8 0%,#fdeede 100%);
  border:1px dashed #e6c98a;
  border-radius:14px;
  padding:18px 22px;
  margin:24px 0;
  text-align:center;
  color:#7a5a1f;
  font-size:.9rem;
}
.ad-label{display:block;font-size:.7rem;letter-spacing:1.5px;text-transform:uppercase;color:#b09660;margin-bottom:6px}

/* ===== Footer ===== */
.site-footer{
  background:#15171f;color:#c8cbd4;margin-top:64px;padding:56px 0 28px;
}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:48px;margin-bottom:36px}
.site-footer h4{color:#fff;font-size:1rem;margin-bottom:16px;text-transform:uppercase;letter-spacing:1.2px}
.site-footer p{color:#9aa0b0;font-size:.95rem}
.site-footer ul{list-style:none;margin:0;padding:0}
.site-footer li{margin-bottom:8px}
.site-footer a{color:#c8cbd4;font-size:.95rem}
.site-footer a:hover{color:#f0a830}
.footer-bottom{border-top:1px solid #2a2d3a;padding-top:22px;text-align:center;color:#7a7e8b;font-size:.85rem}

/* ===== Responsive ===== */
@media (max-width: 960px){
  h1{font-size:1.9rem}
  .hero{min-height:340px}
  .hero h1{font-size:2rem}
  .hero-content{padding:40px 28px}
  .intro{grid-template-columns:1fr;padding:28px}
  .article-layout{grid-template-columns:1fr;gap:28px}
  .article-main{padding:28px 24px}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .nav a{padding:6px 10px;font-size:.9rem}
}
@media (max-width: 520px){
  .hero h1{font-size:1.6rem}
  .header-inner{flex-direction:column;gap:12px}
  .cards{grid-template-columns:1fr}
}

.lead{font-size:1.15rem;color:#3a3f4d;font-weight:500;margin-bottom:1.4em}
.article-main ul li::marker{color:#b8332a}
