:root{
  --green:#003631;
  --cream:#F8F4EE;
  --orange:#D4621A;
  --butter:#FFEDA8;
  --gold:#BF8414;
  --footer:#001a14;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'DM Sans',sans-serif;
  color:var(--green);
  background:var(--cream);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.serif{font-family:'DM Serif Display',serif;font-weight:400;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:820px;margin:0 auto;padding:0 24px;}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 30px;border-radius:100px;font-weight:600;font-size:15.5px;
  cursor:pointer;border:none;transition:transform .3s ease, box-shadow .3s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-orange{background:var(--orange);color:#fff;box-shadow:0 10px 24px -10px rgba(212,98,26,.55);}

header{
  background:rgba(248,244,238,.95);
  border-bottom:1px solid rgba(0,54,49,.08);
  position:sticky;top:0;z-index:10;
}
header nav{
  max-width:1000px;margin:0 auto;padding:20px 24px;
  display:flex;align-items:center;justify-content:space-between;
}
header .logo{font-family:'DM Serif Display',serif;font-size:22px;color:var(--green);}
.nav-left{display:flex;align-items:center;gap:28px;}
.nav-link{font-size:14px;font-weight:600;color:var(--green);opacity:.72;transition:opacity .3s ease;}
.nav-link:hover{opacity:1;}
@media (max-width:480px){
  .nav-left{gap:14px;}
  .nav-link{font-size:12px;}
}

main{padding:56px 0 90px;}
.breadcrumb{font-size:13.5px;color:var(--gold);font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:22px;}
.breadcrumb a{color:var(--gold);border-bottom:1px solid rgba(191,132,20,.4);}

article h1{
  font-size:clamp(28px,4.4vw,42px);
  line-height:1.15;color:var(--green);margin-bottom:22px;letter-spacing:-.5px;
}
article .lead{font-size:19px;color:rgba(0,54,49,.8);margin-bottom:40px;font-style:italic;}
article h2{
  font-size:clamp(23px,3vw,30px);color:var(--green);margin:48px 0 18px;letter-spacing:-.3px;
}
article h3{
  font-size:19px;color:var(--green);margin:28px 0 12px;font-family:'DM Sans';font-weight:700;
}
article p{font-size:16.5px;color:rgba(0,54,49,.85);margin-bottom:18px;}
article ul{margin:0 0 20px 22px;}
article li{font-size:16.5px;color:rgba(0,54,49,.85);margin-bottom:10px;}
article a.inline-link{color:var(--orange);border-bottom:1px solid rgba(212,98,26,.4);font-weight:600;}
article a.inline-link:hover{border-bottom-color:var(--orange);}

.cta-box{
  background:var(--green);color:var(--butter);
  border-radius:22px;padding:40px 36px;margin:56px 0 40px;text-align:center;
}
.cta-box p{color:var(--butter);font-size:19px;font-family:'DM Serif Display',serif;margin-bottom:22px;max-width:520px;margin-left:auto;margin-right:auto;}

.related{margin-top:56px;padding-top:32px;border-top:1px solid rgba(0,54,49,.12);}
.related h2{margin-top:0;font-size:22px;margin-bottom:18px;}
.related ul{margin-left:0;list-style:none;}
.related li{margin-bottom:10px;}
.related a{color:var(--orange);font-weight:600;}
.related a:hover{border-bottom:1px solid var(--orange);}

/* ---------- BLOG INDEX ---------- */
.blog-index .wrap{max-width:1080px;}
.blog-hero{padding:8px 0 12px;}
.blog-hero h1{font-size:clamp(30px,4.6vw,46px);margin-bottom:16px;}
.blog-hero p{font-size:17px;color:rgba(0,54,49,.75);max-width:640px;}
.series-block{margin-top:56px;}
.series-block h2{font-size:20px;color:var(--gold);text-transform:uppercase;letter-spacing:1px;font-family:'DM Sans';font-weight:700;margin-bottom:22px;}
.article-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;}
.article-card{
  background:#fff;border-radius:16px;padding:24px;
  box-shadow:0 10px 28px -18px rgba(0,54,49,.3);
  transition:transform .3s ease, box-shadow .3s ease;
}
.article-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px -18px rgba(0,54,49,.4);}
.article-card a.title{font-family:'DM Serif Display',serif;font-size:18px;color:var(--green);display:block;margin-bottom:10px;line-height:1.3;}
.article-card p{font-size:14px;color:rgba(0,54,49,.7);margin:0;}
@media (max-width:600px){
  .article-grid{grid-template-columns:1fr;}
}

.back-home{display:inline-block;margin-top:8px;font-size:14.5px;color:var(--gold);font-weight:600;}

footer{background:var(--footer);color:rgba(255,237,168,.8);padding:48px 0;text-align:center;}
footer .logo{color:var(--butter);font-family:'DM Serif Display',serif;font-size:20px;margin-bottom:8px;}
footer .sub{font-size:13.5px;color:rgba(248,244,238,.5);margin-bottom:14px;}
.footer-legal{display:inline-block;font-size:12px;color:rgba(255,237,168,.55);border-bottom:1px solid rgba(255,237,168,.25);transition:color .3s ease;}
.footer-legal:hover{color:rgba(255,237,168,.85);}

@media (max-width:600px){
  article h1{font-size:28px;}
  .cta-box{padding:30px 24px;}
}
