@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
  --accent: #7f1146;
  --accent-dark: #5c0d33;
  --text: #202124;
  --text-muted: rgba(0, 0, 0, 0.64);
  --border: #e0e0e0;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: #fff;
}

h1, h2, h3, .nav-brand {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin: 0;
}

.nav-brand img { width: 28px; height: 28px; }

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 40px 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero h1 {
  position: relative;
  color: #fff;
  font-weight: 300;
  font-size: 40px;
  max-width: 800px;
}

.page-hero {
  min-height: 160px;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section.alt { background: #f7f5f6; }

.section h2.eyebrow {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section h3.section-title {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 16px;
}

.section p { max-width: 760px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.card h4 {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  margin: 0 0 8px;
  font-size: 18px;
}

.card p { margin: 0; }

ul.value-list, ul.plain-list {
  padding-left: 20px;
  max-width: 760px;
}

ul.value-list li, ul.plain-list li { margin-bottom: 10px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  margin-top: 8px;
  margin-right: 12px;
}

.btn:hover { background: var(--accent-dark); text-decoration: none; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 11px 27px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  margin-top: 8px;
}

.btn-outline:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.team-card img {
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 12px;
}

.team-card p { font-family: 'Lato', sans-serif; color: var(--text); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 18px;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer p { margin: 0 0 6px; }

.footer-disclaimers { margin-top: 20px; max-width: 900px; }
