/* SND Marketing — dark garnet/crimson accent, light background */

:root {
  --bg-page: #faf7f7;
  --bg-card: #ffffff;
  --bg-soft: #f5eded;
  --text-primary: #1a0a0a;
  --text-secondary: #6b4f4f;
  --accent: #8b1a1a;
  --accent-hover: #6b0000;
  --accent-muted: #a52828;
  --accent-bg: #fdf0f0;
  --border: #e8d5d5;
  --border-light: #f3e8e8;
  --font-heading: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--accent-muted);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  background-color: var(--bg-page);
  min-height: 100vh;
}

h1, h2, h3, .site-title {
  font-family: var(--font-heading);
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(80, 0, 0, 0.07);
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.site-title:hover {
  color: var(--accent-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--text-primary);
}

/* Hero */
.hero {
  padding: 4rem 1.5rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-muted);
  background: var(--accent-bg);
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.cta-primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
}

.cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.section-intro {
  margin: 0 auto 2rem;
  max-width: 36rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Services — 8 cards */
.services {
  padding: 3rem 1.5rem 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.services h2,
.benefits h2,
.cta-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.services .section-intro,
.benefits .section-intro {
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(80, 0, 0, 0.04);
}

.service-card:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.08);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--accent-muted);
}

.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Benefits */
.benefits {
  padding: 3rem 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.benefits-list li {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(80, 0, 0, 0.04);
}

.benefits-list strong {
  color: var(--accent-muted);
  font-weight: 600;
}

/* CTA section */
.cta-section {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section h2 {
  margin: 0 0 0.5rem;
}

.cta-section p {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Footer */
.site-footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.875rem;
  background: var(--bg-card);
}

.site-footer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
}
