/* ==========================================================================
   patriziomusilli.it — sistema di stile del sito e del blog
   Mobile first. Tema chiaro fisso: il sito resta bianco anche se il sistema
   dell'utente è impostato in modalità scura.
   ========================================================================== */

:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --surface: #ffffff;
  --border: #e7e6e1;
  --border-strong: #d8d6cf;
  --text: #16161a;
  --text-muted: #63636b;
  --text-faint: #8b8b93;
  --accent: #1c3fcc;
  --accent-hover: #142f9c;
  --accent-soft: #eef1ff;
  --warn: #b4530a;
  --ok: #17795e;

  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 720px;
  --maxw-wide: 1080px;
  --shadow: 0 1px 2px rgba(16, 16, 20, .04), 0 8px 24px -16px rgba(16, 16, 20, .18);
}

/* Il sito è sempre in tema chiaro: non segue l'impostazione scura del sistema. */

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

html {
  color-scheme: light;          /* niente inversione automatica su macOS/iOS in tema scuro */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

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

h1, h2, h3, h4 { font-weight: 620; line-height: 1.22; letter-spacing: -0.018em; margin: 0 0 .5em; }
h1 { font-size: clamp(1.85rem, 1.4rem + 2.1vw, 2.7rem); }
h2 { font-size: clamp(1.35rem, 1.15rem + 1vw, 1.7rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }

hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

::selection { background: var(--accent-soft); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap-wide { width: 100%; max-width: var(--maxw-wide); margin: 0 auto; padding: 0 20px; }
main { display: block; padding-bottom: 72px; }
.section { margin: 56px 0; }
.muted { color: var(--text-muted); }
.small { font-size: .875rem; }
.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--bg); } }

.site-header__inner {
  max-width: var(--maxw-wide); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 600; }
.brand:hover { text-decoration: none; color: var(--text); }
.brand img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.brand span { line-height: 1.1; }
.brand small { display: block; font-weight: 400; font-size: .72rem; color: var(--text-muted); letter-spacing: .02em; }

.site-nav { margin-left: auto; display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: var(--text-muted); font-size: .92rem; font-weight: 500;
  padding: 7px 11px; border-radius: 999px; text-decoration: none;
}
.site-nav a:hover { background: var(--bg-soft); color: var(--text); text-decoration: none; }
.site-nav a[aria-current="page"] { background: var(--accent-soft); color: var(--accent); }

/* ---------- Hero home ---------- */
.hero { padding: 56px 0 8px; }
.hero__photo { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; margin-bottom: 24px; }
.hero h1 { margin-bottom: 10px; }
.hero__claim { font-size: clamp(1.1rem, 1rem + .7vw, 1.35rem); color: var(--text-muted); font-weight: 400; line-height: 1.45; margin-bottom: 28px; }
.hero__lead { font-size: 1.06rem; }

.eyebrow {
  font-size: .75rem; font-weight: 650; text-transform: uppercase; letter-spacing: .11em;
  color: var(--text-faint); margin: 0 0 14px;
}

/* ---------- Griglia servizi ---------- */
.grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card h3 { margin-bottom: .35em; font-size: 1.05rem; }
.card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.card:hover { border-color: var(--border-strong); }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-size: .95rem; font-weight: 560;
  border: 1px solid var(--accent); background: var(--accent); color: #fff;
  cursor: pointer; text-decoration: none; transition: background .16s ease, border-color .16s ease, color .16s ease;
  min-height: 44px;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--text); border-color: var(--text-faint); }
.btn--sm { padding: 8px 14px; font-size: .875rem; min-height: 38px; }

/* ---------- Filtri blog ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-muted);
  font-size: .855rem; font-weight: 500; text-decoration: none; white-space: nowrap;
}
.chip:hover { border-color: var(--text-faint); color: var(--text); text-decoration: none; }
.chip[aria-current="true"], .chip.is-active {
  background: var(--text); border-color: var(--text); color: var(--bg);
}
.chip__count { font-size: .75rem; color: inherit; opacity: .6; }
.chip--tag::before { content: "#"; opacity: .5; }

.filters-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.filters-scroll::-webkit-scrollbar { height: 4px; }
.filters-scroll::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }

/* ---------- Ricerca ---------- */
.search { display: flex; gap: 8px; margin: 20px 0 28px; }
.search input[type="search"] {
  flex: 1; min-width: 0; padding: 12px 16px; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--border-strong); border-radius: 999px;
  background: var(--surface); color: var(--text); min-height: 46px;
}
.search input[type="search"]::placeholder { color: var(--text-faint); }
.search input[type="search"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* ---------- Lista articoli ---------- */
.post-list { display: flex; flex-direction: column; gap: 4px; margin: 8px 0 0; }

.post-item {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  padding: 26px 0; border-bottom: 1px solid var(--border);
}
.post-item:last-child { border-bottom: 0; }
@media (min-width: 700px) {
  .post-item.has-cover { grid-template-columns: 1fr 190px; align-items: start; gap: 26px; }
  .post-item.has-cover .post-item__cover { order: 2; }
}
.post-item__cover {
  display: block; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-soft);
  aspect-ratio: 16 / 9; border: 1px solid var(--border);
}
.post-item__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-item__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-faint); margin-bottom: 8px; }
.post-item__meta a { color: var(--text-muted); font-weight: 550; }
.post-item__meta .dot::before { content: "·"; }
.post-item h2, .post-item h3 { font-size: 1.28rem; margin-bottom: .35em; letter-spacing: -.02em; }
.post-item h2 a, .post-item h3 a { color: var(--text); }
.post-item h2 a:hover, .post-item h3 a:hover { color: var(--accent); text-decoration: none; }
.post-item p { color: var(--text-muted); font-size: .96rem; margin: 0 0 10px; }
.post-item__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.post-item__tags a { font-size: .78rem; color: var(--text-faint); }
.post-item__tags a::before { content: "#"; opacity: .6; }

.badge {
  display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: .7rem;
  font-weight: 650; text-transform: uppercase; letter-spacing: .05em;
}
.badge--draft { background: var(--accent-soft); color: var(--accent); }
.badge--scheduled { background: #fff3e2; color: var(--warn); }

/* ---------- Paginazione ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 48px 0 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 40px; min-height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-muted); font-size: .9rem; text-decoration: none;
}
.pagination a:hover { border-color: var(--text-faint); color: var(--text); text-decoration: none; }
.pagination .is-current { background: var(--text); border-color: var(--text); color: var(--bg); font-weight: 600; }

/* ---------- Articolo ---------- */
.breadcrumb { font-size: .82rem; color: var(--text-faint); margin: 28px 0 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span::before { content: "/"; margin-right: 6px; opacity: .5; }

.article-header { margin-bottom: 28px; }
.article-title { font-size: clamp(1.9rem, 1.35rem + 2.6vw, 2.85rem); letter-spacing: -.028em; margin-bottom: .28em; }
.article-subtitle { font-size: clamp(1.05rem, .98rem + .5vw, 1.25rem); color: var(--text-muted); font-weight: 400; line-height: 1.5; margin: 0 0 22px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-faint); }
.article-meta img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.article-meta strong { color: var(--text-muted); font-weight: 560; }

.article-cover { margin: 30px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.article-cover img { width: 100%; display: block; }
.article-cover figcaption { font-size: .8rem; color: var(--text-faint); padding: 10px 14px; background: var(--bg-soft); }

.article-summary {
  background: var(--bg-soft); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 30px 0;
}
.article-summary h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; color: var(--text-faint); margin-bottom: .7em; }
.article-summary p { margin: 0 0 .8em; font-size: 1rem; }
.article-summary ul { margin: 0; padding-left: 1.15em; }
.article-summary li { margin-bottom: .4em; font-size: .96rem; color: var(--text-muted); }
.article-summary li::marker { color: var(--accent); }

.toc { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 30px 0; background: var(--surface); }
.toc summary { cursor: pointer; font-size: .8rem; font-weight: 650; text-transform: uppercase; letter-spacing: .09em; color: var(--text-faint); }
.toc ol { margin: 14px 0 2px; padding-left: 1.2em; }
.toc li { margin-bottom: .4em; font-size: .93rem; }
.toc li.lvl-3 { margin-left: 1em; font-size: .88rem; }
.toc a { color: var(--text-muted); }

/* Corpo dell'articolo */
.prose { font-size: 1.075rem; line-height: 1.78; }
.prose > h2 { margin: 2.1em 0 .55em; font-size: clamp(1.3rem, 1.15rem + .8vw, 1.6rem); }
.prose > h3 { margin: 1.7em 0 .45em; font-size: 1.15rem; }
.prose p { margin: 0 0 1.25em; }
.prose ul, .prose ol { margin: 0 0 1.35em; padding-left: 1.4em; }
.prose li { margin-bottom: .55em; }
.prose li::marker { color: var(--text-faint); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.prose strong { font-weight: 640; color: var(--text); }
.prose img { border-radius: var(--radius-sm); margin: 1.6em 0; border: 1px solid var(--border); }
.prose blockquote {
  margin: 1.8em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--border-strong);
  font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.6; color: var(--text-muted); font-style: italic;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose code { font-family: var(--font-mono); font-size: .875em; background: var(--bg-soft); padding: .15em .4em; border-radius: 5px; border: 1px solid var(--border); }
.prose pre {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 18px; overflow-x: auto; margin: 1.6em 0; font-size: .875rem; line-height: 1.6;
}
.prose pre code { background: none; border: 0; padding: 0; font-size: inherit; }
.prose hr { margin: 2.6em 0; }
.table-wrap { overflow-x: auto; margin: 1.7em 0; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.prose table { border-collapse: collapse; width: 100%; font-size: .93rem; min-width: 460px; }
.prose th, .prose td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.prose thead th { background: var(--bg-soft); font-weight: 620; font-size: .85rem; letter-spacing: .01em; }
.prose tbody tr:last-child td { border-bottom: 0; }

/* Elementi di chiusura articolo */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 0; padding-top: 26px; border-top: 1px solid var(--border); }

.faq { margin: 44px 0 0; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0; margin-bottom: 10px; background: var(--surface);
}
.faq summary { cursor: pointer; padding: 15px 18px; font-weight: 570; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-faint); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq .faq__answer { padding: 15px 18px; color: var(--text-muted); font-size: .97rem; }
.faq .faq__answer p:last-child { margin-bottom: 0; }

.sources { margin: 40px 0 0; font-size: .9rem; }
.sources ol { padding-left: 1.3em; color: var(--text-muted); }
.sources li { margin-bottom: .4em; }

.cta {
  margin: 52px 0 0; padding: 28px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--border);
}
.cta h2 { font-size: 1.25rem; margin-bottom: .4em; }
.cta p { color: var(--text-muted); margin-bottom: 1.2em; }

.newsletter { margin: 32px 0 0; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.newsletter h2 { font-size: 1.1rem; margin-bottom: .35em; }
.newsletter p { color: var(--text-muted); font-size: .93rem; margin-bottom: 1em; }
.newsletter form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  flex: 1 1 220px; min-width: 0; padding: 12px 16px; font-size: 1rem; font-family: inherit; min-height: 46px;
  border: 1px solid var(--border-strong); border-radius: 999px; background: var(--bg); color: var(--text);
}
.newsletter input[type="email"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.newsletter .hp { position: absolute; left: -9999px; }
.newsletter .form-msg { margin: 12px 0 0; font-size: .9rem; }
.form-msg--ok { color: var(--ok); }
.form-msg--err { color: var(--warn); }

.related { margin: 52px 0 0; }
.related h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; color: var(--text-faint); margin-bottom: 18px; }
.related-list { display: grid; gap: 14px; }
@media (min-width: 780px) { .related-list { grid-template-columns: repeat(3, 1fr); } }
.related-item { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; background: var(--surface); }
.related-item .eyebrow { font-size: .68rem; margin-bottom: 8px; }
.related-item h3 { font-size: 1rem; margin-bottom: .3em; line-height: 1.35; }
.related-item h3 a { color: var(--text); }
.related-item h3 a:hover { color: var(--accent); text-decoration: none; }
.related-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

.notice {
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: .9rem; margin: 20px 0;
  border: 1px solid var(--border); background: var(--bg-soft);
}
.notice--draft { border-color: var(--warn); color: var(--warn); background: transparent; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border); background: var(--bg-soft);
  padding: 40px 0 48px; font-size: .9rem; color: var(--text-muted); margin-top: 40px;
}
.site-footer__inner { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 20px; display: grid; gap: 22px; }
@media (min-width: 720px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h3 { font-size: .74rem; text-transform: uppercase; letter-spacing: .11em; color: var(--text-faint); margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--text); }
.site-footer__legal { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-size: .82rem; color: var(--text-faint); max-width: var(--maxw-wide); margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.empty-state { padding: 48px 0; text-align: center; color: var(--text-muted); }

@media (max-width: 700px) {
  .site-header__inner { flex-wrap: nowrap; }
  .brand { min-width: 0; }
  .brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-nav { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .site-header__inner { padding: 10px 16px; gap: 10px; }
  .brand small { display: none; }
  .brand img { width: 28px; height: 28px; }
  .brand span { font-size: .95rem; }
  .site-nav a { padding: 6px 8px; font-size: .85rem; }
  .wrap, .wrap-wide { padding: 0 16px; }
  .hero { padding: 36px 0 4px; }
  .cta, .newsletter { padding: 20px; }
}

@media print {
  .site-header, .site-footer, .cta, .newsletter, .related, .toc { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ---------- Pagina contatti ---------- */
.wrap--contact { max-width: 940px; }
.wrap--contact > header p, .wrap--contact .contact-alt { max-width: 40em; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; }

.contact-grid { display: grid; gap: 18px; margin: 32px 0 8px; align-items: start; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 24px; } }

.contact-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px;
}
.contact-card h2 { font-size: 1.3rem; margin-bottom: .3em; }
.contact-card .eyebrow { margin-bottom: 8px; }
.contact-card > p.small { margin-bottom: 20px; }
.contact-card--quick { background: var(--bg-soft); border-color: var(--border-strong); }
@media (min-width: 860px) { .contact-card--quick { position: sticky; top: 88px; } }

.contact-card label {
  display: block; font-size: .84rem; font-weight: 600; margin: 16px 0 6px; color: var(--text);
}
.contact-card label:first-of-type { margin-top: 0; }
.contact-card .req { color: var(--warn); font-weight: 400; }

.contact-card input[type="text"],
.contact-card input[type="tel"],
.contact-card input[type="email"],
.contact-card select,
.contact-card textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem; min-height: 46px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); -webkit-appearance: none; appearance: none;
}
.contact-card select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
                    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px;
}
.contact-card textarea { min-height: 120px; line-height: 1.6; resize: vertical; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-card input::placeholder, .contact-card textarea::placeholder { color: var(--text-faint); }

.field-row { display: grid; gap: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; gap: 16px; } }

.contact-card .check {
  display: flex; align-items: flex-start; gap: 10px; margin: 20px 0 18px;
  font-size: .86rem; font-weight: 400; color: var(--text-muted); line-height: 1.5;
}
.contact-card .check input { margin-top: 3px; flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--accent); }
.contact-card .btn { margin-top: 2px; }

.contact-alt { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-alt p { margin-bottom: .7em; }

.thanks { padding: 72px 0 40px; max-width: 34em; }
.thanks__mark {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px;
}
.thanks h1 { margin-bottom: .35em; }
.thanks p { font-size: 1.05rem; }
