:root {
  --burgundy: #1f4d2b;
  --burgundy-dark: #143620;
  --cream: #f7f5ef;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --rule: #e0ddd0;
  --accent: #b08a3e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--burgundy);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
  border-bottom: 6px solid var(--accent);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.brand h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.tagline {
  margin: 0;
  color: #f1e8d8;
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 580px;
}

.hero-contact {
  text-align: left;
  font-size: 0.95rem;
}
.hero-contact p { margin: 0.15rem 0; }
.hero-contact a { color: #fff; }

/* Sections */
main {
  padding: 3rem 1.5rem 1rem;
}

main section {
  margin-bottom: 3.5rem;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--burgundy);
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.intro {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Client Experience — bullet list, two columns */
.exp-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem 2rem;
}
.exp-checks li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.exp-checks li::before {
  content: "•";
  position: absolute;
  left: 0.25rem;
  top: 0.35rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}

/* Services — minimal list */
.services-numbered {
  list-style: none;
  counter-reset: svc;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.services-numbered li {
  counter-increment: svc;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.services-numbered li::before {
  content: counter(svc, decimal-leading-zero);
  flex: 0 0 3rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.services-numbered.no-marker li::before { content: none; display: none; }
.services-numbered .svc-body { flex: 1; }
.services-numbered h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 0.25rem;
  color: var(--burgundy-dark);
  font-size: 1.15rem;
}
.services-numbered p { margin: 0; color: var(--muted); }


/* Contact */
.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 2rem 2rem 1.75rem;
  border-radius: 6px;
  border-top: 6px solid var(--accent);
}
.contact-card p { color: var(--muted); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.contact-list li {
  padding: 0.4rem 0;
  font-size: 1rem;
}

/* Footer */
footer {
  background: var(--burgundy-dark);
  color: #d8c9aa;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  margin-top: 3rem;
}

/* Mobile */
@media (max-width: 640px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-contact { text-align: left; }
  h2 { font-size: 1.6rem; }
  .exp-banded li { padding: 0.7rem 1rem; }
}
