/* HELLOVE marketing / legal site — matches app warm brown palette */
:root {
  --bg: #f8f4ef;
  --card: #fffdf9;
  --brown: #5d3a1a;
  --brown-soft: #8b6b4a;
  --text: #2a2118;
  --muted: #6b5d4f;
  --line: #e8dfd3;
  --max: 720px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--brown);
}

a:hover {
  color: var(--brown-soft);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--brown);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--brown);
  margin: 0 0 0.5rem;
}

.meta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--brown);
}

p,
li {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.25rem;
}

.notice {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  background: #fff8e8;
  border: 1px solid #ead9b8;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 2rem;
}

.hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}

.card:hover {
  border-color: var(--brown-soft);
}

.card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--brown);
}

.card span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}
