:root {
  --navy: #272635;
  --cream: #F4F3EE;
  --accent: #3D5A4E;
  --accent-light: #5C7A6C;
  --muted: #8B8A95;
  --white: #FFFFFF;
  --border: #E0DED4;
  --max-width: 1100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  font-size: 17px;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
header {
  background: var(--navy);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.logo svg { width: 28px; height: 28px; }
.logo:hover { text-decoration: none; }
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav a {
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
nav a:hover, nav a.active { opacity: 1; text-decoration: none; }
nav a.active { border-bottom: 2px solid var(--accent-light); padding-bottom: 2px; }
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 0 120px;
}
.hero h1 {
  font-size: 3rem;
  max-width: 700px;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.25rem;
  max-width: 580px;
  opacity: 0.85;
  margin-bottom: 36px;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--accent-light); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--navy); }
section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 20px rgba(39,38,53,0.06);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.service-card p { font-size: 0.98rem; color: #555; }
.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.about-sidebar {
  background: var(--navy);
  color: var(--cream);
  padding: 40px;
  border-radius: 8px;
}
.about-sidebar h3 { color: var(--cream); margin-bottom: 20px; font-size: 1.2rem; }
.about-sidebar ul { list-style: none; }
.about-sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(244,243,238,0.12);
  font-size: 0.95rem;
  opacity: 0.9;
}
.about-sidebar li:last-child { border-bottom: none; }
.about-content h3 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--accent);
}
.about-content h3:first-child { margin-top: 0; }
.about-content p { margin-bottom: 16px; color: #444; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--accent); }
.contact-info p { margin-bottom: 8px; color: #555; }
.contact-info .info-block { margin-bottom: 32px; }
.contact-info a { font-weight: 500; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--navy);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-status {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  display: none;
}
.form-status.success { background: #e8f0ec; color: var(--accent); display: block; }
.form-status.error { background: #f5e8e8; color: #8B2D2D; display: block; }
.cta-banner {
  background: var(--accent);
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--cream); font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; font-size: 1.1rem; }
.cta-banner .btn { background: var(--cream); color: var(--accent); }
.cta-banner .btn:hover { background: var(--white); }
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 48px 0 32px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer p { font-size: 0.9rem; opacity: 0.6; }
footer .footer-links { display: flex; gap: 24px; }
footer .footer-links a { color: var(--cream); opacity: 0.7; font-size: 0.9rem; }
footer .footer-links a:hover { opacity: 1; }
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  nav ul { gap: 18px; }
  nav a { font-size: 0.85rem; }
  .logo { font-size: 1.05rem; }
  section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
}