:root {
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #0d6b4a;
  --accent-hover: #09543a;
  --border: #e5e5e5;
  --bg: #fafafa;
  --card: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--accent-hover);
}

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
}

.badge-ad {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero {
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.hero .sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 400;
}

.hero .meta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  font-style: italic;
  margin: 1.5rem 0;
}

.lead strong {
  font-style: normal;
}

figure.hero-img {
  margin: 1.5rem 0;
  text-align: center;
}

figure.hero-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.hero-img figcaption {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  text-align: center;
}

h2 {
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
  line-height: 1.3;
}

h2:first-of-type {
  margin-top: 1.5rem;
}

p {
  margin: 0 0 1rem;
}

.cta {
  display: inline-block;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background: var(--accent);
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  margin: 1.25rem 0;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.cta-block {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.product-shot {
  margin: 1rem 0 1.5rem;
  text-align: center;
}

.product-shot img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.product-shot figcaption {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  text-align: center;
}

.footnotes {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footnotes p {
  margin: 0 0 0.5rem;
  word-break: break-all;
}

.legal-box {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 2rem;
  padding: 1rem 1.125rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.legal-box--it-preface {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.legal-box--de-continuation {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.legal-box--it-preface p {
  margin: 0;
}

.footnotes-preface {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.site-footer {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  background: #1e2936;
  color: #cbd5e1;
  padding: 2rem 1.25rem;
  margin-top: 3rem;
}

.site-footer a {
  color: #e2e8f0;
}

.site-footer__inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  opacity: 0.85;
}

.footer-company {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  line-height: 1.55;
  color: #94a3b8;
}

.footer-company strong {
  color: #e2e8f0;
  font-size: 0.85rem;
}

.footer-company a {
  color: #e2e8f0;
}

/* Legal subpages */
.legal-page .wrap {
  padding-top: 2.5rem;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

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

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.back-link {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.company-dl {
  margin: 0 0 1.5rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
}

.company-dl dt {
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.company-dl dt:first-child {
  margin-top: 0;
}

.company-dl dd {
  margin: 0.25rem 0 0;
}
