:root {
  --bg: #f4f1eb;
  --paper: #fffdf9;
  --ink: #1f2427;
  --muted: #687077;
  --line: #dedbd4;
  --accent: #b75b2a;
  --accent-deep: #8f401c;
  --soft: #ece6dc;
  --shadow: 0 18px 50px rgba(31, 36, 39, .08);
  --max: 1040px;
  --article: 760px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--accent);
}
img {
  max-width: 100%;
}
.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.site-header {
  background: rgba(255, 253, 249, .96);
  border-bottom: 1px solid var(--line);
}
.header-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand-name {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.045em;
}
.brand-divider {
  color: #a0a4a7;
  font-size: 22px;
}
.brand-country {
  color: #51585e;
  font-size: 15px;
  font-weight: 700;
}
.advertorial-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: #777;
  font-size: 11px;
  font-style: italic;
}
.advertorial-bar .shell {
  padding: 6px 0;
  text-align: right;
}
.article-page {
  width: min(calc(100% - 32px), var(--article));
  margin: 42px auto 0;
}
.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 58px);
}
.article-title {
  margin: 0 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -.025em;
}
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.author-avatar,
.comment-avatar {
  display: block;
  background: linear-gradient(135deg, #ded9d0, #f3efe7);
  border: 1px solid var(--line);
  color: transparent;
  font-size: 0;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.byline strong {
  font-size: 14px;
}
.byline-meta {
  color: var(--muted);
  font-size: 12px;
}
.article-card p {
  margin: 0 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.78;
}
.article-card h3 {
  margin: 42px 0 16px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.article-media {
  margin: 0 0 32px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ebe6dc, #dcd6ca);
  overflow: hidden;
}
.article-media-secondary {
  margin-top: 10px;
}
.article-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  color: transparent;
  font-size: 0;
}
.signup-card {
  margin: 44px 0 0;
  padding: clamp(22px, 5vw, 36px);
  background: #252b2e;
  color: #fff;
  border-radius: 10px;
}
.signup-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #f2c5aa;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.signup-card h2 {
  margin: 0 0 22px;
  font-size: 28px;
}
.lead-form {
  display: grid;
  gap: 14px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}
.lead-form input {
  width: 100%;
  border: 1px solid #565d60;
  background: #fff;
  color: #202428;
  border-radius: 5px;
  padding: 13px 14px;
  font: inherit;
}
.phone-field {
  position: relative;
}
.phone-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #52575a;
  font-weight: 700;
  font-size: 13px;
  padding-right: 10px;
  border-right: 1px solid #d5d5d5;
}
.phone-field input {
  padding-left: 58px;
}
.country-display {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: -4px;
  padding: 0 2px;
  color: #c9ced1;
  font-size: 12px;
}
.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.lead-form button {
  border: 0;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.lead-form button:hover {
  background: var(--accent-deep);
}
.comments-section {
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}
.comments-title {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  font-size: 16px;
  letter-spacing: .08em;
}
.comment-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.comment-card:last-child {
  border-bottom: 0;
}
.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  font-size: 13px;
}
.comment-meta .reaction {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  color: var(--muted);
}
.comment-meta>span:last-child {
  color: var(--muted);
}
.comment-body p {
  margin: 7px 0 9px;
  font-size: 14px;
  line-height: 1.55;
}
.report {
  color: #8a8f93;
  font-size: 11px;
}
.site-footer {
  margin-top: 52px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.main-footer-shell {
  padding: 44px 0 50px;
  text-align: center;
}
.footer-brand {
  color: var(--ink);
  font-weight: 800;
}
.main-footer-brand {
  margin-bottom: 24px;
  font-size: 24px;
}
.main-footer-brand span {
  color: #757b80;
}
.risk-box {
  max-width: 840px;
  margin: 0 auto 24px;
  padding: 18px 20px;
  border: 1px solid #d9d7d0;
  background: #f0ede7;
  text-align: left;
  border-radius: 6px;
}
.risk-box strong {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .03em;
}
.risk-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.footer-desc {
  max-width: 840px;
  margin: 0 auto 12px;
  color: #666d72;
  font-size: 12px;
  line-height: 1.65;
}
.footer-company-block {
  max-width: 840px;
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #898f93;
  font-size: 11px;
  line-height: 1.6;
  font-style: italic;
}
.footer-company-title {
  margin-bottom: 7px;
  font-weight: 800;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}
.footer-nav a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #4f565b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  border-color: #9c9890;
  color: var(--ink);
  background: #f6f2eb;
}
.footer-copy {
  margin-top: 14px;
  color: #7a8084;
  font-size: 11px;
}
/* Legal pages */
.legal-header-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand-legal {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
}
.back-link {
  color: #5e6569;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.legal-main {
  width: min(calc(100% - 32px), 820px);
  margin: 34px auto 0;
}
.legal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 46px);
}
.legal-card h1 {
  margin: 0 0 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.15;
}
.legal-body h2 {
  margin: 30px 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.25;
}
.legal-body p,
.legal-body li {
  color: #565d62;
  font-size: 15px;
}
.legal-body p {
  margin: 0 0 15px;
}
.legal-body ul {
  margin: 0 0 18px 22px;
  padding: 0;
}
.legal-footer {
  margin-top: 42px;
}
.legal-footer-shell {
  padding: 38px 0 30px;
}
.legal-footer .footer-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .025em;
}
.footer-rule {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.legal-footer .footer-nav {
  justify-content: flex-start;
  margin-top: 0;
}
.legal-footer .footer-copy {
  margin-top: 12px;
}
.footer-heading {
  margin: 18px 0 5px;
  font-size: 14px;
  font-weight: 700;
}
.footer-company-legal {
  margin: 0;
  color: #697075;
  font-size: 12px;
  line-height: 1.65;
}
/* Thanks */
.thanks-main {
  min-height: calc(100vh - 270px);
  display: grid;
  place-items: center;
  padding: 42px 20px;
}
.thanks-card {
  width: min(680px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(30px, 7vw, 52px);
  text-align: center;
}
.thanks-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 700;
}
.thanks-card h1 {
  margin: 0 0 15px;
  font-size: clamp(27px, 5vw, 34px);
  line-height: 1.2;
}
.thanks-card p {
  max-width: 520px;
  margin: 0 auto 10px;
  color: #5f666b;
  font-size: 16px;
}
.thanks-card .thanks-wait {
  font-size: 14px;
  color: #777d80;
}
.thanks-footer {
  margin-top: 0;
}
.thanks-footer-shell {
  padding: 24px 0;
  text-align: center;
}
.thanks-footer .footer-nav {
  margin-top: 0;
}
@media (max-width: 640px) {
  body {
    word-break: break-word;
  }
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }
  .header-shell {
    min-height: 66px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-country {
    font-size: 14px;
  }
  .article-page {
    width: min(calc(100% - 20px), var(--article));
    margin-top: 20px;
  }
  .article-card,
  .comments-section {
    box-shadow: none;
  }
  .article-title {
    font-size: clamp(31px, 10vw, 42px);
  }
  .article-card p {
    font-size: 18px;
    line-height: 1.7;
  }
  .article-card h3 {
    font-size: 23px;
    margin-top: 34px;
  }
  .legal-header-shell {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-legal {
    font-size: 19px;
  }
  .legal-main {
    margin-top: 20px;
    width: min(calc(100% - 20px), 820px);
  }
  .comment-card {
    grid-template-columns: 36px 1fr;
  }
  .comment-avatar {
    width: 36px;
    height: 36px;
  }
}