:root {
  --bg: #14181f;
  --text: #e7ebf0;
  --muted: #8a96a8;
  --primary: #f1c265;
  --accent: #6cd1c0;
  --border: #232a36;
  --card: #1c222b;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 680px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); }
a:hover { color: var(--primary); }
header { padding: 24px 0; border-bottom: 1px solid var(--border); background: var(--bg); }
header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.brand { font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: 0.02em; text-decoration: none; }
nav a { color: var(--muted); text-decoration: none; margin-left: 24px; font-size: 15px; }
nav a:hover { color: var(--primary); }
.hero { padding: 80px 0 60px; text-align: center; }
.hero h1 { font-size: 38px; font-weight: 700; color: var(--primary); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.01em; }
.hero p { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto; }
section { padding: 60px 0; border-top: 1px solid var(--border); }
section h2 { font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
section .section-subtitle { color: var(--muted); margin-bottom: 32px; font-size: 15px; }
section p { margin-bottom: 16px; color: var(--text); }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 24px; }
.tile { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 24px; text-decoration: none; color: inherit; transition: transform 0.15s ease, border-color 0.15s ease; }
.tile:hover { transform: translateY(-2px); border-color: var(--primary); }
.tile-art { width: 56px; height: 56px; border-radius: 6px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.tile h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.tile p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.about-preview a.read-more { display: inline-block; margin-top: 8px; color: var(--accent); font-weight: 600; text-decoration: none; }
.about-preview a.read-more:hover { text-decoration: underline; }
.contact-block a.email { display: inline-block; margin-top: 12px; padding: 12px 28px; background: var(--primary); color: var(--bg); text-decoration: none; border-radius: 6px; font-weight: 700; }
.contact-block a.email:hover { background: var(--accent); }
article.page { padding: 60px 0; }
article.page .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
article.page .breadcrumb a { color: var(--muted); }
article.page h1 { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 24px; line-height: 1.2; letter-spacing: -0.01em; }
article.page h2 { font-size: 22px; font-weight: 700; color: var(--primary); margin-top: 32px; margin-bottom: 12px; }
article.page p { margin-bottom: 16px; font-size: 16px; }
article.page ul, article.page ol { margin-bottom: 16px; padding-left: 24px; }
article.page li { margin-bottom: 8px; }
footer { border-top: 1px solid var(--border); padding: 32px 0; text-align: center; color: var(--muted); font-size: 14px; }
footer p { margin-bottom: 4px; }
@media (max-width: 600px) {
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  section { padding: 40px 0; }
  nav { display: flex; gap: 16px; margin-top: 8px; }
  nav a { margin-left: 0; }
  article.page h1 { font-size: 24px; }
}

/* LOGO:start */
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 600; color: var(--primary); letter-spacing: 0.02em; text-decoration: none; }
.brand-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon rect, .brand-icon polygon, .brand-icon line { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: var(--accent); transition: color 0.15s ease; }
/* LOGO:end */

/* ENHANCE:start */
.hero {
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 70%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.hero::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 50%;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: left;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-grid h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-grid p,
.footer-grid a {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.5;
}
.footer-grid a:hover { color: var(--primary); }
.footer-meta {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
  text-align: center;
  margin: 0;
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
}
/* ENHANCE:end */
