:root {
  --brand: #21cab2;
  --brand-dark: #189685;
  --ink: #1c1f1e;
  --paper: #ffffff;
  --muted: #5b6462;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

header {
  padding: 0;
  text-align: center;
}

.logo-band {
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  padding: 28px 24px 24px;
  margin-bottom: 8px;
}

header img {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

main {
  text-align: center;
  padding: 24px 0 64px;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.location {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.call-button {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.call-button:hover,
.call-button:focus {
  background: var(--brand-dark);
}

.call-hint {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

footer {
  padding: 24px 0 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- sections --- */
h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--ink);
}

.services, .visit {
  margin-top: 56px;
  text-align: left;
}

.services h2, .visit h2 {
  text-align: center;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 20px;
}

.service-list li {
  border: 1px solid #e6eae9;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 20px 22px;
  background: #fbfdfd;
}

.service-list h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--brand-dark);
}

.service-list p {
  color: var(--muted);
  font-size: 0.97rem;
}

.visit p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 6px;
}

/* --- legal documents --- */
.doc {
  text-align: left;
  padding-top: 8px;
}

.doc h1 {
  text-align: center;
  font-size: 1.8rem;
}

.doc .updated {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.doc h2 {
  text-align: left;
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--brand-dark);
}

.doc p {
  margin-bottom: 14px;
  color: #2f3634;
}

.doc a {
  color: var(--brand-dark);
}

/* --- footer --- */
footer p { margin-bottom: 4px; }

.footer-biz { font-weight: 600; color: var(--ink); }

footer a { color: var(--brand-dark); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.footer-links { margin-top: 10px; }

.footer-legal { margin-top: 10px; font-size: 0.8rem; }

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

/* --- locations --- */
.loc-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.loc-list li {
  border: 1px solid #e6eae9;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 18px 20px;
  background: #fbfdfd;
}

.loc-list h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--brand-dark);
}

.loc-list p {
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.visit-cta { margin-top: 6px; }

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