/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #333;
  background: #FDFAF3;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Utility ────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Nav ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #7D5A3F;
  color: #FDFAF3;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  z-index: 100;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .brand { font-size: 1.4rem; font-weight: 700; }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav a:hover { text-decoration: underline; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: #B55A3C;
  color: #FDFAF3;
  text-align: center;
  padding: 5rem 1.25rem 4rem;
  margin-top: 60px;
}
.hero h1 { font-size: 2.6rem; margin-bottom: .5rem; }
.hero .tagline { font-size: 1.25rem; margin-bottom: .5rem; }
.hero .subtitle { font-size: 1.05rem; opacity: .9; margin-bottom: 2rem; }
.hero .btn {
  display: inline-block;
  background: #FDFAF3;
  color: #B55A3C;
  padding: .75rem 1.75rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: background .2s;
}
.hero .btn:hover { background: #E0BFA0; }

/* ── Section ────────────────────────────────────────── */
section { padding: 3.5rem 0; }
section.alt { background: #E0BFA0; }

.card {
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  padding: 2rem;
}
.card h2 { font-size: 1.6rem; margin-bottom: .75rem; color: #6F8A5F; }
.card p  { color: #4b5563; }

/* ── Services Grid ──────────────────────────────────── */
.services-heading { text-align: center; font-size: 1.6rem; margin-bottom: 1.5rem; color: #6F8A5F; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  padding: 1.75rem;
  text-align: center;
  border-top: 3px solid #6F8A5F;
}
.service-card .icon { font-size: 2rem; margin-bottom: .5rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .35rem; color: #6F8A5F; }
.service-card p { color: #4b5563; font-size: .95rem; }

/* ── Contact Form ───────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid #6F8A5F;
  border-radius: .5rem;
  font-family: inherit;
  font-size: 1rem;
  background: #FDFAF3;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B55A3C;
  box-shadow: 0 0 0 3px rgba(181,90,60,.25);
}
textarea { resize: vertical; min-height: 8rem; }
.btn-primary {
  background: #B55A3C;
  color: #FDFAF3;
  border: none;
  padding: .75rem 1.75rem;
  border-radius: .5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: #9a4a30; }
.note { margin-top: 1rem; color: #6b7280; font-size: .85rem; }
.form-success { display: none; color: #6F8A5F; font-weight: 600; margin-top: 1rem; }
.text-link { color: #B55A3C; text-decoration: underline; }

/* ── Pricing Table ──────────────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.pricing-table th,
.pricing-table td {
  padding: .9rem 1.25rem;
  text-align: left;
}
.pricing-table thead { background: #E0BFA0; }
.pricing-table th { font-size: .85rem; text-transform: uppercase; color: #7D5A3F; letter-spacing: .03em; }
.pricing-table tr + tr { border-top: 1px solid #E0BFA0; }

/* ── Footer ─────────────────────────────────────────── */
footer {
  background: #7D5A3F;
  color: #FDFAF3;
  text-align: center;
  padding: 1.75rem 1rem;
  font-size: .9rem;
}
footer .links { margin-top: .5rem; font-size: .8rem; opacity: .8; }
footer .disclaimer { margin-top: 1rem; font-size: .75rem; opacity: .65; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { margin-top: 2rem; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid #E0BFA0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item h2 { font-size: 1.1rem; color: #7D5A3F; margin-bottom: .5rem; }
.faq-item p { color: #4b5563; margin-bottom: .5rem; }
.faq-item p:last-child { margin-bottom: 0; }

/* ── Page header (About / Pricing) ──────────────────── */
.page-top { margin-top: 60px; padding-top: 2rem; }
.page-top h1 { font-size: 1.8rem; margin-bottom: .5rem; color: #B55A3C; }
.page-top h2 { font-size: 1.35rem; margin: 1.5rem 0 .5rem; color: #7D5A3F; }
.page-top p  { color: #4b5563; margin-bottom: 1rem; }

/* ── Info List ──────────────────────────────────────── */
.info-list { padding-left: 1.5rem; margin: .75rem 0 1rem; color: #4b5563; }
.info-list li { margin-bottom: .35rem; }

/* ── Responsive ─────────────────────────────────────── */

/* Large desktops */
@media (min-width: 1200px) {
  .hero { padding: 6rem 2rem 5rem; }
  .hero h1 { font-size: 3.2rem; }
  .hero .tagline { font-size: 1.5rem; }
  .hero .subtitle { font-size: 1.15rem; }
  .card { padding: 2.5rem; }
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .btn-primary { padding: .85rem 2rem; }
}

/* Tablets */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1.1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-table th,
  .pricing-table td { padding: .75rem .75rem; font-size: .9rem; }
  .card { padding: 1.5rem; }
  .page-top h1 { font-size: 1.5rem; }
}

/* Mobile */
@media (max-width: 480px) {
  nav .brand { font-size: 1.1rem; }
  nav ul { gap: .75rem; font-size: .85rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero .tagline { font-size: .95rem; }
  .hero .subtitle { font-size: .9rem; margin-bottom: 1.5rem; }
  .hero .btn { padding: .65rem 1.25rem; font-size: .9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .card { padding: 1.25rem; }
  .card h2 { font-size: 1.3rem; }
  .services-heading { font-size: 1.3rem; }
  section { padding: 2.5rem 0; }
  .btn-primary { width: 100%; text-align: center; }
  .pricing-table { font-size: .85rem; }
  .pricing-table th,
  .pricing-table td { padding: .6rem .5rem; }
  .page-top h1 { font-size: 1.35rem; }
  .page-top h2 { font-size: 1.15rem; }
  footer { padding: 1.5rem .75rem; font-size: .8rem; }
}
