:root {
  --color-white: #ffffff;
  --page-bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-elevated: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-soft: #fcf9f4;
  --surface-warm: #fffaf6;
  --text: #564741;
  --text-strong: #2a2421;
  --muted: #616161;
  --muted-strong: #8b7b74;
  --accent: #f69946;
  --accent-soft: #ffab63;
  --accent-glow: #f9b06a;
  --accent-muted: #fc9d4b;
  --accent-surface: rgba(246, 153, 70, 0.08);
  --accent-line: rgba(246, 153, 70, 0.38);
  --accent-glow-soft: rgba(246, 153, 70, 0.22);
  --accent-hover: #564741;
  --hero-bg: #2a2421;
  --footer-bg: #1f1a18;
  --footer-muted: #cfc3bc;
  --line: rgba(86, 71, 65, 0.1);
  --line-soft: rgba(86, 71, 65, 0.08);
  --line-strong: rgba(86, 71, 65, 0.12);
  --overlay-dark: rgba(28, 21, 18, 0.34);
  --shadow: 0 18px 45px rgba(86, 71, 65, 0.08);
  --shadow-header: 0 10px 30px rgba(86, 71, 65, 0.04);
  --shadow-header-strong: 0 12px 34px rgba(44, 32, 27, 0.1);
  --shadow-panel: -18px 0 42px rgba(44, 32, 27, 0.16);
  --shadow-card: 10px 18px 40px rgba(0, 0, 0, 0.12);
  --shadow-card-soft: 10px 18px 40px rgba(86, 71, 65, 0.08);
  --shadow-elevated: 0 18px 40px rgba(17, 12, 10, 0.22);
  --container: 1200px;
  --container-gutter: 32px;
  --container-gutter-mobile: 20px;
  --container-width: min(100% - var(--container-gutter), var(--container));
  --container-width-mobile: min(100% - var(--container-gutter-mobile), var(--container));
  --container-width-wide: min(100% - var(--container-gutter), 1640px);
  --container-width-feature: min(100% - var(--container-gutter), 1400px);
  --mobile-panel-width: min(100%, 360px);
  --mobile-panel-padding: 108px 20px 24px;
  --header-height: 92px;
  --header-height-scrolled: 74px;
  --header-height-tablet: 84px;
  --header-height-tablet-scrolled: 72px;
  --header-height-mobile: 76px;
  --header-height-mobile-scrolled: 66px;
  --button-height: 52px;
  --button-height-compact: 48px;
  --button-height-mobile: 44px;
  --button-height-large: 54px;
  --hero-min-height: min(60vh, calc(100vh - var(--header-height)));
  --radius-round: 50%;
  --radius-pill: 999px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --section-space-2xs: 28px;
  --section-space-xs: 44px;
  --section-space-sm: 64px;
  --section-space-md: 72px;
  --section-space-lg: 88px;
  --section-space-xl: 110px;
  --section-space-2xl: 124px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--text);
}

body.is-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2 {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-header);
  transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  background: var(--surface-strong);
  box-shadow: var(--shadow-header-strong);
}

.site-header__inner {
  width: var(--container-width);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.28s ease, padding 0.28s ease;
}

.site-header.is-scrolled .site-header__inner {
  min-height: var(--header-height-scrolled);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand img {
  display: block;
  width: auto;
  height: 62px;
  transition: height 0.28s ease;
}

.site-header.is-scrolled .site-header__brand img {
  height: 52px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header__locale-switcher,
.site-mobile-panel__locale-switcher {
  position: relative;
}

.site-header__locale-trigger,
.site-mobile-panel__locale-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-header__locale-trigger:hover,
.site-header__locale-trigger:focus-visible,
.site-mobile-panel__locale-trigger:hover,
.site-mobile-panel__locale-trigger:focus-visible {
  background: var(--color-white);
  border-color: var(--accent-line);
  transform: translateY(-1px);
}

.site-header__locale-flag,
.site-mobile-panel__locale-flag {
  font-size: 1rem;
  line-height: 1;
}

.site-header__locale-code,
.site-mobile-panel__locale-code {
  line-height: 1;
}

.site-header__locale-caret,
.site-mobile-panel__locale-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.site-header__locale-switcher.is-open .site-header__locale-caret,
.site-mobile-panel__locale-switcher.is-open .site-mobile-panel__locale-caret {
  transform: rotate(225deg) translateY(-1px);
}

.site-header__locale-menu,
.site-mobile-panel__locale-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(59, 44, 31, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.site-header__locale-switcher.is-open .site-header__locale-menu,
.site-mobile-panel__locale-switcher.is-open .site-mobile-panel__locale-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__locale-link,
.site-mobile-panel__locale-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.site-header__locale-link:hover,
.site-header__locale-link:focus-visible,
.site-mobile-panel__locale-link:hover,
.site-mobile-panel__locale-link:focus-visible {
  background: rgba(246, 153, 70, 0.1);
  transform: translateX(2px);
}

.site-header__locale-link.is-active,
.site-mobile-panel__locale-link.is-active {
  background: rgba(246, 153, 70, 0.14);
}

.site-header__locale-link-flag,
.site-mobile-panel__locale-link-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.site-header__locale-link-copy,
.site-mobile-panel__locale-link-copy {
  display: grid;
  gap: 2px;
}

.site-header__locale-link-code,
.site-mobile-panel__locale-link-code {
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-header__locale-link-name,
.site-mobile-panel__locale-link-name {
  font-size: 0.78rem;
  color: var(--muted-strong);
}

.site-header__nav-link {
  position: relative;
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.98rem;
  color: var(--text);
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after {
  transform: scaleX(1);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--button-height);
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.94rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.site-header__cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

.site-header__cta-icon i {
  color: var(--color-white);
}

.site-header__menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
  background: var(--color-white);
  border-color: var(--accent-line);
  transform: translateY(-1px);
}

.site-header__menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__menu-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.site-header__menu-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-overlay,
.site-mobile-panel {
  display: none;
}

.site-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--overlay-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--mobile-panel-width);
  padding: var(--mobile-panel-padding);
  background: radial-gradient(circle at top right, var(--accent-glow-soft), transparent 38%), var(--surface-warm);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-panel);
  z-index: 1110;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  overflow-y: auto;
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s ease;
}

.site-mobile-panel__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(59, 44, 31, 0.08);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-mobile-panel__close:hover,
.site-mobile-panel__close:focus-visible {
  background: var(--color-white);
  border-color: var(--accent-line);
  transform: translateY(-1px);
}

.site-mobile-panel__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--text);
}

.site-mobile-panel__close span:first-child {
  transform: rotate(45deg);
}

.site-mobile-panel__close span:last-child {
  transform: rotate(-45deg);
}

.site-mobile-panel.is-open,
.site-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.site-mobile-panel.is-open {
  transform: translateX(0);
}

.site-mobile-panel__nav {
  display: grid;
  gap: 8px;
}

.site-mobile-panel__locale-switcher {
  margin-bottom: 22px;
  width: 100%;
}

.site-mobile-panel__locale-trigger {
  width: 100%;
  justify-content: space-between;
}

.site-mobile-panel__locale-menu {
  left: 0;
  right: 0;
  min-width: 0;
}

.site-mobile-panel__link {
  display: flex;
  align-items: center;
  min-height: var(--button-height-large);
  padding: 0 18px;
  border-radius: var(--radius-lg);
  background: var(--accent-surface);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

main {
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: var(--hero-min-height);
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-slider__viewport {
  position: relative;
  min-height: inherit;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slider__media,
.hero-slider__overlay {
  position: absolute;
  inset: 0;
}

.hero-slider__media {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.hero-slider__slide.is-active .hero-slider__media {
  transform: scale(1);
}

.hero-slider__overlay {
  background: linear-gradient(90deg, rgba(28, 21, 18, 0.82) 0%, rgba(28, 21, 18, 0.54) 38%, rgba(28, 21, 18, 0.18) 100%), linear-gradient(180deg, rgba(20, 16, 14, 0.18) 0%, rgba(20, 16, 14, 0.44) 100%);
}

.hero-slider__content {
  position: relative;
  z-index: 1;
  width: var(--container-width);
  min-height: var(--hero-min-height);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 124px 0 118px;
}

.reveal-fade-up {
  opacity: 1;
  transform: none;
}

.reveal-fade-up.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-fade {
  opacity: 1;
}

.reveal-fade.is-visible {
  opacity: 1;
  transition: none;
}

.reveal-slide-left {
  opacity: 1;
  transform: none;
}

.reveal-slide-left.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-slide-right {
  opacity: 1;
  transform: none;
}

.reveal-slide-right.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-slide-down {
  opacity: 1;
  transform: none;
}

.reveal-slide-down.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-slide-up {
  opacity: 1;
  transform: none;
}

.reveal-slide-up.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-block {
  opacity: 1;
  transform: none;
  transform-origin: left center;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-mask-left {
  display: inline-block;
  overflow: hidden;
}

.reveal-mask-left > span {
  display: inline-block;
  opacity: 1;
  transform: none;
}

.reveal-mask-left.is-visible > span {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-scale {
  opacity: 1;
  transform: none;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-slider__eyebrow {
  margin-bottom: 26px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--accent);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-slider__title {
  max-width: 760px;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.7rem, 5.1vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-slider__text {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.hero-slider__actions {
  margin-top: 38px;
}

.hero-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 30px;
  border-radius: 3px;
  background: var(--accent);
  color: var(--color-white);
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: var(--shadow-elevated);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-slider__button:hover,
.hero-slider__button:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.hero-slider__controls {
  position: absolute;
  inset: 50% 0 auto 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-slider__arrow,
.hero-slider__dot {
  pointer-events: auto;
}

.hero-slider__arrow {
  width: 46px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-slider__arrow[data-hero-prev] {
  border-radius: 0 25px 25px 0;
  padding-right: 7px;
}

.hero-slider__arrow[data-hero-next] {
  border-radius: 25px 0 0 25px;
  padding-left: 7px;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  background: var(--text);
}

.hero-slider__pagination {
  position: absolute;
  left: 50%;
  bottom: -305px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-round);
  background: var(--accent);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: var(--color-white);
  transform: scale(1.14);
}

.hero-features {
  position: relative;
  z-index: 3;
  margin-top: -78px;
  padding: 0 0 74px;
}

.hero-features__inner {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.hero-features__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-height: 0;
  padding: 20px 29px 21px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 12px 9px 38px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.hero-features__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--text);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-features__card:hover,
.hero-features__card:focus-visible {
  transform: translateY(-10px);
}

.hero-features__card:hover::before,
.hero-features__card:focus-visible::before {
  opacity: 1;
}

.hero-features__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin: 10px 22px 0 0;
  background: transparent;
  display: block;
}

.hero-features__icon i {
  color: var(--accent);
  font-size: 50px;
  line-height: 1;
  transition: color 0.4s ease;
}

.hero-features__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

.hero-features__title {
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 4px;
  transition: color 0.4s ease;
}

.hero-features__text {
  color: var(--muted);
  line-height: 1.8667;
  font-size: 15px;
  margin-top: 3px;
  transition: color 0.4s ease;
}

.hero-features__card:hover .hero-features__title,
.hero-features__card:hover .hero-features__text,
.hero-features__card:focus-visible .hero-features__title,
.hero-features__card:focus-visible .hero-features__text {
  color: var(--color-white);
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  justify-self: start;
  margin: 0 0 9px;
  padding: 6px 17px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--accent);
  white-space: nowrap;
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
  box-shadow: 4px 3px 9px rgba(0, 0, 0, 0.1);
}

.section-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-doodle {
  position: absolute;
  display: block;
  height: auto;
  opacity: 0.14;
  filter: saturate(0.88);
  transform-origin: center;
  animation: doodle_float 9s ease-in-out infinite alternate;
  will-change: transform;
}

.section-doodle--paw {
  animation-duration: 8.2s;
  animation-delay: -1.2s;
}

.section-doodle--cat {
  animation-name: doodle_sway;
  animation-duration: 11.5s;
  animation-delay: -3.6s;
}

.section-doodle--yarn {
  animation-name: doodle_orbit;
  animation-duration: 10.4s;
  animation-delay: -2s;
}

.section-doodle--fishbone {
  animation-name: doodle_sway;
  animation-duration: 12.8s;
  animation-delay: -4.3s;
}

.section-doodle--feather {
  animation-name: doodle_drift;
  animation-duration: 13.2s;
  animation-delay: -5.1s;
}

.section-doodle--ground-cat {
  opacity: 0.07;
  filter: saturate(0.7) sepia(0.18);
  animation-name: doodle_ground_bob;
  animation-duration: 12s;
}

.about-section {
  position: relative;
  padding: 64px 0 124px;
  overflow: hidden;
}

.about-section__inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.about-section__media {
  position: relative;
  z-index: 1;
}

.about-section__collage {
  position: relative;
  margin-left: -140px;
  min-height: 620px;
}

.about-section__collage .img-layer_image-wrapper {
  position: absolute;
}

.about-section__collage .img-layer_image {
  transition: all 0.5s;
}

.about-section__image--base {
  left: 0;
  top: 30px;
  width: 410px;
}

.about-section__image--top {
  left: 240px;
  top: 0;
  width: 250px;
}

.about-section__image--accent {
  left: 70px;
  top: 350px;
  width: 180px;
}

.about-section__image--side {
  left: 300px;
  top: 290px;
  width: 235px;
}

.about-section__collage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 8px solid var(--color-white);
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(86, 71, 65, 0.06), var(--shadow-card);
}

.about-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
}

.about-section__doodle--cat {
  top: 26px;
  left: 14px;
  width: clamp(104px, 12vw, 170px);
  opacity: 0.11;
  --doodle-rotate: -14deg;
}

.about-section__doodle--feather {
  right: 6px;
  bottom: 38px;
  width: clamp(88px, 10vw, 134px);
  opacity: 0.16;
  --doodle-rotate: 18deg;
}

.about-section__doodle--ground {
  right: -56px;
  bottom: -122px;
  width: clamp(280px, 33vw, 460px);
  opacity: 0.055;
  --doodle-rotate: 4deg;
}

.about-section__title {
  width: min(95%, 560px);
  margin: 0 0 20px;
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.22;
}

.about-section__text {
  width: min(90%, 560px);
  color: var(--muted);
  line-height: 1.875;
  margin: 0;
}

.about-section__highlights {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(220px, 220px);
  gap: 20px 0;
  margin-top: 32px;
}

.about-section__highlight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-section__highlight-icon {
  width: 41px;
  height: 41px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent);
}

.about-section__highlight-icon i {
  color: var(--color-white);
  font-size: 15px;
  line-height: 1;
}

.about-section__highlight-title {
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

@keyframes image_upDown1 {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes image_upDown2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes image_leftRight3 {
  0% {
    transform: translateX(-6px);
  }
  100% {
    transform: translateX(6px);
  }
}
@keyframes image_move_rotate1 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(8px, -10px, 0) rotate(4deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
.img-layer_image-wrapper.up_down1 .img-layer_image {
  animation: image_upDown1 2s infinite alternate;
}

.img-layer_image-wrapper.up_down2 .img-layer_image {
  animation: image_upDown2 2s infinite alternate;
}

.img-layer_image-wrapper.left_right3 .img-layer_image {
  animation: image_leftRight3 2s infinite alternate;
}

.img-layer_image-wrapper.move-rotate1 .img-layer_image {
  animation: image_move_rotate1 4s infinite linear;
}

.services-section {
  position: relative;
  padding: 36px 0 110px;
  background: var(--surface-soft);
  overflow: hidden;
}

.services-section__inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
}

.services-section__decor-item {
  opacity: 0.18;
}

.services-section__decor-item--paw {
  top: 96px;
  left: -30px;
  width: clamp(92px, 10vw, 132px);
  --doodle-rotate: -14deg;
}

.services-section__decor-item--cat {
  top: 6px;
  right: 10px;
  width: clamp(118px, 14vw, 188px);
  opacity: 0.16;
  --doodle-rotate: 10deg;
}

.services-section__decor-item--yarn {
  right: -18px;
  bottom: 58px;
  width: clamp(110px, 15vw, 176px);
  opacity: 0.14;
  --doodle-rotate: -8deg;
}

.services-section__decor-item--fishbone {
  left: 56px;
  bottom: 20px;
  width: clamp(102px, 13vw, 168px);
  opacity: 0.12;
  --doodle-rotate: 8deg;
}

.services-section__decor-item--ground-left {
  left: -34px;
  bottom: -33px;
  width: clamp(220px, 26vw, 360px);
  opacity: 0.065;
  --doodle-rotate: -3deg;
}

.services-section__intro {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
}

.services-section__intro .section-pill {
  justify-self: center;
}

.services-section__title {
  margin: 0;
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
}

.services-section__text {
  width: min(100%, 510px);
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.875;
}

.services-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
  align-items: start;
  justify-items: center;
}

.services-card {
  width: min(100%, 370px);
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 5px 9px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services-card__media {
  margin: 0;
}

.services-card__media > span {
  display: block;
  overflow: hidden;
}

.services-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 425/313;
  object-fit: cover;
}

.services-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-bottom: 24px;
}

.services-card__title {
  display: inline-block;
  margin: -49px 20px 8px -20px;
  padding: 12px 48px 16px 49px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px var(--accent-glow-soft);
}

.services-card__description {
  margin: 20px 32px 0 29px;
  color: var(--muted);
  line-height: 1.8667;
  flex: 1;
}

.facts-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 110px;
  color: var(--color-white);
}

.facts-section__bg,
.facts-section__overlay {
  position: absolute;
  inset: 0;
}

.facts-section__bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.18);
  transition: transform 0.08s linear;
  will-change: transform;
}

.facts-section__overlay {
  background: linear-gradient(90deg, rgba(49, 37, 32, 0.88) 0%, rgba(49, 37, 32, 0.72) 40%, rgba(49, 37, 32, 0.58) 100%), linear-gradient(180deg, rgba(44, 35, 31, 0.1) 0%, rgba(44, 35, 31, 0.2) 100%);
}

.facts-section__inner {
  position: relative;
  z-index: 1;
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.facts-section__content,
.facts-section__grid {
  position: relative;
  z-index: 1;
}

.facts-section__doodle--paw {
  left: -24px;
  top: 34px;
  width: clamp(94px, 12vw, 150px);
  opacity: 0.14;
  --doodle-rotate: -16deg;
}

.facts-section__doodle--yarn {
  right: 18px;
  top: 36px;
  width: clamp(108px, 13vw, 176px);
  opacity: 0.11;
  --doodle-rotate: 8deg;
}

.facts-section__doodle--feather {
  right: 42px;
  bottom: 8px;
  width: clamp(86px, 10vw, 128px);
  opacity: 0.13;
  --doodle-rotate: 16deg;
}

.facts-section__content {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: start;
}

.facts-section__title {
  max-width: 470px;
  margin: 0;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.35rem, 4.3vw, 3.75rem);
  line-height: 1.14;
}

.facts-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  margin-top: 34px;
  padding: 0 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.facts-section__button:hover,
.facts-section__button:focus-visible {
  background: var(--color-white);
  color: var(--text);
  transform: translateY(-2px);
}

.facts-section__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.facts-section__vector {
  width: 134px;
  height: 104px;
  margin-top: 64px;
  background: radial-gradient(circle at 22px 22px, rgba(246, 153, 70, 0.95) 0 7px, transparent 8px), radial-gradient(circle at 66px 38px, rgba(246, 153, 70, 0.75) 0 10px, transparent 11px), radial-gradient(circle at 108px 28px, rgba(255, 255, 255, 0.9) 0 6px, transparent 7px), radial-gradient(circle at 38px 84px, rgba(255, 255, 255, 0.78) 0 9px, transparent 10px), radial-gradient(circle at 92px 78px, rgba(246, 153, 70, 0.82) 0 8px, transparent 9px);
  opacity: 0.92;
  filter: drop-shadow(0 10px 18px rgba(246, 153, 70, 0.16));
  animation: pulse_soft 4.2s ease-in-out infinite;
}

.facts-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.facts-card {
  min-height: 192px;
  padding: 34px 30px 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
  text-align: center;
  display: grid;
  place-items: center;
}

.facts-card__value {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  line-height: 1;
}

.facts-card__number,
.facts-card__suffix {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.facts-card__suffix {
  margin-left: 2px;
}

.facts-card__label {
  margin: 14px 0 0;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1.42rem;
  line-height: 1.35;
}

.breed-facts-section {
  position: relative;
  padding: 104px 0 112px;
  background: var(--color-white);
  overflow: hidden;
}

.breed-facts-section__inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.breed-facts-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
}

.breed-facts-section__title {
  margin: 0 0 26px;
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.05rem);
  line-height: 1.18;
}

.breed-facts-accordion {
  display: grid;
  gap: 16px;
}

.breed-facts-accordion__item {
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.breed-facts-accordion__item.is-open {
  box-shadow: 10px 16px 36px var(--line-soft);
  border-color: rgba(246, 153, 70, 0.26);
}

.breed-facts-accordion__trigger {
  width: 100%;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.breed-facts-accordion__title {
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.breed-facts-accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.breed-facts-accordion__icon::before,
.breed-facts-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.breed-facts-accordion__icon::before {
  width: 18px;
  height: 2px;
}

.breed-facts-accordion__icon::after {
  width: 2px;
  height: 18px;
}

.breed-facts-accordion__item.is-open .breed-facts-accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.breed-facts-accordion__content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.breed-facts-accordion__content-wrap.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.breed-facts-accordion__content {
  overflow: hidden;
  padding: 0 26px 24px;
  transform: translateY(-8px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.breed-facts-accordion__content-wrap.is-open .breed-facts-accordion__content {
  transform: translateY(0);
}

.breed-facts-accordion__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.875;
}

.breed-facts-section__media {
  position: relative;
  z-index: 1;
  align-self: start;
}

.breed-facts-carousel {
  position: relative;
}

.breed-facts-carousel__viewport {
  position: relative;
  min-height: 640px;
}

.breed-facts-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.breed-facts-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.breed-facts-section__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 18px 24px 50px var(--line-strong);
  height: 100%;
}

.breed-facts-section__image-wrap::before {
  content: "";
  position: absolute;
  inset: auto auto 18px 18px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  background: rgba(246, 153, 70, 0.24);
  z-index: 1;
}

.breed-facts-section__image-wrap img {
  display: block;
  width: 100%;
  min-height: 640px;
  height: 640px;
  object-fit: cover;
}

.breed-facts-carousel__pagination {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.breed-facts-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(86, 71, 65, 0.26);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.breed-facts-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.18);
}

.gallery-section {
  position: relative;
  padding: 108px 0 116px;
  background: radial-gradient(circle at top right, rgba(246, 153, 70, 0.12), transparent 24%), var(--surface-soft);
  overflow: hidden;
}

.gallery-section__intro,
.gallery-section__filters,
.gallery-grid,
.gallery-section__empty,
.gallery-section__carousel {
  position: relative;
  z-index: 1;
}

.gallery-section__doodle--cat {
  top: 26px;
  right: -112px;
  width: clamp(180px, 18vw, 256px);
  opacity: 0.12;
  --doodle-rotate: 4deg;
}

.gallery-section__doodle--paw {
  left: 18px;
  top: 160px;
  width: clamp(84px, 8vw, 116px);
  opacity: 0.11;
  --doodle-rotate: -18deg;
}

.gallery-section__doodle--fishbone {
  left: 44px;
  bottom: 38px;
  width: clamp(110px, 13vw, 168px);
  opacity: 0.1;
  --doodle-rotate: 8deg;
}

.gallery-section__intro {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
}

.gallery-section__title-doodle {
  position: absolute;
  right: -150px;
  top: 18px;
  width: clamp(150px, 17vw, 240px);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  filter: saturate(0.72) sepia(0.18);
  z-index: 0;
}

.gallery-section__intro .section-pill {
  justify-self: center;
}

.gallery-section__title {
  margin: 0;
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.35rem);
  line-height: 1.14;
}

.gallery-section__text {
  width: min(100%, 620px);
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.875;
}

.gallery-section__filters {
  width: var(--container-width-wide);
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-elevated);
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
  background: var(--accent);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--accent-glow-soft);
}

.gallery-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  background: var(--line-soft);
  color: inherit;
  font-size: 0.82rem;
}

.gallery-filter.is-active .gallery-filter__count,
.gallery-filter:hover .gallery-filter__count,
.gallery-filter:focus-visible .gallery-filter__count {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-grid {
  width: calc(100% - 24px);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 390px;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.42s ease;
}

.gallery-grid.is-fading {
  opacity: 0.82;
}

.gallery-card {
  position: relative;
}

.gallery-card[hidden] {
  display: none !important;
}

.gallery-card--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-card--square {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-card__button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ddd;
  cursor: pointer;
  box-shadow: 10px 18px 40px var(--line-soft);
}

.gallery-card__button img,
.gallery-card__overlay,
.gallery-card__meta {
  position: absolute;
  inset: 0;
}

.gallery-card__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-card__overlay {
  background: linear-gradient(180deg, rgba(32, 24, 21, 0.04) 0%, rgba(32, 24, 21, 0.62) 100%), linear-gradient(135deg, rgba(246, 153, 70, 0.26) 0%, rgba(246, 153, 70, 0) 44%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.gallery-card__meta {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px;
  color: var(--color-white);
  gap: 8px;
}

.gallery-card__title {
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  text-align: left;
  max-width: min(100%, 280px);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card__button:hover img,
.gallery-card__button:focus-visible img {
  transform: scale(1.08);
}

.gallery-card__button:hover .gallery-card__overlay,
.gallery-card__button:focus-visible .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__button:hover .gallery-card__title,
.gallery-card__button:hover .gallery-card__label,
.gallery-card__button:focus-visible .gallery-card__title,
.gallery-card__button:focus-visible .gallery-card__label {
  transform: translateY(0);
  opacity: 1;
}

.gallery-section__empty {
  width: min(100% - 24px, 1680px);
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
}

.gallery-section__carousel {
  width: min(100% - 24px, 1680px);
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.gallery-section__carousel[hidden] {
  display: none !important;
}

.gallery-section__carousel-button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--text);
  box-shadow: 0 10px 24px var(--line-soft);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gallery-section__carousel-button:hover,
.gallery-section__carousel-button:focus-visible {
  background: var(--accent);
  color: var(--color-white);
  transform: translateY(-1px);
}

.gallery-section__carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gallery-section__carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(86, 71, 65, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.gallery-section__carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.18);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 16, 0.82);
  backdrop-filter: blur(6px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: var(--container-width-feature);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
}

.gallery-lightbox__figure {
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.gallery-lightbox__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gallery-lightbox__caption {
  width: min(100%, 920px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
}

.gallery-lightbox__nav,
.gallery-lightbox__close {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible,
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: var(--accent);
  transform: scale(1.04);
}

.gallery-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.85rem;
  line-height: 1;
}

.reviews-section {
  position: relative;
  padding: 110px 0 116px;
  background: var(--color-white);
  overflow: hidden;
}

.reviews-section__inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
}

.reviews-section__intro {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.reviews-section__intro .section-pill {
  justify-self: center;
}

.reviews-section__title {
  margin: 0;
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.16;
}

.reviews-section__text {
  width: min(100%, 620px);
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.875;
}

.reviews-slider {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.reviews-section__doodle--yarn {
  top: 34px;
  right: 18px;
  width: clamp(102px, 11vw, 152px);
  opacity: 0.1;
  --doodle-rotate: 8deg;
}

.reviews-section__doodle--paw {
  left: 26px;
  top: 132px;
  width: clamp(78px, 8vw, 112px);
  opacity: 0.1;
  --doodle-rotate: -14deg;
}

.reviews-section__doodle--fishbone {
  right: 48px;
  bottom: 28px;
  width: clamp(112px, 13vw, 170px);
  opacity: 0.1;
  --doodle-rotate: -6deg;
}

.reviews-slider__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.reviews-slider[data-per-view="1"] .reviews-slider__track {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
}

.reviews-slider[data-per-view="1"] .reviews-card:not([hidden]) {
  width: min(100%, 720px);
  margin-inline: auto;
}

.reviews-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 30px 30px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 249, 244, 0.96) 100%);
  box-shadow: 0 22px 45px var(--line-soft), 0 4px 16px rgba(86, 71, 65, 0.04);
}

.reviews-card[hidden] {
  display: none !important;
}

.reviews-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.reviews-card__identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-card__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(246, 153, 70, 0.16) 0%, rgba(246, 153, 70, 0.08) 100%);
}

.reviews-card__icon i {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.reviews-card__quote-mark {
  color: rgba(246, 153, 70, 0.32);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 4rem;
  line-height: 0.8;
  transform: translateY(-4px);
}

.reviews-card__rating {
  margin-top: 22px;
  display: inline-flex;
  gap: 4px;
  color: rgba(246, 153, 70, 0.28);
  font-size: 1.1rem;
}

.reviews-card__star.is-active {
  color: var(--accent);
}

.reviews-card__quote {
  margin: 20px 0 0;
  color: var(--text);
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.9;
}

.reviews-card__meta {
  min-width: 0;
}

.reviews-card__name {
  margin: 0;
  color: var(--text);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
}

.reviews-card__location {
  margin: 6px 0 0;
  color: var(--muted-strong);
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-slider__pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.reviews-slider__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(86, 71, 65, 0.2);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.reviews-slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.18);
}

.contact-cta-section {
  position: relative;
  padding: 0;
  background: radial-gradient(circle at 14% 18%, rgba(249, 176, 106, 0.18), transparent 18%), radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.08), transparent 14%), radial-gradient(circle at 84% 72%, rgba(246, 153, 70, 0.16), transparent 20%), linear-gradient(135deg, #4b403c 0%, #39302d 44%, #2b2522 100%);
  overflow: hidden;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 37, 34, 0.74), rgba(43, 37, 34, 0.74)), url("../img/footer/maine-coon-3.jpg") center 28%/cover no-repeat, radial-gradient(circle at 22% 82%, rgba(255, 255, 255, 0.06), transparent 14%), radial-gradient(circle at 88% 50%, rgba(255, 255, 255, 0.04), transparent 12%), radial-gradient(circle at 56% 30%, rgba(249, 176, 106, 0.06), transparent 10%);
  opacity: 0.24;
  filter: saturate(0.72) contrast(0.92);
  pointer-events: none;
}

.contact-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.07) 0 5px, transparent 6px), radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.07) 0 10px, transparent 11px), radial-gradient(circle at 82% 38%, rgba(249, 176, 106, 0.12) 0 14px, transparent 15px), radial-gradient(circle at 78% 52%, rgba(255, 255, 255, 0.05) 0 8px, transparent 9px), radial-gradient(circle at 88% 62%, rgba(249, 176, 106, 0.1) 0 18px, transparent 19px), radial-gradient(circle at 72% 74%, rgba(255, 255, 255, 0.04) 0 11px, transparent 12px);
  pointer-events: none;
}

.contact-cta-section__inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
}

.contact-cta-card {
  position: relative;
  z-index: 1;
}

.contact-cta-section__doodle--paw {
  top: 34px;
  left: 14px;
  width: clamp(90px, 10vw, 136px);
  opacity: 0.12;
  --doodle-rotate: -12deg;
}

.contact-cta-section__doodle--yarn {
  right: 12px;
  top: 56px;
  width: clamp(104px, 12vw, 162px);
  opacity: 0.11;
  --doodle-rotate: 10deg;
}

.contact-cta-section__doodle--feather {
  right: 66px;
  bottom: 6px;
  width: clamp(82px, 9vw, 126px);
  opacity: 0.13;
  --doodle-rotate: 18deg;
}

.contact-cta-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta-card__content {
  position: relative;
  padding: 64px 0 62px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-card__content .section-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  box-shadow: none;
  justify-self: center;
}

.contact-cta-card__title {
  max-width: 760px;
  margin: 0;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1.12;
  text-wrap: balance;
}

.contact-cta-card__text {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.contact-cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 18px;
  margin-top: 30px;
}

.contact-cta-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.96rem;
  box-shadow: 0 14px 30px rgba(246, 153, 70, 0.24);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-cta-card__button:hover,
.contact-cta-card__button:focus-visible {
  background: var(--color-white);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 255, 255, 0.14);
}

.contact-cta-card__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.contact-cta-card__email {
  display: inline-flex;
  align-items: center;
  min-height: var(--button-height-compact);
  padding: 0 18px;
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-size: 0.96rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.contact-cta-card__email:hover,
.contact-cta-card__email:focus-visible {
  color: var(--accent-glow);
  border-color: rgba(249, 176, 106, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.contact-cta-card__note {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.8;
}

@keyframes pulse_soft {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.86;
  }
  30% {
    transform: translate3d(6px, -4px, 0) scale(1.04) rotate(2deg);
    opacity: 0.98;
  }
  65% {
    transform: translate3d(-4px, -10px, 0) scale(1.08) rotate(-2deg);
    opacity: 1;
  }
}
@keyframes doodle_float {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--doodle-rotate, 0deg));
  }
  100% {
    transform: translate3d(0, -12px, 0) rotate(calc(var(--doodle-rotate, 0deg) + 3deg));
  }
}
@keyframes doodle_sway {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--doodle-rotate, 0deg));
  }
  50% {
    transform: translate3d(10px, -8px, 0) rotate(calc(var(--doodle-rotate, 0deg) - 4deg));
  }
  100% {
    transform: translate3d(-4px, -14px, 0) rotate(calc(var(--doodle-rotate, 0deg) + 2deg));
  }
}
@keyframes doodle_orbit {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--doodle-rotate, 0deg));
  }
  33% {
    transform: translate3d(8px, -10px, 0) rotate(calc(var(--doodle-rotate, 0deg) + 4deg));
  }
  66% {
    transform: translate3d(-6px, -6px, 0) rotate(calc(var(--doodle-rotate, 0deg) - 3deg));
  }
  100% {
    transform: translate3d(3px, -14px, 0) rotate(calc(var(--doodle-rotate, 0deg) + 2deg));
  }
}
@keyframes doodle_drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--doodle-rotate, 0deg));
  }
  50% {
    transform: translate3d(-8px, -12px, 0) rotate(calc(var(--doodle-rotate, 0deg) + 5deg));
  }
  100% {
    transform: translate3d(4px, -18px, 0) rotate(calc(var(--doodle-rotate, 0deg) - 2deg));
  }
}
@keyframes doodle_ground_bob {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--doodle-rotate, 0deg));
  }
  100% {
    transform: translate3d(0, -7px, 0) rotate(calc(var(--doodle-rotate, 0deg) + 1.5deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide,
  .hero-slider__media,
  .reveal-fade-up,
  .reveal-fade-up.is-visible,
  .reveal-fade,
  .reveal-fade.is-visible,
  .reveal-block,
  .reveal-block.is-visible,
  .reveal-mask-left > span,
  .reveal-mask-left.is-visible > span,
  .reveal-scale,
  .reveal-scale.is-visible,
  .reveal-slide-left,
  .reveal-slide-left.is-visible,
  .reveal-slide-right,
  .reveal-slide-right.is-visible,
  .reveal-slide-down,
  .reveal-slide-down.is-visible,
  .reveal-slide-up,
  .reveal-slide-up.is-visible,
  .hero-slider__button,
  .hero-slider__arrow,
  .hero-slider__dot,
  .hero-features__card,
  .about-section__collage .img-layer_image,
  .services-card,
  .services-card__media img,
  .services-card__title,
  .facts-section__button,
  .facts-section__vector,
  .facts-card__number,
  .section-doodle {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}
.site-footer {
  position: relative;
  margin-top: 0;
  background-color: var(--footer-bg);
  border-top: 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 100%;
  background-image: var(--footer-bg-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.22;
  pointer-events: none;
}

.site-footer__inner,
.site-footer__bottom {
  width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.22fr) minmax(280px, 0.96fr) minmax(320px, 1.02fr);
  gap: 44px;
  padding: 76px 0 52px;
  align-items: start;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.site-footer__logo img {
  display: block;
  width: auto;
  height: 106px;
  filter: brightness(0) invert(1) contrast(1.05);
}

.site-footer__brand-block {
  max-width: 360px;
}

.site-footer__column:last-child {
  max-width: 380px;
}

.site-footer__contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.site-footer__contact-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-round);
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.site-footer__contact-icon i {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1;
}

.site-footer__brand-title,
.site-footer__title {
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-weight: 400;
  color: var(--color-white);
}

.site-footer__brand-title {
  margin: 0;
  font-size: 1.5rem;
}

.site-footer__brand-description,
.site-footer__nav a,
.site-footer__contact-list a,
.site-footer__contact-list span,
.site-footer__proof-copy span,
.site-footer__bottom p,
.site-footer__bottom a {
  color: var(--footer-muted);
}

.site-footer__title {
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.site-footer__brand-description {
  max-width: 320px;
  margin: 16px 0 0;
  line-height: 1.8;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-round);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.site-footer__social-link i {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
}

.site-footer__nav,
.site-footer__contact-list,
.site-footer__proof-list {
  display: grid;
  gap: 14px;
}

.site-footer__nav a,
.site-footer__contact-list a,
.site-footer__contact-list span,
.site-footer__proof-copy span {
  line-height: 1.7;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact-list a:hover,
.site-footer__contact-list a:focus-visible,
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #fc9d4b;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.site-footer__info-item,
.site-footer__proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__info-icon,
.site-footer__proof-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.site-footer__info-icon i,
.site-footer__proof-icon i {
  font-size: 18px;
  line-height: 1;
}

.site-footer__info-copy,
.site-footer__proof-copy {
  display: grid;
  gap: 4px;
}

.site-footer__info-copy strong,
.site-footer__proof-copy strong {
  color: var(--color-white);
  font-family: "Paytone One", "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

.site-footer__bottom {
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__bottom p {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: var(--header-height-tablet);
    gap: 12px;
  }
  .site-header.is-scrolled .site-header__inner {
    min-height: var(--header-height-tablet-scrolled);
  }
  .site-header__brand img {
    height: 54px;
  }
  .site-header.is-scrolled .site-header__brand img {
    height: 46px;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__actions {
    margin-left: auto;
  }
  .site-header__cta {
    min-height: var(--button-height-compact);
    padding: 0 18px;
    font-size: 0.88rem;
  }
  .site-header__locale-link {
    padding: 8px 10px;
  }
  .site-header__cta-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
  .site-header__menu-toggle {
    display: inline-flex;
  }
  .site-mobile-overlay,
  .site-mobile-panel {
    display: block;
  }
  .hero-slider,
  .hero-slider__content {
    min-height: 600px;
  }
  .hero-slider__content {
    padding: 118px 0 108px;
  }
  .hero-slider__title {
    max-width: 620px;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
  }
  .hero-slider__pagination {
    bottom: -248px;
  }
  .hero-features {
    margin-top: -62px;
    padding-bottom: 54px;
  }
  .hero-features__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-section {
    padding: 44px 0 88px;
  }
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-section__collage {
    margin-left: 0;
    min-height: 560px;
  }
  .about-section__image--base {
    width: 360px;
  }
  .about-section__image--top {
    left: 190px;
    width: 220px;
  }
  .about-section__image--accent {
    top: 315px;
    width: 150px;
  }
  .about-section__image--side {
    left: 245px;
    top: 255px;
    width: 200px;
  }
  .about-section__title,
  .about-section__text {
    width: 100%;
  }
  .about-section__doodle--ground {
    right: -34px;
    bottom: -90px;
    width: 310px;
  }
  .about-section__highlights {
    grid-template-columns: 1fr 1fr;
  }
  .services-section {
    padding: 28px 0 84px;
  }
  .services-section__decor-item--paw {
    top: 116px;
    left: -18px;
    width: 92px;
  }
  .services-section__decor-item--cat {
    top: 14px;
    right: -8px;
    width: 136px;
  }
  .services-section__decor-item--yarn {
    right: -14px;
    bottom: 44px;
    width: 124px;
  }
  .services-section__decor-item--fishbone {
    left: 12px;
    bottom: 10px;
    width: 120px;
  }
  .services-section__decor-item--ground-left {
    left: -18px;
    bottom: -68px;
    width: 260px;
  }
  .services-section__grid {
    grid-template-columns: 1fr 1fr;
  }
  .facts-section {
    padding: 88px 0 84px;
  }
  .facts-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .facts-section__content {
    justify-items: start;
  }
  .facts-section__doodle--paw {
    left: -10px;
    top: 16px;
    width: 102px;
  }
  .facts-section__doodle--yarn {
    right: -4px;
    top: 22px;
    width: 118px;
  }
  .facts-section__doodle--feather {
    right: 12px;
    bottom: 14px;
    width: 92px;
  }
  .breed-facts-section {
    padding: 84px 0 88px;
  }
  .breed-facts-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .breed-facts-carousel__viewport {
    min-height: 520px;
  }
  .breed-facts-section__image-wrap img {
    min-height: 520px;
    height: 520px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
  .gallery-card--wide {
    grid-column: span 2;
  }
  .gallery-card--square {
    grid-column: span 1;
  }
  .gallery-lightbox__dialog {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    width: min(100% - 24px, 1100px);
  }
  .reviews-section {
    padding: 88px 0 92px;
  }
  .reviews-section__doodle--yarn {
    right: -8px;
    top: 28px;
    width: 120px;
  }
  .reviews-section__doodle--paw {
    left: -6px;
    top: 112px;
    width: 88px;
  }
  .reviews-section__doodle--fishbone {
    right: 12px;
    bottom: 14px;
    width: 126px;
  }
  .gallery-section__title-doodle {
    right: -110px;
    top: 26px;
    width: 176px;
  }
  .reviews-slider__track {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
    gap: 24px;
  }
  .reviews-card {
    width: min(100%, 720px);
    margin-inline: auto;
  }
  .contact-cta-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-cta-card__content {
    padding: 46px 0 28px;
    max-width: 100%;
  }
  .contact-cta-section__doodle--paw {
    left: -8px;
    top: 36px;
    width: 92px;
  }
  .contact-cta-section__doodle--yarn {
    right: -10px;
    top: 64px;
    width: 120px;
  }
  .contact-cta-section__doodle--feather {
    right: 28px;
    bottom: 2px;
    width: 88px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 32px;
  }
  .site-footer__link-columns {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .site-header__inner {
    width: var(--container-width-mobile);
    min-height: var(--header-height-mobile);
  }
  .site-header.is-scrolled .site-header__inner {
    min-height: var(--header-height-mobile-scrolled);
  }
  .site-header__brand img {
    height: 48px;
  }
  .site-header.is-scrolled .site-header__brand img {
    height: 42px;
  }
  .site-header__actions {
    gap: 10px;
  }
  .site-header__locale-switcher {
    display: inline-flex;
  }
  .site-header__locale-trigger {
    gap: 8px;
    height: 44px;
    padding: 0 10px;
  }
  .site-header__locale-code {
    font-size: 0.76rem;
  }
  .site-header__locale-menu {
    right: -6px;
    min-width: 160px;
  }
  .site-header__cta {
    min-height: var(--button-height-mobile);
    padding: 0 14px;
    border-radius: 16px;
    gap: 8px;
    font-size: 0.8rem;
  }
  .site-header__cta-text {
    display: inline;
    font-size: 0.8rem;
    line-height: 1;
  }
  .site-header__menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }
  .site-mobile-panel {
    width: 100%;
    padding-top: 96px;
  }
  .site-mobile-panel__close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }
  .hero-slider,
  .hero-slider__content {
    min-height: 500px;
  }
  .hero-slider__content {
    padding: 108px 0 96px;
  }
  .hero-slider__eyebrow {
    margin-bottom: 16px;
    font-size: 0.82rem;
    padding: 4px 10px;
  }
  .hero-slider__title {
    font-size: clamp(2rem, 10.8vw, 3rem);
    line-height: 1.08;
  }
  .hero-slider__text {
    margin-top: 18px;
    line-height: 1.65;
  }
  .hero-slider__actions {
    margin-top: 26px;
  }
  .hero-slider__button {
    min-height: var(--button-height-large);
    padding: 0 24px;
    font-size: 0.9rem;
  }
  .hero-slider__controls {
    inset: auto 0 20px 0;
    transform: none;
    justify-content: center;
  }
  .hero-slider__arrow {
    display: none;
  }
  .hero-slider__pagination {
    position: static;
    transform: none;
    gap: 10px;
  }
  .hero-features {
    margin-top: -40px;
    padding-bottom: 34px;
  }
  .hero-features__card {
    padding: 20px 22px 21px;
  }
  .hero-features__icon {
    margin-right: 18px;
  }
  .hero-features__title {
    font-size: 20px;
  }
  .about-section {
    padding: 34px 0 64px;
  }
  .about-section__collage {
    min-height: 380px;
  }
  .about-section__image--base {
    left: 0;
    top: 18px;
    width: 230px;
  }
  .about-section__image--top {
    left: 145px;
    top: 0;
    width: 145px;
  }
  .about-section__image--accent {
    left: 32px;
    top: 220px;
    width: 110px;
  }
  .about-section__image--side {
    left: 180px;
    top: 165px;
    width: 135px;
  }
  .about-section__title {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    margin-bottom: 16px;
  }
  .about-section__highlights {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .about-section__highlight {
    gap: 16px;
  }
  .about-section__doodle--cat,
  .about-section__doodle--feather,
  .about-section__doodle--ground,
  .services-section__decor-item--paw,
  .services-section__decor-item--cat,
  .facts-section__doodle--paw,
  .gallery-section__doodle--cat,
  .gallery-section__doodle--paw,
  .gallery-section__title-doodle,
  .reviews-section__doodle--paw,
  .services-section__decor-item--ground-left,
  .contact-cta-section__doodle--paw,
  .contact-cta-section__doodle--feather {
    display: none;
  }
  .services-section {
    padding: 22px 0 64px;
  }
  .services-section__decor-item--yarn {
    right: -22px;
    bottom: 18px;
    width: 98px;
    opacity: 0.1;
  }
  .services-section__decor-item--fishbone {
    left: -18px;
    bottom: 18px;
    width: 96px;
    opacity: 0.1;
  }
  .services-section__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .facts-section__doodle--yarn {
    right: -14px;
    top: 24px;
    width: 92px;
    opacity: 0.09;
  }
  .facts-section__doodle--feather {
    right: -6px;
    bottom: 10px;
    width: 72px;
    opacity: 0.1;
  }
  .gallery-section__doodle--fishbone {
    left: -14px;
    bottom: 22px;
    width: 96px;
    opacity: 0.09;
  }
  .gallery-section__doodle--cat {
    right: -84px;
    top: 30px;
    width: 188px;
    opacity: 0.1;
  }
  .reviews-section__doodle--yarn {
    right: -16px;
    top: 24px;
    width: 96px;
    opacity: 0.09;
  }
  .reviews-section__doodle--fishbone {
    right: -10px;
    bottom: 14px;
    width: 98px;
    opacity: 0.09;
  }
  .contact-cta-section__doodle--yarn {
    right: -20px;
    top: 72px;
    width: 94px;
    opacity: 0.09;
  }
  .services-card__title {
    font-size: 22px;
    margin: -36px 20px 8px -12px;
    padding: 12px 34px 16px 34px;
  }
  .services-card__description {
    margin: 18px 20px 0;
  }
  .facts-section {
    padding: 72px 0 68px;
  }
  .facts-section__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
  .facts-section__button {
    min-height: var(--button-height-large);
    margin-top: 26px;
    padding: 0 24px;
    font-size: 0.92rem;
  }
  .facts-section__vector {
    width: 96px;
    height: 76px;
    margin-top: 42px;
  }
  .facts-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .facts-card {
    min-height: 152px;
    padding: 28px 22px 24px;
  }
  .facts-card__label {
    font-size: 1.15rem;
  }
  .breed-facts-section {
    padding: 68px 0 72px;
  }
  .breed-facts-section__title {
    margin-bottom: 20px;
    font-size: clamp(1.95rem, 8.6vw, 2.55rem);
  }
  .breed-facts-accordion {
    gap: 14px;
  }
  .breed-facts-accordion__trigger {
    padding: 20px 18px;
    gap: 14px;
  }
  .breed-facts-accordion__title {
    font-size: 1.08rem;
  }
  .breed-facts-accordion__content {
    padding: 0 18px 20px;
  }
  .breed-facts-carousel__viewport {
    min-height: 360px;
  }
  .breed-facts-section__image-wrap img {
    min-height: 360px;
    height: 360px;
  }
  .breed-facts-carousel__pagination {
    right: 14px;
    bottom: 14px;
    gap: 8px;
    padding: 8px 10px;
  }
  .gallery-section {
    padding: 72px 0 78px;
  }
  .gallery-section__filters {
    margin-top: 28px;
    gap: 10px;
  }
  .gallery-filter {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.86rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .gallery-card--wide,
  .gallery-card--square {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-card__button {
    aspect-ratio: 1/1;
    border-radius: 16px;
  }
  .gallery-card__meta {
    padding: 16px;
  }
  .gallery-card__title {
    font-size: 1.2rem;
  }
  .gallery-section__carousel {
    gap: 12px;
  }
  .gallery-section__carousel-button {
    width: 46px;
    height: 46px;
  }
  .gallery-lightbox__dialog {
    width: min(100% - 16px, 720px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 76px 0 24px;
  }
  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .gallery-lightbox__nav--prev {
    left: 12px;
  }
  .gallery-lightbox__nav--next {
    right: 12px;
  }
  .gallery-lightbox__close {
    top: 12px;
    right: 12px;
  }
  .gallery-lightbox__caption {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 0.88rem;
  }
  .reviews-section {
    padding: 72px 0 76px;
  }
  .reviews-slider {
    margin-top: 32px;
  }
  .reviews-slider__track {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 18px;
  }
  .reviews-card {
    width: 100%;
    padding: 24px 20px 26px;
    border-radius: var(--radius-lg);
  }
  .reviews-card__identity {
    gap: 14px;
  }
  .reviews-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
  .reviews-card__quote-mark {
    font-size: 3rem;
  }
  .reviews-card__quote {
    font-size: 0.98rem;
    line-height: 1.8;
  }
  .contact-cta-section {
    padding-top: 0;
  }
  .contact-cta-card {
    border-radius: 0;
  }
  .contact-cta-card__content {
    padding: 34px 0 22px;
  }
  .contact-cta-card__actions {
    margin-top: 24px;
    gap: 14px;
  }
  .contact-cta-card__button {
    width: 100%;
    min-height: var(--button-height-large);
  }
  .contact-cta-card__email {
    font-size: 0.92rem;
  }
  .site-footer__link-columns {
    grid-template-columns: 1fr;
  }
  .site-footer__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .site-footer__hours-row {
    flex-direction: column;
    gap: 4px;
  }
}
