:root {
  --orange: #ff5a00;
  --orange-2: #ff7608;
  --orange-3: #ff8f25;
  --cream: #fff3df;
  --cream-2: #fff8ed;
  --cream-3: #fffdf7;
  --brown: #4c2b13;
  --brown-2: #7b5636;
  --muted: #a58566;
  --white: #fff;
  --blue: #2f82df;
  --line: rgba(91, 44, 14, .1);
  --shadow: 0 22px 60px rgba(112, 54, 12, .15);
  --shadow-soft: 0 12px 28px rgba(112, 54, 12, .12);
  --font-main: 'Inter', Arial, sans-serif;
  --font-title: 'Nunito', Arial, sans-serif;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--brown);
  background: var(--orange);
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 38px)); margin: 0 auto; }

.page { min-height: 100vh; overflow: visible; }

.hero {
  position: relative;
  min-height: 570px;
  padding: 0 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.12), transparent 17%),
    radial-gradient(circle at 82% 22%, rgba(255,190,96,.22), transparent 18%),
    linear-gradient(135deg, #ff5100 0%, #ff6100 49%, #ff790c 100%);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    radial-gradient(circle at 8px 9px, rgba(255,255,255,.18) 0 3px, transparent 4px),
    radial-gradient(circle at 24px 21px, rgba(255,255,255,.08) 0 2px, transparent 3px);
  background-size: 54px 54px;
  opacity: .35;
}
.hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: 0;
  width: 72%;
  height: 310px;
  z-index: -2;
  border-radius: 55% 0 0 0 / 72% 0 0 0;
  background: rgba(255, 179, 73, .25);
  border-top: 3px solid rgba(255, 228, 176, .42);
}

.header { position: relative; z-index: 20; padding: 24px 0 0; }
.header__inner { display: flex; align-items: center; gap: 26px; }
.logo { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; color: #fff; }
.logo__paw { width: 36px; height: 36px; display: grid; place-items: center; font-size: 27px; line-height: 1; filter: drop-shadow(0 6px 8px rgba(91,39,7,.12)); }
.logo span:last-child { display: grid; line-height: .86; }
.logo b { font-family: var(--font-title); font-size: 31px; font-weight: 900; letter-spacing: -.055em; }
.logo small { font-size: 13px; font-weight: 900; letter-spacing: -.03em; text-transform: lowercase; }

.nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav__link { color: #fff; font-weight: 900; font-size: 15px; transition: .2s ease; }
.nav__link:hover { color: #ffe7be; }
.nav__link.is-active { color: #fff; }
.header__follow { display: flex; align-items: center; gap: 8px; margin-left: 30px; }
.follow-label { font-weight: 900; font-size: 14px; color: #fff; margin-right: 8px; }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 17px;
  border-radius: 15px;
  background: #fff8ef;
  color: #241711;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(96, 39, 6, .16);
}
.social span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.social--vk span { background: var(--blue); }
.social--tt span { background: #111; }
.social--big { min-height: 55px; padding: 0 24px; border-radius: 18px; font-size: 18px; }
.social--big span { width: 31px; height: 31px; }

.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: #fff8ef; box-shadow: var(--shadow-soft); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--orange); }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, .9fr);
  gap: 36px;
  align-items: center;
  min-height: 476px;
  padding-top: 36px;
}
.hero__text-block { padding-top: 28px; }
.hero h1 {
  margin: 0;
  font-family: var(--font-title);
  line-height: .78;
  letter-spacing: -.075em;
  color: #fff2da;
  text-shadow:
    0 7px 0 rgba(129, 50, 6, .45),
    0 15px 20px rgba(90, 35, 7, .24);
}
.hero h1 span { display: block; font-size: clamp(72px, 8.8vw, 132px); }
.hero h1 small { display: block; margin-top: 10px; font-size: clamp(48px, 5.7vw, 78px); font-weight: 900; }
.hero__lead { margin: 28px 0 0; max-width: 560px; font-family: var(--font-title); font-size: clamp(20px, 2.4vw, 29px); line-height: 1.15; font-weight: 900; }
.hero__desc { max-width: 520px; margin: 18px 0 0; color: rgba(255,255,255,.93); font-size: 16px; line-height: 1.55; font-weight: 700; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 31px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 17px;
  border: 2px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--orange); box-shadow: 0 16px 26px rgba(100, 39, 3, .18); }
.btn--outline { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.65); }
.btn span { color: var(--orange); }
.btn--outline span { color: #fff; }

.hero__dog-wrap { position: relative; min-height: 425px; align-self: end; }
.hero__wave { position: absolute; right: -12%; bottom: -34px; width: 112%; height: 260px; border-radius: 58% 42% 0 0 / 72% 72% 0 0; background: rgba(255, 145, 38, .44); }
.hero__dog { position: absolute; right: 10%; bottom: -56px; width: min(520px, 100%); z-index: 4; filter: drop-shadow(0 25px 24px rgba(80, 31, 8, .21)); }
.crown { position: absolute; z-index: 5; top: 20px; right: 38%; color: #fff3df; font-family: serif; font-size: 78px; line-height: 1; transform: rotate(14deg); text-shadow: 0 8px 10px rgba(76,36,7,.14); }
.bubble {
  position: absolute;
  z-index: 6;
  right: 0;
  top: 190px;
  width: 135px;
  padding: 18px 14px;
  border-radius: 44% 56% 51% 49% / 45% 45% 55% 55%;
  background: #fff8ed;
  color: var(--brown);
  text-align: center;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  transform: rotate(12deg);
  box-shadow: var(--shadow-soft);
}
.bubble span { color: var(--orange); display: block; margin-top: 5px; }
.hero__paw { position: absolute; z-index: 0; color: rgba(255, 205, 144, .35); font-size: 68px; transform: rotate(-18deg); }
.hero__paw--one { right: 5%; top: 105px; }
.hero__paw--two { right: 3%; top: 285px; font-size: 50px; }
.hero__paw--three { left: 24%; top: 78px; font-size: 39px; }
.hero__spark { position: absolute; color: rgba(255, 240, 197, .68); font-size: 27px; }
.hero__spark--one { left: 36%; top: 84px; }
.hero__spark--two { left: 22%; top: 170px; }

.main-panel {
  position: relative;
  margin-top: -48px;
  padding-top: 1px;
  background:
    radial-gradient(circle at 2% 56%, rgba(255,120,9,.08), transparent 12%),
    radial-gradient(circle at 96% 90%, rgba(255,120,9,.08), transparent 14%),
    var(--cream-2);
  border-radius: 72px 72px 0 0;
  box-shadow: 0 -18px 40px rgba(93, 39, 5, .08);
}
.main-panel::before,
.main-panel::after { content: "🐾"; position: absolute; width: 70px; height: 70px; display: grid; place-items: center; border-radius: 999px; background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(235, 76, 0, .24); font-size: 35px; }
.main-panel::before { left: 22px; top: 535px; }
.main-panel::after { right: -20px; top: 110px; }
.section { padding: 26px 0; }

.about { padding-top: 42px; }
.about__grid { display: grid; grid-template-columns: minmax(330px, .88fr) 1.32fr; gap: 34px; align-items: center; }
.about__intro h2,
.section-top h2,
.quote-card h2,
.meters h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--brown);
}
.about__intro h2 span { color: var(--orange); }
.about__intro p { max-width: 330px; margin: 18px 0 0; color: var(--brown-2); font-size: 15px; line-height: 1.55; font-weight: 600; }
.about__dog-wrap { position: relative; width: min(410px, 100%); margin: 12px auto -18px; }
.about__dog { position: relative; z-index: 2; width: 330px; margin: 0 auto; filter: drop-shadow(0 18px 20px rgba(111, 55, 17, .13)); }
.circle-decor { position: absolute; z-index: 1; right: 46px; top: 22px; width: 210px; height: 210px; border-radius: 50%; background: linear-gradient(145deg, var(--orange), #ff9330); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 95px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.fact-card:nth-child(4) { grid-column: 1 / span 1; }
.fact-card:nth-child(5) { grid-column: 2 / span 2; }
.fact-card__icon { flex: 0 0 auto; font-size: 36px; line-height: 1; }
.fact-card b { display: block; font-size: 13px; color: var(--brown); margin-bottom: 5px; }
.fact-card p { margin: 0; color: var(--brown-2); font-size: 13px; line-height: 1.25; font-weight: 700; }

.card-section, .quote-card, .meters__wrap {
  padding: 22px;
  border: 1px solid rgba(100, 49, 15, .1);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.section-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.section-top a { color: var(--orange); font-size: 14px; font-weight: 900; }
.section-icon { width: 28px; height: 28px; display: inline-grid; place-items: center; margin-right: 7px; border-radius: 10px; color: #fff; font-size: 13px; vertical-align: 3px; }
.section-icon--orange { background: var(--orange); }
.section-icon--blue { background: var(--blue); }

.clips__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.clip { position: relative; min-height: 265px; overflow: hidden; border-radius: 17px; background: #ddd; box-shadow: 0 13px 24px rgba(90, 42, 10, .1); }
.clip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.62) 100%); }
.clip img { width: 100%; height: 100%; min-height: 265px; object-fit: cover; }
.clip .play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; display: grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,.82); color: var(--orange); font-size: 20px; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.clip p { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 13px; margin: 0; color: #fff; font-size: 14px; line-height: 1.32; font-weight: 800; text-shadow: 0 2px 7px rgba(0,0,0,.22); }

.album-grid { display: grid; grid-template-columns: 2.05fr 1fr 1fr 1fr; grid-template-rows: 126px 126px; gap: 12px; }
.album { margin: 0; overflow: hidden; border-radius: 16px; background: #ead4b9; }
.album--large { grid-row: 1 / 3; }
.album img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.album:hover img { transform: scale(1.04); }
.album:nth-child(3) { grid-column: 3 / span 1; }
.album:nth-child(4) { grid-column: 4; grid-row: 1; }
.album:nth-child(5) { grid-column: 2 / span 1; grid-row: 2; }
.album:nth-child(6) { grid-column: 3 / span 2; grid-row: 2; }

.quotes { padding-top: 8px; }
.quote-card h2 span { color: var(--orange); }
.quote-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.quote-item { position: relative; min-height: 112px; overflow: hidden; border-radius: 18px; background: #fff8ed; border: 1px solid var(--line); padding: 20px 132px 18px 20px; }
.quote-item p { margin: 0; color: var(--brown-2); font-size: 13px; line-height: 1.45; font-weight: 700; }
.quote-item img { position: absolute; right: 10px; bottom: -14px; width: 116px; height: 96px; object-fit: cover; object-position: center; border-radius: 999px; filter: drop-shadow(0 8px 12px rgba(90,42,10,.12)); }
.quote-item:nth-child(3) img { object-fit: contain; height: 112px; bottom: -24px; }

.meters { padding-top: 8px; padding-bottom: 32px; }
.meters__wrap { padding: 18px 22px 22px; }
.meters h2 span { color: var(--orange); }
.meters__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
.meter { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 17px; background: #fff8ef; border: 1px solid var(--line); }
.meter__icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: #fff; font-size: 26px; box-shadow: 0 7px 17px rgba(102,45,8,.08); }
.meter div { width: 100%; min-width: 0; }
.meter p { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 0 10px; font-size: 12px; }
.meter b { color: var(--brown-2); }
.meter em { color: var(--orange); font-style: normal; font-weight: 900; }
.meter i { display: block; height: 7px; overflow: hidden; border-radius: 99px; background: #f0d5bc; }
.meter i::before { content: ""; display: block; width: min(var(--value), 100%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #ff6a00, #ff3f2d); }

.bottom-cta { position: relative; z-index: 3; margin-top: -1px; color: #fff; background: linear-gradient(135deg, #ff4d00, #ff7908); }

.bottom-cta__inner { position: relative; min-height: 122px; display: grid; grid-template-columns: 190px minmax(0, 1fr) auto 70px; gap: 20px; align-items: center; }
.bottom-cta__text { padding-left: 128px; }
.bottom-cta h2 { margin: 0; font-family: var(--font-title); font-size: clamp(24px, 3vw, 36px); letter-spacing: -.04em; }
.bottom-cta p { margin: 6px 0 0; max-width: 470px; color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.45; font-weight: 700; }
.bottom-cta__buttons { display: flex; gap: 13px; }

.footer { background: #32291f; color: rgba(255,255,255,.72); }
.footer__inner { min-height: 74px; display: flex; align-items: center; gap: 34px; }
.logo--footer { color: #fff; }
.logo--footer .logo__paw { width: 30px; height: 30px; font-size: 22px; }
.logo--footer b { font-size: 24px; }
.logo--footer small { font-size: 10px; }
.footer__nav { display: flex; gap: 38px; margin-left: auto; font-size: 13px; font-weight: 700; }
.footer__nav a:hover { color: #fff; }
.footer p { margin: 0 0 0 auto; font-size: 12px; }
.footer-heart { font-size: 22px; color: rgba(255,255,255,.72); }

@media (max-width: 1120px) {
  .header__inner { gap: 18px; }
  .nav { gap: 20px; }
  .header__follow { margin-left: 8px; }
  .follow-label { display: none; }
  .hero__content { grid-template-columns: 1fr .86fr; }
  .clips__grid { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact-card:nth-child(5) { grid-column: auto; }
  .meters__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header { padding-top: 14px; }
  .header__inner { justify-content: space-between; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 76px 14px auto;
    z-index: 99;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: #fff8ef;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .nav__link { color: var(--brown); padding: 13px 16px; border-radius: 14px; }
  .nav__link:hover, .nav__link.is-active { color: var(--orange); background: #fff; }
  .header__follow { display: none; }
  .hero { min-height: auto; padding-bottom: 54px; }
  .hero__content { grid-template-columns: 1fr; min-height: 0; padding-top: 20px; }
  .hero__dog-wrap { min-height: 340px; order: -1; }
  .hero__dog { right: 50%; transform: translateX(50%); width: min(380px, 92vw); bottom: -30px; }
  .hero__wave { right: 5%; width: 90%; }
  .bubble { right: 9%; top: 130px; }
  .crown { right: 50%; top: 12px; }
  .hero h1 span { font-size: clamp(62px, 16vw, 94px); }
  .hero h1 small { font-size: clamp(42px, 10vw, 62px); }
  .main-panel { border-radius: 42px 42px 0 0; }
  .main-panel::before, .main-panel::after { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__intro { text-align: center; }
  .about__intro p { margin-inline: auto; }
  .album-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .album, .album--large { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4/3; }
  .album--large { aspect-ratio: 16/10; }
  .quote-list { grid-template-columns: 1fr; }
  .bottom-cta__inner { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; text-align: center; }
  .bottom-cta__text { padding-left: 0; }
  .bottom-cta p { margin-inline: auto; }
  .bottom-cta__buttons { justify-content: center; flex-wrap: wrap; }
  .footer__inner { flex-wrap: wrap; justify-content: center; padding: 22px 0; text-align: center; }
  .footer__nav, .footer p { margin: 0; }
}

@media (max-width: 620px) {
  .logo b { font-size: 25px; }
  .hero__buttons, .bottom-cta__buttons { display: grid; grid-template-columns: 1fr; }
  .btn, .social--big { width: 100%; }
  .facts { grid-template-columns: 1fr; }
  .clips__grid { grid-template-columns: 1fr; }
  .clip { min-height: 390px; }
  .clip img { min-height: 390px; }
  .album-grid { grid-template-columns: 1fr; }
  .meters__grid { grid-template-columns: 1fr; }
  .card-section, .quote-card, .meters__wrap { padding: 16px; border-radius: 22px; }
  .section-top { align-items: flex-start; flex-direction: column; }
  .footer__nav { gap: 18px; flex-wrap: wrap; justify-content: center; }
}


/* restored icon replacements */
.logo__paw .ui-icon{width:30px;height:30px;color:#fff;}
.hero__paw{display:grid;place-items:center;}
.hero__paw .ui-icon{width:1em;height:1em;color:currentColor;}
.hero__spark{display:grid;place-items:center;}
.hero__spark .ui-icon{width:1em;height:1em;color:currentColor;}
.btn > .ui-icon{width:18px;height:18px;flex:0 0 auto;}
.bubble span .ui-icon{width:16px;height:16px;color:var(--orange);}
.about h2 .ui-icon,.quote-card h2 .ui-icon,.meters h2 .ui-icon{width:22px;height:22px;color:var(--orange);vertical-align:-.14em;}
.fact-card__icon .ui-icon{width:34px;height:34px;color:var(--orange);}
.meter__icon .ui-icon{width:27px;height:27px;color:var(--orange);}


/* hero image repair */
.hero__dog {
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: center bottom;
}
.crown { display: grid; place-items: center; }
.crown .ui-icon { width: 70px; height: 70px; }
.section-icon .ui-icon { width: 16px; height: 16px; }
.play .ui-icon { width: 20px; height: 20px; color: var(--orange-dark); }
.social span .ui-icon { width: 14px; height: 14px; }
.social--big span .ui-icon { width: 18px; height: 18px; }

/* centered hero title/content update */
.hero__content {
  text-align: center;
  justify-self: center;
}

.hero__text-block {
  text-align: center;
  justify-self: center;
  max-width: 560px;
}

.hero__text-block h1,
.hero__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__lead,
.hero__desc,
.hero__text {
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons,
.hero__actions {
  justify-content: center;
}

.hero__dog {
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: center bottom;
}

/* hero title image replacement */
.hero__text-block .hero__title {
  width: min(560px, 100%);
  margin: 0 auto;
  line-height: 1;
  letter-spacing: 0;
  color: transparent;
  text-shadow: none;
}

.hero__title-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 14px rgba(90, 35, 7, .22));
}

@media (max-width: 900px) {
  .hero__text-block .hero__title {
    width: min(460px, 94vw);
  }
}

@media (max-width: 620px) {
  .hero__text-block .hero__title {
    width: min(340px, 92vw);
  }
}

/* hero bubble image replacement */
.bubble.bubble--image {
  position: absolute;
  z-index: 6;
  right: 0;
  top: 190px;
  width: 135px;
  height: auto;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: initial;
  font: inherit;
  line-height: normal;
  box-shadow: none;
  object-fit: contain;
  transform: rotate(12deg);
  filter: drop-shadow(0 10px 16px rgba(76, 36, 7, .16));
}

@media (max-width: 900px) {
  .bubble.bubble--image {
    right: 2%;
    top: 170px;
    width: 118px;
  }
}

@media (max-width: 620px) {
  .bubble.bubble--image {
    right: 4%;
    top: 150px;
    width: 98px;
  }
}

/* hero crown image replacement */
.crown.crown--image {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 38%;
  width: 92px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: rotate(14deg);
  filter: drop-shadow(0 8px 10px rgba(76, 36, 7, .14));
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}

@media (max-width: 900px) {
  .crown.crown--image {
    top: 18px;
    right: 36%;
    width: 76px;
  }
}

@media (max-width: 620px) {
  .crown.crown--image {
    top: 14px;
    right: 35%;
    width: 62px;
  }
}

/* site logo image */
.logo.logo--image {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  color: inherit;
}

.logo__img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 12px rgba(91, 39, 7, .16));
}

.logo.logo--footer .logo__img {
  height: 34px;
  max-width: 130px;
  filter: none;
}

@media (max-width: 900px) {
  .logo__img {
    height: 46px;
    max-width: 160px;
  }
}

@media (max-width: 620px) {
  .logo__img {
    height: 40px;
    max-width: 140px;
  }
}

/* font tuning without changing Izюм title/logo images */
body {
  font-family: var(--font-main, 'Inter', Arial, sans-serif);
}

h1,
h2,
h3,
.section-title,
.nav__link,
.btn,
.logo b,
.logo small,
.fact-card b,
.clip-card,
.quote-card h2,
.meter b,
.bottom-cta h2 {
  font-family: var(--font-title, 'Nunito', Arial, sans-serif);
}

/* Do not restyle image-based title/logo */
.hero__title-img,
.logo__img,
.brand__img,
img[src*="hero-title.png"],
img[src*="site-logo.png"] {
  font-family: initial;
}

/* Preserve image title layout */
.hero__title:has(.hero__title-img) {
  font-family: initial;
}

/* hero/header visual correction */
.header {
  padding-top: 20px;
}

.header__inner {
  align-items: center;
}

/* 1. Логотип больше */
.logo__img,
.brand__img {
  height: 66px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* 2. Навигация менее жирная */
.nav__link {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
}

/* 3. Текст hero по левой стороне */
.hero__text-block {
  align-items: flex-start;
  text-align: left;
}

.hero__text-block .hero__title,
.hero__title:has(.hero__title-img) {
  margin-left: 0;
  margin-right: 0;
}

.hero__lead,
.hero__desc {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Сохраняем картинку "Изюм без компота", не заменяем ее */
.hero__title-img,
img[src*="hero-title.png"] {
  display: block;
  width: 100%;
  height: auto;
}

/* 4. Кнопки 50/50 */
.hero__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(520px, 100%);
  gap: 18px;
  justify-content: stretch;
  align-items: center;
}

.hero__buttons .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  white-space: nowrap;
}

/* 5. Корги меньше и аккуратнее в правой колонке */
.hero__dog-wrap {
  min-height: 405px;
}

.hero__dog {
  right: 3%;
  bottom: -44px;
  width: min(470px, 94%);
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
}

/* 6. Корона выше головы, а не на морде */
.crown,
.crown.crown--image {
  top: -12px;
  right: 34%;
  width: 118px;
  height: auto;
  transform: rotate(12deg);
  z-index: 7;
  pointer-events: none;
}

.crown .ui-icon {
  font-size: 86px;
}

.hero__crown,
.hero__crown.crown--image {
  top: -12px;
  right: 34%;
  width: 118px;
  height: auto;
  transform: rotate(12deg);
  z-index: 7;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .logo__img,
  .brand__img {
    height: 58px;
    max-width: 195px;
  }

  .nav__link {
    font-size: 14px;
  }

  .hero__dog {
    width: min(430px, 92%);
    bottom: -34px;
  }

  .crown,
  .crown.crown--image,
  .hero__crown,
  .hero__crown.crown--image {
    top: -4px;
    right: 35%;
    width: 96px;
  }
}

@media (max-width: 900px) {
  .logo__img,
  .brand__img {
    height: 50px;
    max-width: 170px;
  }

  .hero__text-block {
    text-align: center;
    align-items: center;
  }

  .hero__lead,
  .hero__desc {
    text-align: center;
  }

  .hero__buttons {
    width: min(480px, 100%);
  }

  .hero__dog-wrap {
    min-height: 360px;
  }

  .hero__dog {
    right: 50%;
    transform: translateX(50%);
    width: min(380px, 86vw);
    bottom: -34px;
  }

  .crown,
  .crown.crown--image,
  .hero__crown,
  .hero__crown.crown--image {
    top: 0;
    right: 50%;
    width: 82px;
    transform: translateX(95px) rotate(12deg);
  }
}

@media (max-width: 620px) {
  .logo__img,
  .brand__img {
    height: 44px;
    max-width: 150px;
  }

  .nav__link {
    font-weight: 700;
  }

  .hero__buttons {
    grid-template-columns: 1fr;
    width: min(340px, 100%);
  }

  .hero__dog {
    width: min(320px, 84vw);
  }

  .crown,
  .crown.crown--image,
  .hero__crown,
  .hero__crown.crown--image {
    width: 68px;
    transform: translateX(78px) rotate(12deg);
  }
}

/* crown position and lighter font weight override */
.nav__link {
  font-weight: 600 !important;
  font-size: 14px !important;
}

.follow-label,
.header__follow,
.header__follow .social,
.social {
  font-weight: 700 !important;
}

.hero__lead {
  font-weight: 700 !important;
  line-height: 1.12 !important;
}

.hero__desc {
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.hero__buttons .btn,
.btn {
  font-weight: 700 !important;
}

/* Картинку "Изюм без компота" не трогаем */
.hero__title-img,
img[src*="hero-title.png"] {
  font-weight: initial !important;
}

/* Корона выше головы, не на морде */
.hero__dog-wrap .crown,
.hero__dog-wrap .crown.crown--image {
  position: absolute !important;
  top: -75px !important;
  right: 31% !important;
  width: 118px !important;
  height: auto !important;
  z-index: 9 !important;
  transform: rotate(16deg) !important;
  pointer-events: none !important;
}

.hero__dog-wrap .crown img,
.hero__dog-wrap .crown.crown--image {
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

.hero__dog-wrap .crown .ui-icon {
  font-size: 92px !important;
}

/* Если корона вставлена как .hero__crown на внутренних страницах */
.hero__visual .hero__crown,
.hero__visual .hero__crown.crown--image {
  position: absolute !important;
  top: -72px !important;
  right: 31% !important;
  width: 112px !important;
  height: auto !important;
  z-index: 9 !important;
  transform: rotate(12deg) !important;
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  .hero__dog-wrap .crown,
  .hero__dog-wrap .crown.crown--image {
    top: -92px !important;
    right: 32% !important;
    width: 98px !important;
  }

  .hero__visual .hero__crown,
  .hero__visual .hero__crown.crown--image {
    top: -58px !important;
    right: 32% !important;
    width: 92px !important;
  }
}

@media (max-width: 900px) {
  .nav__link {
    font-weight: 600 !important;
  }

  .hero__lead {
    font-weight: 700 !important;
  }

  .hero__dog-wrap .crown,
  .hero__dog-wrap .crown.crown--image {
    top: -58px !important;
    right: 50% !important;
    width: 78px !important;
    transform: translateX(115px) rotate(12deg) !important;
  }

  .hero__visual .hero__crown,
  .hero__visual .hero__crown.crown--image {
    top: -44px !important;
    right: 50% !important;
    width: 74px !important;
    transform: translateX(100px) rotate(12deg) !important;
  }
}

@media (max-width: 620px) {
  .nav__link {
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  .hero__lead {
    font-weight: 700 !important;
  }

  .hero__desc {
    font-weight: 500 !important;
  }

  .hero__dog-wrap .crown,
  .hero__dog-wrap .crown.crown--image {
    top: -42px !important;
    width: 64px !important;
    transform: translateX(88px) rotate(12deg) !important;
  }
}

/* hero background image replacement */
.hero {
  background-color: #ff5a08 !important;
  background-image: url("/assets/images/hero-bg.png?v=20260621115816") !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
}

.hero__paw,
.hero__spark {
  display: none !important;
}

.hero .header,
.hero .hero__content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero {
    background-position: center top !important;
    background-size: cover !important;
  }
}

@media (max-width: 620px) {
  .hero {
    background-position: center top !important;
    background-size: cover !important;
  }
}

/* Старые декоративные элементы фона отключаем, потому что они уже есть в изображении */
.hero__paw,
.hero__spark {
  display: none !important;
}

/* Оставляем контент поверх нового фона */
.hero .header,
.hero .hero__content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero {
    background-position: center top !important;
    background-size: cover !important;
  }
}

@media (max-width: 620px) {
  .hero {
    background-position: center top !important;
    background-size: auto 100% !important;
  }
}

/* social/header font weight correction */
.follow-label,
.header__follow,
.header__follow .social,
.social {
  font-weight: 600 !important;
}

/* hero background single image override */
.hero {
  background: #ff5a08 url("/assets/images/hero-bg.png?v=20260621120019") no-repeat center top / cover !important;
}

.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
}

.hero__wave,
.hero__paw,
.hero__spark {
  display: none !important;
}

.hero .header,
.hero .hero__content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero {
    background: #ff5a08 url("/assets/images/hero-bg.png?v=20260621120019") no-repeat center top / cover !important;
  }
}

@media (max-width: 620px) {
  .hero {
    background: #ff5a08 url("/assets/images/hero-bg.png?v=20260621120019") no-repeat center top / cover !important;
  }
}

/* hero button image icons */
.btn__icon-img {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

.btn--light .btn__icon-img {
  filter: none;
}

.btn--outline .btn__icon-img {
  filter: brightness(0) invert(1);
}

@media (max-width: 620px) {
  .btn__icon-img {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}

/* about section assets/layout correction */
.about {
  padding-top: 38px;
  padding-bottom: 28px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(330px, 420px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.about__intro {
  position: relative;
  min-height: 250px;
}

.about__intro h2 {
  margin-bottom: 18px;
}

.about__intro p {
  max-width: 315px;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.about__dog-wrap {
  position: absolute;
  z-index: 2;
  left: 215px;
  top: 42px;
  width: 270px;
  margin: 0;
}

.about__dog {
  width: 250px;
  max-width: none;
  display: block;
  margin: 0;
  filter: drop-shadow(0 14px 16px rgba(111, 55, 17, .12));
}

.circle-decor {
  right: 6px;
  top: 18px;
  width: 185px;
  height: 185px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.fact-card {
  min-height: 88px;
  padding: 15px 18px;
  border-radius: 18px;
  gap: 14px;
  background: rgba(255, 255, 255, .76);
}

.fact-card:nth-child(4) {
  grid-column: 1 / span 1;
}

.fact-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.fact-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
}

.fact-card__img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.fact-card b {
  font-size: 13px;
  line-height: 1.15;
  margin-bottom: 5px;
  font-weight: 800;
}

.fact-card p {
  font-size: 13px;
  line-height: 1.22;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .about__grid {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 34px;
  }

  .about__dog-wrap {
    left: 180px;
    width: 245px;
  }

  .about__dog {
    width: 230px;
  }

  .circle-decor {
    width: 165px;
    height: 165px;
  }

  .facts {
    gap: 14px;
  }

  .fact-card {
    padding: 14px;
  }
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about__intro {
    min-height: auto;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .about__intro p {
    max-width: 460px;
  }

  .about__dog-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: min(300px, 78vw);
    margin-top: 16px;
  }

  .about__dog {
    width: min(280px, 76vw);
  }

  .circle-decor {
    right: 10px;
    top: 20px;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-card:nth-child(4),
  .fact-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .facts {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 82px;
  }
}

/* about corgi/background image replacement */
.about__dog-wrap {
  position: absolute;
  z-index: 2;
  left: 215px;
  top: 42px;
  width: 270px;
  margin: 0;
}

.about__dog {
  position: relative;
  z-index: 3;
  display: block;
  width: 250px;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 14px 16px rgba(111, 55, 17, .12));
}

.circle-decor {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 12px;
  width: 205px;
  height: 205px;
  border-radius: 0;
  background: transparent url("/assets/images/about/about-corgi-bg.png?v=20260621123643") no-repeat center / contain !important;
}

@media (max-width: 1100px) {
  .about__dog-wrap {
    left: 180px;
    width: 245px;
  }

  .about__dog {
    width: 230px;
  }

  .circle-decor {
    width: 180px;
    height: 180px;
    right: 0;
    top: 16px;
  }
}

@media (max-width: 900px) {
  .about__dog-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: min(300px, 78vw);
    margin-top: 16px;
  }

  .about__dog {
    width: min(280px, 76vw);
  }

  .circle-decor {
    right: 8px;
    top: 18px;
    width: 205px;
    height: 205px;
  }
}

@media (max-width: 620px) {
  .circle-decor {
    width: 180px;
    height: 180px;
  }
}

/* about block final size correction */
.about {
  padding-top: 34px !important;
  padding-bottom: 18px !important;
}

.about__grid {
  grid-template-columns: minmax(300px, 355px) minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: center !important;
  min-height: 245px !important;
}

.about__intro {
  position: relative !important;
  min-height: 230px !important;
}

.about__intro h2 {
  margin: 0 0 16px !important;
  font-size: 27px !important;
  line-height: 1.05 !important;
}

.about__intro p {
  max-width: 280px !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
  font-weight: 600 !important;
}

.about__dog-wrap {
  position: absolute !important;
  left: 198px !important;
  top: 52px !important;
  width: 245px !important;
  height: 190px !important;
  margin: 0 !important;
}

.about__dog {
  width: 218px !important;
  max-width: none !important;
  display: block !important;
  margin: 0 !important;
  filter: drop-shadow(0 14px 16px rgba(111, 55, 17, .12)) !important;
}

.circle-decor {
  right: 8px !important;
  top: 14px !important;
  width: 168px !important;
  height: 168px !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.facts {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.fact-card {
  min-height: 76px !important;
  padding: 14px 16px !important;
  gap: 12px !important;
  border-radius: 17px !important;
}

.fact-card:nth-child(4) {
  grid-column: 1 / span 1 !important;
}

.fact-card:nth-child(5) {
  grid-column: 2 / span 2 !important;
}

.fact-card__icon {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
}

.fact-card__img {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain !important;
}

.fact-card b {
  font-size: 12px !important;
  line-height: 1.15 !important;
  margin-bottom: 4px !important;
  font-weight: 800 !important;
}

.fact-card p {
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

@media (max-width: 1100px) {
  .about__grid {
    grid-template-columns: minmax(285px, 335px) minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  .about__dog-wrap {
    left: 176px !important;
    top: 54px !important;
    width: 225px !important;
  }

  .about__dog {
    width: 202px !important;
  }

  .circle-decor {
    width: 154px !important;
    height: 154px !important;
  }

  .facts {
    gap: 12px !important;
  }

  .fact-card {
    padding: 12px 13px !important;
  }
}

@media (max-width: 900px) {
  .about {
    padding-top: 30px !important;
  }

  .about__grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    min-height: auto !important;
  }

  .about__intro {
    min-height: auto !important;
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .about__intro p {
    max-width: 420px !important;
  }

  .about__dog-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(260px, 76vw) !important;
    height: auto !important;
    margin-top: 14px !important;
  }

  .about__dog {
    width: min(235px, 72vw) !important;
  }

  .circle-decor {
    right: 8px !important;
    top: 14px !important;
    width: min(178px, 54vw) !important;
    height: min(178px, 54vw) !important;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fact-card:nth-child(4),
  .fact-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 620px) {
  .facts {
    grid-template-columns: 1fr !important;
  }

  .fact-card {
    min-height: 72px !important;
  }
}

/* about custom requested values */
.about {
  padding-bottom: 90px !important;
}

.about__intro p {
  max-width: 250px !important;
}

.about__dog-wrap {
  top: 72px !important;
}

.circle-decor {
  width: 250px !important;
  height: 250px !important;
}

.facts {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 18px !important;
}

.fact-card {
  width: 200px !important;
  flex: 0 0 200px !important;
}

.fact-card:nth-child(4),
.fact-card:nth-child(5) {
  grid-column: auto !important;
}

@media (max-width: 900px) {
  .about {
    padding-bottom: 60px !important;
  }

  .about__dog-wrap {
    top: auto !important;
  }

  .circle-decor {
    width: 220px !important;
    height: 220px !important;
  }

  .facts {
    justify-content: center !important;
  }

  .fact-card {
    width: min(220px, 100%) !important;
    flex: 0 0 min(220px, 100%) !important;
  }
}

@media (max-width: 620px) {
  .about {
    padding-bottom: 44px !important;
  }

  .about__intro p {
    max-width: 100% !important;
  }

  .fact-card {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}

/* about decorative side images */
.about {
  position: relative !important;
  overflow: visible !important;
}

.about__decor {
  position: absolute;
  z-index: 2;
  display: block;
  width: 56px;
  height: auto;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.about__decor--left {
  left: 36px;
  top: 172px;
}

.about__decor--right {
  right: 34px;
  top: 20px;
}

@media (max-width: 1100px) {
  .about__decor {
    width: 52px;
  }

  .about__decor--left {
    left: 24px;
    top: 176px;
  }

  .about__decor--right {
    right: 22px;
    top: 18px;
  }
}

@media (max-width: 900px) {
  .about__decor {
    width: 46px;
  }

  .about__decor--left {
    left: 18px;
    top: 210px;
  }

  .about__decor--right {
    right: 16px;
    top: 16px;
  }
}

@media (max-width: 620px) {
  .about__decor {
    width: 40px;
  }

  .about__decor--left {
    left: 12px;
    top: 230px;
  }

  .about__decor--right {
    right: 12px;
    top: 12px;
  }
}

/* about decor inside container */
.about {
  position: relative !important;
  overflow: visible !important;
}

.about__grid {
  position: relative !important;
  overflow: visible !important;
}

/* Декор теперь считается от container, а не от всей страницы */
.about__decor {
  position: absolute !important;
  z-index: 3 !important;
  display: block !important;
  width: 56px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none !important;
}

.about__decor--left {
  left: -42px !important;
  top: 150px !important;
}

.about__decor--right {
  right: -34px !important;
  top: -8px !important;
}

@media (max-width: 1280px) {
  .about__decor--left {
    left: 0 !important;
  }

  .about__decor--right {
    right: 0 !important;
  }
}

@media (max-width: 900px) {
  .about__decor {
    width: 46px !important;
  }

  .about__decor--left {
    left: 10px !important;
    top: 230px !important;
  }

  .about__decor--right {
    right: 10px !important;
    top: 0 !important;
  }
}

@media (max-width: 620px) {
  .about__decor {
    width: 40px !important;
  }

  .about__decor--left {
    left: 8px !important;
    top: 250px !important;
  }

  .about__decor--right {
    right: 8px !important;
    top: 0 !important;
  }
}

/* about left decor requested position */
.about__decor--left {
  width: 86px !important;
  left: 0 !important;
  top: 230px !important;
}

/* circle decor requested size 200 */
.circle-decor {
  width: 200px !important;
  height: 200px !important;
}

/* fact card requested width 250 */
.fact-card {
  width: 250px !important;
  flex: 0 0 250px !important;
}

@media (max-width: 620px) {
  .fact-card {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}

/* about grid first column 300 */
.about__grid {
  grid-template-columns: 300px minmax(0, 1fr) !important;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr !important;
  }
}

/* about dog/decor requested position */
.about__dog-wrap {
  top: 120px !important;
  left: 170px !important;
}

.about__decor--left {
  top: 290px !important;
}

@media (max-width: 900px) {
  .about__dog-wrap {
    top: auto !important;
    left: auto !important;
  }

  .about__decor--left {
    top: 250px !important;
  }
}

/* hero lead requested font size */
.hero__lead {
  font-size: 24px !important;
}

@media (max-width: 900px) {
  .hero__lead {
    font-size: 22px !important;
  }
}

@media (max-width: 620px) {
  .hero__lead {
    font-size: 20px !important;
  }
}

/* about left decor requested position 220 30 */
.about__decor--left {
  top: 220px !important;
  left: 30px !important;
}

/* meme quotes image replacements */
.quote-card h2 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.quote-title-icon {
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 34px !important;
  margin: 0 !important;
  color: inherit !important;
  vertical-align: middle !important;
}

.quote-title-icon img {
  width: 34px !important;
  height: 34px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

.quote-item {
  overflow: visible !important;
}

.quote-item img {
  position: absolute !important;
  right: 8px !important;
  bottom: -18px !important;
  width: 128px !important;
  height: 104px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 8px 12px rgba(90,42,10,.14)) !important;
}

.quote-item:nth-child(1) img {
  right: 4px !important;
  bottom: -20px !important;
  width: 132px !important;
  height: 108px !important;
}

.quote-item:nth-child(2) img {
  right: 2px !important;
  bottom: -22px !important;
  width: 138px !important;
  height: 110px !important;
}

.quote-item:nth-child(3) img {
  right: 2px !important;
  bottom: -20px !important;
  width: 132px !important;
  height: 108px !important;
}

@media (max-width: 620px) {
  .quote-item {
    padding-right: 118px !important;
  }

  .quote-item img {
    width: 112px !important;
    height: 92px !important;
  }
}

/* hero lead requested font size 28 */
.hero__lead {
  font-size: 28px !important;
}

@media (max-width: 900px) {
  .hero__lead {
    font-size: 24px !important;
  }
}

@media (max-width: 620px) {
  .hero__lead {
    font-size: 22px !important;
  }
}

/* quote item images requested position zero */
.quote-item img,
.quote-item:nth-child(1) img,
.quote-item:nth-child(2) img,
.quote-item:nth-child(3) img,
.quote-item:nth-child(4) img {
  right: 0 !important;
  bottom: 0 !important;
}

/* clip image requested min height 330 */
.clip img {
  min-height: 330px !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* custom clip play button */
.clip .play {
  position: absolute !important;
  z-index: 3 !important;
  left: 50% !important;
  top: 50% !important;
  width: 58px !important;
  height: 58px !important;
  margin: -29px 0 0 -29px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.clip .play__img {
  width: 58px !important;
  height: 58px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none !important;
  filter: drop-shadow(0 8px 14px rgba(90,42,10,.22)) !important;
}

@media (max-width: 620px) {
  .clip .play {
    width: 52px !important;
    height: 52px !important;
    margin: -26px 0 0 -26px !important;
  }

  .clip .play__img {
    width: 52px !important;
    height: 52px !important;
  }
}

/* semi-transparent clip play button */
.clip .play {
  position: absolute !important;
  z-index: 4 !important;
  left: 50% !important;
  top: 50% !important;
  width: 58px !important;
  height: 58px !important;
  margin: -29px 0 0 -29px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .68) !important;
  border: 1px solid rgba(255, 255, 255, .52) !important;
  box-shadow: 0 8px 20px rgba(80, 42, 12, .14) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  overflow: visible !important;
}

.clip .play img,
.clip .play .ui-icon,
.clip .play svg {
  display: none !important;
}

.clip .play::before {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 4px !important;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  border-left: 16px solid rgba(255, 104, 12, .82) !important;
  filter: drop-shadow(0 2px 4px rgba(120, 58, 10, .16)) !important;
}

@media (max-width: 620px) {
  .clip .play {
    width: 52px !important;
    height: 52px !important;
    margin: -26px 0 0 -26px !important;
  }

  .clip .play::before {
    border-top-width: 9px !important;
    border-bottom-width: 9px !important;
    border-left-width: 14px !important;
  }
}

/* hero background requested position 45 */
.hero {
  background: #ff5a08 url("/assets/images/hero-bg.png?v=20260621120019") no-repeat center 45% / cover !important;
}

/* bottom CTA custom assets */
.meters {
  position: relative !important;
  overflow: visible !important;
}

.meters__paw-decor {
  position: absolute !important;
  left: calc(50% - 705px) !important;
  bottom: -18px !important;
  width: 72px !important;
  height: auto !important;
  z-index: 2 !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none !important;
}

.bottom-cta {
  position: relative !important;
  margin-top: 0 !important;
  padding: 22px 0 24px !important;
  background: #ff5a08 !important;
  color: #fff !important;
  overflow: hidden !important;
}

.bottom-cta__inner {
  position: relative !important;
  min-height: 132px !important;
  display: flex !important;
  align-items: center !important;
}

.bottom-cta__assets {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.bottom-cta__asset {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none !important;
}

.bottom-cta__asset--like {
  left: 0 !important;
  top: 28px !important;
  width: 178px !important;
  z-index: 3 !important;
}

.bottom-cta__asset--corgi {
  left: 150px !important;
  bottom: -26px !important;
  width: 265px !important;
  z-index: 2 !important;
}

.bottom-cta__asset--cloud {
  left: 365px !important;
  top: 48px !important;
  width: 58px !important;
  z-index: 4 !important;
}

.bottom-cta__content {
  position: relative !important;
  z-index: 5 !important;
  margin-left: 450px !important;
  max-width: 560px !important;
}

.bottom-cta__content h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}

.bottom-cta__content p {
  margin: 6px 0 0 !important;
  max-width: 470px !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

.bottom-cta__actions {
  display: flex !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

@media (max-width: 1200px) {
  .meters__paw-decor {
    left: 16px !important;
  }

  .bottom-cta__content {
    margin-left: 390px !important;
  }

  .bottom-cta__asset--corgi {
    left: 130px !important;
    width: 240px !important;
  }

  .bottom-cta__asset--cloud {
    left: 330px !important;
  }
}

@media (max-width: 900px) {
  .bottom-cta {
    padding: 28px 0 !important;
  }

  .bottom-cta__inner {
    min-height: 220px !important;
    align-items: flex-end !important;
  }

  .bottom-cta__asset--like {
    left: 10px !important;
    top: 20px !important;
    width: 150px !important;
  }

  .bottom-cta__asset--corgi {
    left: 50% !important;
    bottom: 82px !important;
    width: 220px !important;
    transform: translateX(-50%) !important;
  }

  .bottom-cta__asset--cloud {
    left: auto !important;
    right: 18px !important;
    top: 70px !important;
    width: 48px !important;
  }

  .bottom-cta__content {
    margin-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
  }

  .bottom-cta__content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bottom-cta__actions {
    justify-content: center !important;
  }
}

@media (max-width: 620px) {
  .meters__paw-decor {
    width: 52px !important;
    left: 10px !important;
    bottom: -10px !important;
  }

  .bottom-cta__inner {
    min-height: 240px !important;
  }

  .bottom-cta__asset--like {
    width: 132px !important;
  }

  .bottom-cta__asset--corgi {
    width: 190px !important;
    bottom: 104px !important;
  }

  .bottom-cta__asset--cloud {
    width: 42px !important;
  }

  .bottom-cta__content h2 {
    font-size: 24px !important;
  }
}

/* bottom CTA assets fixed inside container */

.meters__paw-decor {
  display: none !important;
}

.bottom-cta {
  position: relative !important;
  overflow: hidden !important;
  background: #ff5a08 !important;
  color: #fff !important;
}

.bottom-cta__inner {
  position: relative !important;
  min-height: 145px !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
}

.bottom-cta__assets {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.bottom-cta__asset {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none !important;
}

.bottom-cta__asset--paw {
  left: 0 !important;
  top: -72px !important;
  width: 76px !important;
  z-index: 3 !important;
}

.bottom-cta__asset--like {
  left: 0 !important;
  top: 34px !important;
  width: 180px !important;
  z-index: 4 !important;
}

.bottom-cta__asset--corgi {
  left: 160px !important;
  bottom: -26px !important;
  width: 270px !important;
  z-index: 3 !important;
}

.bottom-cta__asset--cloud {
  left: 395px !important;
  top: 60px !important;
  width: 58px !important;
  z-index: 5 !important;
}

.bottom-cta__text,
.bottom-cta__content {
  position: relative !important;
  z-index: 6 !important;
  margin-left: 500px !important;
  max-width: 560px !important;
}

.bottom-cta__text h2,
.bottom-cta__content h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}

.bottom-cta__text p,
.bottom-cta__content p {
  margin: 8px 0 0 !important;
  max-width: 520px !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

.bottom-cta__buttons,
.bottom-cta__actions {
  position: relative !important;
  z-index: 6 !important;
}

@media (max-width: 1200px) {
  .bottom-cta__asset--paw {
    left: 8px !important;
  }

  .bottom-cta__asset--like {
    left: 8px !important;
    width: 165px !important;
  }

  .bottom-cta__asset--corgi {
    left: 145px !important;
    width: 245px !important;
  }

  .bottom-cta__asset--cloud {
    left: 355px !important;
  }

  .bottom-cta__text,
  .bottom-cta__content {
    margin-left: 430px !important;
  }
}

@media (max-width: 900px) {
  .bottom-cta__inner {
    min-height: 250px !important;
    align-items: flex-end !important;
    padding-bottom: 22px !important;
  }

  .bottom-cta__asset--paw {
    left: 12px !important;
    top: -38px !important;
    width: 56px !important;
  }

  .bottom-cta__asset--like {
    left: 12px !important;
    top: 22px !important;
    width: 145px !important;
  }

  .bottom-cta__asset--corgi {
    left: 50% !important;
    bottom: 94px !important;
    width: 210px !important;
    transform: translateX(-50%) !important;
  }

  .bottom-cta__asset--cloud {
    right: 18px !important;
    left: auto !important;
    top: 78px !important;
    width: 46px !important;
  }

  .bottom-cta__text,
  .bottom-cta__content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    text-align: center !important;
  }

  .bottom-cta__text p,
  .bottom-cta__content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bottom-cta__buttons,
  .bottom-cta__actions {
    justify-content: center !important;
  }
}

@media (max-width: 620px) {
  .bottom-cta__inner {
    min-height: 270px !important;
  }

  .bottom-cta__asset--like {
    width: 128px !important;
  }

  .bottom-cta__asset--corgi {
    width: 180px !important;
    bottom: 118px !important;
  }

  .bottom-cta__text h2,
  .bottom-cta__content h2 {
    font-size: 24px !important;
  }
}

/* bottom CTA requested vertical shift */
.bottom-cta {
  position: relative !important;
  bottom: 170px !important;
  margin-bottom: -170px !important;
}

/* bottom CTA text requested margin */
.bottom-cta__text,
.bottom-cta__content {
  margin-left: 340px !important;
}

@media (max-width: 900px) {
  .bottom-cta__text,
  .bottom-cta__content {
    margin-left: 0 !important;
  }
}

/* fix bottom CTA overlap with last block */
.meters {
  position: relative !important;
  z-index: 2 !important;
  margin-bottom: 28px !important;
}

.bottom-cta {
  position: relative !important;
  z-index: 1 !important;
  bottom: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: none !important;
}

.footer {
  position: relative !important;
  z-index: 2 !important;
}

/* bottom CTA assets requested position */
.bottom-cta__asset--paw {
  left: -105px !important;
}

.bottom-cta__asset--corgi {
  bottom: -85px !important;
}

@media (max-width: 900px) {
  .bottom-cta__asset--paw {
    left: 12px !important;
  }

  .bottom-cta__asset--corgi {
    bottom: 94px !important;
  }
}

@media (max-width: 620px) {
  .bottom-cta__asset--corgi {
    bottom: 118px !important;
  }
}

/* meters margin bottom removed */
.meters {
  margin-bottom: 0 !important;
}

/* bottom CTA paw requested top 0 */
.bottom-cta__asset--paw {
  top: 0 !important;
}

/* bottom CTA cloud removed */
.bottom-cta__asset--cloud {
  display: none !important;
}

/* bottom CTA before removed */
.bottom-cta::before {
  content: none !important;
  display: none !important;
}

/* bottom CTA corgi and like requested position */
.bottom-cta__asset--corgi {
  bottom: -100px !important;
}

.bottom-cta__asset--like {
  top: 65px !important;
}

@media (max-width: 900px) {
  .bottom-cta__asset--corgi {
    bottom: 88px !important;
  }

  .bottom-cta__asset--like {
    top: 16px !important;
  }
}

@media (max-width: 620px) {
  .bottom-cta__asset--corgi {
    bottom: 102px !important;
  }
}

/* duplicate navigation guard */
.page > .site-header,
body > .site-header {
  display: none !important;
}

.header__inner .nav ~ .nav,
.header__inner .header__follow ~ .header__follow {
  display: none !important;
}

.hero .header ~ .header {
  display: none !important;
}

/* hero eyebrow removed */
.hero__eyebrow {
  display: none;
}

/* contact CTA removed */
.contact-cta,
[class*="contact-cta"] {
  display: none;
}

/* cta section orange removed */
.cta.section-orange,
.section-orange.cta {
  display: none;
}

/* VK cached iframe videos */
.vk-videos {
  position: relative;
  z-index: 2;
}

.clip--vk {
  overflow: hidden;
}

.vk-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
}

.vk-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.empty-state {
  width: 100%;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
}

.empty-state p {
  margin: 0;
  font-size: 14px;
}

/* VK clips cache cards */
.vk-videos {
  position: relative;
  z-index: 2;
}

.vk-clips-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.vk-clip-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 34px rgba(88, 53, 24, .08);
}

.vk-clip-card__preview {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
}

.vk-clip-card__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vk-clip-card__preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0,0,0,.54), rgba(0,0,0,0));
  pointer-events: none;
}

.vk-clip-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  z-index: 3;
}

.vk-clip-card__play::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ff5a08;
}

.vk-clip-card__views {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.vk-clip-card h3 {
  margin: 0;
  padding: 14px 16px 18px;
  color: #3a281c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.vk-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
}

.vk-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .vk-clips-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vk-clips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .vk-clips-grid {
    grid-template-columns: 1fr;
  }
}
