/* Shared styling for the standalone pages (privacy, terms, 404).
   Kept separate from the app bundle so these pages work without JavaScript. */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap");

:root {
  --background: hsl(36 38% 97%);
  --foreground: hsl(25 30% 15%);
  --muted-foreground: hsl(25 12% 40%);
  --primary: hsl(22 45% 38%);
  --primary-foreground: hsl(36 40% 97%);
  --border: hsl(30 20% 86%);
  --card: hsl(0 0% 100%);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

header.bar {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

header.bar .inner {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--foreground);
  text-decoration: none;
}

.brand em { color: var(--primary); }

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  padding: 0.7rem 1.4rem;
}

.btn:hover { opacity: 0.9; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  margin: 2.5rem 0 0.5rem;
}

.updated {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

p, li { color: var(--muted-foreground); }
strong { color: var(--foreground); font-weight: 500; }
ul { padding-left: 1.15rem; }
li { margin-bottom: 0.4rem; }

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

.note {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem 1.4rem;
  margin: 2.5rem 0 0;
  font-size: 0.9rem;
}

footer.bar {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

footer.bar a { margin: 0 0.5rem; }

.center { text-align: center; }
.center h1 { margin-top: 3rem; }
