:root {
  --bg: #0b0b0d;
  --bg-soft: #141418;
  --card: #16161b;
  --border: #2a2a31;
  --text: #ececed;
  --muted: #a0a0a8;
  --gold: #c8964f;
  --gold-2: #e6c584;
  --gold-grad: linear-gradient(135deg, #b07b34 0%, #e6c584 50%, #b07b34 100%);
  --maxw: 820px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; border-radius: 10px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11,11,13,0.9);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; border-radius: 0; }
.brand-name {
  font-weight: 700; letter-spacing: 2px; font-size: 15px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-transform: uppercase;
}
.nav a { color: var(--muted); margin-left: 22px; font-size: 15px; letter-spacing: .3px; }
.nav a:hover { color: var(--gold-2); text-decoration: none; }

/* Hero */
.hero { padding: 64px 0 30px; text-align: center; border-bottom: 1px solid var(--border); }
.hero .eyebrow { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 14px 0 10px; }
.hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* Post list */
.posts { padding: 40px 0 70px; }
.post-card {
  display: block; border: 1px solid var(--border); background: var(--card);
  border-radius: 14px; padding: 26px 28px; margin-bottom: 20px; transition: border-color .2s, transform .2s;
}
.post-card:hover { border-color: var(--gold); transform: translateY(-2px); text-decoration: none; }
.post-card .date { color: var(--gold); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; }
.post-card h2 { margin: 8px 0 8px; font-size: 24px; color: var(--text); }
.post-card p { margin: 0; color: var(--muted); font-size: 16px; }
.post-card .readmore { color: var(--gold-2); font-size: 15px; margin-top: 12px; display: inline-block; }

/* Article */
.article { padding: 46px 0 60px; }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.article h1 { font-size: 34px; line-height: 1.2; margin: 6px 0 12px; }
.article .meta { color: var(--gold); font-size: 14px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 26px; }
.article h2 { font-size: 25px; margin: 40px 0 12px; }
.article h3 { font-size: 20px; margin: 28px 0 8px; color: var(--gold-2); }
.article p { margin: 0 0 18px; }
.article ul { margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article figure { margin: 26px 0; }
.article figcaption { color: var(--muted); font-size: 14px; text-align: center; margin-top: 8px; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }

.callout {
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  background: var(--bg-soft); border-radius: 10px; padding: 18px 22px; margin: 26px 0;
}
.callout p:last-child { margin-bottom: 0; }

.faq h3 { color: var(--text); }
.cta {
  text-align: center; border: 1px solid var(--border); background: var(--card);
  border-radius: 14px; padding: 32px; margin: 40px 0 0;
}
.btn {
  display: inline-block; margin-top: 8px; padding: 13px 28px; border-radius: 999px;
  background: var(--gold-grad); color: #1a1204; font-weight: 700; letter-spacing: .5px;
}
.btn:hover { text-decoration: none; opacity: .93; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 34px 0; color: var(--muted); font-size: 14px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--muted); }
.site-footer .socials a { margin-left: 14px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .nav a { margin-left: 14px; }
  body { font-size: 17px; }
}
