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

body,
h1,
h2,
h3,
p,
ul,
ol,
figure,
table {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

:root {
  --xf-bg: #ffffff;
  --xf-panel: #f7f2f7;
  --xf-text: #2b1f2e;
  --xf-muted: #6b5f6d;
  --xf-accent: #6a2c6e;
  --xf-accent-dark: #4f2052;
  --xf-line: #e5dae5;
  --xf-head: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --xf-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --xf-wrap: 1100px;
  --xf-radius: 3px;
}

body {
  margin: 0;
  background: var(--xf-bg);
  color: var(--xf-text);
  font-family: var(--xf-body);
  font-size: 17px;
  line-height: 1.68;
}

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

h1,
h2,
h3 {
  font-family: var(--xf-head);
  font-weight: 700;
  line-height: 1.24;
}

.xf-wrap {
  width: 100%;
  max-width: var(--xf-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.xf-skip {
  position: absolute;
  left: -9999px;
}

.xf-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 30;
  background: var(--xf-accent);
  color: #fff;
  padding: 10px 16px;
}

.xf-header {
  border-bottom: 2px solid var(--xf-accent);
  background: var(--xf-bg);
}

.xf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.xf-logo {
  font-family: var(--xf-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--xf-text);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.xf-logo em {
  font-style: normal;
  color: var(--xf-accent);
}

.xf-burger {
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
  padding: 8px 14px;
  cursor: pointer;
  color: var(--xf-text);
}

.xf-nav {
  display: none;
  padding-bottom: 12px;
}

.xf-nav.is-open {
  display: block;
}

.xf-nav__list {
  display: flex;
  flex-direction: column;
}

.xf-nav__link {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--xf-line);
  color: var(--xf-text);
  text-decoration: none;
  font-size: 16px;
}

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

.xf-hero {
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--xf-line);
}

.xf-hero h1 {
  font-size: 30px;
  margin-bottom: 14px;
  max-width: 24ch;
}

.xf-hero__text {
  color: var(--xf-muted);
  max-width: 64ch;
  margin-bottom: 22px;
}

.xf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.xf-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--xf-radius);
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid var(--xf-accent);
  background: var(--xf-accent);
  color: #fff;
  cursor: pointer;
}

.xf-btn:hover {
  background: var(--xf-accent-dark);
  border-color: var(--xf-accent-dark);
}

.xf-btn--ghost {
  background: transparent;
  color: var(--xf-accent);
}

.xf-btn--ghost:hover {
  background: var(--xf-panel);
}

.xf-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--xf-line);
}

.xf-section--tint {
  background: var(--xf-panel);
}

.xf-section__title {
  font-size: 25px;
  margin-bottom: 10px;
}

.xf-section__lead {
  color: var(--xf-muted);
  max-width: 68ch;
  margin-bottom: 24px;
}

.xf-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.xf-filter__btn {
  font: inherit;
  font-size: 15px;
  padding: 8px 15px;
  border: 1px solid var(--xf-line);
  border-radius: 20px;
  background: var(--xf-bg);
  color: var(--xf-text);
  cursor: pointer;
}

.xf-filter__btn.is-active {
  background: var(--xf-accent);
  border-color: var(--xf-accent);
  color: #fff;
}

.xf-breeds {
  border-top: 1px solid var(--xf-line);
}

.xf-breed {
  border-bottom: 1px solid var(--xf-line);
  padding: 18px 0;
  display: grid;
  gap: 6px;
}

.xf-breed.is-hidden {
  display: none;
}

.xf-breed__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.xf-breed h3 {
  font-size: 20px;
}

.xf-breed__tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--xf-accent);
  border: 1px solid var(--xf-line);
  border-radius: 20px;
  padding: 2px 10px;
}

.xf-breed p {
  color: var(--xf-muted);
  font-size: 16px;
}

.xf-breed__data {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 14px;
  color: var(--xf-muted);
  padding-top: 4px;
}

.xf-breed__data strong {
  color: var(--xf-text);
  font-weight: 600;
}

.xf-figure {
  margin: 0 0 24px;
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
  overflow: hidden;
  background: var(--xf-panel);
}

.xf-figure figcaption {
  font-size: 14px;
  color: var(--xf-muted);
  padding: 10px 14px;
  border-top: 1px solid var(--xf-line);
}

.xf-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
}

.xf-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  font-size: 16px;
  background: var(--xf-bg);
}

.xf-table th,
.xf-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--xf-line);
  vertical-align: top;
}

.xf-table th {
  background: var(--xf-panel);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--xf-muted);
}

.xf-table tr:last-child td {
  border-bottom: 0;
}

.xf-guides {
  display: grid;
  gap: 18px;
}

.xf-guide {
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
  padding: 18px 20px;
  background: var(--xf-bg);
  display: flex;
  flex-direction: column;
}

.xf-guide__tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--xf-accent);
  margin-bottom: 8px;
}

.xf-guide h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.xf-guide h3 a {
  color: var(--xf-text);
  text-decoration: none;
}

.xf-guide h3 a:hover {
  color: var(--xf-accent);
}

.xf-guide p {
  color: var(--xf-muted);
  font-size: 16px;
  margin-bottom: 14px;
}

.xf-guide__meta {
  margin-top: auto;
  font-size: 14px;
  color: var(--xf-muted);
  border-top: 1px solid var(--xf-line);
  padding-top: 12px;
}

.xf-note {
  background: var(--xf-panel);
  border-left: 3px solid var(--xf-accent);
  padding: 15px 18px;
  color: var(--xf-muted);
  font-size: 16px;
  margin-top: 22px;
}

.xf-faq {
  display: grid;
  gap: 10px;
}

.xf-faq details {
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
}

.xf-faq summary {
  cursor: pointer;
  padding: 14px 34px 14px 16px;
  font-weight: 600;
  list-style: none;
  position: relative;
}

.xf-faq summary::-webkit-details-marker {
  display: none;
}

.xf-faq summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 20px;
  color: var(--xf-accent);
}

.xf-faq details[open] summary::after {
  content: "–";
}

.xf-faq__body {
  padding: 0 16px 15px;
  color: var(--xf-muted);
}

.xf-method {
  display: grid;
  gap: 18px;
}

.xf-method__item {
  border-top: 2px solid var(--xf-accent);
  padding-top: 12px;
}

.xf-method__item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.xf-method__item p {
  color: var(--xf-muted);
  font-size: 16px;
}

.xf-crumbs {
  font-size: 14px;
  color: var(--xf-muted);
  padding: 18px 0 0;
}

.xf-crumbs a {
  color: var(--xf-muted);
}

.xf-article {
  padding: 10px 0 46px;
  max-width: 74ch;
}

.xf-article__head {
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--xf-line);
  margin-bottom: 24px;
}

.xf-article__head h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.xf-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--xf-muted);
}

.xf-article h2 {
  font-size: 22px;
  margin: 30px 0 12px;
}

.xf-article h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}

.xf-article p {
  margin-bottom: 15px;
}

.xf-article ul,
.xf-article ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.xf-article ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.xf-article ol li {
  list-style: decimal;
  margin-bottom: 8px;
}

.xf-related {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--xf-line);
}

.xf-related h2 {
  font-size: 19px;
  margin-bottom: 12px;
}

.xf-related li {
  margin-bottom: 9px;
}

.xf-legal {
  padding: 12px 0 48px;
  max-width: 72ch;
}

.xf-legal h1 {
  font-size: 27px;
  margin-bottom: 8px;
}

.xf-legal__date {
  color: var(--xf-muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.xf-legal h2 {
  font-size: 20px;
  margin: 28px 0 10px;
}

.xf-legal p {
  margin-bottom: 14px;
}

.xf-legal ul,
.xf-legal ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.xf-legal ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.xf-legal ol li {
  list-style: decimal;
  margin-bottom: 8px;
}

.xf-footer {
  padding: 34px 0 44px;
  background: var(--xf-panel);
  border-top: 1px solid var(--xf-line);
}

.xf-footer__grid {
  display: grid;
  gap: 24px;
}

.xf-footer h2 {
  font-family: var(--xf-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--xf-muted);
  margin-bottom: 12px;
}

.xf-footer__links li {
  margin-bottom: 8px;
}

.xf-footer__links a {
  color: var(--xf-text);
  text-decoration: none;
  font-size: 16px;
}

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

.xf-footer__about {
  color: var(--xf-muted);
  font-size: 16px;
}

.xf-footer__legal {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--xf-line);
  color: var(--xf-muted);
  font-size: 14px;
}

.xf-cookie {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: none;
  background: var(--xf-bg);
  border: 1px solid var(--xf-accent);
  border-radius: var(--xf-radius);
  box-shadow: 0 6px 20px rgba(43, 31, 46, .18);
  padding: 18px;
}

.xf-cookie.is-visible {
  display: block;
}

.xf-cookie p {
  font-size: 15px;
  color: var(--xf-muted);
  margin-bottom: 14px;
}

.xf-cookie__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xf-cookie__btn {
  font: inherit;
  font-size: 15px;
  padding: 9px 16px;
  border-radius: var(--xf-radius);
  border: 1px solid var(--xf-line);
  background: var(--xf-bg);
  color: var(--xf-text);
  cursor: pointer;
  text-decoration: none;
}

.xf-cookie__btn--yes {
  background: var(--xf-accent);
  border-color: var(--xf-accent);
  color: #fff;
}

.xf-404 {
  padding: 58px 0 78px;
  max-width: 58ch;
}

.xf-404 h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.xf-404 p {
  color: var(--xf-muted);
  margin-bottom: 22px;
}

.xf-404__list {
  margin-top: 26px;
  border-top: 1px solid var(--xf-line);
}

.xf-404__list li {
  border-bottom: 1px solid var(--xf-line);
  padding: 11px 0;
}

.xf-gallery {
  display: grid;
  gap: 18px;
}

.xf-gallery .xf-figure {
  margin: 0;
}

.xf-gallery img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.xf-breed__photo {
  margin: 4px 0 0;
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
  overflow: hidden;
  max-width: 280px;
}

.xf-breed__photo img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.xf-order {
  display: grid;
  gap: 22px;
}

.xf-order__facts li {
  border-top: 1px solid var(--xf-line);
  padding: 12px 0;
}

.xf-order__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--xf-muted);
  margin-bottom: 4px;
}

.xf-order__value {
  font-size: 17px;
}

.xf-form {
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
  padding: 20px;
  background: var(--xf-bg);
}

.xf-form label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  color: var(--xf-muted);
}

.xf-form input,
.xf-form select,
.xf-form textarea {
  font: inherit;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid var(--xf-line);
  border-radius: var(--xf-radius);
  background: var(--xf-panel);
  color: var(--xf-text);
}

.xf-form textarea {
  min-height: 120px;
  resize: vertical;
}

.xf-form__hp {
  position: absolute;
  left: -9999px;
}

.xf-form__note {
  font-size: 13px;
  color: var(--xf-muted);
  margin-top: 12px;
}

.xf-form__status {
  font-size: 14px;
  color: var(--xf-muted);
  margin-top: 10px;
  min-height: 20px;
}

.xf-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

@media (min-width: 640px) {
  .xf-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .xf-hero h1 {
    font-size: 38px;
  }

  .xf-guides {
    grid-template-columns: repeat(2, 1fr);
  }

  .xf-method {
    grid-template-columns: repeat(3, 1fr);
  }

  .xf-breed {
    grid-template-columns: 1fr;
  }

  .xf-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .xf-cookie {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 420px;
  }
}

@media (min-width: 960px) {
  .xf-order {
    grid-template-columns: 1fr 1.25fr;
    gap: 34px;
    align-items: start;
  }

  .xf-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .xf-burger {
    display: none;
  }

  .xf-nav {
    display: block;
    padding: 0;
  }

  .xf-nav__list {
    flex-direction: row;
    gap: 24px;
  }

  .xf-nav__link {
    border-top: 0;
    padding: 0;
  }

  .xf-hero {
    padding: 54px 0 44px;
  }

  .xf-hero h1 {
    font-size: 44px;
  }

  .xf-section {
    padding: 56px 0;
  }

  .xf-guides {
    grid-template-columns: repeat(3, 1fr);
  }

  .xf-article,
  .xf-legal {
    margin: 0 auto;
  }
}
