:root {
  --cream: #F7F4EC;
  --cream-alt: #EFEAE0;
  --white: #FFFFFF;
  --ink: #1C1B18;
  --ink-soft: #55534C;
  --ink-faint: #8A8778;
  --forest: #1F3D2E;
  --forest-dark: #16302A;
  --forest-tint: #E7EEE7;
  --gold: #A9895B;
  --rule: rgba(28,27,24,0.12);
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
  border: none;
}

.rule.center { margin-left: auto; margin-right: auto; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,236,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 44px; width: auto; display: block; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  font-weight: 600;
  margin-top: 3px;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav.links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.15s;
}
nav.links a:hover { color: var(--forest); }
nav.links a.active { color: var(--forest); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.phone-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--forest-dark); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.footer-col a:hover { color: var(--forest); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-faint);
}

.services-list {
  border-top: 1px solid var(--rule);
}
.svc-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule);
}
.svc-row .num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  min-width: 30px;
  padding-top: 5px;
  flex-shrink: 0;
}
.svc-row .title-col {
  flex: 0 0 240px;
}
.svc-row .title-col h3 {
  font-size: 20px;
}
.svc-row .desc-col {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.svc-row .desc-col p {
  margin: 0;
  max-width: 480px;
  font-size: 15px;
}
.svc-row .desc-col a {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--forest);
  padding-top: 2px;
}

@media (max-width: 860px) {
  nav.links { display: none; }
  .nav-cta .phone-link { display: none; }
  section { padding: 64px 0; }
}

@media (max-width: 700px) {
  .svc-row {
    flex-wrap: wrap;
  }
  .svc-row .title-col {
    flex: 1 1 auto;
  }
  .svc-row .desc-col {
    flex: 1 1 100%;
    flex-direction: column;
    gap: 10px;
    margin-left: 62px;
    width: calc(100% - 62px);
  }
}
