:root {
  --charcoal: #1c1a17;
  --charcoal-light: #2b2825;
  --accent: #e07a2c;
  --accent-dark: #b85f1d;
  --cream: #faf6f0;
  --text-light: #f5f1ea;
  --text-muted: #cfc7ba;
  --border: #3a362f;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: #2a2621;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 16px;
}

h2 { font-size: 2rem; }

a { color: inherit; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

/* Header */
.site-header {
  background: var(--charcoal);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-light);
  white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
}
.nav a:hover { color: var(--text-light); }

.phone-pill {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  color: var(--text-light);
  padding: 90px 0;
  text-align: center;
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero h1 { font-size: 2.8rem; color: #fff; }
.hero-sub { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Services */
.services { padding: 80px 0; text-align: center; }
.section-sub { color: #5c554b; max-width: 560px; margin: 0 auto 48px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  text-align: left;
}
.card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: var(--radius);
  padding: 28px;
}
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: #5c554b; margin: 0; font-size: 0.95rem; }

/* About */
.about { background: var(--charcoal); color: var(--text-light); padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about h2 { color: #fff; }
.about p { color: var(--text-muted); }

.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-light);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.about-card {
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.about-card h3 { color: #fff; font-size: 1.2rem; }

/* Area */
.area { padding: 60px 0; text-align: center; }

/* Contact */
.contact { padding: 80px 0; background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact h2 { margin-bottom: 12px; }
.info-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}
.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee2d2;
}
.info-list a { text-decoration: none; color: var(--accent-dark); font-weight: 600; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid #e8e0d4;
}
.contact-form label { font-weight: 600; font-size: 0.9rem; margin-top: 10px; }
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d8cfbf;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.contact-form button { margin-top: 16px; }
.form-status { margin: 10px 0 0; font-size: 0.9rem; min-height: 1.2em; }
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c0392b; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--text-muted);
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-inner p { margin: 4px 0; }

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .phone-pill { display: none; }
  .hero h1 { font-size: 2.1rem; }
}
