
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --bg:#0a0a0b;
  --bg2:#0f0f12;
  --card:#121216;
  --text:#f5f5f7;
  --muted:rgba(245,245,247,.72);
  --gold:#d4af37;
  --gold2:#f1d27a;
  --line:rgba(212,175,55,.25);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(212,175,55,.10), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(212,175,55,.07), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

a{color:inherit}
.wrap{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(10,10,11,.72);
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.topbar .wrap{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}
.brand{display:flex; flex-direction:column; text-decoration:none}
.brand__name{
  font-family: "Cormorant Garamond", serif;
  letter-spacing:.6px;
  font-size:22px;
  color: var(--gold2);
}
.brand__tag{font-size:12px; color:var(--muted); margin-top:2px}
.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.nav a{font-size:14px; text-decoration:none; color:var(--muted)}
.nav a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px;
  border:1px solid rgba(212,175,55,.28);
  background: linear-gradient(180deg, rgba(212,175,55,.20), rgba(212,175,55,.10));
  box-shadow: 0 12px 35px rgba(212,175,55,.08);
  text-decoration:none;
}
.btn:hover{border-color: rgba(212,175,55,.45)}
.btn--small{padding:9px 14px; font-size:14px}

.hero{padding:56px 0 34px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.18em;
  text-transform:uppercase;
}
.kicker:before{
  content:"";
  width:34px; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:.9;
}
.h1{
  font-family: "Cormorant Garamond", serif;
  font-size:54px;
  line-height:1.05;
  margin:14px 0 14px;
}
.lead{color:var(--muted); font-size:16px; max-width:60ch}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px}
.ghost{
  background:transparent;
  border:1px solid rgba(245,245,247,.18);
  box-shadow:none;
}
.ghost:hover{border-color: rgba(212,175,55,.35)}

.hero__photo{
  border-radius:22px;
  overflow:hidden;
  background: radial-gradient(800px 600px at 40% 30%, rgba(212,175,55,.18), transparent 60%);
  border:1px solid rgba(212,175,55,.16);
  box-shadow: var(--shadow);
}
.hero__photo img{
  width:100%;
  display:block;
  transform: scale(1.02);
}
.badge{
  position:absolute;
  margin:18px;
}

.section{padding:34px 0}
.section__title{
  font-family:"Cormorant Garamond", serif;
  font-size:32px;
  margin:0 0 14px;
}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(212,175,55,.14);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:18px;
}
hr.sep{border:0; border-top:1px solid rgba(212,175,55,.18); margin:24px 0}

.news-list{display:grid; grid-template-columns: 1fr; gap:14px}
.news-item{
  display:flex; gap:16px; align-items:flex-start;
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,.02);
  border:1px solid rgba(212,175,55,.14);
  text-decoration:none;
}
.news-item:hover{border-color: rgba(212,175,55,.28)}
.news-thumb{
  width:120px; height:76px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.16);
  flex:0 0 auto;
}
.news-thumb img{width:100%; height:100%; object-fit:cover; display:block}
.news-meta{font-size:12px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase}
.news-title{margin:6px 0 6px; font-size:18px; font-family:"Cormorant Garamond", serif}
.news-excerpt{margin:0; color:var(--muted); font-size:14px}

.article{padding:26px 0 42px}
.article__header{padding:34px 0 10px}
.article__title{
  font-family:"Cormorant Garamond", serif;
  font-size:44px;
  line-height:1.1;
  margin:0 0 10px;
}
.article__meta{color:var(--muted); font-size:13px}
.article__cover{
  margin-top:18px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.14);
  box-shadow: var(--shadow);
}
.article__cover img{width:100%; display:block}
.prose{color:rgba(245,245,247,.86); font-size:16px; max-width:72ch}
.prose p{margin:0 0 14px}
.prose blockquote{
  margin:18px 0;
  padding:14px 16px;
  border-left:2px solid rgba(212,175,55,.6);
  background: rgba(212,175,55,.06);
  border-radius:12px;
  color: rgba(245,245,247,.92);
}

.footer{
  margin-top:24px;
  border-top:1px solid rgba(212,175,55,.14);
  background: rgba(0,0,0,.28);
  padding:24px 0 18px;
}
.footer__grid{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer__title{font-family:"Cormorant Garamond", serif; font-size:20px; color:var(--gold2)}
.footer__links{display:flex; flex-direction:column; gap:6px}
.footer__links a{color:var(--muted); text-decoration:none}
.footer__links a:hover{color:var(--text)}
.footer__bottom{padding-top:14px}
.muted{color:var(--muted)}

@media (max-width: 880px){
  .hero__grid{grid-template-columns:1fr; }
  .h1{font-size:42px}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .news-item{flex-direction:column}
  .news-thumb{width:100%; height:160px}
}
