/* Say Less Media — shared styles */
:root {
  --ink: #12141f;
  --ink-soft: #3a3f55;
  --muted: #6a7086;
  --paper: #fcfcfa;
  --line: #e6e5e0;
  --accent: #f55a36;
  --accent-deep: #d8431f;
  --max: 1040px;
  --measure: 70ch;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: "Public Sans", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { display: block; }
.brand .name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.site-nav { display: flex; gap: 1.4rem; }
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--ink); }

/* ---------- landing ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem 4rem;
}
.hero .eyebrow {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.hero h1 .quiet { color: var(--muted); }
.hero .lede {
  margin-top: 1.6rem;
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--line);
}
.section h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 760px) {
  .services { grid-template-columns: 1fr; gap: 2rem; }
}
.service h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service p { color: var(--ink-soft); font-size: 0.98rem; }
.service .mark {
  width: 34px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.how p { max-width: var(--measure); color: var(--ink-soft); }
.how p + p { margin-top: 1rem; }

.contact-card {
  background: var(--ink);
  color: #f4f4f1;
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.contact-card h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.contact-card p { color: #b9bcc9; margin-top: 0.4rem; max-width: 44ch; }
.contact-card a.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  white-space: nowrap;
}
.contact-card a.button:hover { background: var(--accent-deep); color: #fff; }

/* ---------- legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.legal h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.legal .meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.8rem 0 2.5rem;
}
.legal h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 2.4rem 0 0.8rem;
}
.legal p, .legal li { color: var(--ink-soft); max-width: var(--measure); }
.legal p + p { margin-top: 0.9rem; }
.legal ul { padding-left: 1.3rem; margin: 0.8rem 0; }
.legal li + li { margin-top: 0.45rem; }
.legal strong { color: var(--ink); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.site-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.site-footer nav { display: flex; gap: 1.4rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }
