/* Kilncrest Home Services — mountain-estate palette, quiet and premium */
:root {
  --pine: #1e2d24;
  --pine-deep: #141f19;
  --cream: #faf7f0;
  --cream-dim: #f0ebe0;
  --copper: #b0763c;
  --copper-dark: #8f5c2b;
  --ink: #2a2a26;
  --ink-soft: #5c5c54;
  --line: #ddd6c8;
  --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, .brand { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.2; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--pine);
  color: var(--cream);
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { font-size: 1.25rem; letter-spacing: .02em; color: var(--cream); text-decoration: none; }
.brand span { color: var(--copper); }
nav.links a {
  color: var(--cream); text-decoration: none; margin-left: 26px; font-size: .95rem;
  opacity: .85;
}
nav.links a:hover, nav.links a.active { opacity: 1; border-bottom: 2px solid var(--copper); padding-bottom: 3px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--cream);
  padding: 96px 0 104px;
}
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); max-width: 720px; }
.hero p.lead { margin-top: 22px; font-size: 1.2rem; max-width: 620px; opacity: .88; }
.hero .cta-row { margin-top: 36px; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 14px 28px; border-radius: 4px; font-size: 1rem;
}
.btn-primary { background: var(--copper); color: #fff; }
.btn-primary:hover { background: var(--copper-dark); }
.btn-ghost { color: var(--cream); border: 1px solid rgba(255,255,255,.35); margin-left: 14px; }
.btn-ghost:hover { border-color: var(--cream); }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--cream-dim); }
.kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  color: var(--copper-dark); font-weight: 700; margin-bottom: 12px;
}
section h2 { font-size: 1.9rem; margin-bottom: 18px; }
section .intro { max-width: 640px; color: var(--ink-soft); margin-bottom: 40px; }

.grid { display: grid; gap: 28px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 28px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .97rem; }

/* Steps */
.step { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 30px; }
.step .num {
  flex: 0 0 44px; height: 44px; border-radius: 50%;
  background: var(--pine); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", Georgia, serif; font-size: 1.15rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: .97rem; max-width: 560px; }

/* Pricing */
.price-card {
  background: var(--pine); color: var(--cream);
  border-radius: 8px; padding: 40px; max-width: 480px;
}
.price-card .tag {
  display: inline-block; background: var(--copper); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.price-card .amount { font-family: "Fraunces", Georgia, serif; font-size: 2.6rem; }
.price-card .amount small { font-size: 1rem; font-family: inherit; opacity: .7; }
.price-card ul { list-style: none; margin: 22px 0 28px; }
.price-card li { padding: 7px 0 7px 28px; position: relative; font-size: .97rem; opacity: .92; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--copper); font-weight: 700; }

.note { font-size: .85rem; color: var(--ink-soft); margin-top: 18px; }

/* Tables of services */
.svc-list { border-top: 1px solid var(--line); }
.svc-list .row {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.svc-list .row div:first-child { font-weight: 600; flex: 0 0 40%; }
.svc-list .row div:last-child { color: var(--ink-soft); font-size: .96rem; }

/* Footer */
footer { background: var(--pine-deep); color: var(--cream); padding: 48px 0; font-size: .9rem; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
footer a { color: var(--cream); opacity: .8; text-decoration: none; }
footer a:hover { opacity: 1; }
footer .fine { opacity: .55; margin-top: 10px; max-width: 520px; }

@media (max-width: 720px) {
  .nav { flex-direction: column; gap: 12px; }
  nav.links a { margin-left: 13px; margin-right: 13px; }
  .hero { padding: 64px 0 72px; }
  .btn-ghost { margin-left: 0; margin-top: 12px; }
}
