:root {
  --primary: #e60000;
  --secondary: #111;
  --muted: #555;
  --bg: #fff;
  --max-width: 1100px;
  --radius: 10px;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  margin: 0;
  color: var(--secondary);
  background: var(--bg);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand h1 {
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  margin: 0;
}

.brand p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 24px;
}

nav a {
  text-transform: uppercase;
  font-weight: 600;
  color: black;
  padding: 4px 0;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

nav a.cta {
  color: var(--primary);
  font-weight: 700;
}

.menu-toggle {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 16px;
  gap: 24px;
}

.hero h2 {
  font-family: Montserrat, sans-serif;
  font-size: 1.8rem;
}

.hero p {
  color: var(--muted);
  line-height: 1.6;
}

.actions a {
  display: inline-block;
  padding: 10px 22px;
  margin-right: 10px;
  border-radius: var(--radius);
  font-weight: 600;
}

.actions .cta {
  background: var(--primary);
  color: #fff;
}

.actions a:not(.cta) {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.cards {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  display: block;
}

.card .content {
  padding: 16px;
}

.card h3 {
  margin-top: 0;
}

footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 20px 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mobile Navigation */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
  padding: 10px 0;
}

.mobile-drawer a {
  padding: 10px 16px;
  color: black;
  text-transform: uppercase;
}

.mobile-drawer a:hover {
  background: #f9f9f9;
  color: var(--primary);
}

body.mobile-open .mobile-drawer {
  display: flex;
}

@media (max-width: 820px) {
  nav ul {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
