:root {
  --bg: #0b0b0f;
  --panel: #12121a;
  --text: #e9e9ef;
  --muted: #a9a9b6;
  --accent: #ff7a18;
  /* fire orange */
  --accent-2: #ffb703;
  --border: #22222e;
  --card: #151520;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(255, 122, 24, 0.12), transparent 60%),
    var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* glow background */
.bg-glow {
  position: fixed;
  inset: -40% -40% auto -40%;
  height: 80vh;
  background: conic-gradient(from 120deg at 50% 50%, #ff7a18, #ffb703, #ff7a18);
  filter: blur(120px) saturate(140%) opacity(.07);
  animation: spin 18s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.logo {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  transition: color .2s;
}

.nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0 10px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 10px;
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
}

.btn.primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #111;
  border: none;
}

.btn.outline {
  color: var(--text);
}

.btn.ghost {
  color: var(--muted);
}

.btn.subtle {
  color: var(--text);
  background: #1a1a24;
}

.hero-card {
  height: clamp(220px, 40vh, 360px);
  border-radius: 20px;
  background:
    radial-gradient(200px 100px at 70% 30%, rgba(255, 183, 3, .35), transparent 60%),
    radial-gradient(320px 180px at 30% 70%, rgba(255, 122, 24, .22), transparent 60%),
    linear-gradient(180deg, #1a1a24, #0f0f16);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/image.jpg') center/cover no-repeat;
  opacity: .16;
  mix-blend-mode: screen;
}

/* Sections */
.section {
  padding: 54px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-badge {
  display: inline-block;
  font-size: .75rem;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  margin-bottom: 8px;
}

.card-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.card-link.disabled {
  opacity: .5;
  pointer-events: none;
}

.card-img.framed {
  display: block;
  max-width: 200px;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  padding: 4px;
  background: #532323;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.more-row {
  margin-top: 16px;
}

/* Contact */
.contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.contact-item .ci-title {
  font-weight: 700;
}

.contact-item .ci-sub {
  color: var(--muted);
  font-size: .95rem;
}

/* Footer */
.site-footer {
  padding: 40px 0 60px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }
}