/* Shared styles for content pages (about, faq, city pages, service pages, etc.) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #08090c;
  --surface: rgba(14,17,23,0.85);
  --border: rgba(255,255,255,0.06);
  --border-bright: rgba(255,255,255,0.1);
  --gold: #d4a012;
  --gold-dim: rgba(212,160,18,0.12);
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.12);
  --amber: #f59e0b;
  --red: #ef4444;
  --text: #e4e8ef;
  --text-mid: #7a8599;
  --text-dim: #3d4654;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', -apple-system, sans-serif;
}
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; min-height: 100vh; -webkit-font-smoothing: antialiased; }

header.site { border-bottom: 1px solid var(--border); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: rgba(8,9,12,0.92); backdrop-filter: blur(20px); z-index: 10; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 800; font-size: 13px; color: var(--bg); }
.logo-text { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.logo-text .gold { color: var(--gold); }
nav.site a { color: var(--text-mid); text-decoration: none; margin-left: 22px; font-size: 13px; font-weight: 600; }
nav.site a:hover, nav.site a[aria-current="page"] { color: var(--gold); }

.wrap { max-width: 820px; margin: 0 auto; padding: 48px 24px 96px; }

.breadcrumb { font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-dim); }

h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; line-height: 1.15; }
h2 { font-size: 22px; font-weight: 700; margin: 40px 0 14px; color: var(--gold); letter-spacing: -0.01em; }
h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; color: var(--text); }
p { font-size: 15px; color: var(--text-mid); margin-bottom: 14px; }
.lead { font-size: 17px; color: var(--text); margin-bottom: 28px; }
ul, ol { padding-left: 22px; margin-bottom: 18px; }
li { font-size: 15px; color: var(--text-mid); margin-bottom: 8px; }
strong { color: var(--text); font-weight: 700; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: var(--mono); font-size: 13px; background: rgba(255,255,255,0.04); padding: 1px 6px; border-radius: 4px; color: var(--text); }

.kicker { font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 12px; }

.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin: 20px 0 28px; }
.fact { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.fact-label { font-family: var(--mono); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 4px; }
.fact-val { font-size: 16px; font-weight: 700; color: var(--text); }
.fact-val.gold { color: var(--gold); font-family: var(--mono); }

.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 20px 0 28px; }
.cred { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.cred-icon { font-size: 22px; margin-bottom: 8px; }
.cred-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cred-desc { font-size: 12px; color: var(--text-mid); }

details.faq { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 0; margin-bottom: 10px; transition: border-color 0.2s; }
details.faq[open] { border-color: rgba(212,160,18,0.25); }
details.faq summary { padding: 16px 20px; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--text); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; color: var(--gold); font-family: var(--mono); font-weight: 800; font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .answer { padding: 0 20px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.65; }

.cta-box { background: rgba(212,160,18,0.08); border: 1px solid rgba(212,160,18,0.2); border-radius: 12px; padding: 22px; margin: 36px 0; text-align: center; }
.cta-box h3 { margin: 0 0 6px; color: var(--gold); font-size: 18px; font-weight: 800; }
.cta-box p { margin-bottom: 14px; color: var(--text-mid); font-size: 14px; }
.cta-btn { display: inline-block; padding: 11px 22px; background: var(--gold); color: var(--bg); border-radius: 8px; font-weight: 800; font-size: 14px; text-decoration: none; }
.cta-btn:hover { text-decoration: none; opacity: 0.95; }

.related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.related-label { font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 14px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.related-grid a { display: block; padding: 10px 14px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text); transition: border-color 0.2s, color 0.2s; }
.related-grid a:hover { color: var(--gold); border-color: rgba(212,160,18,0.3); text-decoration: none; }

footer.site { border-top: 1px solid var(--border); padding: 32px 24px; text-align: center; color: var(--text-dim); font-size: 12px; }
footer.site .ft-nav { margin-top: 8px; }
footer.site .ft-nav a { color: var(--text-mid); margin: 0 10px; text-decoration: none; }
footer.site .ft-nav a:hover { color: var(--gold); }
footer.site .ft-sub { margin-top: 14px; color: var(--text-dim); font-size: 11px; line-height: 1.6; }

@media (max-width: 600px) {
  h1 { font-size: 28px; }
  h2 { font-size: 19px; }
  nav.site a { margin-left: 14px; font-size: 12px; }
  .wrap { padding: 32px 20px 64px; }
}
