:root{
  --bg:#0a0908;
  --bg-raised:#141210;
  --bg-card:#17140f;
  --line: rgba(201,162,39,0.22);
  --line-strong: rgba(201,162,39,0.45);
  --gold: #c9a227;
  --gold-bright:#f0d78c;
  --cream:#efe8d6;
  --cream-dim:#a8a08c;
  --red-x: #e0765c;
  --green-ok: #7ec98f;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(201,162,39,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 20%, rgba(201,162,39,0.06), transparent 60%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.5px) 0 0/26px 26px,
    var(--bg);
  color:var(--cream);
  font-family:'Jost', sans-serif;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  line-height:1.7;
}
a{color:inherit; text-decoration:none;}
.wrap{max-width:880px; margin:0 auto; padding:0 28px;}

/* ===== TOPBAR ===== */
.topbar{
  background:linear-gradient(180deg, rgba(23,20,15,0.92), rgba(23,20,15,0.55));
  border-bottom:1px solid var(--line-strong);
  padding:20px 0;
  position:sticky; top:0; z-index:80;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.topbar .wrap{display:flex; align-items:center; justify-content:space-between;}
.brand-link{
  font-family:'Cormorant Garamond', serif;
  font-size:20px; font-weight:600; color:var(--green-ok);
  display:flex; align-items:center; gap:8px;
}
.brand-link .accent{color:var(--green-ok); font-style:italic;}
.back-link{
  font-size:12.5px; color:var(--gold-bright);
  border:1px solid var(--line-strong); border-radius:999px;
  padding:8px 16px;
  display:flex; align-items:center; gap:6px;
  transition:background .15s ease;
}
.back-link:hover{background:rgba(201,162,39,0.10);}
.back-link svg{width:13px; height:13px;}

.site-nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap;}
.site-nav a{
  font-size:12.5px; color:var(--cream-dim);
  padding:8px 16px; border-radius:999px;
  background:rgba(201,162,39,0.07);
  border:1px solid var(--line-strong);
  transition:filter .15s ease, opacity .15s ease, background .15s ease, transform .15s ease, border-color .15s ease;
}
.site-nav a:nth-child(1){color:var(--gold-bright);}
.site-nav a:nth-child(2){color:#5fc9c0;}
.site-nav a:nth-child(3){color:#b98fe0;}
.site-nav a:nth-child(4){color:#fb923c;}
.site-nav a:nth-child(5){color:#e0765c;}
.site-nav a:hover, .site-nav a.active{filter:brightness(1.2); background:rgba(201,162,39,0.15); border-color:var(--gold); transform:translateY(-1px);}
.nav-toggle{display:none; background:none; border:none; color:var(--cream); cursor:pointer; padding:4px;}
.nav-toggle svg{width:22px; height:22px;}

@media(max-width:640px){
  .site-nav{
    position:fixed; top:0; right:-260px; height:100vh; width:240px;
    background:#100e0a; border-left:1px solid var(--line-strong);
    flex-direction:column; align-items:flex-start; gap:10px; padding:70px 24px;
    transition:right .25s ease; z-index:100;
  }
  .site-nav.open{right:0;}
  .site-nav a{padding:13px 18px; width:100%; border-radius:10px; font-size:15px; background:rgba(201,162,39,0.06);}
  .nav-toggle{display:block;}
  .nav-overlay{
    display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:99;
  }
  .nav-overlay.open{display:block;}
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab{
  position:fixed; bottom:24px; right:24px; z-index:90;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,0.4);
  transition:transform .15s ease;
}
.whatsapp-fab:hover{transform:scale(1.08);}
.whatsapp-fab svg{width:28px; height:28px; fill:#fff;}

/* ===== SHARE ROW ===== */
.share-row{
  display:flex; align-items:center; gap:10px; margin:24px 0;
  padding-top:20px; border-top:1px solid var(--line);
}
.share-label{font-size:12px; color:var(--cream-dim); margin-right:4px;}
.share-btn{
  width:36px; height:36px; min-width:36px; min-height:36px; max-width:36px; max-height:36px;
  border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  border:1px solid var(--line-strong); transition:background .15s ease, transform .15s ease;
  overflow:hidden;
}
.share-btn:hover{transform:translateY(-2px);}
.share-btn svg, .share-row svg{width:16px !important; height:16px !important; max-width:16px; max-height:16px;}
.share-btn.whatsapp{color:#25D366;}
.share-btn.whatsapp:hover{background:rgba(37,211,102,0.12);}
.share-btn.linkedin{color:#0A66C2;}
.share-btn.linkedin:hover{background:rgba(10,102,194,0.12);}
.share-btn.twitter{color:#e8e8e8;}
.share-btn.twitter:hover{background:rgba(255,255,255,0.08);}

/* ===== ARTICLE HEADER ===== */
.article-header{padding:50px 0 30px;}
.eyebrow{
  font-size:11px; letter-spacing:0.28em; text-transform:uppercase;
  color:var(--gold); margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{content:''; width:24px; height:1px; background:var(--gold);}
h1{
  font-family:'Cormorant Garamond', serif;
  font-weight:600; font-size:44px; line-height:1.15; color:var(--cream);
}
.article-sub{
  margin-top:16px; font-size:16px; color:var(--cream-dim); line-height:1.7; max-width:640px;
}

/* ===== STAT ROW ===== */
.stat-row{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  gap:1px; background:var(--line);
  border:1px solid var(--line); border-radius:12px; overflow:hidden;
  margin:32px 0;
}
.stat{
  background:var(--bg-card); padding:18px 14px; text-align:center;
}
.stat .num{font-family:'Cormorant Garamond', serif; font-size:26px; font-weight:600; color:var(--gold-bright);}
.stat .label{font-size:10.5px; color:var(--cream-dim); margin-top:4px; letter-spacing:0.03em;}

/* ===== SECTIONS ===== */
.section{padding:34px 0;}
.section h2{
  font-family:'Cormorant Garamond', serif; font-size:26px; font-weight:600;
  color:var(--gold-bright); margin-bottom:18px;
}
.section p{color:var(--cream-dim); font-size:15px; margin-bottom:14px;}

.quote-block{
  border-left:3px solid var(--gold); padding:18px 24px;
  font-family:'Cormorant Garamond', serif; font-style:italic; font-size:20px;
  color:var(--gold-bright); background:rgba(201,162,39,0.06); border-radius:0 10px 10px 0;
  margin:24px 0;
}

/* ===== WORKFLOW STEPS ===== */
.step{
  display:flex; gap:18px; padding:20px 0;
  border-bottom:1px solid var(--line);
}
.step:last-child{border-bottom:none;}
.step-num{
  flex-shrink:0; width:34px; height:34px; border-radius:50%;
  border:1px solid var(--line-strong); color:var(--gold-bright);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif; font-weight:600; font-size:15px;
}
.step-body{flex:1;}
.step-title{font-size:15.5px; color:var(--cream); font-weight:500; margin-bottom:4px;}
.step-desc{font-size:13.5px; color:var(--cream-dim); margin-bottom:6px;}
.step-result{
  font-size:12px; display:inline-flex; align-items:center; gap:6px;
  padding:4px 10px; border-radius:999px; border:1px solid var(--line);
}
.step-result.rejected{color:var(--red-x);}
.step-result.approved{color:var(--green-ok);}

/* ===== BENEFIT GRID ===== */
.benefit-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px;
  margin:24px 0;
}
.benefit-card{
  background:var(--bg-card); border:1px solid var(--line); border-radius:12px; padding:20px;
}
.benefit-card .icon{
  width:38px; height:38px; border-radius:9px; background:rgba(201,162,39,0.08);
  border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom:12px;
}
.benefit-card .icon svg{width:20px; height:20px; stroke:var(--gold-bright); fill:none; stroke-width:1.6;}
.benefit-card h3{font-size:15px; color:var(--cream); font-weight:500; margin-bottom:6px;}
.benefit-card p{font-size:13px; color:var(--cream-dim); margin:0;}

/* ===== PRICING TABLE ===== */
.price-card{
  background:var(--bg-card); border:1px solid var(--line); border-radius:12px;
  padding:22px; margin-bottom:14px;
  display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap;
}
.price-card .info{flex:1; min-width:220px;}
.price-card h3{font-size:16px; color:var(--cream); font-weight:500; margin-bottom:6px;}
.price-card p{font-size:13px; color:var(--cream-dim); margin-bottom:10px;}
.price-card .tags{display:flex; flex-wrap:wrap; gap:6px;}
.price-card .tag{
  font-size:10.5px; color:var(--cream-dim); border:1px solid var(--line);
  border-radius:999px; padding:3px 9px;
}
.price-card .price{
  font-family:'Cormorant Garamond', serif; font-size:22px; font-weight:600; color:var(--gold-bright);
  white-space:nowrap;
}

/* ===== NAMING TREE ===== */
.tree-meta{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:14px;
  margin:20px 0 30px;
}
.tree-meta .item{border:1px solid var(--line); border-radius:10px; padding:14px;}
.tree-meta .item .k{font-size:10px; letter-spacing:0.05em; text-transform:uppercase; color:var(--gold); margin-bottom:4px;}
.tree-meta .item .v{font-size:13.5px; color:var(--cream);}

.root-box{
  text-align:center; border:1px dashed var(--line-strong); border-radius:12px;
  padding:16px; margin:24px 0; font-family:'Cormorant Garamond', serif; font-style:italic;
  color:var(--gold-bright); font-size:17px;
}
.branches{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:24px;}
.branch{background:var(--bg-card); border:1px solid var(--line); border-radius:12px; padding:18px;}
.branch h4{font-size:13px; color:var(--gold); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:10px;}
.branch ul{list-style:none;}
.branch li{font-size:13.5px; color:var(--cream-dim); padding:6px 0; border-bottom:1px dashed rgba(201,162,39,0.14);}
.branch li:last-child{border-bottom:none;}

.final-box{
  background:linear-gradient(160deg, var(--bg-card), #131009);
  border:1px solid var(--line-strong); border-radius:14px; padding:26px; text-align:center;
  margin:20px 0;
}
.final-box .name{font-family:'Cormorant Garamond', serif; font-size:32px; font-weight:600; color:var(--gold-bright);}
.final-box .tagline{color:var(--cream-dim); font-size:14px; margin-top:6px;}

.screen-results{list-style:none; margin:20px 0;}
.screen-results li{
  display:flex; justify-content:space-between; padding:9px 0;
  border-bottom:1px dashed rgba(201,162,39,0.16); font-size:13.5px; color:var(--cream-dim);
}
.screen-results li b{color:var(--green-ok); font-weight:500;}

/* ===== CTA ===== */
.cta-box{
  border:1px solid var(--line-strong); border-radius:14px; padding:26px;
  margin:36px 0; background:rgba(201,162,39,0.05);
}
.cta-box h3{font-family:'Cormorant Garamond', serif; font-size:20px; color:var(--cream); margin-bottom:10px;}
.cta-box p{color:var(--cream-dim); font-size:14px; margin-bottom:16px;}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap;}
.btn{
  padding:11px 20px; border-radius:8px; font-size:13px; cursor:pointer;
  display:inline-flex; align-items:center; gap:7px; transition:filter .15s ease, background .15s ease;
}
.btn.primary{
  background:linear-gradient(135deg,var(--gold-bright),var(--gold)); color:#0a0908; font-weight:500;
}
.btn.primary:hover{filter:brightness(1.08);}
.btn.outline{border:1px solid var(--line-strong); color:var(--cream);}
.btn.outline:hover{background:rgba(201,162,39,0.10);}
.btn svg{width:14px; height:14px;}

/* ===== PORTFOLIO STRIP ===== */
.portfolio-strip{
  display:flex; flex-wrap:wrap; gap:8px; margin:16px 0;
}
.portfolio-strip a{
  font-size:12.5px; color:var(--gold-bright); border:1px solid var(--line);
  border-radius:999px; padding:6px 14px; transition:background .15s ease;
}
.portfolio-strip a:hover{background:rgba(201,162,39,0.10);}

/* ===== AUTHOR BOX (photo avatar) ===== */
.author-box{
  display:flex; align-items:center; gap:16px;
  background:linear-gradient(160deg, var(--bg-raised), var(--bg-card));
  border:1px solid var(--line); border-radius:14px;
  padding:18px 22px; margin:28px 0;
}
.author-photo{
  width:64px; height:64px; border-radius:50%; flex-shrink:0;
  object-fit:cover; border:2px solid var(--gold-bright);
  display:block;
}
.author-photo.sm{width:44px; height:44px;}
.author-info .name{font-family:'Cormorant Garamond', serif; font-size:17px; font-weight:600; color:var(--cream);}
.author-info .role{font-size:12px; color:var(--cream-dim); margin-top:2px;}

/* ===== BLOG GRID ===== */
.blog-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px;
}
.blog-card{
  display:block;
  background:linear-gradient(165deg, var(--bg-card), #131009);
  border:1px solid var(--line); border-radius:14px; padding:24px;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover{
  border-color:var(--line-strong); transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(0,0,0,0.35);
}
.blog-tag{
  font-size:9.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:#fb923c; border:1px solid rgba(194,104,12,0.5);
  border-radius:5px; padding:3px 8px; display:inline-block; margin-bottom:14px;
}
.blog-card h3{
  font-family:'Cormorant Garamond', serif; font-size:19px; font-weight:600;
  color:var(--cream); line-height:1.3; margin-bottom:10px;
}
.blog-card p{
  font-size:12.5px; color:var(--cream-dim); line-height:1.6; margin-bottom:14px;
}
.blog-read{
  font-size:12px; color:#fb923c; display:flex; align-items:center; gap:5px;
}
.blog-read svg{width:12px; height:12px;}
.blog-meta{font-size:11px; color:var(--cream-dim); margin-bottom:8px; display:flex; align-items:center; gap:8px;}
.blog-meta .dot{width:3px; height:3px; border-radius:50%; background:var(--cream-dim); display:inline-block;}

/* ===== SITE FOOTER ===== */
footer.site-footer{
  background:var(--bg-raised);
  border-top:1px solid var(--line-strong);
  margin-top:40px;
  padding-top:44px;
}
.footer-grid{
  display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:30px;
  padding-bottom:34px;
}
.footer-brand{font-family:'Cormorant Garamond', serif; font-size:19px; font-weight:600; color:var(--cream); margin-bottom:10px;}
.footer-brand .accent{color:var(--green-ok); font-style:italic;}
.footer-blurb{font-size:12.5px; color:var(--cream-dim); line-height:1.7; max-width:280px; margin-bottom:16px;}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center; color:var(--cream-dim);
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover{transform:translateY(-2px); color:var(--gold-bright); border-color:var(--gold);}
.footer-social svg{width:15px; height:15px;}
.footer-col h4{
  font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold);
  margin-bottom:14px; font-weight:500;
}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:10px;}
.footer-col a{font-size:13px; color:var(--cream-dim); transition:color .15s ease;}
.footer-col a:hover{color:var(--gold-bright);}
.footer-bottom{
  border-top:1px solid var(--line); padding:18px 0 26px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  font-size:11.5px; color:var(--cream-dim);
}
.footer-bottom a{color:var(--gold-bright);}
@media(max-width:640px){
  .footer-grid{grid-template-columns:1fr; gap:26px;}
  .footer-bottom{flex-direction:column; align-items:flex-start;}
}

@media(max-width:640px){
  h1{font-size:32px;}
  .branches{grid-template-columns:1fr;}
  .price-card{flex-direction:column;}
  .author-box{flex-wrap:wrap;}
}
