/* Kenbo LLC — shared styles */
:root {
  --bg: #eeece6;
  --card: #ffffff;
  --ink: #141414;
  --muted: #5c5c58;
  --rule: #e2dfd7;
  --accent: #141414;
  --accent-ink: #ffffff;
  --radius: 18px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f0f0f; --card: #1a1a1a; --ink: #f4f3ef; --muted: #a6a59f;
    --rule: #2d2d2b; --accent: #f4f3ef; --accent-ink: #141414;
  }
}
:root[data-theme="dark"] {
  --bg: #0f0f0f; --card: #1a1a1a; --ink: #f4f3ef; --muted: #a6a59f;
  --rule: #2d2d2b; --accent: #f4f3ef; --accent-ink: #141414;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 56px 16px;
}
@media (max-width: 560px) { body { padding: 24px 16px; } }

.card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.06);
  overflow: hidden;
}
.inner { padding: 48px 48px 44px; container-type: inline-size; }
@media (max-width: 560px) { .inner { padding: 36px 24px 32px; } }

/* Wordmark (stands in for the photo) */
.wordmark {
  margin: 0 0 28px;
  font-family: "Archivo Black", "Arial Black", Impact, sans-serif;
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-align: center;
}
.wordmark .name { display: block; font-size: clamp(3.5rem, 15vw, 8rem); font-size: 24.6cqi; }
.wordmark .llc {
  display: block;
  margin-top: .28em;
  font-size: clamp(1.3rem, 5vw, 2.6rem);
  font-size: 8cqi;
  letter-spacing: .42em;
  padding-left: .42em;
}
/* Smaller wordmark used on the policy pages */
.wordmark.small { margin-bottom: 8px; }
.wordmark.small a { color: inherit; text-decoration: none; }
.wordmark.small .name { font-size: clamp(2.2rem, 9vw, 3.4rem); font-size: 11cqi; }
.wordmark.small .llc { font-size: clamp(.8rem, 3vw, 1.1rem); font-size: 3.6cqi; }

.tagline { text-align: center; font-size: 1.15rem; font-weight: 500; margin: 0 auto 10px; max-width: 30em; }
.sub { text-align: center; color: var(--muted); margin: 0 auto; max-width: 32em; }

.buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 28px 0 0; padding: 0; list-style: none; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid var(--accent);
  color: var(--accent); transition: background .15s, color .15s;
}
.btn.primary, .btn:hover { background: var(--accent); color: var(--accent-ink); }

hr { border: 0; border-top: 1px solid var(--rule); margin: 40px 0; }

h2 {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 16px;
}
h3 { font-size: 1.02rem; font-weight: 700; margin: 0 0 4px; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
a { color: var(--ink); }

.services { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.services p { margin: 0; color: var(--muted); }

.details { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 0; }
.details dt { font-weight: 600; }
.details dd { margin: 0; color: var(--muted); overflow-wrap: anywhere; }
@media (max-width: 420px) { .details { grid-template-columns: 1fr; gap: 2px; } .details dd { margin-bottom: 10px; } }

/* Policy pages */
.page-title { text-align: center; font-size: 1.5rem; font-weight: 700; margin: 20px 0 4px; }
.updated { text-align: center; font-size: .85rem; color: var(--muted); margin: 0 0 32px; }
.policy h3 { margin-top: 26px; }
.policy h3:first-of-type { margin-top: 0; }
.policy p, .policy li { color: var(--muted); }
.policy .wordmark, .policy .page-title { color: var(--ink); }
.policy ul { margin: 0 0 14px; padding-left: 1.2em; }
.back { text-align: center; margin-top: 32px; }

footer { max-width: 620px; margin: 28px auto 0; text-align: center; font-size: .85rem; color: var(--muted); }
footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin-bottom: 8px; }
footer a { color: var(--muted); }
