@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg-site: #fefefe;
  --text: #11181c;
  --text-muted: #4a5b6e;
  --accent: #0f6c5e;
  --accent-light: #2c9a8a;
  --border: #e2e8f0;
  --card-white: #ffffff;
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: clip;
}
img {
  max-width: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-site);
  color: var(--text);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.min-h-screen {
  flex: 1 0 auto;
}
main,
.legal-content,
.thanks-page {
  flex: 1 0 auto;
}
.top-bar {
  background: #0a0c10;
  color: white;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--card-white);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.96);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
}
.logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.legal-content {
  flex: 1 0 auto;
  background: var(--bg-site);
  word-break: break-word;
}
.legal-container {
  max-width: 860px;
  margin: 48px auto;
  padding: 32px 28px;
  background: var(--card-white);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.legal-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
}
.legal-container .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: -16px 0 24px;
}
.legal-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 32px 0 16px;
  font-weight: 600;
}
.legal-container p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: #1f2a3a;
  font-size: 1rem;
}
.legal-container b {
  color: var(--accent);
}
.legal-container a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-container ul, .legal-container ol {
  margin: 1rem 0 1.2rem 2rem;
}
.legal-container li {
  margin-bottom: 0.4rem;
}
.article-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.article-header {
  text-align: center;
  margin-bottom: 32px;
}
.article-category {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 20px 0 12px;
  font-weight: 700;
}
.byline {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.main-image {
  margin: 32px -24px 24px;
  line-height: 0;
}
.main-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}
figcaption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding: 0 12px;
  line-height: 1.4;
}
.prose {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1f2a3a;
}
.prose p {
  margin-bottom: 1.4rem;
}
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  font-weight: 600;
}
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 2rem 0 0.8rem;
  font-weight: 600;
}
blockquote {
  margin: 28px 0;
  padding: 24px 32px;
  background: #f1f5f9;
  border-left: 5px solid var(--accent);
  font-style: italic;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  border-radius: 20px;
}
.inline-figure {
  margin: 40px 0;
}
.inline-figure img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.kits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.kit-card {
  background: var(--card-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.kit-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--accent);
}
.kit-price {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin: 12px 0;
  font-family: 'Playfair Display', serif;
}
.kit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-section {
  background: #f7fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-wrapper > * {
  min-width: 0;
  max-width: 100%;
}
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 20px 0 18px;
  line-height: 1.2;
}
.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.specialties span {
  background: white;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lead-form {
  background: white;
  padding: 32px;
  border-radius: 32px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input, .form-group select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
}
.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-group.checkbox input {
  width: auto;
  margin: 0;
}
.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 24px;
  width: 100%;
  max-width: 100%;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.form-note {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
}
.site-footer {
  background: #11181c;
  color: #cbd5e1;
  padding: 48px 24px 20px;
  margin-top: auto;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-bottom: 1px solid #2d3a44;
  padding-bottom: 40px;
}
.footer-grid > * {
  min-width: 0;
  max-width: 100%;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: white;
}
.footer-logo img {
  width: 45px;
  height: 45px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--accent-light);
}
address {
  font-style: normal;
  line-height: 1.5;
  font-size: 0.9rem;
}
.disclaimer p, .footer-col .disclaimer-text p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #94a3b8;
}
.footer-bottom {
  text-align: center;
  padding-top: 28px;
  font-size: 0.75rem;
  color: #64748b;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #0f172ad9;
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 28px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 1100;
  border: 1px solid #2d3a44;
}
.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
}
#accept-cookies {
  background: var(--accent);
  border: none;
  padding: 8px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .kits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .article-header h1 {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
  }
  .kits-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 28px;
  }
  .legal-container {
    margin: 24px 16px;
    padding: 24px 20px;
  }
  .legal-container h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .top-bar {
    word-break: break-all;
  }
  .logo a {
    flex-direction: column;
  }
  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .footer-col {
    word-break: break-all;
  }
}
@media (max-width: 480px) {
  .header-inner {
    padding: 10px 14px;
  }
  .article-container {
    padding: 32px 14px 24px;
  }
  .contact-section {
    padding: 40px 14px;
  }
  .lead-form {
    padding: 20px 16px;
  }
  .legal-container {
    margin: 16px 12px;
    padding: 20px 16px;
  }
  .prose {
    font-size: 0.95rem;
  }
  .contact-info h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  .site-footer {
    padding: 32px 14px 16px;
  }
}