:root {
  --green: #0f3d2e;
  --green-deep: #1a5a3f;
  --gold: #c9a961;
  --gold-warm: #b88a2c;
  --cream: #f0e8d0;
  --ink: #1a2e22;
  --muted: #4a5a52;
  --rule: rgba(201, 169, 97, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background-color: #f0e8d0;
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--green);
  color: var(--cream);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  z-index: 10;
}

.page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 1rem 3rem;
  text-align: center;
}
@media (min-width: 520px) {
  .page { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Brand block */
.brand__name {
  margin: 0 0 0.75rem;
  line-height: 0;
}
.brand__logo {
  display: block;
  width: clamp(220px, 50vw, 320px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 18px rgba(15, 61, 46, 0.15));
}

.brand__tag {
  font-family: 'Cinzel', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin: 0;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gold);
  margin: 2.5rem auto 1.25rem;
  max-width: 320px;
}
.divider span {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* Message */
.message__heading {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 600;
  color: var(--green-deep);
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  margin: 0 0 1rem;
}
.message__lede {
  color: var(--ink);
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 36rem;
}
.message__lede strong { color: var(--green-deep); font-weight: 600; }

/* CTA */
.cta {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.cta__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border-radius: 6px;
  border: 1px solid var(--green-deep);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 6px 20px rgba(15, 61, 46, 0.18);
  transition: background 0.18s ease, transform 0.18s ease;
  min-width: 260px;
}
.cta__phone:hover, .cta__phone:focus-visible {
  background: var(--green-deep);
  outline: none;
  transform: translateY(-1px);
}
.cta__phone-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta__phone-number {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  letter-spacing: 0.02em;
}
.cta__email {
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold);
  font-size: 0.95rem;
  padding-bottom: 1px;
}
.cta__email:hover, .cta__email:focus-visible { color: var(--gold-warm); border-color: var(--gold-warm); }

/* Services */
.services {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.services__heading,
.area__heading {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 0.45rem 1rem;
  text-align: left;
}
.services__list li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
}
.services__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
}
@media (min-width: 400px) {
  .services__list {
    gap: 0.5rem 1.5rem;
  }
  .services__list li { font-size: 0.85rem; }
}
@media (min-width: 520px) {
  .services__list {
    gap: 0.55rem 2.5rem;
  }
  .services__list li {
    font-size: 0.95rem;
    padding-left: 1.1rem;
    white-space: nowrap;
  }
  .services__list li::before {
    width: 6px;
    height: 6px;
    top: 0.6em;
  }
}
@media (min-width: 800px) {
  .services__list {
    grid-template-rows: repeat(4, auto);
    gap: 0.55rem 3rem;
  }
}

/* Area */
.area {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.area p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}

/* Footer */
.foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.8rem;
}
.foot p { margin: 0; }
