*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--cream:#f5f0e8;--dark:#1a1410;--accent:#c84b0f;--accent2:#8b3a00;--warm:#e8d5b0;--text:#2d2017;--muted:#7a6a55;--border:#d4c4a0;--white:#fff;--ff-head:'Playfair Display',serif;--ff-body:'Source Serif 4',serif;--ff-cond:'Barlow Condensed',sans-serif;--ff-ui:'DM Sans',sans-serif}
html{scroll-behavior:smooth;font-size:16px}
body{background:var(--cream);color:var(--text);font-family:var(--ff-body);line-height:1.7;min-height:100vh}
img{max-width:100%;height:auto;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

#loader{position:fixed;inset:0;background:var(--dark);z-index:9999;display:flex;align-items:center;justify-content:center;transition:opacity .5s ease}
#loader.hidden{opacity:0;pointer-events:none}
.loader-inner{display:flex;gap:10px}
.loader-inner span{width:12px;height:12px;background:var(--accent);border-radius:50%;animation:pulse 1s ease-in-out infinite}
.loader-inner span:nth-child(2){animation-delay:.2s}
.loader-inner span:nth-child(3){animation-delay:.4s}
@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.6);opacity:.5}}

.site-header{position:sticky;top:0;z-index:100;background:var(--dark);border-bottom:2px solid var(--accent)}
.header-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{display:flex;align-items:center;gap:.75rem;text-decoration:none}
.logo-mark{font-family:var(--ff-cond);font-size:1.1rem;font-weight:700;color:var(--dark);background:var(--accent);padding:.15rem .5rem;letter-spacing:.05em}
.logo-text{font-family:var(--ff-cond);font-size:1.25rem;font-weight:500;color:var(--warm);letter-spacing:.02em}
.main-nav{display:flex;gap:1.5rem;align-items:center}
.nav-link{font-family:var(--ff-cond);font-size:.95rem;font-weight:500;color:var(--warm);letter-spacing:.04em;text-transform:uppercase;text-decoration:none;transition:color .2s}
.nav-link:hover,.nav-link.active{color:var(--accent);text-decoration:none}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}
.burger span{display:block;width:24px;height:2px;background:var(--warm);transition:transform .3s,opacity .3s}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.hero{display:grid;grid-template-columns:1fr 1fr;min-height:90vh;max-width:1200px;margin:0 auto;padding:4rem 1.5rem;align-items:center;gap:4rem}
.hero-tag{font-family:var(--ff-cond);font-size:.9rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.12em;margin-bottom:.75rem}
.hero h1{font-family:var(--ff-head);font-size:clamp(2.4rem,5vw,4rem);font-weight:900;line-height:1.08;color:var(--dark);margin-bottom:1.25rem}
.hero-sub{font-size:1.1rem;color:var(--muted);max-width:46ch;margin-bottom:2rem;font-weight:300;font-style:italic}
.hero-image img{border-radius:2px;box-shadow:8px 8px 0 var(--border)}
.btn-primary{display:inline-block;background:var(--accent);color:var(--white);font-family:var(--ff-cond);font-weight:700;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase;padding:.75rem 1.75rem;text-decoration:none;transition:background .2s}
.btn-primary:hover{background:var(--accent2);text-decoration:none;color:var(--white)}
.btn-secondary{display:inline-block;border:2px solid var(--accent);color:var(--accent);font-family:var(--ff-cond);font-weight:700;font-size:.9rem;letter-spacing:.06em;text-transform:uppercase;padding:.6rem 1.4rem;text-decoration:none;transition:all .2s}
.btn-secondary:hover{background:var(--accent);color:var(--white);text-decoration:none}

.features{background:var(--dark);padding:5rem 1.5rem}
.features{display:grid;grid-template-columns:repeat(3,1fr);max-width:1200px;margin:0 auto;gap:0}
.feature-card{padding:3rem 2.5rem;border-right:1px solid #3a2a1a;position:relative}
.feature-card:last-child{border-right:none}
.feat-num{font-family:var(--ff-cond);font-size:3rem;font-weight:700;color:var(--accent);opacity:.3;display:block;line-height:1;margin-bottom:.5rem}
.feature-card h2{font-family:var(--ff-head);font-size:1.6rem;color:var(--warm);margin-bottom:1rem}
.feature-card p{color:#b8a88a;font-size:.95rem;line-height:1.7;margin-bottom:1.5rem}
.feat-link{font-family:var(--ff-cond);font-weight:700;font-size:.9rem;color:var(--accent);text-transform:uppercase;letter-spacing:.06em;text-decoration:none}
.feat-link:hover{color:var(--warm);text-decoration:none}

.editorial-block{display:grid;grid-template-columns:1fr 1fr;max-width:1200px;margin:0 auto;padding:5rem 1.5rem;gap:4rem;align-items:center}
.ed-image img{border-radius:2px;box-shadow:-6px 6px 0 var(--border)}
.ed-label{font-family:var(--ff-cond);font-size:.85rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.12em;margin-bottom:.5rem}
.ed-content h2{font-family:var(--ff-head);font-size:2rem;color:var(--dark);margin-bottom:1.25rem;line-height:1.2}
.ed-content p{color:var(--muted);margin-bottom:1rem;font-size:.98rem}
.ed-content .btn-secondary{margin-top:.75rem}

.articles-grid{padding:5rem 1.5rem;background:var(--warm)}
.section-title{font-family:var(--ff-head);font-size:2rem;color:var(--dark);margin-bottom:2.5rem;text-align:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.article-card{background:var(--white);overflow:hidden}
.article-card img{width:100%;height:220px;object-fit:cover;transition:transform .4s ease}
.article-card:hover img{transform:scale(1.03)}
.card-body{padding:1.5rem}
.card-tag{font-family:var(--ff-cond);font-size:.8rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.1em;display:inline-block;margin-bottom:.5rem}
.article-card h3{font-family:var(--ff-head);font-size:1.2rem;margin-bottom:.75rem;line-height:1.3}
.article-card h3 a{color:var(--dark);text-decoration:none}
.article-card h3 a:hover{color:var(--accent)}
.article-card p{font-size:.9rem;color:var(--muted);line-height:1.6}

.about-strip{background:var(--dark);padding:4rem 1.5rem}
.about-strip-inner{max-width:800px;margin:0 auto;text-align:center}
.about-strip h2{font-family:var(--ff-head);font-size:1.9rem;color:var(--warm);margin-bottom:1.25rem}
.about-strip p{color:#b8a88a;font-size:.98rem;line-height:1.8;margin-bottom:1.5rem}
.about-strip a{color:var(--warm)}
.about-strip .btn-secondary{border-color:var(--warm);color:var(--warm)}
.about-strip .btn-secondary:hover{background:var(--warm);color:var(--dark)}

.article-page{max-width:800px;margin:0 auto;padding:3rem 1.5rem 5rem}
.article-header{margin-bottom:2.5rem}
.article-meta-top{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.article-date{font-family:var(--ff-ui);font-size:.85rem;color:var(--muted)}
.article-page h1{font-family:var(--ff-head);font-size:clamp(2rem,4vw,2.8rem);color:var(--dark);line-height:1.1;margin-bottom:1rem}
.article-lead{font-size:1.15rem;color:var(--muted);font-style:italic;font-weight:300;line-height:1.7}
.article-hero-img{margin-bottom:3rem}
.article-hero-img img{width:100%;max-height:500px;object-fit:cover;border-radius:2px}
.article-body h2{font-family:var(--ff-head);font-size:1.6rem;color:var(--dark);margin:2.5rem 0 .75rem}
.article-body p{margin-bottom:1.25rem;font-size:1rem;color:var(--text);line-height:1.8}
.article-body ul,.article-body ol{margin:0 0 1.25rem 1.5rem}
.article-body li{margin-bottom:.4rem;color:var(--text)}
.article-body strong{font-weight:700}
.article-body em{font-style:italic}
.article-image-block{margin:2.5rem 0}
.article-image-block img{width:100%;border-radius:2px;box-shadow:4px 4px 0 var(--border)}
.img-caption{font-family:var(--ff-ui);font-size:.82rem;color:var(--muted);margin-top:.6rem;font-style:italic}
.resource-list{margin:0 0 1.5rem 1.5rem}
.resource-list li{margin-bottom:.5rem}
.article-nav{display:flex;gap:1rem;flex-wrap:wrap;margin-top:3rem;padding-top:2rem;border-top:1px solid var(--border)}

.page-content.narrow{max-width:760px;margin:0 auto;padding:3rem 1.5rem 5rem}
.contact-block{background:var(--warm);padding:1.5rem;margin:1.5rem 0;border-left:4px solid var(--accent)}
.contact-label{font-family:var(--ff-cond);font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.25rem}

.site-footer{background:var(--dark);padding:4rem 1.5rem 0}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid #3a2a1a}
.footer-logo{font-family:var(--ff-head);font-size:1.3rem;color:var(--warm);margin-bottom:.75rem}
.footer-desc{font-size:.88rem;color:#7a6a55;line-height:1.6}
.footer-heading{font-family:var(--ff-cond);font-size:.85rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.1em;margin-bottom.75rem;display:block;margin-bottom:.75rem}
.footer-col a{display:block;color:#b8a88a;font-size:.9rem;margin-bottom:.4rem;text-decoration:none}
.footer-col a:hover{color:var(--warm)}
.footer-bottom{max-width:1200px;margin:0 auto;padding:1.5rem 0;font-family:var(--ff-ui);font-size:.8rem;color:#5a4a35}

#cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--dark);border-top:2px solid var(--accent);z-index:200;padding:1.25rem 1.5rem}
.cookie-inner{max-width:900px;margin:0 auto;display:flex;align-items:center;gap:2rem;flex-wrap:wrap}
.cookie-inner p{color:#b8a88a;font-size:.9rem;flex:1;min-width:200px}
.cookie-btns{display:flex;gap:.75rem}
.btn-cookie{font-family:var(--ff-cond);font-weight:700;font-size:.9rem;text-transform:uppercase;letter-spacing:.06em;padding:.5rem 1.25rem;cursor:pointer;border:none;transition:all .2s}
.btn-cookie.accept{background:var(--accent);color:var(--white)}
.btn-cookie.accept:hover{background:var(--accent2)}
.btn-cookie.reject{background:transparent;color:var(--warm);border:1px solid #3a2a1a}
.btn-cookie.reject:hover{border-color:var(--warm)}

@media(max-width:900px){
  .hero{grid-template-columns:1fr;min-height:auto;gap:2rem;padding:3rem 1.5rem}
  .hero-image{order:-1}
  .features{grid-template-columns:1fr}
  .feature-card{border-right:none;border-bottom:1px solid #3a2a1a}
  .feature-card:last-child{border-bottom:none}
  .editorial-block{grid-template-columns:1fr;gap:2rem}
  .grid-3{grid-template-columns:1fr 1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .main-nav{display:none;position:fixed;top:64px;left:0;right:0;background:var(--dark);flex-direction:column;padding:1.5rem;gap:1rem;border-bottom:2px solid var(--accent)}
  .main-nav.open{display:flex}
  .burger{display:flex}
}
@media(max-width:600px){
  .grid-3{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .article-nav{flex-direction:column}
  .cookie-inner{flex-direction:column;gap:1rem}
}
