@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

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

body {
  font-family: "Gotham", "Avenir Next", "Avenir", "Montserrat", "Century Gothic", sans-serif;
  font-weight: 600;
  color: #4A5568;
  background: #FAF0F0;
  line-height: 1.6;
}

/* Navigation */
nav {
  background: #8C7BAC;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #7E4F6D 0%, #8C7BAC 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #0D9488;
  color: #fff;
}

.btn-primary:hover {
  background: #0b7a70;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #8C7BAC;
  border: 2px solid #8C7BAC;
}

.btn-outline:hover {
  background: #8C7BAC;
  color: #fff;
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #4A5568;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.1s;
}

a.feature-card:hover {
  box-shadow: 0 4px 16px rgba(140,123,172,0.2);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #4A5568;
}

.feature-card p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Contact form */
.contact-card {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #4A5568;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: inherit;
  color: #4A5568;
  background: #FAF0F0;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0D9488;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info {
  margin-top: 2.5rem;
}

.headshot {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #8C7BAC;
  margin-bottom: 1rem;
  display: block;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.contact-info a {
  color: #0D9488;
  text-decoration: none;
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
}

details {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
}

details[open] {
  border-left: 3px solid #0D9488;
}

summary {
  font-weight: 600;
  font-size: 1rem;
  color: #4A5568;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #0D9488;
  flex-shrink: 0;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 0.85rem;
  color: #6b7280;
  font-size: 0.95rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: #9ca3af;
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
}

/* Service page images */
.service-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto 2.5rem;
}

@media (max-width: 640px) {
  .service-image {
    max-width: 260px;
    border-radius: 12px;
  }
}

/* About page */
.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.headshot-large {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #8C7BAC;
  display: block;
}

.about-bio h2 {
  font-size: 1.75rem;
  color: #4A5568;
  margin-bottom: 0.25rem;
}

.about-title {
  color: #8C7BAC;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.about-bio p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-photo {
    text-align: center;
  }
}

/* Field note (cautionary tale) */
.field-note {
  border-left: 3px solid #0D9488;
  background: #f0fdf9;
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
}

.field-note::before {
  content: "From the Field";
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0D9488;
  margin-bottom: 0.5rem;
}

.field-note p {
  font-style: italic;
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

/* Callout block */
.callout {
  background: linear-gradient(135deg, #7E4F6D 0%, #8C7BAC 100%);
  border-radius: 8px;
  padding: 1.75rem 2rem;
}

.callout p {
  color: #fff;
  font-size: 1.05rem;
  margin: 0;
}

/* Privacy page */
.privacy-body h3 {
  font-size: 1.1rem;
  color: #4A5568;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.privacy-body p,
.privacy-body ul {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.privacy-body ul {
  padding-left: 1.25rem;
  line-height: 2;
}

.privacy-body a {
  color: #0D9488;
  text-decoration: none;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
}

footer a:hover {
  color: #6b7280;
}

/* Button groups */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 640px) {
  nav {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 0.75rem;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .hero {
    padding: 3.5rem 1.25rem;
  }

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

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

  .btn-secondary {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero a.btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 2.5rem 1.25rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .interstitial-card {
    padding: 2rem 1.25rem;
  }
}
