/* IKH Software — The Advisor theme */
/* Serious, classic, trustworthy */

:root {
  --charcoal: #1A1A2E;
  --warm-accent: #B85C38;
  --text: #2C2C2C;
  --text-light: #5A5A6E;
  --bg: #FAFAF8;
  --bg-section: #F2F0EC;
  --border: #D8D4CC;
  --white: #FFFFFF;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* — Layout — */

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* — Header — */

header {
  padding: 4rem 0 3rem;
}

header .company-name {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

header .established {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* — Hero — */

.hero {
  padding: 4rem 0 3.5rem;
}

.hero h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
}

/* — Sections — */

section {
  padding: 3rem 0;
}

section h2 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

section p {
  color: var(--text);
  margin-bottom: 1rem;
  max-width: 600px;
}

section p:last-child {
  margin-bottom: 0;
}

/* — Services list — */

.services-list {
  list-style: none;
  margin-top: 1.25rem;
}

.services-list li {
  padding: 1rem 0;
}

.services-list li:last-child {
  padding-bottom: 0;
}

.service-name {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* — Contact / Footer — */

footer {
  padding: 3rem 0 4rem;
}

footer .contact-line {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

footer .contact-line a {
  color: var(--text);
  text-decoration: none;
}

footer .contact-line a:hover {
  color: var(--warm-accent);
}

footer .copyright {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* — Responsive — */

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  .container {
    padding: 0 1.25rem;
  }

  header {
    padding: 2.5rem 0 2rem;
  }

  .hero {
    padding: 2.5rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  section {
    padding: 2rem 0;
  }
}
