:root{
  --black:#000000; --gold:#D4AF37; --champagne:#F7E7CE; --plum:#5A2A5D; --white:#FFFFFF;
  --plum-dark:#4a234d; --gold-light:#e5c65c;
  --header-h:88px;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:"DM Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--black);line-height:1.6;background:#f5f3f0;overflow-x:hidden}

#header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(247,231,206,.95); backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.06);
  padding:1rem 2rem; transition:box-shadow .3s ease;
}
#header.scrolled{box-shadow:0 4px 24px rgba(0,0,0,.06)}
nav{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;text-decoration:none}
.logo-img{height:56px;width:auto;object-fit:contain}
.nav-links{display:flex;gap:2.5rem;list-style:none}
.nav-links a{color:var(--black);text-decoration:none;font-weight:500;font-size:.9rem;letter-spacing:.08em;transition:color .2s ease}
.nav-links a:hover{color:var(--gold)}
.nav-links a.nav-link--disabled,.nav-links a.nav-link--disabled:hover{opacity:.45;cursor:not-allowed;pointer-events:none;color:var(--black)}
.page-article .nav-links a.nav-link--disabled{color:rgba(0,0,0,.35)}
.btn-signin{background:var(--gold);color:var(--white);border:0;padding:.65rem 1.5rem;border-radius:8px;font-weight:600;font-size:.9rem;letter-spacing:.05em;cursor:pointer;text-decoration:none;transition:background .2s ease,transform .2s ease}
.btn-signin:hover{background:var(--gold-light);transform:translateY(-1px)}
main{padding-top:var(--header-h)}

.wrap{max-width:1100px;margin:0 auto;padding:0 2rem}
.section-label{font-size:.9rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
h1,h2{line-height:1.15;letter-spacing:-.02em}
h1{font-size:clamp(2.1rem,4vw,3rem)}
.accent{font-family:"Playfair Display",serif;font-style:italic;color:var(--plum)}
.muted{opacity:.82}

.hero{background:var(--champagne);padding:4rem 0 3rem;border-bottom:1px solid rgba(0,0,0,.05)}
.hero p{margin-top:1rem;font-size:1.05rem;max-width:640px}

.blog-main{padding:3rem 0 5rem}
.blog-status{
  text-align:center;padding:1rem 1.25rem;border-radius:12px;
  background:rgba(255,255,255,.85);border:1px solid rgba(0,0,0,.08);
  margin-bottom:1.5rem;font-weight:500;
}
.blog-status--loading{color:var(--plum)}
.blog-status--error{color:#b71c1c;border-color:rgba(183,28,28,.25);background:rgba(183,28,28,.06)}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:1.5rem;
}
.blog-card{
  background:var(--white);border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  overflow:hidden;
}
.blog-card:hover{transform:translateY(-3px);border-color:rgba(212,175,55,.45);box-shadow:0 16px 40px rgba(0,0,0,.08)}
.blog-card-link{display:block;padding:1.75rem;text-decoration:none;color:inherit;height:100%}
.blog-card time{display:block;font-size:.82rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:.65rem}
.blog-card h2{font-size:1.25rem;margin-bottom:.6rem}
.blog-card p{font-size:.96rem;opacity:.8;margin-bottom:1rem}
.blog-card-cta{font-size:.88rem;font-weight:700;color:var(--plum);letter-spacing:.04em}
.blog-card:hover .blog-card-cta{color:var(--gold)}

.blog-empty{
  grid-column:1/-1;text-align:center;padding:3rem 2rem;
  background:var(--white);border-radius:18px;border:1px dashed rgba(0,0,0,.12);
}
.blog-empty p + p{margin-top:.5rem}

/* —— Blog listing (blog-posts.html) —— */
.page-blog-list{
  background:linear-gradient(180deg,var(--champagne) 0%,#f5f3f0 42%,#f0eeea 100%);
}
.page-blog-list main{padding-top:0}

.blog-hero{
  position:relative;overflow:hidden;
  padding:6.5rem 0 2.75rem;
  background:var(--champagne);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.blog-hero__glow{
  position:absolute;inset:-30% -15% auto -15%;height:85%;
  background:
    radial-gradient(ellipse 55% 50% at 82% 8%,rgba(212,175,55,.28) 0%,transparent 58%),
    radial-gradient(ellipse 45% 40% at 12% 75%,rgba(42,32,53,.18) 0%,transparent 55%);
  pointer-events:none;
}
.blog-hero__inner{position:relative;z-index:1;max-width:1200px}
.blog-hero h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(2.15rem,4.5vw,3.25rem);
  font-weight:700;line-height:1.1;letter-spacing:-.02em;
  max-width:16ch;margin-top:.35rem;
}
.blog-hero__lead{
  margin-top:1rem;font-size:1.06rem;max-width:52ch;line-height:1.7;
}
.blog-hero__toolbar{
  margin-top:2rem;display:flex;align-items:stretch;gap:.85rem;flex-wrap:wrap;
}
.blog-search{
  display:flex;align-items:stretch;flex:1;min-width:min(100%,320px);max-width:480px;
  border:1px solid rgba(0,0,0,.08);border-radius:14px;overflow:hidden;
  background:rgba(255,255,255,.92);
  box-shadow:0 8px 28px rgba(0,0,0,.06);
  transition:border-color .2s ease,box-shadow .2s ease;
}
.blog-search:focus-within{
  border-color:rgba(212,175,55,.55);
  box-shadow:0 10px 32px rgba(212,175,55,.15);
}
.blog-search__icon{
  display:flex;align-items:center;padding:0 .85rem 0 1rem;
  font-size:1.1rem;color:var(--gold);opacity:.9;
}
.blog-search input{
  border:0;padding:.7rem 0;font:inherit;font-size:.95rem;flex:1;min-width:0;
  background:transparent;
}
.blog-search input:focus{outline:none}
.blog-search-btn{
  border:0;margin:4px;border-radius:10px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color:var(--white);font-weight:800;font-size:.78rem;
  letter-spacing:.08em;text-transform:uppercase;padding:0 1.25rem;cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease;
}
.blog-search-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(212,175,55,.35);
}
.blog-sort-label select{
  border:1px solid rgba(0,0,0,.08);border-radius:14px;padding:.7rem 1rem;
  font:inherit;font-size:.9rem;font-weight:600;
  background:rgba(255,255,255,.92);cursor:pointer;
  box-shadow:0 8px 28px rgba(0,0,0,.05);
  transition:border-color .2s ease;
}
.blog-sort-label select:focus{
  outline:none;border-color:rgba(212,175,55,.55);
}
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.blog-listing-main{padding:2.5rem 0 4.5rem}
.blog-listing-wrap{max-width:1280px;margin:0 auto;padding:0 2rem}
.blog-status--listing{margin-bottom:1.25rem}

.blog-listing-layout{
  display:grid;grid-template-columns:minmax(0,260px) minmax(0,1fr);gap:2rem;align-items:start;
}
.blog-sidebar{display:flex;flex-direction:column;gap:1rem;position:sticky;top:96px}
.blog-sidebar-card{
  background:rgba(255,255,255,.88);border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  padding:1.15rem 1.2rem;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  position:relative;overflow:hidden;
}
.blog-sidebar-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light),#2a2035);
  opacity:.85;
}
.blog-sidebar-card--trending::before{
  background:linear-gradient(90deg,#1a1428,var(--gold));
}
.blog-sidebar-heading{
  font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.85rem;
}
.blog-category-list{list-style:none}
.blog-category-btn{
  display:flex;align-items:center;justify-content:space-between;width:100%;
  border:0;background:transparent;padding:.55rem .7rem;border-radius:10px;
  font:inherit;font-size:.9rem;font-weight:600;color:var(--black);cursor:pointer;text-align:left;
  transition:background .18s ease,color .18s ease;
}
.blog-category-btn:hover{background:rgba(212,175,55,.12)}
.blog-category-btn.is-active{
  background:linear-gradient(135deg,#1a1428 0%,#111015 100%);
  color:var(--gold);box-shadow:0 6px 16px rgba(0,0,0,.22);
}
.blog-category-count{font-weight:500;opacity:.75;font-size:.82rem}
.blog-category-btn.is-active .blog-category-count{opacity:.9;color:rgba(255,255,255,.85)}
.blog-chip-row{display:flex;flex-wrap:wrap;gap:.4rem}
.blog-filter-chip{
  border:1px solid rgba(0,0,0,.1);border-radius:999px;padding:.38rem .75rem;
  font:inherit;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;
  background:rgba(255,255,255,.9);color:rgba(0,0,0,.55);cursor:pointer;
  transition:border-color .18s ease,background .18s ease,color .18s ease,transform .18s ease;
}
.blog-filter-chip:hover{
  border-color:rgba(212,175,55,.45);color:var(--black);transform:translateY(-1px);
}
.blog-filter-chip.is-active{
  background:var(--black);border-color:var(--black);color:var(--gold);
}
.blog-trending-list{list-style:none}
.blog-trending-item{border-bottom:1px solid rgba(0,0,0,.06)}
.blog-trending-item:last-child{border-bottom:0}
.blog-trending-item a{
  display:block;padding:.6rem .15rem;text-decoration:none;color:inherit;
  transition:color .2s ease;
}
.blog-trending-item a:hover strong{color:var(--plum)}
.blog-trending-item strong{
  display:block;font-size:.86rem;line-height:1.4;margin-bottom:.25rem;font-weight:700;
}
.blog-trending-item span{font-size:.72rem;color:rgba(0,0,0,.55);letter-spacing:.02em}
.blog-trending-item--highlight a{
  background:linear-gradient(135deg,rgba(247,231,206,.9),rgba(212,175,55,.15));
  border-radius:12px;padding:.75rem .85rem;margin:0 -.25rem;
  border:1px solid rgba(212,175,55,.25);
}
.blog-trending-empty{font-size:.86rem;color:rgba(0,0,0,.5);padding:.5rem 0}

.blog-featured{
  background:var(--white);border-radius:22px;overflow:hidden;margin-bottom:1.75rem;
  border:1px solid rgba(212,175,55,.2);
  box-shadow:0 20px 50px rgba(0,0,0,.08),0 0 0 1px rgba(255,255,255,.6) inset;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.blog-featured:hover{
  transform:translateY(-2px);
  border-color:rgba(212,175,55,.45);
  box-shadow:0 28px 60px rgba(0,0,0,.1);
}
.blog-featured-link{
  display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,1fr);
  text-decoration:none;color:inherit;min-height:280px;
}
.blog-featured-media{
  min-height:240px;
  background:linear-gradient(145deg,#1a1428 0%,#2a2035 45%,#111015 100%);
  position:relative;
}
.blog-featured-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.15),transparent 55%);
  pointer-events:none;
}
.blog-featured-media img{width:100%;height:100%;object-fit:cover;display:block}
.blog-featured-body{padding:2rem 2.1rem;display:flex;flex-direction:column;justify-content:center}
.blog-featured-label{
  font-size:.72rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.75rem;
}
.blog-featured-body h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.45rem,2.6vw,2rem);line-height:1.18;margin-bottom:.85rem;
  letter-spacing:-.02em;
}
.blog-featured-body p{font-size:.98rem;line-height:1.7;color:rgba(0,0,0,.72);margin-bottom:1.1rem}
.blog-featured-body .blog-card-cta{color:var(--plum);font-weight:800}

.blog-cards-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem;
}
.page-blog-list .blog-card--grid{
  border-radius:20px;border-color:rgba(0,0,0,.06);
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}
.page-blog-list .blog-card--grid:hover{
  border-color:rgba(212,175,55,.5);
  box-shadow:0 20px 44px rgba(0,0,0,.1);
}
.blog-card--grid{padding:0}
.blog-card--grid .blog-card-link{display:flex;flex-direction:column;height:100%;padding:0}
.blog-card-media{
  position:relative;aspect-ratio:16/10;
  background:linear-gradient(145deg,var(--champagne) 0%,#2a2035 100%);
  overflow:hidden;
}
.blog-card-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.25));
  pointer-events:none;opacity:0;transition:opacity .3s ease;
}
.blog-card--grid:hover .blog-card-media::after{opacity:1}
.blog-card-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.blog-card--grid:hover .blog-card-media img{transform:scale(1.04)}
.blog-card-tag{
  position:absolute;top:.75rem;left:.75rem;z-index:1;
  background:rgba(255,255,255,.95);color:var(--plum);font-size:.65rem;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;padding:.32rem .6rem;border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.blog-card--grid .blog-card-body{padding:1.25rem 1.35rem 1.5rem;flex:1;display:flex;flex-direction:column}
.blog-card--grid time{margin-bottom:.5rem}
.blog-card--grid h2{
  font-family:"Playfair Display",serif;font-size:1.12rem;line-height:1.28;margin-bottom:.55rem;
}
.blog-card--grid p{font-size:.9rem;line-height:1.6;flex:1;color:rgba(0,0,0,.75)}
.blog-card--grid .blog-card-cta{
  margin-top:.85rem;font-size:.78rem;font-weight:800;letter-spacing:.08em;
  color:var(--gold);text-transform:uppercase;
}
.blog-empty--listing{
  grid-column:1/-1;text-align:center;padding:3rem 1.75rem;
  background:rgba(255,255,255,.9);border-radius:20px;
  border:1px dashed rgba(212,175,55,.35);
}

@media (max-width:1100px){
  .blog-cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .blog-featured-link{grid-template-columns:1fr}
  .blog-featured-media{min-height:220px;max-height:300px}
}
@media (max-width:900px){
  .blog-listing-layout{grid-template-columns:1fr}
  .blog-sidebar{
    position:static;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;
  }
  .blog-sidebar-card--trending{grid-column:1/-1}
  .page-blog-list .nav-links{display:none}
  .blog-hero{padding-top:5.75rem}
}
@media (max-width:600px){
  .blog-listing-wrap{padding:0 1.25rem}
  .blog-hero{padding:5.25rem 0 2rem}
  .blog-hero__toolbar{flex-direction:column;align-items:stretch}
  .blog-search{max-width:none}
  .blog-sort-label select{width:100%}
  .blog-cards-grid{grid-template-columns:1fr}
  .blog-sidebar{grid-template-columns:1fr}
}

.blog-back{
  display:inline-flex;align-items:center;gap:.35rem;
  font-weight:700;font-size:.9rem;color:var(--plum);
  text-decoration:none;margin-bottom:1.5rem;letter-spacing:.04em;
}
.blog-back:hover{color:var(--gold)}

/* —— Article page (blog-post.html) —— */
.page-article{background:#f0eeea}
.page-article main{padding-top:var(--header-h)}
.page-article #header{
  background:rgba(247,231,206,.95);backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.page-article #header.scrolled{
  background:rgba(247,231,206,.98);
  box-shadow:0 4px 24px rgba(0,0,0,.06);
}
.page-article .nav-links a{color:var(--black)}
.page-article .nav-links a:hover{color:var(--gold)}
.page-article .nav-links a.nav-link--disabled{color:var(--black)}

.blog-article-header-section{
  background:var(--champagne);
  padding:2.25rem 0 2rem;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.blog-article-header-section__inner{max-width:760px}
.blog-article-header-section .article-eyebrow{margin-bottom:.65rem}
.blog-article-header-section .article-title,
.blog-article-header-section .blog-article-header h1{
  color:var(--black);max-width:none;
}
.blog-article-header-section .article-meta{
  border-top:1px solid rgba(0,0,0,.1);
}
.blog-article-header-section .article-meta time{color:rgba(0,0,0,.62)}
.blog-article-header-section .article-meta__read{color:rgba(0,0,0,.55)}

.read-progress{
  position:fixed;top:0;left:0;z-index:60;height:3px;width:0;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  box-shadow:0 0 12px rgba(212,175,55,.45);
  transition:width .12s ease-out;
  pointer-events:none;
}

.article-hero{
  position:relative;overflow:hidden;
  padding:2rem 0 2.25rem;
  background:linear-gradient(155deg,#0f0c14 0%,#1c1428 42%,#231830 100%);
  color:var(--white);
}
.article-hero__glow{
  position:absolute;inset:-20% -10% auto -10%;height:70%;
  background:
    radial-gradient(ellipse 55% 50% at 75% 15%,rgba(212,175,55,.22) 0%,transparent 60%),
    radial-gradient(ellipse 40% 45% at 15% 80%,rgba(247,231,206,.08) 0%,transparent 55%);
  pointer-events:none;
}
.article-hero__inner{position:relative;z-index:1;max-width:760px}

.article-breadcrumb{
  display:flex;align-items:center;flex-wrap:wrap;gap:.4rem;
  font-size:.78rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:1.25rem;
}
.article-breadcrumb a{color:rgba(255,255,255,.72);text-decoration:none;transition:color .2s}
.article-breadcrumb a:hover{color:var(--gold)}
.article-breadcrumb__sep{opacity:.35}
.article-breadcrumb__current{color:var(--gold)}

.article-back{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.45rem .85rem .45rem .65rem;margin-bottom:0;
  border-radius:999px;border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);backdrop-filter:blur(8px);
  font-size:.82rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:rgba(255,255,255,.88);text-decoration:none;
  transition:border-color .2s,background .2s,color .2s;
}
.article-back:hover{border-color:rgba(212,175,55,.5);background:rgba(212,175,55,.12);color:var(--gold)}
.article-back__icon{font-size:1rem;line-height:1}
.article-back--bottom{
  margin:0;border-radius:12px;padding:.75rem 1.1rem;
  background:var(--white);border-color:rgba(0,0,0,.08);color:var(--plum);
  text-transform:none;letter-spacing:.02em;font-size:.92rem;
}
.article-back--bottom:hover{background:var(--champagne);color:var(--plum)}

.article-eyebrow{
  font-size:.75rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.85rem;
}
.article-title,
.blog-article-header h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(2rem,4.5vw,3.15rem);
  font-weight:700;line-height:1.12;letter-spacing:-.02em;
  color:var(--white);max-width:18ch;
}
.article-meta{
  display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem;
  margin-top:1.35rem;padding-top:1.35rem;
  border-top:1px solid rgba(255,255,255,.12);
}
.article-meta time{
  font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(247,231,206,.9);
}
.article-meta__dot{opacity:.4;color:var(--gold)}
.article-meta__read{font-size:.8rem;font-weight:600;color:rgba(255,255,255,.65);letter-spacing:.04em}

.article-body-section{padding:3rem 0 4.5rem;position:relative;z-index:2}
.article-layout{max-width:760px}

.article-sheet{
  background:var(--white);border-radius:24px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 24px 64px rgba(0,0,0,.08),0 4px 16px rgba(0,0,0,.04);
  overflow:hidden;
}
.article-sheet::before{
  content:'';display:block;height:4px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light),#2a2035);
}

.blog-article-body.article-prose{
  max-width:none;margin:0;padding:2.75rem clamp(1.5rem,4vw,3rem) 3rem;
}
.blog-article-body:empty{
  min-height:280px;
  background:linear-gradient(90deg,#f5f3f0 0%,#ebe8e3 50%,#f5f3f0 100%);
  background-size:200% 100%;
  animation:article-shimmer 1.4s ease-in-out infinite;
}
@keyframes article-shimmer{
  0%{background-position:100% 0}
  100%{background-position:-100% 0}
}

.blog-article-body p{
  margin-bottom:1.35rem;font-size:1.125rem;line-height:1.82;
  color:rgba(0,0,0,.88);
}
.blog-article-body p:last-child{margin-bottom:0}
.blog-article-body > p:first-of-type::first-letter{
  font-family:"Playfair Display",serif;
  float:left;font-size:3.4rem;line-height:.9;font-weight:700;
  margin:.08rem .55rem 0 0;color:var(--plum);
}
.blog-article-body h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.45rem,2.8vw,1.95rem);
  font-weight:700;line-height:1.2;
  margin:2.25rem 0 1rem;color:var(--black);
  padding-bottom:.5rem;border-bottom:1px solid rgba(212,175,55,.25);
}
.blog-article-body h2:first-child{margin-top:0}
.blog-article-body strong{font-weight:700;color:var(--black)}
.blog-article-body em{font-style:italic;color:rgba(0,0,0,.78)}
.blog-article-body a{
  color:var(--plum);text-decoration:underline;text-underline-offset:4px;
  text-decoration-color:rgba(90,42,93,.35);font-weight:600;
  transition:color .2s,text-decoration-color .2s;
}
.blog-article-body a:hover{color:var(--gold);text-decoration-color:var(--gold)}
.blog-article-body ul,.blog-article-body ol{margin:0 0 1.5rem;padding-left:1.5rem}
.blog-article-body li{margin-bottom:.55rem;font-size:1.08rem;line-height:1.72}
.blog-article-body li::marker{color:var(--gold)}
.blog-article-body blockquote{
  margin:1.75rem 0;padding:1.35rem 1.5rem;
  border-left:none;border-radius:16px;
  background:linear-gradient(135deg,rgba(247,231,206,.55),rgba(247,231,206,.2));
  box-shadow:inset 0 0 0 1px rgba(212,175,55,.2);
  position:relative;
}
.blog-article-body blockquote::before{
  content:'"';position:absolute;top:.5rem;left:1rem;
  font-family:"Playfair Display",serif;font-size:2.5rem;line-height:1;
  color:rgba(212,175,55,.45);
}
.blog-article-body blockquote p{
  margin:0;padding-left:1.5rem;font-size:1.05rem;line-height:1.75;
  color:rgba(0,0,0,.78);font-style:italic;
}

/* Inline figures — centered within article flow */
.blog-article-body .blog-figure{
  margin:2rem auto 2.25rem;
  padding:0;
  max-width:min(100%,720px);
  text-align:center;
  border:none;
  background:transparent;
}
.blog-article-body .blog-figure img{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  margin:0 auto;
  border-radius:12px;
  box-shadow:0 12px 40px rgba(0,0,0,.1);
}
.blog-article-body .blog-figure figcaption{
  margin:.85rem auto 0;
  max-width:38rem;
  font-size:.92rem;
  line-height:1.55;
  color:rgba(0,0,0,.62);
  text-align:center;
}

.article-cta{margin-top:2rem}
.article-cta__inner{
  padding:2rem 2.25rem;border-radius:20px;
  background:linear-gradient(135deg,#111015 0%,#1c1828 50%,#0d0c11 100%);
  border:1px solid rgba(212,175,55,.2);
  box-shadow:0 16px 48px rgba(0,0,0,.25);
  color:var(--white);
}
.article-cta__label{
  font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.65rem;
}
.article-cta__title{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.5rem,3vw,2rem);line-height:1.2;margin-bottom:.75rem;
}
.article-cta__title .accent{font-style:italic;color:var(--champagne)}
.article-cta__text{font-size:.98rem;line-height:1.65;opacity:.88;max-width:42ch;margin-bottom:1.35rem}
.article-cta__actions{display:flex;flex-wrap:wrap;gap:.65rem}
.article-cta__btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.7rem 1.25rem;border-radius:12px;font-weight:700;font-size:.88rem;
  text-decoration:none;letter-spacing:.04em;transition:transform .2s,box-shadow .2s,background .2s;
}
.article-cta__btn--primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--black);border:0;
  box-shadow:0 8px 24px rgba(212,175,55,.35);
}
.article-cta__btn--primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(212,175,55,.45)}
.article-cta__btn--ghost{
  background:transparent;color:var(--white);
  border:1px solid rgba(255,255,255,.28);
}
.article-cta__btn--ghost:hover{border-color:var(--gold);color:var(--gold)}

.article-footer-nav{margin-top:1.5rem}
.page-article .blog-status{border-radius:14px;margin-bottom:1.25rem}

footer{position:relative;overflow:hidden;padding:3rem 2rem 2rem;background:var(--black);color:var(--white);background-image:radial-gradient(ellipse 50% 60% at 10% 80%, rgba(212,175,55,0.08) 0%, transparent 50%)}
.footer-content{position:relative;z-index:1;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 2fr 1fr;gap:3rem;margin-bottom:2rem;align-items:start}
.footer-brand{text-align:center}
.footer-brand .logo{display:inline-flex;justify-content:center}
.footer-column:first-of-type{text-align:right}
.footer-column:last-of-type{text-align:left}
.footer-content h4{color:var(--gold);text-transform:uppercase;letter-spacing:.08em;font-size:.9rem;margin-bottom:1rem}
.footer-content ul{list-style:none}
.footer-content a{color:var(--white);opacity:.78;text-decoration:none;display:block;padding:.3rem 0}
.footer-content a:hover{color:var(--gold);opacity:1}
.footer-brand .logo-img{height:70px;margin-bottom:.5rem}
.footer-staff-login{display:inline-block;margin:0 0 .85rem;font-size:.82rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);text-decoration:none}
.footer-staff-login:hover{color:var(--gold-light);text-decoration:underline}
.footer-brand p{opacity:.82;max-width:320px;margin:0 auto}
.footer-bottom{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap;border-top:1px solid rgba(255,255,255,.18);padding-top:1.5rem;font-size:.9rem;opacity:.7}
.footer-bottom p{margin:0}
.footer-bottom-left{text-align:left}
.footer-bottom-right{text-align:right;margin-left:auto}
.footer-credit-link,.footer-year{color:var(--gold);font-weight:600;opacity:1}
.footer-credit-link{text-decoration:none}
.footer-credit-link:hover{color:var(--gold-light);text-decoration:underline}

@media (max-width:900px){
  .nav-links{display:none}
  .footer-content{grid-template-columns:1fr;text-align:center}
  .footer-column:first-of-type,.footer-column:last-of-type{text-align:center}
}
@media (max-width:600px){
  :root{--header-h:80px}
  #header{padding:1rem 1.25rem}
  .wrap{padding:0 1.25rem}
  .article-hero{padding:1.5rem 0 1.75rem}
  .blog-article-header-section{padding:1.75rem 0 1.5rem}
  .article-title,.blog-article-header h1{max-width:none}
  .blog-article-body.article-prose{padding:1.75rem 1.35rem 2rem}
  .blog-article-body > p:first-of-type::first-letter{font-size:2.75rem}
  .article-cta__inner{padding:1.5rem 1.35rem}
  .article-cta__actions{flex-direction:column}
  .article-cta__btn{width:100%}
}
