/* Shared styles for About, Contact, Blog pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0E0908; --bg-1: #131010; --gold: #C6A35C; --gold-bright: #e0c078;
  --oxblood: #58000D; --text: #F5F3F2; --text-muted: #948F8C; --text-faint: #5a5452;
  --hairline: rgba(255,255,255,.08); --gutter: clamp(20px,5vw,80px);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', sans-serif; --font-word: 'Cinzel', serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }
img { max-width: 100%; display: block; }

/* topbar */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; height: 64px; padding-inline: var(--gutter); background: rgba(14,9,8,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--hairline); }
.topbar__brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-word); font-weight: 600; letter-spacing: .2em; font-size: .82rem; color: var(--text); text-decoration: none; }
.topbar__seal { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; }
.topbar__seal img { width: 100%; height: 100%; object-fit: cover; }
.topbar__nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); }
.topbar__nav a { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.topbar__nav a:hover, .topbar__nav a.active { color: var(--gold); }
.topbar__btn { font-family: var(--font-body); font-size: .76rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; background: var(--gold); color: #1a1206; border: none; border-radius: 4px; padding: 0 22px; height: 40px; cursor: pointer; transition: background .2s; }
.topbar__btn:hover { background: var(--gold-bright); }
@media (max-width: 600px) { .topbar__nav { display: none; } }

/* page hero */
.page-hero { padding: 140px var(--gutter) 80px; text-align: center; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(88,0,13,.28), transparent), linear-gradient(180deg, rgba(14,9,8,1) 0%, rgba(14,9,8,.0) 100%); border-bottom: 1px solid var(--hairline); }
.page-hero .eyebrow { font-family: var(--font-word); font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.12; margin-bottom: 22px; }
.page-hero p { color: var(--text-muted); max-width: 58ch; margin-inline: auto; font-size: 1.08rem; line-height: 1.7; }

/* content */
.page-content { max-width: 820px; margin-inline: auto; padding: 80px var(--gutter) 120px; }
.page-content h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 60px 0 18px; color: var(--text); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: 36px 0 12px; color: var(--gold-bright); }
.page-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.75; }
.page-content p strong { color: var(--text); font-weight: 600; }
.page-content ul { list-style: none; margin-bottom: 24px; display: grid; gap: 10px; }
.page-content ul li { color: var(--text-muted); padding-left: 22px; position: relative; }
.page-content ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.divider { width: 56px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 48px 0; }

/* card grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin: 40px 0; }
.card { background: rgba(255,255,255,.03); border: 1px solid var(--hairline); border-radius: 12px; padding: 28px; }
.card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-bright); margin-bottom: 10px; }
.card p { font-size: .94rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* contact table */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 40px 0; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-block h3 { font-family: var(--font-word); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.contact-block p, .contact-block a { display: block; color: var(--text-muted); font-size: 1rem; margin-bottom: 8px; }
.contact-block a:hover { color: var(--gold); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, rgba(88,0,13,.22), rgba(14,9,8,1)); border: 1px solid var(--hairline); border-radius: 16px; padding: clamp(40px,6vh,70px) clamp(28px,5vw,70px); text-align: center; margin-top: 80px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 48ch; margin-inline: auto; margin-bottom: 36px; }
.btn-gold { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 36px; background: var(--gold); color: #1a1206; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: background .2s, transform .2s; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); color: #1a1206; }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 36px; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-body); font-weight: 500; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: background .2s, transform .2s; margin-left: 16px; }
.btn-ghost:hover { background: rgba(198,163,92,.1); transform: translateY(-2px); color: var(--gold); }

/* footer */
.site-footer { border-top: 1px solid var(--hairline); background: var(--bg-1); padding: 48px var(--gutter) 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.site-footer p { color: var(--text-faint); font-size: .82rem; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer nav a { color: var(--text-faint); font-size: .8rem; text-decoration: none; }
.site-footer nav a:hover { color: var(--gold); }
.site-footer__social { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--hairline); color: var(--text-muted); transition: color .2s, border-color .2s, background-color .2s, transform .2s; }
.social-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(198,163,92,.08); transform: translateY(-2px); }
.social-btn svg { width: 17px; height: 17px; display: block; }

/* blog post */
.post-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 40px; flex-wrap: wrap; }
.post-meta .tag { font-family: var(--font-body); font-size: .66rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); background: rgba(88,0,13,.45); border: 1px solid rgba(198,163,92,.2); padding: 5px 14px; border-radius: 100px; }
.post-meta .date { color: var(--text-faint); font-size: .82rem; letter-spacing: .06em; }
.post-hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: 12px; margin-bottom: 56px; border: 1px solid var(--hairline); filter: brightness(.88) saturate(.9); }
.post-body h2 { margin-top: 48px; }
.post-body blockquote { border-left: 3px solid var(--gold); padding-left: 22px; margin: 32px 0; font-family: var(--font-display); font-style: italic; font-size: 1.18rem; color: var(--text); line-height: 1.6; }

@media (max-width: 768px) {
  .page-hero { padding: 110px var(--gutter) 56px; }
  .page-content { padding: 52px var(--gutter) 80px; }
  .post-hero-img { aspect-ratio: 4/3; margin-bottom: 36px; }
}
