:root {
  --ink: #1a1a1a;
  --accent: #b3121b;
  --bg-alt: #f7f6f4;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); line-height: 1.6; }
a { color: var(--accent); }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.site-header { padding: 24px 0; border-bottom: 1px solid #e5e5e5; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--serif); font-weight: 700; letter-spacing: 1px; }
nav a { margin-left: 24px; text-decoration: none; color: var(--ink); font-size: 0.95rem; }
nav a:hover { color: var(--accent); }

.hero { padding: 80px 0 60px; text-align: center; background: var(--bg-alt); }
.hero-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin-bottom: 24px; }
.hero h1 { font-family: var(--serif); font-size: 2.6rem; margin-bottom: 8px; }
.subtitle { font-size: 1.2rem; color: var(--accent); margin-bottom: 12px; }
.hero-meta { font-size: 0.95rem; color: #555; }
.small-hero { padding: 60px 0 40px; }

.section { padding: 64px 0; }
.section h2 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 20px; }
.section p { margin-bottom: 16px; max-width: 700px; }
.alt-bg { background: var(--bg-alt); }

.two-col { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.col-text { flex: 1 1 400px; }
.col-image { flex: 1 1 280px; text-align: center; }
.rounded-photo { width: 100%; max-width: 320px; height: auto; border-radius: 8px; }
.caption { font-size: 0.85rem; color: #777; margin-top: 8px; }

.expertise-list { list-style: none; margin-bottom: 16px; }
.expertise-list li { padding: 8px 0; border-bottom: 1px solid #e5e5e5; }

.single-photo { max-width: 480px; margin: 32px auto 0; text-align: center; }
.single-photo img { width: 100%; height: auto; border-radius: 8px; }

.closing { text-align: center; background: var(--ink); color: #fff; }
.closing h2 { color: #fff; }
.closing p { margin: 0 auto 24px; }
.btn { display: inline-block; background: var(--accent); color: #fff; padding: 14px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; border: none; cursor: pointer; }
.btn:hover { background: #8f0e15; }

.media-kit-list, .expertise-list { padding-left: 0; }
.media-kit-list li { padding: 6px 0; }
.empty-state { color: #888; font-style: italic; }

.contact-form { display: flex; flex-direction: column; max-width: 500px; margin: 24px auto 0; text-align: left; }
.contact-form label { margin-top: 12px; font-size: 0.9rem; }
.contact-form input, .contact-form textarea { padding: 10px; margin-top: 4px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--sans); }
.contact-form button { margin-top: 20px; }
.form-note { font-size: 0.8rem; color: #aaa; margin-top: 12px; }

.site-footer { padding: 32px 0; text-align: center; background: var(--bg-alt); font-size: 0.85rem; }
.site-footer a { color: var(--ink); margin: 0 4px; }

.admin-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--bg-alt); }
.admin-login-box { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); width: 320px; }
.admin-login-box h1 { font-size: 1.3rem; margin-bottom: 20px; text-align: center; }
.admin-login-box form { display: flex; flex-direction: column; }
.admin-login-box label { margin-top: 12px; font-size: 0.9rem; }
.admin-login-box input { padding: 10px; margin-top: 4px; border: 1px solid #ccc; border-radius: 4px; }
.admin-login-box button { margin-top: 20px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  nav a { margin-left: 12px; font-size: 0.85rem; }
}
