:root {
  --bg: #f4f2ec;
  --surface: #fff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e0ddd4;
  --radius: 14px;
  --accent: #0b6b6f;
  --accent-h: #084a4d;
}

.theme-pineal {
  --accent: #4a3f7a;
  --accent-h: #352d5c;
}

.theme-keyslim {
  --accent: #b45309;
  --accent-h: #924108;
}

.theme-legal {
  --accent: #3d3d3d;
  --accent-h: #222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--surface);
  border: 2px solid var(--accent);
  z-index: 1000;
  font-weight: 700;
  color: var(--accent);
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.topbar-inner {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.disclosure-top {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 14px 0 0;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}

.disclosure-top strong {
  color: var(--text);
}

.wrap {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 20px 0 56px;
}

.back {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.back:hover {
  text-decoration: underline;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  line-height: 1.2;
  margin: 8px 0 10px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 8px;
  max-width: 62ch;
}

.product-shot {
  margin: 18px 0 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fafafa 0%, #f0f0ec 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.product-shot img {
  max-height: 260px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

section.block {
  margin-top: 28px;
}

section.block h2 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

section.block p,
section.block li {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

section.block ul {
  padding-left: 1.2rem;
  margin-bottom: 8px;
}

section.block li {
  margin-bottom: 8px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  margin-top: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card h2 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: var(--radius);
  margin-top: 6px;
  transition: background 0.2s;
  font-size: 0.98rem;
}

.btn:hover {
  background: var(--accent-h);
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.faq {
  margin-top: 28px;
}

.faq h2 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.faq details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-box {
  margin-top: 32px;
  padding: 18px 20px;
  background: #ebe8e0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: #555;
  line-height: 1.55;
}

.legal-box strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.fine {
  font-size: 0.82rem;
  color: #777;
  margin-top: 22px;
  line-height: 1.55;
}

.fine a {
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 12px;
}

.site-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.prose-page .wrap {
  max-width: 720px;
}

.prose-page h1 {
  margin-top: 16px;
}

.prose-page h2 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.prose-page p,
.prose-page li {
  color: var(--muted);
  margin-bottom: 12px;
}

.prose-page ul {
  padding-left: 1.2rem;
  margin-bottom: 12px;
}
