/* MenthaSoft LLC – brand colors from logo */
:root {
  --mentha-green: #7FC94D;
  --mentha-blue: #00B1EB;
  --text-dark: #1a1a1a;
  --text-muted: #444;
  --bg: #fafafa;
  --bg-section: #fff;
  --max-width: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg);
}

.hero {
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  background: var(--bg-section);
  border-bottom: 3px solid var(--mentha-green);
}

.hero-logo {
  display: block;
  margin: 0 auto 1rem;
  max-width: 280px;
  height: auto;
}

.hero-tagline {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--mentha-blue);
}

.hero-subline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

section {
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}

section:last-of-type {
  border-bottom: none;
}

h2 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mentha-green);
}

.cap-list,
.exp-list {
  margin: 0;
  padding-left: 1.25rem;
}

.cap-list li,
.exp-list li {
  margin-bottom: 0.85rem;
}

.cap-list li:last-child,
.exp-list li:last-child {
  margin-bottom: 0;
}

.cap-accent {
  color: var(--mentha-blue);
  font-weight: 600;
}

.contact-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.contact-list a {
  color: var(--mentha-blue);
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--mentha-green);
  text-decoration: underline;
}

.contact-list a:focus {
  outline: 2px solid var(--mentha-green);
  outline-offset: 2px;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-section);
  border-top: 1px solid #eee;
}

@media (min-width: 600px) {
  .hero {
    padding: 4rem 2rem 4.5rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  .hero-subline {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}
