/* Base */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f6f3; /* soft off-white, close to your logo background */
  color: #1f2933;      /* dark slate text */
  line-height: 1.6;
}

/* Layout helpers */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  background: #f7f6f3;
  border-bottom: 1px solid #e1e1dd;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  color: #102a43; /* deep navy */
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 2px;
}

.nav a {
  margin-left: 18px;
  font-size: 0.9rem;
  color: #374151;
  text-decoration: none;
}

.nav a:hover {
  color: #102a43;
}

/* Hero */

.hero {
  padding: 60px 0 40px;
}

.hero-inner {
  text-align: left;
}

.hero-text h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.1rem;
  margin: 0 0 10px;
  color: #111827;
}

.hero-sub {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: #374151;
}

.hero-line {
  font-size: 0.98rem;
  margin: 0 0 20px;
  color: #4b5563;
}

.hero-button {
  display: inline-block;
  padding: 9px 20px;
  background: #102a43;
  color: #f9fafb;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-button:hover {
  background: #163656;
}

/* Sections */

.section {
  padding: 40px 0;
}

.section-alt {
  background: #f1f0ea;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 12px;
}

/* Services */

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 16px 18px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  font-size: 0.93rem;
}

.service-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: #111827;
}

/* Text blocks */

.text-block {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #374151;
}

.subheading {
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

/* Contact */

.contact-lines a {
  color: #102a43;
  text-decoration: none;
}

.contact-lines a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e1e1dd;
  padding: 20px 0 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 8px;
  }

  .nav a {
    margin-left: 0;
    margin-right: 14px;
  }

  .hero {
    padding-top: 40px;
  }
}