:root {
  --bg: #111111;
  --fg: #ffffff;
  --accent: #c8963e;
  --accent-hover: #d9a84f;
  --muted: #888888;
  --border: #333333;
  --card-bg: #1a1a1a;
  --card-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg); color: var(--fg); line-height: 1.7; font-size: 17px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
.site-header {
  max-width: 960px; margin: 0 auto; padding: 24px 24px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.site-logo {
  font-size: 24px; font-weight: 700; letter-spacing: 1px;
  color: var(--accent); font-family: Georgia, serif;
  text-decoration: none; text-transform: uppercase;
}
.site-logo:hover { text-decoration: none; }
nav { display: flex; gap: 24px; }
nav a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px;
}
nav a:hover { color: var(--fg); text-decoration: none; }
.container { max-width: 960px; margin: 0 auto; padding: 48px 24px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden; box-shadow: var(--card-shadow);
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.6); }
.card-image {
  width: 100%; height: 200px; background: #222222;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; font-style: italic;
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 18px; margin-bottom: 8px; color: var(--fg); }
.card-body p { font-size: 15px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.card-price { font-weight: 700; color: var(--accent); font-size: 18px; }
.btn {
  display: inline-block; padding: 11px 22px; background: var(--accent);
  color: #111111; border: none; border-radius: 2px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
}
.btn:hover { background: var(--accent-hover); text-decoration: none; }
.btn-outline {
  background: transparent; border: 1px solid var(--muted); color: var(--muted);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
h1 {
  font-size: 36px; font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 14px; color: var(--fg);
}
h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.section-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--muted); margin-bottom: 24px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.plans-list { list-style: none; margin-top: 24px; }
.plans-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.plans-list li:last-child { border-bottom: none; }
.site-footer {
  max-width: 960px; margin: 0 auto; padding: 24px;
  border-top: 1px solid var(--border); text-align: center;
  font-size: 13px; color: var(--muted); font-style: italic;
}
.hero {
  text-align: center; padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #000000 0%, var(--bg) 100%);
}
.hero h1 {
  font-size: 42px; letter-spacing: -0.5px; color: var(--fg);
  font-style: italic;
}
.hero p {
  font-size: 17px; color: var(--muted); max-width: 540px;
  margin: 16px auto 0; font-style: italic;
}
.about-section { max-width: 640px; margin: 0 auto; }
@media (max-width: 640px) {
  .site-header { flex-direction: column; gap: 12px; }
  nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 28px; }
  .plans-list li { flex-direction: column; gap: 8px; align-items: flex-start; }
}
