:root {
  --charcoal: #3a3f44;
  --charcoal-soft: #4a5056;
  --sage: #6b7a68;
  --sage-dark: #5a6858;
  --cream: #f4f1ea;
  --white: #ffffff;
  --line: #d8ddd6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--sage-dark); }

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 210px;
  background: transparent;
}

.nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav .btn-primary {
  color: var(--cream);
  background: var(--charcoal);
}

.nav .btn-primary:hover {
  color: var(--cream);
  background: #2c3136;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-primary:hover { background: #2c3136; color: var(--cream); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}

.btn-sage:hover { background: var(--sage-dark); color: var(--white); }

.btn-ghost {
  border: 1px solid rgba(244,241,234,0.45);
  color: var(--cream);
}

.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(107,122,104,0.16), transparent 60%),
    var(--cream);
  padding: 3.2rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.h1-name { white-space: nowrap; }

.h1-tag {
  font-weight: 500;
}

.lede {
  font-size: 1.08rem;
  max-width: 38rem;
  color: var(--charcoal-soft);
  margin-bottom: 1.4rem;
}

.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

section { padding: 3.4rem 0; }

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.section-intro {
  color: var(--charcoal-soft);
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem 1.3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.card p { color: var(--charcoal-soft); font-size: 0.96rem; }

.card a.more { font-size: 0.9rem; font-weight: 600; text-decoration: none; }

.page-hero { padding-top: 2.4rem; padding-bottom: 0.4rem; }

.note {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  max-width: 42rem;
  margin: 1rem 0 1.6rem;
}

.steps { counter-reset: step; display: grid; gap: 0.8rem; margin: 1.2rem 0 2rem; }
.step {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  background: var(--white);
}
.step strong { display: block; margin-bottom: 0.25rem; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2rem;
  font-size: 0.95rem;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 0.7rem 0.65rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price-table th { color: var(--sage-dark); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }
.price-table td:last-child,
.price-table th:last-child { text-align: right; white-space: nowrap; }

.warn {
  background: var(--cream);
  padding: 1rem 1.1rem;
  margin: 1.2rem 0;
}

.areas {
  background: var(--cream);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.4rem 0.75rem;
  font-size: 0.92rem;
}

.contact {
  background: var(--charcoal);
  color: var(--cream);
}

.contact .section-title,
.contact .section-intro { color: var(--cream); }

.contact .section-intro { opacity: 0.85; }

.contact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-card {
  border: 1px solid rgba(244,241,234,0.18);
  padding: 1.2rem;
}

.contact-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #b7c0b4;
  margin-bottom: 0.35rem;
}

.contact-card a {
  color: var(--cream);
  font-size: 1.15rem;
  text-decoration: none;
}

.contact-card a:hover { color: #d5ddcf; }

.site-footer {
  padding: 1.2rem 0 1.6rem;
  color: #6f7570;
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 800px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .logo img { height: 40px; }
  .hero-mark img { max-height: 190px; }
}

@media (max-width: 799px) {
  .hero-mark { order: -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

@media (max-width: 520px) {
  .h1-name { white-space: normal; }
}
