*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --gold:#d4a030;
  --gold-light:#f5e6b8;
  --gold-dark:#8b6914;
  --black:#1a1a1a;
  --charcoal:#2d2d2d;
  --text:#333333;
  --text-light:#666666;
  --bg:#fffdf7;
  --bg-alt:#fdf8eb;
  --white:#ffffff;
  --border:#e8dfc4;
  --max-w:1080px;
}
body{font-family:'Georgia','Times New Roman',serif;line-height:1.7;color:var(--text);background:var(--bg)}
a{color:var(--gold-dark);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold)}
img{max-width:100%;height:auto;display:block;border-radius:8px}

/* Layout */
.container{max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}

/* Header */
header{background:var(--charcoal);padding:1rem 0;position:sticky;top:0;z-index:100}
header nav{display:flex;justify-content:space-between;align-items:center;max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}
.brand {display: inline-flex;align-items:center;gap:0.6rem;font-weight:700;font-size:1.15rem;color:var(--gold);text-decoration:none;font-family:'Segoe UI',system-ui,sans-serif}
.brand svg{width:36px;height:36px}
.nav-links{display:flex;gap:1.5rem;align-items:center}
.nav-links a{color:rgba(255,255,255,0.75);font-size:0.95rem;font-weight:400;transition:color .2s;font-family:'Segoe UI',system-ui,sans-serif}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}

/* Hero */
.hero{background:linear-gradient(135deg,var(--charcoal) 0%,var(--black) 100%);color:var(--white);padding:5rem 1.5rem;text-align:center;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:repeating-conic-gradient(from 0deg,transparent 0deg 55deg,rgba(212,160,48,0.03) 55deg 60deg);animation:none}
.hero h1{font-size:2.6rem;margin-bottom:1rem;font-weight:700;color:var(--gold);font-family:'Segoe UI',system-ui,sans-serif}
.hero p{font-size:1.15rem;max-width:640px;margin:0 auto;color:rgba(255,255,255,0.85);line-height:1.7;font-family:'Segoe UI',system-ui,sans-serif}

/* Hexagon decorative border */
.hex-divider{text-align:center;padding:1rem 0}
.hex-divider svg{width:40px;height:40px;fill:var(--gold)}

/* Sections */
section{padding:4rem 0}
section.alt{background:var(--bg-alt)}
h2{font-size:1.7rem;color:var(--charcoal);margin-bottom:1rem;font-weight:700;font-family:'Segoe UI',system-ui,sans-serif}
h3{font-size:1.2rem;color:var(--charcoal);margin-bottom:0.5rem;font-family:'Segoe UI',system-ui,sans-serif}
p{margin-bottom:1rem}

/* Cards */
.card{background:var(--white);border:1px solid var(--border);border-radius:12px;overflow:hidden;transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(212,160,48,0.12)}
.card img{width:100%;height:230px;object-fit:cover;border-radius:0}
.card-body{padding:1.25rem}
.card-body h3{margin-bottom:0.4rem}
.card-body p{color:var(--text-light);font-size:0.95rem;margin-bottom:0}

/* Buttons */
.btn{display:inline-block;padding:0.75rem 1.75rem;background:var(--gold);color:var(--black);border-radius:6px;font-weight:600;font-size:0.95rem;transition:background .2s;font-family:'Segoe UI',system-ui,sans-serif}
.btn:hover{background:var(--gold-dark);color:var(--white)}

/* Article */
.article-content{max-width:720px;margin:0 auto}
.article-content h2{margin-top:2rem}
.article-content p{font-size:1.05rem;color:var(--text)}
.article-content img{margin:2rem 0;border-radius:12px}
.article-content ul{margin:1rem 0 1.5rem 1.5rem;color:var(--text)}
.article-content li{margin-bottom:0.6rem;line-height:1.6}

/* Footer */
footer{background:var(--black);color:rgba(255,255,255,0.8);padding:3rem 0}
footer .container{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:2rem}
.footer-col h4{color:var(--gold);margin-bottom:0.75rem;font-size:1rem;font-family:'Segoe UI',system-ui,sans-serif}
.footer-col p,.footer-col a{color:rgba(255,255,255,0.7);font-size:0.9rem}
.footer-col a:hover{color:var(--gold)}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:0.4rem}
.footer-bottom{text-align:center;margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.1);font-size:0.85rem;color:rgba(255,255,255,0.5)}

/* Responsive */
@media(max-width:768px){
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .hero h1{font-size:2rem}
  .hero{padding:3rem 1.5rem}
  .nav-links{gap:1rem}
  .nav-links a{font-size:0.85rem}
  footer .container{flex-direction:column}
}
@media(max-width:480px){
  .nav-links{gap:0.6rem}
  .hero h1{font-size:1.6rem}
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
