:root {
  --brand: #0a7e8c;
  --brand-dark: #075e67;
  --ink: #222;
  --muted: #666;
  --bg: #fff;
  --soft: #f5fbfc;
  --card: #ffffff;
  --accent: #e6f7fa;
  --radius: 14px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, 'Noto Sans'; color: var(--ink); background: var(--bg); line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.flex { display: flex; gap: 1rem; }
.center { align-items: center; }
.between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid #eee; }
.branding { display: flex; align-items: center; gap: .75rem; }
.site-title { font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; }
.menu.vertical { flex-direction: column; }
.primary-nav a { padding: .75rem .5rem; border-radius: 8px; }
.primary-nav a:hover { background: var(--accent); text-decoration: none; }
.btn { display: inline-block; background: var(--brand); color: #fff; padding: .75rem 1rem; border-radius: 10px; font-weight: 600; }
.btn.ghost { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }
.hero { background: linear-gradient(135deg, var(--soft), #ffffff); padding: 3.5rem 0; border-bottom: 1px solid #eee; }
.hero h1 { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 .5rem; }
.cta-row { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.card { background: var(--card); border: 1px solid #eee; padding: 1rem; border-radius: var(--radius); box-shadow: 0 1px 0 rgba(0,0,0,0.03); }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; margin: 2rem auto; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; } }
.placeholder { background: #f1f5f9; border: 1px dashed #cbd5e1; border-radius: var(--radius); padding: 3rem; text-align: center; color: var(--muted); }
.strip { background: var(--soft); padding: 2rem 0; border-top: 1px solid #e6f0f2; border-bottom: 1px solid #e6f0f2; }
.quote { background: #fff; padding: 1rem 1.25rem; border-left: 4px solid var(--brand); border-radius: 10px; }
.quote cite { display: block; color: var(--muted); margin-top: .5rem; font-style: normal; }
.ticks { list-style: none; padding-left: 0; }
.ticks li { position: relative; padding-left: 1.5rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); }
.page-wrap { padding: 2rem 0; }
.page-wrap.narrow { width: min(800px, 92%); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px){ .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item .placeholder { padding: 2.5rem; }
.site-footer { background: #0f172a; color: #e2e8f0; padding: 2rem 0; margin-top: 2rem; }
.site-footer a { color: #e2e8f0; }
.subfooter { border-top: 1px solid #334155; margin-top: 1rem; padding-top: 1rem; font-size: .9rem; color: #cbd5e1; }
