:root {
  --cream: #faf6f1;
  --sand: #f1e8de;
  --rose: #c9a194;
  --bronze: #a4715d;
  --ink: #2e2723;
  --muted: #6f645c;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

a { color: var(--bronze); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, .96);
  border-bottom: 1px solid var(--sand);
  backdrop-filter: blur(6px);
}

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

.brand {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand span { color: var(--bronze); }

.main-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
}

.main-nav a:hover { color: var(--bronze); }

.btn {
  display: inline-block;
  background: var(--bronze);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}

.btn:hover { background: #8d5f4d; }

.btn-outline {
  background: transparent;
  color: var(--bronze) !important;
  border: 2px solid var(--bronze);
}

.btn-outline:hover { background: var(--bronze); color: var(--white) !important; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 70%);
  padding: 90px 0 80px;
  text-align: center;
}

.hero p.lead {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 640px;
  margin: 18px auto 32px;
}

.hero .kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--bronze);
  font-weight: 700;
  margin-bottom: 14px;
}

/* Sections */
section { padding: 64px 0; }

section.alt { background: var(--white); }

.center { text-align: center; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* Cards */
.grid { display: grid; gap: 24px; margin-top: 36px; }

.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

section.alt .card { background: var(--cream); }

.card h3 { font-size: 1.15rem; }

.card .price {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
  color: var(--bronze);
}

.card p { color: var(--muted); font-size: .97rem; }

/* Feature list */
.features { list-style: none; margin-top: 28px; }

.features li {
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--sand);
  position: relative;
}

.features li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.features li:last-child { border-bottom: none; }

/* Steps */
.steps { counter-reset: step; margin-top: 32px; }

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sand);
}

.step:last-child { border-bottom: none; }

.step::before {
  counter-increment: step;
  content: counter(step);
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 { color: var(--cream); }

.cta-band p { color: #cfc4ba; max-width: 560px; margin: 0 auto 28px; }

/* Service detail */
.service-item {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 22px;
}

.service-item .tag {
  display: inline-block;
  background: var(--sand);
  color: var(--bronze);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.service-item p { color: var(--muted); }

.service-item .price { font-weight: 700; color: var(--bronze); margin-top: 10px; }

/* Legal pages */
.legal h2 { font-size: 1.4rem; margin-top: 34px; }

.legal p, .legal li { color: var(--muted); font-size: .98rem; }

.legal ul { padding-left: 22px; margin-bottom: 1rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #b8ada3;
  padding: 48px 0 32px;
  font-size: .9rem;
}

.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.site-footer h4 {
  color: var(--cream);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a { color: #b8ada3; text-decoration: none; display: block; padding: 3px 0; }

.site-footer a:hover { color: var(--cream); }

.site-footer .legal-line {
  border-top: 1px solid #453b34;
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  color: #8a7f76;
}

@media (max-width: 860px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .main-nav { gap: 14px; }
}
