/* Compass & Oak Style Sheet */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --navy: #1F2A44;
  --oak: #7A5C4D;
  --sage: #A7B9A7;
  --parchment: #FDFCF9;
  --charcoal: #333333;
  --white: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--parchment);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

header {
  background: linear-gradient(135deg, var(--navy), var(--oak));
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
  max-height: 80px;
  margin-bottom: 1rem;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0;
}

.tagline {
  font-style: italic;
  color: var(--sage);
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

main {
  padding: 2rem 1rem;
  max-width: 960px;
  margin: auto;
}

section {
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-in;
}

.callout {
  background-color: var(--sage);
  border-left: 5px solid var(--oak);
  padding: 1rem;
  margin-top: 2rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
  }
}

h2 {
  color: var(--oak);
  margin-top: 2rem;
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  border-left: 4px solid var(--oak);
  padding-left: 0.5rem;
}

p, li {
  font-size: 1rem;
}

a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

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

ul {
  padding-left: 1.25rem;
  list-style-type: disc;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--sage);
  color: var(--navy);
  font-size: 0.9rem;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  main {
    padding: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
