
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #243338;
  background: #f8fafc;
}

header {
  background-color: #DEE3DF; /* locked hero/header color */
  padding: 20px 32px;

  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav a {
  margin-left: 32px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #243338;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: #6D2321;
}

.hero {
  background-color: #f8fafc;
  padding: 72px 32px 56px;
  text-align: left;
}

.hero > * {
  Max-width: 900px
  Margin-left: 0;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 12px 0;
}

/* INTRO STATEMENT */
.intro {
  background-color: #f8fafc;
  padding: 72px 32px 56px;
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.45rem;      /* noticeably larger */
  line-height: 1.65;
  color: #243338;
}

.intro strong {
  font-weight: 700;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #997D5D;
}

section {
  padding: 40px;
}

footer {
  background: #243338;
  color: white;
  padding: 20px;
  text-align: center;
}
.logo {
  max-width: 250px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Services ===== */
.services {
  Background-color: #f8fafc;
  padding: 64px 32px;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* SERVICES GRID (RESPONSIVE + CENTERED) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Center cards on smaller screens */
@media (max-width: 768px) {
  .services-grid {
    justify-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 420px;
  }
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #E0E5E2;
  padding: 24px;
}

.service-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: #243338;
}

.service-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
}

.about {
  padding: 64px 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.credentials {
  background-color: #F7F8F7;
  padding: 24px;
  border-left: 3px solid #6D2321;
}

.credentials h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: #243338;
}

.credentials ul {
  padding-left: 18px;
  margin: 0 0 20px;
}

.credentials li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.depo-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #665540;
  margin-top: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .credentials {
    border-left: none;
    border-top: 3px solid #6D2321;
  }
}

.contact-form {
  max-width: 720px;
  margin-top: 32px;
}

.contact {
  text-align: center;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.contact-form {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #CED6D2;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.contact-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form button {
  margin-top: 16px;
  padding: 12px 20px;
  font-size: 0.95rem;
  background-color: #6D2321;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.contact-form button {
  display: block;
  margin: 24px auto 0;  /* centers horizontally */
}

.contact-form button:hover {
  background-color: #5A1D1B;
}

.hidden {
  display: none;
}

/* HERO CTA BUTTON */
.hero-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;

  background-color: #6D2321;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;

  border: none;
  cursor: pointer;
}

.hero-button:hover {
  background-color: #5A1D1B;
}

/* Mobile */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.section-divider {
  max-width: 900px;
  height: 1px;
  margin: 56px auto;
  background-color: #D1D6D3;
}

html {
  scroll-behavior: smooth;

section {
  scroll-margin-top: 96px;
}

}


